:root {
  --ink: #241f1a;
  --text: #342b24;
  --muted: #72675d;
  --surface: #fffaf3;
  --paper: #f5eadb;
  --linen: #e9dccb;
  --mist: #eef1e8;
  --sage: #607568;
  --sage-dark: #344b3e;
  --clay: #b86b4b;
  --walnut: #7a4d2f;
  --gold: #bd9254;
  --line: rgba(72, 56, 42, 0.16);
  --shadow: 0 18px 48px rgba(52, 43, 36, 0.14);
  --soft-shadow: 0 24px 80px rgba(52, 43, 36, 0.11);
  --font-display: "Cactus Classical Serif", "Noto Serif TC", "Songti TC", "PingFang TC", serif;
  --font-body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --font-accent: "LXGW WenKai TC", "Noto Serif TC", "PingFang TC", serif;
  --font-latin: "Cormorant Garamond", "Cactus Classical Serif", Georgia, serif;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.88;
  text-align: center;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 107, 75, 0.44);
  outline-offset: 3px;
}

h1,
h2,
h3,
.brand-name,
.intro-statement,
.metrics dt {
  font-family: var(--font-display);
  font-weight: 400;
}

h1,
h2,
h3,
.intro-statement {
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: auto-phrase;
}

p,
li,
figcaption,
.section-copy,
.hero-lede {
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.title-lines span {
  display: block;
}

.copy-lines {
  display: grid;
  gap: 0.24em;
}

.copy-lines span,
[data-case-feature-text] span {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--surface);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.95);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 250, 243, 0.98), rgba(245, 234, 219, 0.86)),
    var(--paper);
  box-shadow:
    0 14px 34px rgba(19, 20, 18, 0.16),
    inset 0 0 0 5px rgba(255, 250, 243, 0.5);
  overflow: hidden;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  padding: 2px;
  border-radius: 50%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-name {
  white-space: nowrap;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.brand-subline {
  color: currentColor;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.72;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.site-nav a {
  position: relative;
}

.site-nav .nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 15px;
}

.site-header.is-scrolled .nav-cta,
.site-header.menu-active .nav-cta {
  color: var(--surface);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 250, 243, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(36, 31, 26, 0), rgba(255, 250, 243, 0.18));
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 250, 243, 0.1), transparent 42%),
    linear-gradient(90deg, rgba(36, 31, 26, 0.82) 0%, rgba(36, 31, 26, 0.58) 48%, rgba(36, 31, 26, 0.24) 100%),
    linear-gradient(0deg, rgba(36, 31, 26, 0.48), rgba(52, 43, 36, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: min(100% - 48px, 920px);
  min-height: min(94svh, 880px);
  margin: 0 auto;
  padding: 156px 0 132px;
  color: var(--surface);
}

.hero-copy {
  max-width: 840px;
  min-width: 0;
  margin: 0 auto;
}

.hero-brand,
.contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(255, 250, 243, 0.2);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 250, 243, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.05);
  backdrop-filter: blur(14px);
}

.hero-brand,
.contact-brand {
  margin-right: auto;
  margin-left: auto;
}

