/* =============================================================
   Sona Media 星媒体 — Gold-Foil Lacquer Editorial
   Static preview stylesheet. No preprocessor, no build step.
   Tokens per HANDOFF §2 (verbatim). Layout per HANDOFF §3.
   ============================================================= */

/* ------------------------------------------------------------- */
/* 1. TOKENS  (HANDOFF §2 — copied verbatim)                     */
/* ------------------------------------------------------------- */
:root {
  /* ---- PRIMITIVE: raw values, never used directly in components ---- */
  --p-gold:        #c9a227; /* imperial gold — DECOR on light; text only on dark */
  --p-gold-dark:   #b8922a;
  --p-gold-ink:    #7a5c12; /* foil-shadow bronze — the LEGIBLE gold for light grounds */
  --p-gold-deep:   #8a6d16; /* large-text-only gold on light */
  --p-cream:       #f8f4ed;
  --p-cream-dark:  #f0ebe0;
  --p-sand:        #e8dcc8; /* page background */
  --p-ink:         #0c0c0c;
  --p-ink-darker:  #080808;
  --p-ink-text:    #2d2416; /* warm near-black body ink */
  --p-ink-muted:   #555555;
  --p-white:       #ffffff;
  --p-border:      #d4c9b9;
  --p-border-gold: rgba(201,162,39,.35);
  --p-seal:        #9e2b25; /* 印章 vermilion */

  /* ---- SEMANTIC: purpose-named, what components reference ---- */
  --color-surface:            var(--p-sand);      /* base page */
  --color-surface-raised:     var(--p-cream);     /* cards, panels */
  --color-surface-alt:        var(--p-cream-dark);
  --color-surface-inverse:    var(--p-ink);       /* dark sections, footer */
  --color-surface-inverse-2:  var(--p-ink-darker);

  --color-text-strong:        var(--p-ink-text);  /* 13.9:1 on cream — AA */
  --color-text-muted:         var(--p-ink-muted); /* 6.8:1 on cream — AA */
  --color-text-on-inverse:    var(--p-white);     /* 19.6:1 on ink — AA */
  --color-text-on-inverse-mut:#dddddd;            /* muted on dark — AA */

  --color-gold-decor:         var(--p-gold);      /* bars, glyphs, foil — DECOR only on light */
  --color-gold-text-light:    var(--p-gold-ink);  /* 5.69:1 cream / 4.60:1 sand — AA */
  --color-gold-text-lg-light: var(--p-gold-deep); /* 4.48:1 cream — AA-lg (≥24px only) */
  --color-gold-on-dark:       var(--p-gold);      /* 8.09:1 on ink — AA */

  --color-action:             var(--p-ink);       /* primary button fill */
  --color-action-text:        var(--p-white);     /* on ink — AA */
  --color-action-gold:        var(--p-gold);      /* gold button fill */
  --color-action-gold-text:   var(--p-ink);       /* dark-on-gold 8.09:1 — AA (NEVER white) */

  --color-border:             var(--p-border);
  --color-border-gold:        var(--p-border-gold);
  --color-seal:               var(--p-seal);      /* 6.78:1 on cream — AA if ever textual */

  --color-focus:              var(--p-gold-ink);  /* focus ring on LIGHT grounds — 3:1+ */
  --color-focus-inverse:      var(--p-gold);      /* focus ring on DARK grounds — 8:1 */

  /* ---- TYPE ---- */
  --font-display: "Playfair Display", "Noto Serif SC", Georgia, serif;
  --font-body:    "Inter", "Noto Sans SC", system-ui, sans-serif;
  --font-cjk-display: "Noto Serif SC", "Playfair Display", serif;
  --font-cjk-body:    "Noto Sans SC", "Inter", sans-serif;

  --fs-display: clamp(2.75rem, 1.6rem + 5.1vw, 4.5rem);   /* 44 → 72px  hero H1 */
  --fs-h2:      clamp(1.9rem,  1.3rem + 2.7vw, 2.75rem);  /* 30 → 44px  section */
  --fs-h3:      clamp(1.25rem, 1.05rem + .9vw, 1.6rem);   /* 20 → 25.6  card head */
  --fs-lede:    clamp(1.1rem,  1.0rem + .45vw, 1.35rem);  /* 17.6 → 21.6 */
  --fs-body:    clamp(1rem,    0.97rem + .13vw, 1.0625rem);/* 16 → 17 */
  --fs-small:   0.8125rem;  /* 13px captions/meta */
  --fs-eyebrow: 0.75rem;    /* 12px, uppercase, LS 1.5px */
  --fs-stat:    clamp(2.5rem, 1.4rem + 4.9vw, 4rem);      /* 40 → 64px numerals */
  --fs-price:   clamp(1.75rem, 1.3rem + 2vw, 2.5rem);     /* 28 → 40px */

  --lh-tight: 1.1;   --lh-head: 1.2;   --lh-body: 1.65;   --lh-cjk: 1.85;
  --ls-eyebrow: .15em;  --ls-pillar: .22em;  --ls-nav: .1em;

  /* ---- SPACING (8pt base, 4pt fine; rem for reflow) ---- */
  --space-1: .25rem;  --space-2: .5rem;  --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.5rem;  --space-6: 2rem;   --space-8: 3rem;   --space-10: 4rem;
  --space-12: 6rem;   --space-16: 8rem;  /* section vertical rhythm */
  --content-max: 1200px;  --content-narrow: 760px;  --gutter: clamp(1rem,4vw,3rem);

  /* ---- RADII (restrained; luxury = crisp) ---- */
  --radius-sm: 2px;  --radius-md: 4px;  --radius-lg: 8px;  --radius-pill: 999px;

  /* ---- SHADOWS (warm-tinted, soft) ---- */
  --shadow-sm: 0 1px 2px rgba(45,36,22,.06), 0 1px 3px rgba(45,36,22,.08);
  --shadow-md: 0 4px 12px rgba(45,36,22,.10), 0 2px 4px rgba(45,36,22,.06);
  --shadow-lg: 0 12px 32px rgba(45,36,22,.14), 0 4px 8px rgba(45,36,22,.08);
  --shadow-gold: 0 8px 24px rgba(201,162,39,.22); /* gold cards on dark */

  /* ---- MOTION ---- */
  --dur-fast: 150ms;  --dur-base: 250ms;  --dur-slow: 400ms;
  --ease-standard: cubic-bezier(.2,0,0,1);
  --ease-out: cubic-bezier(.16,1,.3,1);   /* luxe settle */
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

/* ------------------------------------------------------------- */
/* 2. RESET + BASE                                               */
/* ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-strong);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* field lesson #2 — never hidden, never on html */
}

body.is-nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-head);
  color: inherit;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-gold-text-light); }
a:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

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

::selection { background: var(--p-gold); color: var(--p-ink); }

/* CJK-aware defaults */
:lang(zh-Hans) {
  font-family: var(--font-cjk-body);
  line-height: var(--lh-cjk);
  text-justify: inter-ideograph;
}

/* ------------------------------------------------------------- */
/* 3. UTILITIES                                                  */
/* ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 200;
  padding: var(--space-3) var(--space-5);
  background: var(--color-action);
  color: var(--color-action-text);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus-visible {
  top: var(--space-4);
  color: var(--color-action-text);
  outline: 2px solid var(--color-focus-inverse);
  outline-offset: 2px;
}

/* ------------------------------------------------------------- */
/* 4. SECTION SHELL                                              */
/* ------------------------------------------------------------- */
.section {
  padding-block: clamp(var(--space-10), 8vw, var(--space-16));
  position: relative;
}

.section--sand { background: var(--color-surface); color: var(--color-text-strong); }
.section--cream { background: var(--color-surface-raised); color: var(--color-text-strong); }
.section--ink {
  background: var(--color-surface-inverse);
  color: var(--color-text-on-inverse);
  position: relative;
  overflow: hidden;
}
.section--ink::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 30% 0%, rgba(201,162,39,.08), transparent 60%);
  pointer-events: none;
}

.section__head {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 6vw, var(--space-12));
}
.section__head--dark { color: var(--color-text-on-inverse); }

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 auto var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-gold-text-light);
}
.section__kicker--dark { color: var(--color-gold-on-dark); }
.section__kicker--sub { display: block; text-align: center; margin-bottom: var(--space-2); }
.section__kicker [lang="zh-Hans"] {
  font-family: var(--font-cjk-body);
  letter-spacing: .1em;
  text-transform: none;
  color: inherit;
  opacity: .85;
}

.section__h2 {
  font-size: var(--fs-h2);
  letter-spacing: .08em;
  line-height: 1.15;
}
.section__h2-cn {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-cjk-display);
  font-size: .7em;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: .05em;
}
.section--ink .section__h2-cn,
.section--ink .section__sub-cn { color: var(--color-text-on-inverse-mut); }

.section__bar {
  display: block;
  width: 64px;
  height: 4px;
  margin: var(--space-5) auto 0;
  background: var(--color-gold-decor);
  background: linear-gradient(90deg, var(--p-gold-dark), var(--p-gold), var(--p-gold-dark));
  border-radius: 2px;
}