.hero-brand img,
.contact-brand img {
  width: 44px;
  height: 44px;
  padding: 3px;
  border-radius: 50%;
  background: var(--surface);
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-brand span {
  display: grid;
  gap: 2px;
}

.hero-brand strong {
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-brand small {
  color: rgba(255, 250, 243, 0.68);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.eyebrow {
  max-width: 100%;
  margin: 24px 0 18px;
  color: #f0a478;
  font-family: var(--font-latin);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  overflow-wrap: break-word;
}

.hero .eyebrow {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  margin-top: 38px;
  margin-bottom: 26px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
}

.hero h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(58px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 48ch;
  margin: 40px auto 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: 19px;
  font-weight: 400;
  line-height: 2.12;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 52px;
}

.hero-tags {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.hero-tags span {
  border: 1px solid rgba(255, 250, 243, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 250, 243, 0.82);
  background: rgba(255, 250, 243, 0.08);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-self: center;
  width: min(100%, 760px);
  margin: 0 auto;
}

.hero-shot {
  position: relative;
  min-height: auto;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  border: 1px solid rgba(72, 56, 42, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.hero-shot-large {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5.1;
}

.hero-shot:nth-child(2) {
  grid-column: 8 / span 5;
  align-self: start;
  margin-top: 56px;
}

.hero-shot:nth-child(3) {
  grid-column: 8 / span 4;
  margin-right: 44px;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.hero-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(21, 20, 17, 0.72));
  content: "";
}

.hero-shot span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 13px;
  left: 14px;
  color: var(--surface);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-shot:hover img,
.hero-shot:focus-visible img {
  transform: scale(1.04);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  color: var(--surface);
  background: var(--sage-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #293d32;
}

.button-secondary {
  color: var(--surface);
  border-color: rgba(255, 250, 243, 0.72);
  background: rgba(255, 250, 243, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 243, 0.18);
}

.section-wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(118px, 11vw, 160px) 0;
}

.glimpse {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 1fr);
  gap: clamp(64px, 9vw, 128px);
  align-items: center;
}

.glimpse-copy {
  min-width: 0;
}

.glimpse h2 {
  max-width: 10em;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.48;
}

.glimpse-copy p:not(.eyebrow) {
  max-width: 34ch;
  margin: 36px auto 0;
  color: var(--muted);
  line-height: 2.08;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.72fr);
  gap: clamp(68px, 10vw, 132px);
  align-items: center;
  padding-top: clamp(118px, 10vw, 156px);
}

.intro::before {
  position: absolute;
  top: 68px;
  right: min(4vw, 40px);
  width: 190px;
  height: 190px;
  background: url("assets/logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.045;
  pointer-events: none;
}

.intro-copy,
.intro-visual {
  min-width: 0;
}

.intro-statement {
  color: var(--ink);
  font-size: clamp(50px, 5.1vw, 62px);
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: 0;
}

.intro-statement span {
  display: block;
  background:
    linear-gradient(transparent 72%, rgba(184, 107, 75, 0.2) 0),
    linear-gradient(90deg, var(--ink), var(--sage-dark));
  background-clip: text;
  color: transparent;
}

.intro-copy p,
.section-copy {
  max-width: 64ch;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.08;
}

.intro-copy p {
  font-size: 18px;
}

.intro-visual {
  position: relative;
  display: grid;
  gap: 22px;
}

.intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 56% 34%;
  box-shadow: var(--soft-shadow);
}

.intro-note {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 22px 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 12px 34px rgba(52, 43, 36, 0.07);
}

.intro-note span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--clay);
  font-family: var(--font-latin);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.intro-note strong {
  color: var(--ink);
  font-weight: 600;
}

.intro-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section-heading {
  min-width: 0;
  max-width: 740px;
  margin: 0 auto clamp(46px, 7vw, 82px);
}

.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 5.6vw, 64px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(330px, 0.62fr) minmax(0, 1fr);
  gap: clamp(64px, 8vw, 108px);
  align-items: stretch;
}

.service-photo {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 4 / 5.25;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.service-photo figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 238px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 46px 22px 48px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--clay), var(--gold));
  content: "";
  transform: translateX(-50%);
}

.service-index {
  color: var(--clay);
  font-family: var(--font-latin);
  font-size: 23px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card h3,
.timeline h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.service-card p,
.timeline p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.content-paths {
  padding-top: clamp(118px, 10vw, 150px);
}

.path-grid,
.hub-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 36px);
}

.path-card,
.hub-card,
.article-card {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: end;
  padding: clamp(36px, 4.8vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.72), rgba(245, 234, 219, 0.96)),
    var(--paper);
  box-shadow: 0 18px 54px rgba(52, 43, 36, 0.08);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.path-card::before,
.hub-card::before,
.article-card::before {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--clay), var(--gold));
  content: "";
  transform: translateX(-50%);
}

.path-card:hover,
.path-card:focus-visible,
.hub-card:hover,
.hub-card:focus-visible,
.article-card:hover,
.article-card:focus-visible {
  border-color: rgba(184, 107, 75, 0.34);
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}

.path-card span,
.hub-card span,
.article-card span {
  color: var(--clay);
  font-family: var(--font-latin);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
}

.path-card h3,
.hub-card h3,
.article-card h3 {
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.4;
}

.path-card p,
.hub-card p,
.article-card p {
  max-width: 36ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 2;
}

.cases {
  padding: clamp(132px, 12vw, 176px) max(20px, calc((100vw - var(--max)) / 2));
  color: var(--surface);
  background:
    linear-gradient(140deg, rgba(184, 107, 75, 0.2), transparent 42%),
    linear-gradient(180deg, #151a17, #26372f);
}

.cases-inner {
  display: grid;
  gap: clamp(80px, 9vw, 108px);
}

.cases .section-heading {
  margin-bottom: 0;
}

.cases .section-heading h2 {
  color: var(--surface);
}

.cases .section-copy {
  color: rgba(255, 250, 243, 0.72);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.78fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.case-feature-media {
  position: relative;
  margin: 0;
}

.case-feature-media::before {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: var(--radius);
  content: "";
}

.case-feature-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.case-feature-copy h3 {
  margin: 0;
  color: var(--surface);
  font-size: clamp(50px, 5.4vw, 62px);
  font-weight: 400;
  line-height: 1.34;
}

.case-feature-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px auto 0;
  color: rgba(255, 250, 243, 0.76);
  font-size: 17px;
  line-height: 2.02;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 38px;
}

.case-meta span {
  border: 1px solid rgba(255, 250, 243, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 250, 243, 0.84);
  background: rgba(255, 250, 243, 0.08);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.case-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.case-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--surface);
  background: rgba(255, 250, 243, 0.06);
  cursor: pointer;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
}

.case-card span {
  padding: 0 2px 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.case-card:hover,
.case-card:focus-visible,
.case-card.is-active {
  border-color: rgba(255, 250, 243, 0.42);
  background: rgba(255, 250, 243, 0.14);
  transform: translateY(-2px);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1040px;
  gap: clamp(74px, 8vw, 104px);
}

.process-heading {
  position: static;
  align-self: center;
  margin: 0 auto;
}

.process-body {
  display: grid;
  gap: clamp(38px, 5.4vw, 64px);
}

.timeline {
  display: grid;
  gap: 0;
  width: min(100%, 840px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  padding: 46px 14px 50px;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay);
  background: var(--surface);
  font-family: var(--font-latin);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.timeline h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.timeline small {
  color: var(--sage-dark);
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.process-details {
  display: grid;
  gap: 22px;
}

.flow-tabs {
  display: inline-flex;
  width: fit-content;
  gap: 4px;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  background: rgba(238, 241, 232, 0.82);
}

.flow-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--sage-dark);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.flow-tabs button.is-active {
  color: var(--surface);
  background: var(--sage-dark);
  box-shadow: 0 8px 22px rgba(52, 75, 62, 0.18);
}

.flow-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 66px);
  align-items: stretch;
  min-width: 0;
  padding: clamp(38px, 5.8vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(245, 234, 219, 0.84)),
    var(--paper);
  box-shadow: 0 12px 34px rgba(52, 43, 36, 0.08);
}

.flow-panel[hidden] {
  display: none;
}

.flow-visual {
  margin: 0;
}

.flow-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 6px;
  object-fit: cover;
}

.flow-copy {
  align-self: center;
}

.flow-copy .eyebrow {
  margin-top: 0;
}

.flow-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.42;
}

.flow-grid,
.construction-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.construction-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-grid div,
.construction-steps div {
  min-width: 0;
  border: 1px solid rgba(72, 56, 42, 0.13);
  border-radius: 6px;
  padding: 22px 18px;
  background: rgba(255, 250, 243, 0.68);
}

.construction-steps span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--sage-dark);
  font-size: 12px;
  font-family: var(--font-latin);
  font-weight: 600;
  line-height: 1;
}

.flow-grid strong,
.construction-steps strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.52;
}

.flow-grid p,
.construction-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.flow-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 241, 232, 0.72);
}