.section__sub-cn {
  margin-top: var(--space-5);
  font-family: var(--font-cjk-display);
  font-size: var(--fs-lede);
}
.section__sub-en {
  margin-top: var(--space-2);
  font-size: var(--fs-body);
  color: var(--color-text-on-inverse-mut);
  letter-spacing: .02em;
}

.section-opener {
  display: block;
  margin: 0 auto var(--space-8);
  color: var(--color-gold-decor);
  opacity: .28;
}
.section-opener--dark { opacity: .35; }
.section-opener--flip { transform: scaleY(-1); margin-top: var(--space-8); margin-bottom: 0; }

.lede {
  max-width: var(--content-narrow);
  margin: var(--space-6) auto 0;
  font-size: var(--fs-lede);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}
.section--ink .lede { color: var(--color-text-on-inverse-mut); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-text-light);
  margin: 0;
}

/* ------------------------------------------------------------- */
/* 5. BUTTONS                                                    */
/* ------------------------------------------------------------- */
.btn {
  --btn-h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: var(--btn-h);
  min-width: 44px;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}
.btn:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.btn--gold {
  background: var(--color-action-gold);
  color: var(--color-action-gold-text);
  border-color: var(--p-gold-dark);
}
.btn--gold:hover {
  background: var(--p-gold-dark);
  color: var(--color-action-gold-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ink {
  background: var(--color-action);
  color: var(--color-action-text);
  border-color: var(--color-action);
}
.btn--ink:hover {
  background: var(--p-ink-darker);
  color: var(--color-action-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-on-inverse);
  border: 1px solid rgba(255,255,255,.7);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--color-text-on-inverse);
  border-color: var(--p-white);
}

.section--ink .btn:focus-visible,
.hero .btn:focus-visible,
.cta-banner .btn:focus-visible,
.site-footer .btn:focus-visible {
  outline: 2px solid var(--color-focus-inverse);
  outline-offset: 2px;
}

/* ------------------------------------------------------------- */
/* 6. NAV                                                        */
/* ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: color var(--dur-base) var(--ease-out);
}

.nav {
  position: relative;
  z-index: 1;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(248,244,237,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.site-header.is-scrolled .nav::before {
  background: rgba(248,244,237,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 68px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px; /* tap target */
  color: var(--p-white);
  transition: color var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled .nav__brand { color: var(--color-text-strong); }
.nav__brand:hover { color: var(--color-gold-on-dark); }
.site-header.is-scrolled .nav__brand:hover { color: var(--color-gold-text-light); }

.nav__mark {
  width: 21px;
  height: 40px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__wordmark-en {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: .12em;
  font-variant-caps: small-caps;
}
.nav__wordmark-cn {
  font-family: var(--font-cjk-display);
  font-size: 0.6875rem;
  letter-spacing: .18em;
  color: var(--color-gold-on-dark);
  margin-top: 2px;
}
.site-header.is-scrolled .nav__wordmark-cn { color: var(--color-gold-text-light); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-md);
  color: var(--p-white);
}
.site-header.is-scrolled .nav__toggle { color: var(--color-text-strong); }
.nav__toggle:focus-visible {
  outline: 2px solid var(--color-focus-inverse);
  outline-offset: 2px;
}
.site-header.is-scrolled .nav__toggle:focus-visible {
  outline-color: var(--color-focus);
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast) var(--ease-standard);
}
body.is-nav-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.is-nav-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
body.is-nav-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__links {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.nav__link {
  display: inline-block;
  padding: var(--space-2) 0;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--p-white);
  position: relative;
  min-height: 44px;
  line-height: 44px;
}
.site-header.is-scrolled .nav__link { color: var(--color-text-strong); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 8px;
  height: 2px;
  background: var(--color-gold-on-dark);
  transition: left var(--dur-base) var(--ease-out),
              right var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled .nav__link::after { background: var(--color-gold-text-light); }
.nav__link:hover::after,
.nav__link:focus-visible::after {
  left: 0; right: 0;
}
.nav__link:hover { color: var(--color-gold-on-dark); }
.site-header.is-scrolled .nav__link:hover { color: var(--color-gold-text-light); }

.nav__cta {
  min-height: 44px;
  padding: var(--space-2) var(--space-5);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-nav);
}

.nav__menu-divider,
.nav__chips { display: none; }

/* ------------------------------------------------------------- */
/* 7. HERO                                                       */
/* ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding: clamp(6rem, 12vh, 8rem) var(--gutter) var(--space-10);
  color: var(--color-text-on-inverse);
  background: linear-gradient(180deg, var(--p-ink) 0%, var(--p-ink-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Vertical scrim per HANDOFF plus a soft radial pool behind the headline
     block so gold type never sits directly on the gold screen in the photo. */
  background:
    radial-gradient(72% 62% at 50% 52%, rgba(8,8,8,.58) 0%, rgba(8,8,8,0) 72%),
    linear-gradient(180deg,
      rgba(8,8,8,.62) 0%,
      rgba(8,8,8,.42) 45%,
      rgba(8,8,8,.86) 100%);
}

.hero__cloud {
  position: absolute;
  top: 8%;
  left: 4%;
  width: clamp(160px, 22vw, 260px);
  color: var(--color-gold-decor);
  opacity: .18;
  pointer-events: none;
  z-index: 0;
  animation: cloud-drift 24s var(--ease-in-out) infinite alternate;
}

@keyframes cloud-drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(24px, -6px, 0); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-narrow);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.eyebrow--hero {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
  color: var(--color-gold-on-dark);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .25em;
  font-size: var(--fs-eyebrow);
  margin: 0 auto;
}
.eyebrow--hero .eyebrow__rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-gold-on-dark);
}
.eyebrow--hero .eyebrow__text { text-transform: uppercase; }

.hero__h1 {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--p-white);
  margin: 0;
}
.hero__h1-line { display: block; }
.hero__h1-accent {
  font-style: italic;
  color: var(--color-gold-on-dark);
  font-weight: 700;
}

.pillars {
  display: grid;
  grid-template-columns: minmax(min(14rem, 100%), 1fr);
  gap: var(--space-5);
  text-align: center;
  margin: 0;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-2);
}
.pillar__label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: var(--ls-pillar);
  color: var(--color-gold-on-dark);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 0 18px rgba(0,0,0,.35);
}
.pillar__cn {
  font-family: var(--font-cjk-display);
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--color-gold-on-dark);
  text-shadow: 0 1px 2px rgba(0,0,0,.55);
}
.pillar__en {
  font-size: 0.9375rem;
  color: var(--color-text-on-inverse-mut);
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-6) auto 0;
  color: var(--color-gold-on-dark);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  min-height: 44px; /* tap target */
}
.hero__scroll-arrow {
  animation: scroll-bob 2s var(--ease-in-out) infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* Sits at the TOP of the hero: while any of its first 96px are in view the
   nav stays transparent; once scrolled past, the observer adds .is-scrolled. */
.hero__sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 96px;
  pointer-events: none;
}

/* ------------------------------------------------------------- */
/* 8. ABOUT                                                      */
/* ------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(min(20rem, 100%), 1fr);
  gap: var(--space-6);
  align-items: start;
}

.about-col__h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--color-gold-text-light);
  margin-bottom: var(--space-4);
}

.about-col__en {
  color: var(--color-text-strong);
  margin-bottom: var(--space-4);
}
.about-col__cn {
  color: var(--color-text-muted);
  font-family: var(--font-cjk-body);
  line-height: var(--lh-cjk);
}

.about-divider {
  height: 16px;
  color: var(--color-gold-decor);
  opacity: .35;
}

.badge-pill {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
  margin: clamp(var(--space-8), 6vw, var(--space-10)) auto 0;
  width: max-content;
  max-width: 100%;
  padding: var(--space-3) var(--space-6);
  background: var(--color-action);
  color: var(--color-gold-on-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
.badge-pill__dot { color: var(--color-gold-on-dark); }

/* -- PROCESS -- */
.process {
  margin-top: clamp(var(--space-10), 8vw, var(--space-12));
}
.process__h3 {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--color-gold-text-light);
  margin-bottom: var(--space-8);
}
.process__grid {
  display: grid;
  grid-template-columns: minmax(min(16rem, 100%), 1fr);
  gap: var(--space-5);
}
.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-md);
}
.process-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-gold-text-light);
  letter-spacing: .1em;
}
.process-card__watermark {
  position: absolute;
  top: var(--space-3);
  right: var(--space-4);
  font-family: var(--font-cjk-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-gold-decor);
  opacity: .12;
  pointer-events: none;
  user-select: none;
}
.process-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-text-strong);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-3);
}
.process-card__cn {
  font-family: var(--font-cjk-display);
  font-size: 0.7em;
  color: var(--color-gold-text-light);
  letter-spacing: .05em;
}
.process-card__en {
  color: var(--color-text-strong);
  font-size: 0.9375rem;
}
.process-card__desc-cn {
  color: var(--color-text-muted);
  font-family: var(--font-cjk-body);
  font-size: 0.9375rem;
  line-height: var(--lh-cjk);
}