.flow-assurance span {
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--sage-dark);
  font-family: var(--font-accent);
  background: rgba(255, 250, 243, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.contact {
  padding: clamp(132px, 12vw, 176px) max(20px, calc((100vw - var(--max)) / 2));
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(184, 107, 75, 0.28), transparent 38%),
    linear-gradient(120deg, #241f1a 0%, #344b3e 100%);
}

.page-main {
  background:
    linear-gradient(180deg, rgba(238, 241, 232, 0.54), transparent 520px),
    var(--surface);
}

.page-hero {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  padding: 170px 0 96px;
}

.page-hero h1 {
  max-width: 11em;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(58px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.34;
}

.page-hero p:not(.eyebrow) {
  max-width: 48ch;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.page-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 96px 0 140px;
}

.hub-card img,
.article-card img {
  width: 100%;
  margin-bottom: 24px;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
}

.hub-card,
.article-card {
  min-height: auto;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.future-note {
  width: min(100% - 48px, 860px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
}

.future-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.44;
}

.future-note p {
  max-width: 58ch;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 2;
}

.detail-hero,
.detail-section,
.article-page,
.next-links {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.64fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
  padding: 170px 0 104px;
}

.detail-hero h1,
.article-page h1 {
  max-width: 11em;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(52px, 5.4vw, 66px);
  font-weight: 400;
  line-height: 1.38;
}

.detail-hero p:not(.eyebrow),
.article-lede {
  max-width: 48ch;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.detail-media {
  margin: 0;
}

.detail-media img,
.article-cover {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.detail-media img {
  aspect-ratio: 4 / 5;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
  padding: 44px 0 96px;
}

.article-body,
.article-content,
.info-panel {
  min-width: 0;
}

.article-body h2,
.article-content h2 {
  margin: 0 auto 28px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.52;
}

.article-body p,
.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 2.08;
}

.article-body p,
.article-content p {
  max-width: 68ch;
  margin: 0 auto 22px;
}

.info-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 18px 52px rgba(52, 43, 36, 0.08);
}

.info-panel h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.check-list,
.article-content ul {
  display: grid;
  gap: 12px;
  max-width: 66ch;
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
}

.check-list li,
.article-content li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before,
.article-content li::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 0 104px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 42px rgba(52, 43, 36, 0.09);
}

.article-page {
  padding: 166px 0 86px;
}

.article-cover {
  max-width: 860px;
  margin: 56px auto 68px;
  aspect-ratio: 16 / 9.4;
}

.article-content {
  max-width: 860px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 66px;
}

.next-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 0 138px;
}

.next-links a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 234, 219, 0.58);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.next-links a:hover,
.next-links a:focus-visible {
  border-color: rgba(184, 107, 75, 0.34);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.next-links span {
  color: var(--clay);
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.next-links strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.68fr);
  gap: clamp(52px, 8vw, 104px);
  align-items: start;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(86px, 10vw, 122px);
  padding-top: clamp(74px, 8vw, 102px);
  border-top: 1px solid rgba(255, 250, 243, 0.18);
}

.map-copy h3 {
  max-width: 11em;
  margin: 0 auto;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
}

.map-copy h3 span,
.map-lead span {
  display: block;
}

.map-kicker {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.map-lead {
  display: grid;
  gap: 9px;
  max-width: 24ch;
  margin: 30px auto 36px;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.86;
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(56vw, 420px);
  min-height: 300px;
  border: 0;
  filter: saturate(0.86) contrast(0.96);
}

.contact-brand {
  margin-bottom: 24px;
}

.contact-brand img {
  mix-blend-mode: screen;
}

.contact-brand span {
  font-family: var(--font-display);
  font-weight: 400;
}

.contact h2 {
  color: var(--surface);
}

.contact p {
  max-width: 560px;
  margin: 28px auto 0;
  color: rgba(255, 250, 243, 0.74);
}

.contact-points {
  display: grid;
  gap: 16px;
  max-width: 570px;
  margin: 38px auto 0;
  padding: 0;
  color: rgba(255, 250, 243, 0.82);
  font-weight: 500;
  list-style: none;
}

.contact-points li {
  position: relative;
}

.contact-points li::before {
  display: none;
}

.contact-form {
  display: grid;
  gap: 17px;
  text-align: center;
  padding: clamp(28px, 4.5vw, 40px);
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.08);
  backdrop-filter: blur(16px);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 243, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--surface);
  background: rgba(255, 250, 243, 0.1);
  color-scheme: dark;
  outline: none;
  text-align: left;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 243, 0.48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 250, 243, 0.72);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
}

.floating-contact {
  position: fixed;
  z-index: 40;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(18px, 3vw, 32px);
  display: grid;
  gap: 8px;
  justify-items: end;
  pointer-events: none;
}

.float-button,
.float-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 243, 0.34);
  box-shadow: 0 16px 46px rgba(20, 25, 21, 0.24);
  pointer-events: auto;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.float-main {
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  color: var(--surface);
  background: rgba(52, 75, 62, 0.96);
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.float-main img {
  width: 34px;
  height: 34px;
  padding: 2px;
  border-radius: 50%;
  background: var(--surface);
  object-fit: contain;
  mix-blend-mode: screen;
}

.float-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--surface);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.float-line {
  background: #06c755;
}

.float-fb {
  background: #1877f2;
}

.float-button:hover,
.float-button:focus-visible,
.float-main:hover,
.float-main:focus-visible {
  box-shadow: 0 20px 58px rgba(20, 25, 21, 0.3);
  transform: translateY(-3px);
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }

  .hero-gallery {
    max-width: 720px;
  }

  .service-showcase,
  .glimpse,
  .path-grid,
  .hub-grid,
  .article-grid,
  .map-panel,
  .detail-hero,
  .story-layout,
  .gallery-strip,
  .next-links,
  .process,
  .contact-inner,
  .case-feature {
    grid-template-columns: 1fr;
  }

  .service-photo,
  .process-heading {
    position: static;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 60px;
    line-height: 1.9;
  }

  .site-header {
    justify-content: center;
    padding: 14px 18px;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 12px;
    border-radius: 6px;
  }

  .site-nav .nav-cta {
    border-radius: 6px;
    padding: 15px 12px;
    color: var(--surface);
    border-color: var(--sage-dark);
    background: var(--sage-dark);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--mist);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 48% 42%, rgba(255, 250, 243, 0.08), transparent 44%),
      linear-gradient(90deg, rgba(36, 31, 26, 0.86) 0%, rgba(36, 31, 26, 0.64) 64%, rgba(36, 31, 26, 0.24) 100%),
      linear-gradient(0deg, rgba(52, 43, 36, 0.44), rgba(52, 43, 36, 0.08));
  }

  .hero-content {
    width: min(100% - 44px, var(--max));
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 74px;
  }

  .hero .hero-brand {
    display: none;
  }

  .hero .eyebrow {
    margin-top: 0;
    margin-bottom: 26px;
  }

  .hero h1 {
    max-width: 9.5em;
    font-size: 40px;
    line-height: 1.48;
    text-wrap: balance;
  }

  .hero-lede {
    max-width: 31ch;
    margin-top: 34px;
    font-size: 16px;
    line-height: 2.08;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 290px);
    margin: 46px auto 0;
  }

  .hero-tags {
    display: none;
  }

  .button {
    min-height: 46px;
    padding: 11px 14px;
  }

  .section-wrap {
    width: min(100% - 44px, var(--max));
    padding: 108px 0;
  }

  .page-hero {
    width: min(100% - 44px, var(--max));
    display: grid;
    align-content: center;
    padding: 132px 0 72px;
  }

  .subpage .page-hero {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 40px;
    line-height: 1.5;
  }

  .detail-hero,
  .article-page {
    width: min(100% - 44px, var(--max));
    padding-top: 136px;
    padding-bottom: 74px;
  }

  .detail-section,
  .next-links {
    width: min(100% - 44px, var(--max));
  }

  .detail-hero h1,
  .article-page h1 {
    font-size: 38px;
    line-height: 1.52;
  }

  .detail-hero p:not(.eyebrow),
  .article-lede {
    font-size: 16px;
  }

  .page-section {
    width: min(100% - 44px, var(--max));
    padding: 72px 0 108px;
  }

  .path-card,
  .hub-card,
  .article-card {
    min-height: auto;
    padding: 44px 24px;
  }

  .glimpse {
    gap: 56px;
    padding-top: 48px;
  }

  .glimpse h2 {
    font-size: 37px;
    line-height: 1.56;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    gap: 18px;
  }

  .hero-shot,
  .hero-shot-large {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .hero-shot:nth-child(2),
  .hero-shot:nth-child(3) {
    grid-column: auto;
    align-self: stretch;
    margin: 0;
  }

  .hero-shot-large {
    aspect-ratio: 4 / 4.7;
  }

  .hero-shot:not(.hero-shot-large) {
    aspect-ratio: 16 / 10.5;
  }

  .hero-shot span {
    right: 14px;
    bottom: 13px;
    left: 14px;
    font-size: 13px;
  }

  .intro,
  .service-grid,
  .case-rail,
  .flow-panel {
    grid-template-columns: 1fr;
  }

  .intro-statement {
    font-size: 38px;
    line-height: 1.62;
  }

  .section-heading h2,
  .glimpse h2,
  .contact h2,
  .future-note h2,
  .case-feature-copy h3 {
    font-size: 38px;
    line-height: 1.52;
  }

  .flow-copy h3 {
    font-size: 33px;
    line-height: 1.52;
  }

  .service-photo img {
    aspect-ratio: 16 / 10;
  }

  .detail-media img {
    aspect-ratio: 4 / 4.7;
  }

  .story-layout {
    padding-bottom: 58px;
  }

  .gallery-strip {
    padding-bottom: 68px;
  }

  .article-cover {
    margin: 36px auto 42px;
    aspect-ratio: 4 / 3.1;
  }

  .article-body h2,
  .article-content h2 {
    font-size: 28px;
  }

  .next-links {
    padding-bottom: 86px;
  }

  .service-card {
    min-height: auto;
    padding: 44px 14px 48px;
  }

  .case-feature-media::before {
    inset: 10px -10px -10px 10px;
  }

  .case-feature-media img {
    aspect-ratio: 4 / 4.7;
  }

  .case-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline li {
    grid-template-columns: 1fr;
    padding: 44px 12px 48px;
  }

  .timeline small {
    grid-column: auto;
  }

  .flow-visual img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .flow-grid,
  .construction-steps {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .floating-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    justify-items: stretch;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 16px;
    gap: 8px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .subpage .floating-contact {
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: none;
  }

  .float-main {
    display: none;
  }

  .float-main img {
    display: none;
  }

  .float-button {
    display: inline-flex;
    width: auto;
    height: 46px;
    border-radius: 999px;
    font-size: 0;
    letter-spacing: 0;
  }

  .float-line {
    background: #06c755;
  }

  .float-fb {
    background: #1877f2;
  }

  .float-line::before,
  .float-fb::before {
    content: "LINE 諮詢";
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .float-fb::before {
    content: "FB 洽詢";
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .footer-links {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subline {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-brand {
    max-width: 100%;
    padding-right: 12px;
  }

  .hero-brand img {
    width: 38px;
    height: 38px;
  }

  .hero-brand strong {
    font-size: 14px;
  }

  .hero-brand small {
    font-size: 9px;
  }

  .eyebrow {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .intro-statement,
  .section-heading h2,
  .glimpse h2,
  .contact h2,
  .future-note h2,
  .case-feature-copy h3 {
    font-size: 35px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    padding: 6px 10px;
    font-size: 12px;
  }

  .section-wrap {
    width: min(100% - 44px, var(--max));
    padding: 104px 0;
  }

  .glimpse {
    padding-top: 48px;
  }

  .case-rail {
    gap: 10px;
  }

  .case-card {
    padding: 8px;
  }

  .flow-tabs {
    width: 100%;
  }

  .flow-tabs button {
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