/* ------------------------------------------------------------- */
/* 9. SERVICES (dark)                                            */
/* ------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: minmax(min(18rem, 100%), 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  color: var(--color-text-on-inverse);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold-on-dark);
  background: rgba(201,162,39,.04);
  box-shadow: var(--shadow-gold);
}

.service-card--featured {
  border: 1px solid var(--color-gold-on-dark);
  box-shadow: var(--shadow-gold);
  background: rgba(201,162,39,.06);
}
.service-card__ribbon {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: var(--color-gold-on-dark);
  color: var(--p-ink);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  display: inline-flex;
  gap: 4px;
}
.service-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.service-card__title {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: .05em;
}
.service-card__title span:first-child {
  font-family: var(--font-cjk-display);
  font-weight: 600;
}
.service-card__title-en {
  color: var(--color-text-on-inverse-mut);
  font-family: var(--font-display);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: .1em;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  color: var(--color-gold-on-dark);
  font-family: var(--font-display);
}
.service-card__price-num {
  font-size: var(--fs-price);
  font-weight: 700;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.service-card__price-unit {
  font-family: var(--font-cjk-body);
  font-size: 0.9375rem;
  color: var(--color-text-on-inverse-mut);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--color-text-on-inverse);
  font-family: var(--font-cjk-body);
  font-size: 0.9375rem;
  line-height: var(--lh-cjk);
}
.service-card__features li {
  position: relative;
  padding-left: var(--space-5);
}
.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 2px;
  background: var(--color-gold-on-dark);
}

.service-card__foot {
  font-family: var(--font-cjk-body);
  color: var(--color-gold-on-dark);
  font-size: 0.9375rem;
  letter-spacing: .05em;
}

.service-card__cta {
  align-self: stretch;
  margin-top: auto;
}

.service-card__tiers {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-card__tier {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  color: var(--color-gold-on-dark);
  font-family: var(--font-display);
}
.service-card__tier-name {
  font-family: var(--font-cjk-body);
  font-size: 0.9375rem;
  color: var(--color-text-on-inverse-mut);
  min-width: 5rem;
}
.service-card__tier-note {
  font-family: var(--font-cjk-body);
  font-size: 0.8125rem;
  color: var(--color-text-on-inverse-mut);
  line-height: var(--lh-cjk);
  margin-bottom: var(--space-2);
}

/* WIDE ROW — premium tier */
.wide-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(135deg, rgba(201,162,39,.10), rgba(201,162,39,.03));
  border: 1px solid var(--color-gold-on-dark);
  border-radius: var(--radius-md);
  color: var(--color-text-on-inverse);
  z-index: 1;
}
.wide-row__icon { font-size: 2.25rem; line-height: 1; }
.wide-row__title {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: .05em;
}
.wide-row__title span:first-child { font-family: var(--font-cjk-display); }
.wide-row__title-en {
  color: var(--color-text-on-inverse-mut);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: .1em;
}
.wide-row__sub {
  color: var(--color-text-on-inverse-mut);
  font-family: var(--font-cjk-body);
  margin-top: var(--space-2);
}
.wide-row__meta {
  margin-top: var(--space-3);
  color: var(--color-gold-on-dark);
  font-family: var(--font-cjk-body);
  letter-spacing: .05em;
}
.wide-row__price {
  color: var(--color-gold-on-dark);
  font-family: var(--font-display);
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.wide-row__price-num {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.25rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.wide-row__price-unit { font-family: var(--font-cjk-body); font-size: 1rem; }
.wide-row__cta { align-self: stretch; }

/* ------------------------------------------------------------- */
/* 10. PORTFOLIO / STORIES + IMPACT                              */
/* ------------------------------------------------------------- */
.stories__grid {
  display: grid;
  grid-template-columns: minmax(min(18rem, 100%), 1fr);
  gap: var(--space-6);
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.story-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-md);
}
.story-card__corner {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  opacity: .9;
}
.story-card__label {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: var(--fs-eyebrow);
  color: var(--color-text-muted);
}
.story-card__label-cn {
  font-family: var(--font-cjk-body);
  color: var(--color-gold-text-light);
  letter-spacing: .1em;
  text-transform: none;
  font-size: 0.8125rem;
}
.story-card__stat {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: 700;
  color: var(--color-gold-text-light);
  line-height: 1;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.story-card__desc {
  color: var(--color-text-strong);
  font-size: 0.9375rem;
}
.story-card__desc-cn {
  color: var(--color-text-muted);
  font-family: var(--font-cjk-body);
  font-size: 0.875rem;
  line-height: var(--lh-cjk);
}
.story-card__title {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-head);
  color: var(--color-gold-text-light);
}
.story-card__title-cn {
  font-family: var(--font-cjk-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--color-text-muted);
}
.story-card__foot {
  color: var(--color-gold-decor);
  opacity: .5;
  margin-top: auto;
}

.stories__disclaimer {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-align: center;
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

/* IMPACT BAND */
.impact {
  background: var(--color-surface-inverse);
  color: var(--color-text-on-inverse);
  padding-block: clamp(var(--space-10), 8vw, var(--space-12));
  margin-top: clamp(var(--space-10), 8vw, var(--space-12));
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.impact::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 30% 0%, rgba(201,162,39,.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.impact__h3 {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: var(--space-8);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  text-align: center;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
}
.impact-stat__num {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: 700;
  color: var(--color-gold-on-dark);
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.impact-stat__label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-text-on-inverse);
  margin-top: var(--space-2);
}
.impact-stat__label-cn {
  font-family: var(--font-cjk-body);
  font-size: 0.8125rem;
  letter-spacing: .1em;
  color: var(--color-text-on-inverse-mut);
}

/* ------------------------------------------------------------- */
/* 11. CTA BANNER (gold)                                         */
/* ------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--p-gold), var(--p-gold-dark));
  color: var(--p-ink);
  padding-block: clamp(var(--space-8), 6vw, var(--space-10));
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__cloud {
  position: absolute;
  right: -40px;
  top: -20px;
  width: clamp(160px, 60vw, 300px);
  color: var(--p-ink);
  opacity: .08;
  z-index: 0;
}
/* The watermark deliberately bleeds past the right edge; clip it here so it
   never widens the layout at 320px. */
.cta-banner { overflow: hidden; }
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--p-ink);
  max-width: 40ch;
  line-height: 1.15;
}
.cta-banner__sub {
  color: rgba(12,12,12,.82);
  font-size: var(--fs-body);
  font-weight: 500;
  max-width: 44ch;
}
.cta-banner__cta { align-self: center; }
.cta-banner .btn--ink:focus-visible {
  outline: 2px solid var(--p-ink);
  outline-offset: 3px;
}

/* ------------------------------------------------------------- */
/* 12. CONTACT                                                   */
/* ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(min(20rem, 100%), 1fr);
  gap: clamp(var(--space-6), 5vw, var(--space-10));
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field__label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-strong);
}
.field__label-cn {
  font-family: var(--font-cjk-body);
  color: var(--color-gold-text-light);
  letter-spacing: .05em;
  text-transform: none;
  margin-left: var(--space-2);
}
.field__label-opt {
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: .05em;
  text-transform: none;
  font-size: 0.75rem;
  margin-left: var(--space-2);
}
.field__input {
  width: 100%;
  min-height: 48px;
  padding: var(--space-3) var(--space-4);
  background: var(--p-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-strong);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: border-color var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}
.field__input:focus-visible {
  outline: none;
  border-color: var(--color-gold-text-light);
  box-shadow: 0 0 0 2px var(--color-focus);
}
.field__input--textarea { min-height: 140px; resize: vertical; line-height: var(--lh-body); }

.field.is-invalid .field__input {
  border-color: var(--color-seal);
  box-shadow: 0 0 0 1px var(--color-seal);
}
.field__error {
  color: var(--color-seal);
  font-size: var(--fs-small);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
/* display:flex above would otherwise beat the UA [hidden] rule */
.field__error[hidden] { display: none; }
.field__error::before {
  content: "!";
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--color-seal);
  color: var(--p-cream);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  min-width: 18px;
}

.contact-form__submit {
  align-self: stretch;
  margin-top: var(--space-2);
}
.contact-form__submit[aria-busy="true"] {
  opacity: .7;
  cursor: wait;
}

.contact-form__status {
  min-height: 1.5em;
  font-size: var(--fs-small);
  font-weight: 500;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  display: none;
}
.contact-form__status[data-state="sending"] {
  display: block;
  background: rgba(122,92,18,.08);
  color: var(--color-text-strong);
}
.contact-form__status[data-state="success"] {
  display: block;
  background: rgba(122,92,18,.10);
  color: var(--color-text-strong);
  border-left: 3px solid var(--color-gold-text-light);
}
.contact-form__status[data-state="error"] {
  display: block;
  background: rgba(158,43,37,.08);
  color: var(--color-seal);
  border-left: 3px solid var(--color-seal);
}
.contact-form__status a { color: var(--color-seal); text-decoration: underline; }

/* CONTACT INFO */
.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-info__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-4);
  align-items: start;
}
.contact-info__icon {
  color: var(--color-gold-text-light);
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 2px;
}
.contact-info__label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.contact-info__label [lang="zh-Hans"] {
  color: var(--color-gold-text-light);
  margin-left: var(--space-2);
  text-transform: none;
  letter-spacing: .05em;
}
.contact-info__value {
  color: var(--color-text-strong);
  font-size: var(--fs-body);
}
.contact-info__value a {
  color: var(--color-text-strong);
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* tap target */
}
.contact-info__value a:hover { color: var(--color-gold-text-light); }

.contact-info__hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-1);
  border-left: 1px dotted var(--color-border);
  padding-left: var(--space-4);
}
.contact-info__hours li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--color-text-strong);
  font-size: 0.9375rem;
  position: relative;
}
.contact-info__hours li::before {
  content: "";
  position: absolute;
  left: calc(var(--space-4) * -1 - 3px);
  top: .6em;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--color-gold-decor);
}

.quick-links {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.quick-links__label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-gold-text-light);
  margin-bottom: var(--space-3);
}
.quick-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}
.quick-links a {
  color: var(--color-text-strong);
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.quick-links a:hover { color: var(--color-gold-text-light); }

/* ------------------------------------------------------------- */
/* 13. FOOTER                                                    */
/* ------------------------------------------------------------- */
.site-footer {
  background: var(--color-surface-inverse-2);
  color: var(--color-text-on-inverse);
  padding-block: var(--space-10);
  position: relative;
}
.site-footer__divider {
  color: var(--color-gold-decor);
  opacity: .3;
  margin-bottom: var(--space-8);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(min(16rem, 100%), 1fr);
  gap: var(--space-8);
  text-align: center;
}
.site-footer__brand { display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.site-footer__logo { height: 60px; width: auto; max-width: 220px; }
.site-footer__tagline {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  color: var(--color-text-on-inverse-mut);
  font-size: var(--fs-small);
}
.site-footer__tagline [lang="zh-Hans"] { color: var(--color-gold-on-dark); }

.site-footer__col-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold-on-dark);
  margin-bottom: var(--space-3);
}

.site-footer__nav ul,
.site-footer__contact ul,
.site-footer__hours ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}
.site-footer__nav a,
.site-footer__contact a {
  color: var(--color-text-on-inverse-mut);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer__nav a:hover,
.site-footer__contact a:hover { color: var(--color-gold-on-dark); }

.site-footer__contact { font-style: normal; }
.site-footer__contact li {
  color: var(--color-text-on-inverse-mut);
  font-size: 0.9375rem;
}
.site-footer__hours li {
  display: flex;
  gap: var(--space-3);
  color: var(--color-text-on-inverse-mut);
  font-size: 0.9375rem;
}
.site-footer__hours li span:first-child {
  color: var(--color-gold-on-dark);
  min-width: 4rem;
  text-align: right;
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.site-footer__seal { line-height: 0; }
.site-footer__copy {
  color: var(--color-text-on-inverse-mut);
  font-size: var(--fs-small);
  letter-spacing: .05em;
}

.site-footer a:focus-visible,
.site-footer button:focus-visible {
  outline: 2px solid var(--color-focus-inverse);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ------------------------------------------------------------- */
/* 14. RESPONSIVE — 768 tablet / 1024 desktop / 1440 large       */
/* ------------------------------------------------------------- */

/* Mobile menu overlay (<768) */
/* Nav collapses below 1024: at 768–1023 the wordmark + 5 links + CTA
   overlap, so tablets get the same overlay menu as phones. */
@media (max-width: 1023.98px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    padding: 6rem var(--gutter) var(--space-8);
    background: rgba(12,12,12,.96);
    color: var(--p-white);
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out),
                visibility 0s linear var(--dur-base);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }
  body.is-nav-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out),
                visibility 0s;
    z-index: 40;
  }
  .nav__links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }
  .nav__links li { width: 100%; }
  .nav__link {
    display: block;
    min-height: 56px;
    line-height: 56px;
    color: var(--p-white);
    text-align: center;
    font-size: 1rem;
    letter-spacing: .2em;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0;
  }
  .site-header.is-scrolled body.is-nav-open .nav__link,
  body.is-nav-open .nav__link { color: var(--p-white); }
  .nav__link::after { display: none; }
  .nav__link:hover { color: var(--color-gold-on-dark); }
  .nav__cta {
    align-self: stretch;
    margin-top: var(--space-5);
    width: 100%;
  }
  .nav__menu-divider {
    display: block;
    color: var(--color-gold-on-dark);
    opacity: .4;
    margin-top: var(--space-6);
  }
  .nav__chips {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    margin-top: var(--space-5);
  }
  .nav__chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-on-inverse-mut);
    font-size: var(--fs-small);
    min-height: 44px;
    padding: var(--space-2) var(--space-3);
  }
  .nav__chip span[aria-hidden="true"] { color: var(--color-gold-on-dark); }
  .nav__chip:hover { color: var(--color-gold-on-dark); }
}

/* Tablet ≥768 */
@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, minmax(min(10rem, 100%), 1fr));
    position: relative;
  }
  .pillar { position: relative; }
  .pillar + .pillar::before {
    content: "";
    position: absolute;
    left: 0; top: 15%;
    height: 70%;
    width: 1px;
    background: var(--color-gold-on-dark);
    opacity: .3;
  }

  .process__grid { grid-template-columns: repeat(2, minmax(min(14rem, 100%), 1fr)); }

  .services__grid { grid-template-columns: repeat(3, minmax(min(14rem, 100%), 1fr)); align-items: stretch; }

  /* Tablet: icon + copy on top, price + CTA share the row beneath */
  .wide-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "icon body body"
      "icon price cta";
    gap: var(--space-4) var(--space-6);
    text-align: left;
    padding: var(--space-6) var(--space-8);
  }
  .wide-row__icon  { grid-area: icon; align-self: start; }
  .wide-row__body  { grid-area: body; }
  .wide-row__price { grid-area: price; }
  .wide-row__cta   { grid-area: cta; align-self: center; justify-self: end; }

  .stories__grid { grid-template-columns: repeat(3, minmax(min(14rem, 100%), 1fr)); }

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

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    text-align: left;
    gap: var(--space-6);
  }
  .site-footer__brand { align-items: flex-start; text-align: left; }
  .site-footer__tagline { text-align: left; }
  .site-footer__nav ul,
  .site-footer__contact ul,
  .site-footer__hours ul { align-items: flex-start; }
  .site-footer__hours li span:first-child { min-width: 3.5rem; text-align: left; }
  .site-footer__bar { flex-direction: row; justify-content: center; gap: var(--space-4); }
}

/* Small desktop ≥1024 */
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 32px 1fr;
    gap: var(--space-8);
  }
  .about-divider {
    height: auto;
    align-self: stretch;
    width: 32px;
    position: relative;
  }
  /* Vertical band: keep the SVG upright and swap to the 90°-rotated pattern
     (rotating the whole element would turn a tall strip into a wide one). */
  .about-divider svg {
    position: absolute;
    inset: 0;
    width: 16px !important;
    height: 100% !important;
    left: 50%;
    transform: translateX(-50%);
  }
  /* extra specificity: the base .meander-v{display:none} rule sits later in the file */
  .about-grid .about-divider .meander-h { display: none; }
  .about-grid .about-divider .meander-v { display: inline; }

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

  .contact-grid { grid-template-columns: 1.4fr 1fr; }

  /* Desktop: single row — icon · copy · price · CTA */
  .wide-row {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "icon body price cta";
    gap: var(--space-6);
  }
  .wide-row__icon { align-self: center; }
}

/* Large desktop ≥1440 — content already capped at 1200px */

/* ------------------------------------------------------------- */
/* 15. MOTIFS shared                                             */
/* ------------------------------------------------------------- */
.motif-cloud { color: var(--color-gold-decor); }
.motif-meander { color: var(--color-gold-decor); }
/* The About divider SVG has no viewBox, so the global svg{height:auto} would
   fall back to the 150px replaced-element default below 1024px. */
.about-divider svg { height: 16px; }
.about-divider .meander-v { display: none; } /* vertical variant only ≥1024 */

/* Hero accent crosses the lit gold screen in the photo — give it the same
   grounding shadow the pillars have. */
.hero__h1-accent { text-shadow: 0 1px 2px rgba(0,0,0,.6), 0 0 20px rgba(0,0,0,.5); }

/* Impact band: kicker centers like its heading */
#impact .section__kicker { display: flex; width: fit-content; margin-inline: auto; }

/* ------------------------------------------------------------- */
/* 16. REDUCED MOTION (HANDOFF §6)                               */
/* ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------- */
/* 17. PRINT                                                     */
/* ------------------------------------------------------------- */
@media print {
  .site-header, .nav__toggle, .hero__scroll, .cta-banner, .contact-form__submit { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .impact, .site-footer { background: #fff !important; color: #000 !important; padding-block: 1rem; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto; padding: 2rem; color: #000; background: #fff; }
  .hero__media, .hero__gradient, .hero__cloud { display: none; }
}
