/* ==========================================================================
   Coach to Success — "Ascent" design system v2.0 (post site-wide audit, Sept 2026)
   Built by Arctic Grey. Vanilla CSS, no framework. Fluid 280px → 2560px.
   Breakpoints used: 360 · 480 · 640 · 720 · 900 · 960 · 1024 · 1100 · 1200 · 1280 · 1400 · 1600
   Sections: 1 Tokens · 2 Base · 3 Type · 4 Layout · 5 Header / mega menu / drawer · 6 Buttons & links
             7 Home hero · 8 Home sections · 9 Cards & grids · 10 Stats / ledgers / recognition
             11 Steps, climb, timeline · 12 Bands, quote, CTA · 13 Fit · 14 Posts & articles
             15 Accordion · 16 Forms · 17 Footer & signature · 18 Sticky bar · 19 Motion
             20 Interior pages · 21 Utilities · 22 Responsive floors · 23 Print
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
/* Web fonts + metric-matched fallback faces live in fonts.css (self-hosted; no third-party font requests). */

:root {
  /* Brand (official lockup values) */
  --navy: #022F60;
  --navy-950: #041530;
  --navy-900: #061A36;
  --navy-800: #0A2448;
  --navy-600: #143E78;
  --navy-500: #1F4C86;
  --gold: #DA9E20;
  --gold-hover: #E2A727;
  --gold-800: #7A5710;
  --gold-700: #8F6614;   /* small text on light — AA */
  --gold-600: #B98314;   /* display accents on light only */
  --gold-300: #E8C36A;   /* text on navy */
  --gold-200: #F1D998;
  --gold-100: #FAF0D2;

  /* Neutrals (warm) */
  --ivory: #F7F4EE;
  --ivory-2: rgba(247,244,238,.78);
  --ivory-3: rgba(247,244,238,.6);
  --cream: #FBFAF7;
  --sand: #EFEAE0;
  --stone: #E4DDD0;
  --stone-600: #B9AF9E;
  --ink: #0B1220;
  --ink-2: #2A3342;
  --slate: #5B6472;
  --slate-2: #8A9099;
  --white: #FFFFFF;
  --line-dark: rgba(247,244,238,.14);
  --line-dark-strong: rgba(247,244,238,.38);

  /* Status */
  --ok: #1E5A3A; --ok-bg: #EAF4EE; --ok-line: #C7E2D2;
  --err: #8A2E1E; --err-bg: #FBEDEA; --err-line: #F1CFC7; --err-ink: #B0412E;

  /* Semantic */
  --bg: var(--ivory);
  --surface: var(--cream);
  --text: var(--ink);
  --text-2: var(--slate);
  --line: var(--stone);
  --accent: var(--gold);
  --focus: var(--navy);

  /* Type */
  --font-sans: "Manrope", "Manrope Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", "Instrument Serif Fallback", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --fs-display: clamp(2.125rem, 0.9rem + 5.4vw, 5.75rem);
  --fs-h1: clamp(1.9rem, 0.9rem + 4.2vw, 4.5rem);
  --fs-h2: clamp(1.6rem, 0.9rem + 2.3vw, 3rem);
  --fs-h3: clamp(1.3rem, 1.05rem + 1.1vw, 2rem);
  --fs-h4: clamp(1.1rem, 1rem + 0.45vw, 1.35rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.45vw, 1.35rem);
  --fs-body: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;
  --lh-tight: 1.02;
  --lh-snug: 1.15;
  --lh-body: 1.65;
  --track-caps: .12em;

  /* Space & shape */
  --container: 80rem;
  --container-narrow: 60rem;
  --gutter: clamp(1rem, 5vw, 4rem);
  --section: clamp(3.5rem, 8vw, 7rem);
  --section-sm: clamp(2.5rem, 6vw, 5rem);
  --pad-card: clamp(1.25rem, 2.5vw, 2rem);
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
  --header-h: 72px;
  --icon-s: 24px; --icon-m: 36px; --icon-l: 44px;
  --stair: 34px;

  /* Elevation */
  --shadow-1: 0 1px 2px rgba(6,26,54,.05), 0 10px 30px -14px rgba(6,26,54,.18);
  --shadow-2: 0 2px 4px rgba(6,26,54,.06), 0 28px 56px -28px rgba(6,26,54,.32);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.2,.4,1);
  --ease-io: cubic-bezier(.65,0,.35,1);
  --dur-micro: 120ms;
  --dur-fast: 240ms;
  --dur: 520ms;
  --dur-slow: 900ms;

  /* Layers */
  --z-raised: 10; --z-sticky: 100; --z-header: 1000; --z-overlay: 1200; --z-top: 1300;

  color-scheme: light;
  accent-color: var(--gold);
}

/* 2. BASE ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  min-width: 280px;
}
body.is-locked { overflow: hidden; }
img, picture, svg, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.media > picture, .hero__media > picture, .page-hero__bg > picture, .author__avatar > picture, .nav__menu-feature > picture { width: 100%; height: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a, button, label { -webkit-tap-highlight-color: rgba(218,158,32,.18); }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; overflow-wrap: break-word; hyphens: manual; }
h1, h2 { text-wrap: balance; }
h3, .door strong, .post-card h3, .svc h3, .band h3, .case h3, .card h3 { text-wrap: balance; }
.lead, .statement, p, li { text-wrap: pretty; }
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); line-height: 1.06; }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: -0.015em; }
h4 { font-size: var(--fs-h4); line-height: 1.3; letter-spacing: -0.01em; }
em, .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
h1 em, h2 em, .display em, .statement em { color: var(--gold-700); }
.hero em, .section--navy em, .band em, .page-hero:not(.page-hero--light) em, .error-page em, .cta em, .footer em, .card--dark em { color: var(--gold-300); }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
::selection { background: var(--gold-200); color: var(--navy-950); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
.site-header--dark:not(.is-scrolled) :focus-visible, .section--navy :focus-visible, .band :focus-visible, .footer :focus-visible, .hero :focus-visible, .page-hero:not(.page-hero--light) :focus-visible, .drawer :focus-visible, .card--dark :focus-visible, .error-page :focus-visible, .cta :focus-visible, .takeaways :focus-visible, .sticky-cta :focus-visible { outline-color: var(--gold-300); }
.btn--gold:focus-visible, .btn--light:focus-visible { outline-color: var(--navy-950); box-shadow: 0 0 0 5px var(--ivory); }
.post-card:has(a:focus-visible) { outline: 2px solid var(--focus); outline-offset: 4px; border-radius: var(--r-md); }
.post-card a:focus-visible, .pillar .link:focus-visible, .svc h3 a:focus-visible, .door:focus-visible { outline: none; }
.pillar:has(.link:focus-visible), .svc:has(a:focus-visible), .door:focus-visible, .table-wrap:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.skip-link { position: absolute; left: max(1rem, env(safe-area-inset-left)); top: -100px; z-index: var(--z-header); padding: .75rem 1rem; background: var(--navy); color: var(--ivory); border-radius: var(--r-pill); }
.skip-link:focus { top: 1rem; }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* 3. TYPE ------------------------------------------------------------------ */
.display { font-size: var(--fs-display); line-height: var(--lh-tight); font-weight: 500; letter-spacing: -0.03em; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--text-2); font-weight: 400; }
.small { font-size: var(--fs-small); }
.muted { color: var(--text-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase;
  color: var(--gold-700); line-height: 1.4;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .8; flex: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before, .eyebrow--center::after { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .8; display: block; flex: none; }
.eyebrow--light { color: var(--gold-300); }
.eyebrow--bare::before, .eyebrow--bare::after { display: none; }
.text-center { text-align: center; }
.balance { text-wrap: balance; }
.kicker { display: block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-300); line-height: 1.4; }
.prose { max-width: 62ch; }
.prose p + p, .prose p + ul, .prose p + ol, .prose ul + p, .prose ol + p { margin-top: 1.1em; }
.prose h2 { margin: 2.4em 0 .8em; font-size: var(--fs-h3); }
.prose h3 { margin: 1.8em 0 .6em; font-size: var(--fs-h4); }
.prose ul, .prose ol { margin: 1em 0 1em 1.25em; }
.prose li + li { margin-top: .45em; }
.prose ol li::marker { color: var(--gold-700); font-weight: 700; font-variant-numeric: tabular-nums; }
.prose ul li::marker { color: var(--gold); }
.prose a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold-600); text-decoration-thickness: 1px; text-underline-offset: .18em; transition: text-decoration-color var(--dur-micro), color var(--dur-micro); }
.prose a:hover, .prose a:focus-visible { text-decoration-color: var(--navy); text-decoration-thickness: 2px; }
.prose a[href^="mailto:"] { overflow-wrap: anywhere; }
.prose em { font-size: 1.07em; }
.prose q { font-family: var(--font-serif); font-style: italic; font-size: 1.07em; quotes: "\201C" "\201D"; }
.prose blockquote { margin: 2em 0; padding: 1.25rem 1.5rem; border-left: 3px solid var(--gold); background: var(--surface); border-radius: 0 16px 16px 0; font-family: var(--font-serif); font-style: italic; font-size: 1.25em; line-height: 1.4; color: var(--navy); }
.prose figure { margin: 2em 0; }
.prose figcaption { font-size: var(--fs-small); color: var(--text-2); margin-top: .5rem; }
.prose, .takeaways li, .author p { overflow-wrap: anywhere; }
.num, .timeline, .facts dd, .stat__value, .card__meta, .table td, .table th, .post-card__meta, .legal__meta, .hero__proof strong, .climb__num, .climb__meta, .feature-list .n, .recog__year, .rec__value, .ledger__row { font-variant-numeric: tabular-nums; }
.link {
  position: relative; display: inline-flex; align-items: center; flex-wrap: wrap; gap: .1rem .3rem; font-weight: 600; color: var(--navy);
  min-height: 44px; padding-block: .5rem; margin-block: -.5rem;
  transition: color var(--dur-micro) var(--ease);
}
.link .no-wrap { display: inline-flex; align-items: center; gap: .35rem; background-image: linear-gradient(currentColor, currentColor); background-repeat: no-repeat; background-size: 0% 1px; background-position: 0 100%; transition: background-size var(--dur-fast) var(--ease); padding-bottom: 2px; }
.link:hover .no-wrap, .link:focus-visible .no-wrap { background-size: 100% 1px; }
.link svg { width: 1em; height: 1em; flex: none; transition: transform var(--dur-fast) var(--ease); }
.link:hover svg { transform: translateX(4px); }
.link:active svg { transform: translateX(1px); }
.link--light { color: var(--gold-300); }
.link--inline, .prose .link, .feature-list .link { display: inline; min-height: 0; padding: 0; margin: 0; }
.link--inline .no-wrap, .feature-list .link .no-wrap { display: inline; }
.link--inline svg, .feature-list .link svg { display: inline-block; vertical-align: -.12em; margin-left: .25em; }
.fit__col a, .acc__body a, .stat__label a, .recog__list a, .door__d a, .svc__lead a, .feature-list a:not(.link), .answer a, .climb__step a:not(.link), .industries-line a, .contact-aside a, .ledger__note a, .stats__source a, .results__note a, .cta__addr a, .form__foot a, .error-page__call a, .error-page__back a, .hero__note a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: .18em; transition: text-decoration-color var(--dur-micro) var(--ease); }
.fit__col a:hover, .acc__body a:hover, .answer a:hover, .contact-aside a:hover, .form__foot a:hover { text-decoration-color: currentColor; }
.contact-aside .link, .fit__col .link, .acc__body .link, .answer .link { text-decoration: none; font-weight: 600; }
.contact-aside .link--light, .section--navy .stats__source a, .section--navy .results__note a { color: var(--gold-300); text-decoration-color: var(--gold-300); }
.section--navy .stats__source .link, .section--navy .results__note .link { text-decoration: none; }
.section--navy a:not(.btn):not(.link):not(.chip), .band a:not(.btn):not(.link):not(.chip), .card--dark a:not(.btn):not(.link), .cta a:not(.btn), .takeaways a, .hero__note a, .error-page__call a, .error-page__back a { color: var(--gold-300); text-decoration-color: rgba(232,195,106,.5); }

/* 4. LAYOUT ---------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: max(var(--gutter), env(safe-area-inset-left)) max(var(--gutter), env(safe-area-inset-right)); }
.container--narrow { max-width: var(--container-narrow); }
.container--read { max-width: calc(62ch + 2 * var(--gutter)); }
.container--read .prose { max-width: none; }
.container--article { max-width: calc(62ch + 2 * var(--gutter)); }
@media (min-width: 1280px) { .container--article { max-width: calc(62ch + 16rem + 2 * var(--gutter)); } }
.container--article .prose { max-width: none; }
.section { padding-block: var(--section); position: relative; }
.section--sm { padding-block: var(--section-sm); }
.section--tight { padding-block: clamp(1.5rem, 4vw, 3rem); }
.section--tight + .section--tight { padding-top: 0; }
.section--navy { background: var(--navy); color: var(--ivory); }
.section--navy .lead, .section--navy .muted { color: var(--ivory-2); }
.section--cream { background: var(--surface); }
.section--sand { background: var(--sand); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-head h2 { max-width: 22ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center h2 { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 + p, .section-head h1 + p, .section-head h2 + .lead { margin-top: 1.1rem; }
.section-head .lead { max-width: 46rem; }
.section-head--split { display: grid; gap: 1.25rem 3rem; max-width: none; align-items: start; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); } .section-head--split .lead { padding-top: .35em; margin-top: 0; } .section-head--split > div:last-child:not(:first-child) { justify-self: end; align-self: end; } }
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--tight { gap: 1rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1023px) { .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 640px) and (max-width: 1023px) { .grid--3 > :last-child:nth-child(odd) { grid-column: 1 / -1; } }
@media (max-width: 639px) { .grid--2, .grid--4 { grid-template-columns: minmax(0,1fr); } }
.split { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split > div:not(.media) { max-width: 60ch; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .split > div:not(.media) { max-width: none; }
  .split--wide-media { grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); }
  .split--rev > :first-child { order: 2; }
  .split--top, .split--start, .split--proof, .split--plan { align-items: start; }
  .split--start > div:first-child, .split--plan > div:first-child { position: sticky; top: calc(var(--header-h) + 2rem); }
  .split--pin { align-items: start; }
  .split--pin > div:last-child { position: sticky; top: calc(var(--header-h) + 2rem); } /* side image rides along a long list */
}
.media { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--sand); isolation: isolate; }
.media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focal, 50% 50%); transition: transform .6s var(--ease); }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--3x4 { aspect-ratio: 3 / 4; }
.media--3x2 { aspect-ratio: 3 / 2; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--square { aspect-ratio: 1; }
@media (hover: hover) { a .media:hover img, .card--link:hover .media img, .svc:hover .media img, .post-card:hover .media img, .pillar:hover .media img, .nav__menu-feature:hover img { transform: scale(1.035); } }
.media__tag { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; padding: .5rem .85rem; background: rgba(6,26,54,.72); color: var(--ivory); border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.media__tag--top { top: 1rem; bottom: auto; }
@media (max-width: 359px) { .media__tag { display: none; } }
.media__badge { position: absolute; right: 1rem; top: 1rem; z-index: 2; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--navy-950); font-weight: 700; font-size: .8rem; letter-spacing: .02em; }
.hairline { border-top: 1px solid var(--line); }

/* 5. HEADER / MEGA MENU / DRAWER ------------------------------------------- */
.progress { position: fixed; left: 0; top: 0; height: 2px; width: 100%; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); z-index: var(--z-top); pointer-events: none; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header); height: var(--header-h);
  display: flex; align-items: center; padding-top: env(safe-area-inset-top);
  transition: background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  color: var(--navy);
}
.site-header--dark { color: var(--ivory); }
.site-header::before { content: ""; position: absolute; inset: 0 0 -40px 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity var(--dur-fast) var(--ease);
  background: linear-gradient(180deg, rgba(4,21,48,.82) 0%, rgba(4,21,48,.55) 55%, rgba(4,21,48,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent); mask-image: linear-gradient(180deg, #000 60%, transparent); }
.site-header--dark:not(.is-scrolled)::before { opacity: 1; }
.site-header--flat::before, .site-header.drawer-open::before { display: none; }
.site-header.is-scrolled { background: rgba(247,244,238,.9); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 rgba(6,26,54,.06), 0 10px 30px -20px rgba(6,26,54,.25); color: var(--navy); }
.site-header--flat.is-scrolled { background: rgba(4,21,48,.9); color: var(--ivory); box-shadow: 0 1px 0 var(--line-dark); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.drawer-open { z-index: var(--z-top); background: transparent; box-shadow: none; color: var(--ivory); backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.drawer-open .nav, .site-header.drawer-open .header__phone, .site-header.drawer-open .header__cta { visibility: hidden; }
@media (max-width: 899px) { .site-header--dark:not(.is-scrolled):not(.drawer-open) { background: var(--navy-950); } .site-header--dark:not(.is-scrolled)::before { display: none; } }
.header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: clamp(.5rem, 1.5vw, 1.5rem); }
.header__inner .btn { white-space: nowrap; }
.brand { display: inline-flex; align-items: center; flex: none; min-height: 44px; padding-block: .25rem; color: var(--navy); transition: color var(--dur-fast) var(--ease); }
.brand__logo { height: 40px; width: auto; display: block; overflow: visible; }
.site-header--dark:not(.is-scrolled) .brand, .site-header.drawer-open .brand, .site-header--flat.is-scrolled .brand, .brand--footer, .drawer .brand { color: var(--ivory); }
.site-header--dark:not(.is-scrolled) .brand__logo { filter: drop-shadow(0 2px 10px rgba(4,21,48,.45)); }
.site-header--dark:not(.is-scrolled) .nav__link, .site-header--dark:not(.is-scrolled) .header__phone { text-shadow: 0 1px 10px rgba(4,21,48,.5); }
.brand--footer .brand__logo { height: 52px; }
.nav { display: none; }
@media (min-width: 1200px) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__link { display: inline-flex; align-items: center; gap: .35rem; padding: .7rem .8rem; min-height: 44px; white-space: nowrap; border-radius: var(--r-pill); font-weight: 500; font-size: .95rem; letter-spacing: -0.005em; position: relative; transition: color var(--dur-micro) var(--ease), opacity var(--dur-micro); }
.nav__link::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .5rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: 0 50%; transition: transform var(--dur-fast) var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after, .nav__item.is-open > .nav__link::after, .nav__item:focus-within > .nav__link::after { transform: scaleX(1); }
.nav__link:active { opacity: .7; transition-duration: 80ms; }
.nav__item--has-menu > .nav__link { padding-right: .35rem; }
.nav__more { width: var(--icon-m); height: var(--icon-m); border-radius: 50%; display: inline-grid; place-items: center; margin-right: .2rem; transition: background-color var(--dur-micro) var(--ease); }
.nav__more svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.nav__more:hover { background: rgba(218,158,32,.14); }
.nav__item.is-open .nav__more svg, .nav__item:hover .nav__more svg, .nav__item:focus-within .nav__more svg { transform: rotate(180deg); }
@media (min-width: 1200px) and (max-width: 1399px) { .nav__link { padding: .6rem .65rem; font-size: .9rem; } }
.nav__menu {
  position: absolute; left: max(var(--gutter), env(safe-area-inset-left)); right: max(var(--gutter), env(safe-area-inset-right)); top: calc(100% + 14px); z-index: var(--z-raised);
  background: var(--cream); color: var(--ink); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 2px 4px rgba(6,26,54,.06), 0 40px 80px -32px rgba(6,26,54,.4);
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(.985); transform-origin: top left;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility 0s linear var(--dur-fast);
}
.nav__item--has-menu { position: static; }
.nav__item:hover > .nav__menu, .nav__item.is-open > .nav__menu, .nav__item:focus-within > .nav__menu { opacity: 1; visibility: visible; transform: none; transition-delay: 120ms, 120ms, 120ms; }
.nav__item.is-open > .nav__menu, .nav__item:focus-within > .nav__menu { transition-delay: 0s; }
.nav__item.is-closing > .nav__menu { opacity: 0 !important; visibility: hidden !important; transform: translateY(8px) scale(.985) !important; transition-delay: 0s !important; }
.nav__menu--services { display: grid; grid-template-columns: .85fr 1.85fr .9fr; gap: 0; padding: 1.5rem; }
.nav__menu-intro { padding: .5rem 1.75rem .5rem .5rem; border-right: 1px solid var(--line); display: grid; align-content: start; gap: .75rem; }
.nav__menu-alt { display: block; margin-top: -.25rem; font-size: var(--fs-sm); }
.nav__menu-alt .link { color: var(--text-2); }
.nav__menu-alt .link:hover { color: var(--navy); }
.nav__menu-h { font-size: clamp(1.35rem, 1.1rem + .6vw, 1.75rem); line-height: 1.15; letter-spacing: -0.02em; font-weight: 500; color: var(--navy-950); text-wrap: balance; }
.nav__menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; padding: 0 1.25rem; align-content: start; }
.nav__menu-item { display: grid; grid-template-columns: 2.4rem 1fr; grid-template-rows: auto auto auto; gap: .1rem .6rem; padding: .9rem 1rem; border-radius: var(--r-sm); transition: background-color var(--dur-micro) var(--ease), transform var(--dur-fast) var(--ease); }
.nav__menu-item:hover { background: var(--sand); }
.nav__menu-item:active { transform: scale(.985); }
.nav__menu-item[aria-current] { background: var(--gold-100); box-shadow: inset 3px 0 0 var(--gold); }
.nav__menu-num { grid-row: 1 / 4; font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: var(--gold-600); line-height: 1; padding-top: .1rem; font-variant-numeric: tabular-nums; }
.nav__menu-item strong { font-size: .98rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.nav__menu-meta { font-size: var(--fs-xs); letter-spacing: .05em; text-transform: uppercase; color: var(--gold-700); font-weight: 700; white-space: nowrap; }
.nav__menu-d { font-size: .875rem; color: var(--text-2); line-height: 1.4; }
.nav__menu-feature { display: grid; gap: .45rem; align-content: start; padding: .5rem .5rem .5rem 1.75rem; border-left: 1px solid var(--line); }
.nav__menu-feature > picture { aspect-ratio: 4 / 3; border-radius: var(--r-sm); overflow: hidden; background: var(--sand); margin-bottom: .5rem; }
.nav__menu-feature > picture img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; transition: transform .6s var(--ease); }
.nav__menu-k { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.nav__menu-feature strong { font-size: 1.05rem; color: var(--navy); }
.nav__menu-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--line); margin-top: 1.25rem; padding-top: 1.25rem; }
.nav__menu-tel { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--navy); min-height: 44px; }
.nav__menu-tel svg { width: 16px; height: 16px; }
@media (min-width: 1200px) and (max-width: 1399px) { .nav__menu--services { grid-template-columns: 1.7fr .95fr; } .nav__menu-intro { display: none; } .nav__menu-grid { padding-left: 0; } }
.header__actions { display: flex; align-items: center; gap: .6rem; }
.header__phone { display: none; align-items: center; gap: .45rem; font-weight: 600; font-size: .9rem; padding: .55rem .8rem; min-height: 44px; white-space: nowrap; border-radius: var(--r-pill); transition: background-color var(--dur-micro) var(--ease); }
.header__phone svg { width: 16px; height: 16px; }
.header__phone:hover { background: rgba(218,158,32,.14); }
@media (min-width: 1400px) { .header__phone { display: inline-flex; } }
.header__actions .header__cta { display: none; }
@media (min-width: 640px) { .header__actions .header__cta { display: inline-flex; } }
.site-header--dark:not(.is-scrolled) .header__cta.btn--gold { --btn-bg: transparent; --btn-fg: var(--ivory); border-color: var(--line-dark-strong); }
.site-header--dark:not(.is-scrolled) .header__cta.btn--gold .btn__arrow { background: var(--gold); color: var(--navy-950); }
.site-header--dark:not(.is-scrolled) .header__cta.btn--gold:hover { background: rgba(247,244,238,.1); box-shadow: none; }
.nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid currentColor; opacity: .9; position: relative; transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.nav-toggle:hover { background: rgba(217,157,31,.15); }
@media (min-width: 1200px) { .nav-toggle { display: none; } }
.nav-toggle span { position: absolute; left: 13px; right: 13px; top: 21px; height: 2px; background: currentColor; border-radius: 1px; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast); }
.nav-toggle span:nth-child(1) { transform: translateY(-5px); }
.nav-toggle span:nth-child(3) { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] { color: var(--ivory); border-color: var(--line-dark-strong); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
.drawer {
  position: fixed; inset: 0; z-index: var(--z-overlay); background: var(--navy-950); color: var(--ivory);
  padding: calc(var(--header-h) + 1rem + env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-left)) calc(2rem + env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-right));
  overflow-y: auto; overscroll-behavior: contain;
  clip-path: inset(0 0 100% 0 round 0 0 var(--r-lg) var(--r-lg)); transition: clip-path .45s var(--ease), visibility 0s linear .45s; visibility: hidden;
}
.drawer.is-open { clip-path: inset(0 0 0 0 round 0); visibility: visible; transition-delay: 0s; }
.drawer__grid { display: grid; gap: 2.5rem; max-width: var(--container); margin-inline: auto; }
@media (min-width: 720px) { .drawer__grid { grid-template-columns: 1.2fr .8fr; } }
.drawer__list { list-style: none; display: grid; gap: .1rem; }
.drawer__list > li > a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .85rem 0; font-size: clamp(1.5rem, 6vw, 2.75rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; border-bottom: 1px solid var(--line-dark); transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.drawer__list > li > a:hover { color: var(--gold-300); transform: translateX(.4rem); }
.drawer__list > li > a small { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); color: var(--gold-300); text-transform: uppercase; }
.drawer__list a[aria-current="page"], .drawer__sub a[aria-current="page"] { color: var(--gold-300); }
.drawer__sub { list-style: none; display: grid; gap: .1rem; padding: .5rem 0 1rem; }
.drawer__sub a { display: block; padding: .5rem 0; color: var(--ivory-2); font-size: 1rem; min-height: 44px; display: flex; align-items: center; }
.drawer__sub a:hover { color: var(--gold-300); }
.drawer__aside { display: grid; gap: 1.25rem; align-content: start; }
.drawer__aside p { color: var(--ivory-2); }
.drawer__aside a.plain { color: var(--ivory); font-weight: 600; overflow-wrap: anywhere; display: inline-block; padding-block: .4rem; }
.drawer .drawer__list > li, .drawer .drawer__aside > * { opacity: 0; transform: translateY(14px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.drawer.is-open .drawer__list > li, .drawer.is-open .drawer__aside > * { opacity: 1; transform: none; }
.drawer.is-open .drawer__list > li:nth-child(1) { transition-delay: .08s; } .drawer.is-open .drawer__list > li:nth-child(2) { transition-delay: .11s; } .drawer.is-open .drawer__list > li:nth-child(3) { transition-delay: .14s; } .drawer.is-open .drawer__list > li:nth-child(4) { transition-delay: .17s; } .drawer.is-open .drawer__list > li:nth-child(5) { transition-delay: .2s; } .drawer.is-open .drawer__list > li:nth-child(6) { transition-delay: .23s; } .drawer.is-open .drawer__list > li:nth-child(7) { transition-delay: .26s; } .drawer.is-open .drawer__list > li:nth-child(8) { transition-delay: .29s; }
.drawer.is-open .drawer__aside > :nth-child(1) { transition-delay: .2s; } .drawer.is-open .drawer__aside > :nth-child(2) { transition-delay: .24s; } .drawer.is-open .drawer__aside > :nth-child(3) { transition-delay: .28s; }

/* 6. BUTTONS --------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: var(--ivory);
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 50px; padding: .9rem 1.55rem; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: .95rem; letter-spacing: .005em; line-height: 1.2; text-align: center; text-wrap: balance; max-width: 100%;
  transition: box-shadow var(--dur-fast) var(--ease), background-color var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease), transform var(--dur-fast) var(--ease-spring);
  border: 1px solid transparent;
}
.btn:hover { box-shadow: var(--shadow-1); }
.btn:active { transform: scale(.985); transition-duration: 80ms; }
.btn__arrow { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; flex: none; transition: transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease); }
.btn__arrow svg { width: 13px; height: 13px; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--navy-950); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--gold .btn__arrow { background: var(--navy-950); color: var(--gold-300); }
.btn--navy:hover { background: var(--navy-600); }
.btn--navy .btn__arrow { background: var(--gold); color: var(--navy-950); }
.btn--light { --btn-bg: var(--ivory); --btn-fg: var(--navy-950); }
.btn--light .btn__arrow { background: var(--navy-950); color: var(--gold-300); }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; border-color: var(--line-dark-strong); }
.btn--ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.btn--ghost .btn__arrow { border: 1px solid currentColor; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); border-color: rgba(2,47,96,.55); }
.btn--outline:hover { background: rgba(2,47,96,.06); box-shadow: none; border-color: var(--navy); }
.btn--outline .btn__arrow { border: 1px solid currentColor; }
.btn--sm { min-height: 44px; padding: .65rem 1.15rem; font-size: .875rem; }
.btn--lg { min-height: 58px; padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"], .btn[aria-busy="true"] { opacity: .6; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn-row .btn { white-space: normal; }
@media (max-width: 479px) { .btn-row .btn { width: 100%; } .btn { padding-inline: 1.15rem; } .btn--lg { min-height: 52px; padding: .9rem 1.25rem; font-size: .95rem; } .btn__opt { display: none; } }
.icon-btn { display: inline-grid; place-items: center; width: var(--icon-l); height: var(--icon-l); border-radius: 50%; border: 1px solid var(--line); color: var(--navy); transition: background-color var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease), transform var(--dur-fast) var(--ease); }
.icon-btn:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.icon-btn:active { transform: scale(.94); }
.icon-btn svg { width: 18px; height: 18px; }

/* 7. HOME HERO ------------------------------------------------------------- */
.hero { position: relative; min-height: min(100svh, 980px); display: grid; align-items: end; color: var(--ivory); isolation: isolate; overflow: hidden; background: var(--navy-950); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; transform-origin: 60% 45%; animation: kenburns 14s var(--ease) both; }
@keyframes kenburns { from { transform: scale(1.06) translate(1%, .3%); } to { transform: scale(1) translate(0,0); } }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, rgba(4,21,48,.86) 0%, rgba(4,21,48,.62) 42%, rgba(4,21,48,.18) 72%, rgba(4,21,48,.05) 100%),
  linear-gradient(180deg, rgba(4,21,48,.35) 0%, rgba(4,21,48,0) 35%, rgba(4,21,48,.55) 78%, rgba(4,21,48,.92) 100%); }
.hero__inner { position: relative; padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem)); padding-bottom: clamp(2.5rem, 6vw, 5.5rem); display: grid; gap: clamp(1.25rem, 2.5vw, 1.9rem); max-width: var(--container); }
.hero__content { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.hero .kicker { margin-bottom: -.25rem; text-shadow: 0 1px 10px rgba(4,21,48,.5); }
@media (min-width: 900px) {
  .hero--right { min-height: min(max(100svh, 920px), 1240px); }
  .hero--right .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 50%); align-items: end; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
  .hero--right .hero__content { grid-column: 2; gap: .9rem; }
  .hero--right .hero__title { font-size: clamp(2.125rem, 1rem + 3.4vw, 4.25rem); max-width: none; }
  .hero--right .hero__lead { font-size: clamp(1rem, .95rem + .35vw, 1.2rem); max-width: 36rem; }
  .hero--right .hero__proof { margin-top: .25rem; padding-top: 1rem; }
  /* photo: Steve at ~33% from the left, the sign at 45–78% x / 9–26% y; the copy column sits on the plain wall under the sign */
  .hero--right .hero__media img { object-position: 50% 30%; transform-origin: 40% 50%; }
  .hero--right .hero__scrim { background:
    radial-gradient(720px 520px at 74% 72%, rgba(4,21,48,.5), transparent 72%),
    linear-gradient(270deg, rgba(4,21,48,.42) 0%, rgba(4,21,48,.22) 40%, rgba(4,21,48,.04) 62%, rgba(4,21,48,0) 100%),
    linear-gradient(180deg, rgba(4,21,48,.42) 0%, rgba(4,21,48,0) 22%, rgba(4,21,48,.38) 66%, rgba(4,21,48,.9) 100%); }
}
@media (min-width: 900px) and (max-width: 1199px) { .hero--right .hero__media img { object-position: 48% 30%; } }
@media (min-width: 1200px) and (max-width: 1439px) { .hero--right .hero__media img { object-position: 44% 30%; } }
@media (min-width: 1920px) { .hero--right .hero__media img { object-position: 50% 18%; } }
.hero__title { max-width: 15ch; text-shadow: 0 2px 24px rgba(4,21,48,.45); }
.hero__note { font-size: var(--fs-small); color: var(--ivory-2); letter-spacing: .01em; }
.hero__note a { display: inline-block; padding-block: .6rem; margin-block: -.6rem; }
.hero__lead { max-width: 40rem; font-size: var(--fs-lead); line-height: 1.5; color: rgba(247,244,238,.9); text-shadow: 0 1px 14px rgba(4,21,48,.5); }
.hero__proof { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, max-content)); gap: 1rem 2.5rem; margin-top: clamp(.5rem, 2vw, 1.25rem); padding-top: 1.25rem; border-top: 1px solid var(--line-dark); }
.hero__proof li { display: grid; gap: .2rem; font-size: var(--fs-small); color: var(--ivory-2); line-height: 1.35; }
.hero__proof strong { font-size: clamp(1.25rem, 1rem + .6vw, 1.6rem); font-weight: 600; color: var(--ivory); letter-spacing: -0.02em; line-height: 1.1; white-space: nowrap; }
.hero__proof strong em { color: var(--gold-300); font-style: normal; font-family: var(--font-sans); }
@media (max-width: 479px) { .hero__proof { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .hero__proof li:last-child { grid-column: 1 / -1; } .hero__proof strong { white-space: normal; } }
@media (max-width: 359px) { .hero__proof { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 899px) {
  .hero { display: block; min-height: 0; }
  .hero__media { position: relative; inset: auto; margin-top: var(--header-h); height: min(52svh, 480px); min-height: 300px; z-index: 0; }
  .hero .hero__media img { position: absolute; inset: 0; object-position: 50% 0; animation: none; } /* portrait crop is face-first: anchoring to the top keeps the head in frame at every band height */
  .hero__scrim { background: linear-gradient(180deg, rgba(4,21,48,0) 40%, var(--navy-950) 88%); }
  .hero__inner { padding-top: 1.5rem; margin-top: -1rem; position: relative; z-index: 1; }
  .hero__title { max-width: none; }
  .hero__title em { display: block; }
  .kicker__loc { display: none; }
}
@media (max-width: 479px) { .hero__media { height: min(40svh, 320px); min-height: 240px; } .hero__lead { font-size: 1rem; } .hero__content { gap: 1rem; } }
@media (max-width: 899px) and (max-height: 500px) { .hero__media { height: 54svh; min-height: 180px; } .hero__inner { padding-block: 1rem 1.5rem; } .hero__proof { display: none; } }

/* 8. HOME SECTIONS --------------------------------------------------------- */
.statement { font-size: clamp(1.5rem, 1rem + 1.9vw, 2.6rem); line-height: 1.22; letter-spacing: -0.02em; font-weight: 500; color: var(--navy-950); max-width: 22ch; text-wrap: balance; }
.statement--light { color: var(--ivory); }
.who__lead { max-width: 40rem; }
.who__lead strong { color: var(--navy-950); font-weight: 600; }
.who__media { position: relative; }
@media (min-width: 900px) { .who__media .media { margin-top: -6rem; outline: 1px solid var(--gold-300); outline-offset: 12px; box-shadow: var(--shadow-2); } .section--tight .split--wide-media { overflow: visible; } }
.who__media .media img { object-position: 50% 30%; }
.who__sign { position: absolute; right: clamp(1rem, 3vw, 2rem); bottom: clamp(-1.25rem, -2vw, -1rem); display: inline-flex; align-items: center; gap: .75rem; padding: .7rem 1rem .7rem .7rem; background: var(--navy-950); color: var(--ivory); border-radius: var(--r-pill); font-size: var(--fs-small); box-shadow: var(--shadow-2); }
.who__sign img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: 50% 25%; }
.who__sign strong { display: block; font-size: .9rem; line-height: 1.2; }
.who__sign span { color: var(--ivory-2); font-size: var(--fs-xs); }
@media (max-width: 899px) { .who__sign { position: static; margin-top: 1rem; } }
.doors { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
@media (min-width: 900px) { .doors { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.door { position: relative; display: grid; grid-template-rows: auto auto 1fr; gap: .35rem; padding: var(--pad-card); background: var(--cream); color: var(--ink); transition: background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.door:hover { background: #FFFDF9; box-shadow: inset 0 0 0 1px var(--gold-200); }
.door.is-match { box-shadow: inset 0 0 0 2px var(--gold); }
.door__k { display: flex; align-items: baseline; gap: .6rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.door__n { font-family: var(--font-serif); font-style: italic; color: var(--gold-600); font-size: 1.25rem; text-transform: none; letter-spacing: 0; }
.door strong { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--navy-950); line-height: 1.3; padding-right: 2.75rem; align-self: start; }
.door__d { color: var(--text-2); font-size: .95rem; }
.door__go { position: absolute; right: 1.25rem; top: 1.25rem; width: var(--icon-m); height: var(--icon-m); border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.door__go svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.door:hover .door__go { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.door:hover .door__go svg { transform: translateX(3px); }
.industries-line { max-width: 60rem; color: var(--text-2); font-size: var(--fs-small); line-height: 1.7; text-wrap: balance; }
.industries-line strong { color: var(--navy-950); font-weight: 600; }
.svc-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.svc { position: relative; display: grid; grid-template-rows: auto 1fr; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
@media (hover: hover) { .svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--gold-300); } }
.svc .media { border-radius: 0; aspect-ratio: 16 / 9; }
.svc__body { padding: var(--pad-card); display: grid; gap: .6rem; align-content: start; }
.svc__num { font-family: var(--font-serif); font-style: italic; color: var(--gold-700); font-size: 1.05rem; }
.svc h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); color: var(--navy-950); }
.svc h3 a { display: inline-block; padding-block: .25rem; }
.svc__meta { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-700); }
.svc__lead { color: var(--text-2); }
.svc .checks { margin-top: .6rem; }
.svc .checks li { font-size: .95rem; }
.svc__link { margin-top: .6rem; }
.svc:hover .svc__link .no-wrap { background-size: 100% 1px; }
.svc:hover .svc__link svg { transform: translateX(4px); }
@media (max-width: 639px) { .svc .media { aspect-ratio: 21 / 9; } .svc .checks { display: none; } }
@media (max-width: 767px) { body:has(.sticky-cta) main { padding-bottom: 4.5rem; } }

/* 9. CARDS / GRIDS --------------------------------------------------------- */
.checks { list-style: none; display: grid; gap: .7rem; margin-top: 1.5rem; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: .75rem; align-items: start; line-height: 1.45; }
.checks li::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-100); border: 1px solid var(--gold-300); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238F6614' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; margin-top: .1rem; }
.checks--light li::before { background-color: rgba(217,157,31,.14); border-color: rgba(232,195,106,.45); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8C36A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E"); }
.card { position: relative; display: flex; flex-direction: column; gap: 1rem; padding: var(--pad-card); background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease); overflow: hidden; }
.card--link:hover, a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--gold-300); }
.card h3, .card h4, .card__title { color: var(--navy-950); font-size: var(--fs-h4); text-wrap: balance; }
.card p { color: var(--text-2); }
.card--dark { background: var(--navy-600); color: var(--ivory); border-color: rgba(232,195,106,.22); }
.card--dark h3, .card--dark h4, .card--dark .card__title { color: var(--ivory); }
.card--dark p { color: var(--ivory-2); }
.card__meta { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.card--dark .card__meta { color: var(--gold-300); }
.card__metric { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-h3); color: var(--gold-300); line-height: 1; }
.card__badge { position: absolute; top: 1rem; right: 1rem; padding: .3rem .7rem; border-radius: var(--r-pill); background: var(--gold); color: var(--navy-950); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--r-xs, 6px); background: var(--gold-100); color: var(--gold-700); }
.card--dark .card__icon { background: rgba(217,157,31,.14); color: var(--gold-300); }
.card__icon svg { width: 24px; height: 24px; }
.card__num { font-family: var(--font-serif); font-style: italic; color: var(--gold-700); font-size: 1.05rem; }
.card--dark .card__num { color: var(--gold-300); }
.card__foot { margin-top: auto; padding-top: .5rem; }
.card .media { border-radius: var(--r-sm); }
.card .link { align-self: flex-start; }
.card--glow { --mx: 50%; --my: 50%; }
.card--glow::after { content: ""; position: absolute; inset: 0; background: radial-gradient(240px circle at var(--mx) var(--my), rgba(217,157,31,.18), transparent 65%); opacity: 0; transition: opacity var(--dur-fast) var(--ease); pointer-events: none; }
@media (hover: hover) and (pointer: fine) { .card--glow:hover::after { opacity: 1; } }
.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pillars { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.pillar { position: relative; display: grid; grid-template-rows: auto 1fr; border-radius: var(--r-md); overflow: hidden; background: var(--cream); border: 1px solid var(--line); cursor: pointer; transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
@media (hover: hover) { .pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); } }
.pillar .media { border-radius: var(--r-md) var(--r-md) 0 0; aspect-ratio: 4 / 3; }
.pillar__body { padding: var(--pad-card); display: flex; flex-direction: column; gap: .6rem; }
.pillar h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); }
.pillar__title { display: inline-block; padding-block: .35rem; margin-block: -.35rem; }
.pillar__body p { color: var(--text-2); font-size: clamp(.95rem, .92rem + .2vw, 1rem); }
.pillar__body .link { margin-top: auto; padding-top: .4rem; align-self: flex-start; }
@media (max-width: 479px) { .pillar .media { aspect-ratio: 16 / 9; } }
@media (min-width: 480px) and (max-width: 719px) {
  .pillar { grid-template-columns: 104px minmax(0, 1fr); grid-template-rows: none; align-items: start; }
  .pillar .media { aspect-ratio: 1; height: 100%; border-radius: var(--r-sm); margin: 1rem 0 1rem 1rem; }
  .pillar__body { padding: 1rem 1rem 1rem .75rem; }
  .pillar h3 { font-size: 1.1rem; }
  .pillar__body p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
}
.feature-list { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 3.25rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.feature-list .n { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--gold-700); line-height: 1.3; }
.feature-list strong, .feature-list__t { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy-950); margin: 0 0 .25rem; letter-spacing: 0; line-height: 1.3; }
.feature-list p { color: var(--text-2); }
.section--navy .feature-list, .section--navy .feature-list li { border-color: var(--line-dark); }
.section--navy .feature-list strong, .section--navy .feature-list__t { color: var(--ivory); }
.section--navy .feature-list .n { color: var(--gold-300); }
.section--navy .feature-list p { color: var(--ivory-2); }
.chooser { display: flex; flex-wrap: wrap; gap: .5rem; border: 0; padding: 0; margin: 0 0 1.5rem; }
.chooser legend { display: block; width: 100%; padding: 0; margin-bottom: .75rem; }
[data-pain] { transition: opacity var(--dur-fast) var(--ease); }
.section:has([value="margin"]:checked) [data-pain]:not([data-pain="margin"]), .section:has([value="sales"]:checked) [data-pain]:not([data-pain="sales"]), .section:has([value="leadership"]:checked) [data-pain]:not([data-pain="leadership"]), .section:has([value="growth"]:checked) [data-pain]:not([data-pain="growth"]) { opacity: .4; }

/* 10. STATS / LEDGER / KPI / RECOGNITION ----------------------------------- */
.stats { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 480px) { .stats { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 479px) {
  .stat { grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr); column-gap: 1rem; align-items: baseline; padding: .9rem 1.1rem; }
  .stat__value { font-size: 1.6rem; white-space: nowrap; }
  .stat__label { max-width: none; }
}
@media (min-width: 1100px) { .stats { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.stat { position: relative; background: var(--cream); padding: var(--pad-card); display: grid; gap: .5rem; align-content: start; }
.stat__value { font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.75rem); line-height: 1; font-weight: 400; letter-spacing: -0.035em; color: var(--navy-950); }
.stat__value sup, .stat__value .unit { font-size: .45em; vertical-align: super; color: var(--gold-700); font-weight: 600; letter-spacing: 0; }
.stat__value .unit--cur { font-size: .6em; vertical-align: baseline; margin-right: .04em; }
.stat__label { font-size: var(--fs-small); color: var(--text-2); line-height: 1.45; max-width: 26ch; }
[data-count] { display: inline-block; min-width: var(--w, auto); text-align: right; }
.stats__source, .results__note { margin-top: 1rem; font-size: var(--fs-small); color: var(--text-2); }
.section--navy .stats__source, .section--navy .results__note { color: var(--ivory-2); }
.stats--dark { background: var(--line-dark); border-color: rgba(247,244,238,.18); }
.stats--dark .stat { background: var(--navy-800); }
.stats--dark .stat__value { color: var(--ivory); }
.stats--dark .stat__value sup, .stats--dark .stat__value .unit { color: var(--gold-300); }
.stats--dark .stat__label { color: var(--ivory-2); }
.stats--about, .stats--glance { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 479px) { .stats--about, .stats--glance { grid-template-columns: 1fr; } .stats--glance .stat__value { font-size: 1.4rem; } }
.stats--glance .stat__value { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); }
.ledger { display: grid; gap: .25rem; padding: 1.25rem; background: rgba(247,244,238,.05); border: 1px solid var(--line-dark); border-radius: var(--r-sm); }
.ledger__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed rgba(247,244,238,.16); font-size: .95rem; }
.ledger__row:last-child { border-bottom: 0; }
.ledger .num { white-space: nowrap; text-align: right; }
.ledger__row.total { font-weight: 700; color: var(--gold-300); border-top: 1px solid rgba(247,244,238,.25); margin-top: .25rem; padding-top: .9rem; font-size: 1.05rem; }
.ledger__row > :first-child { color: var(--ivory-2); }
.ledger__row.total > :first-child { color: var(--gold-300); }
.ledger__note { margin-top: .75rem; font-size: var(--fs-small); color: var(--ivory-2); line-height: 1.45; }
@media (max-width: 479px) { .ledger__long { display: none; } }
.ledger--light { background: var(--cream); border-color: var(--line); color: var(--ink); }
.ledger--light .ledger__row { border-bottom-color: var(--line); }
.ledger--light .ledger__row > :first-child { color: var(--text-2); }
.ledger--light .ledger__row .num { color: var(--navy-950); font-weight: 600; }
.ledger--light .ledger__row.total { color: var(--gold-700); border-top-color: var(--line); }
.ledger--light .ledger__row.total > :first-child { color: var(--gold-700); }
.ledger--light .ledger__note { color: var(--text-2); }
/* Record strip (cards pass B-01…B-10): one navy panel, cells divided by 1px seams, value-first, meter row on every cell */
.rec { display: grid; gap: 1px; margin: 0; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--r-sm); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); }
.rec__cell { display: grid; grid-template-rows: auto 1fr auto; gap: .35rem; align-content: start; padding: 1rem 1.1rem .9rem; background: var(--navy-950); color: var(--ivory); min-width: 0; }
.rec__value { grid-row: 1; margin: 0; font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1; color: var(--gold-300); white-space: nowrap; font-variant-numeric: tabular-nums; }
.rec__value .unit { font-size: .55em; vertical-align: super; color: var(--gold-300); font-weight: 600; letter-spacing: 0; }
.rec__value .unit--cur { font-size: .7em; vertical-align: baseline; margin-right: .04em; }
.rec__label { grid-row: 2; font-size: var(--fs-small); line-height: 1.4; color: var(--ivory-2); text-wrap: pretty; }
.rec__bar { grid-row: 3; height: 2px; margin-top: .4rem; background: rgba(247,244,238,.14); position: relative; }
.rec__bar[style]::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 0; background: var(--gold); transition: width .9s var(--ease); }
.is-in .rec__bar[style]::before { width: min(100%, var(--pct, 100%)); }
.case__record { grid-column: 1 / -1; margin-top: .25rem; }
@media (max-width: 899px) { .rec { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 479px) {
  .rec { grid-template-columns: 1fr; }
  .rec__cell { grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr); grid-template-rows: auto auto; column-gap: 1rem; row-gap: .3rem; align-items: baseline; padding: .85rem 1rem; }
  .rec__value { grid-row: 1; grid-column: 1; font-size: 1.45rem; }
  .rec__label { grid-row: 1; grid-column: 2; }
  .rec__bar { grid-row: 2; grid-column: 1 / -1; margin-top: .2rem; }
}
.recog { padding-top: clamp(2rem, 5vw, 4.5rem); }
.recog__list { list-style: none; display: grid; gap: 0; margin-top: 1rem; border-top: 1px solid var(--line-dark); }
.recog__list li { display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: .15rem 1rem; align-items: baseline; padding: .9rem 0; border-bottom: 1px solid var(--line-dark); }
.recog__year { font-family: var(--font-serif); font-style: italic; color: var(--gold-300); font-size: 1.4rem; line-height: 1; }
.recog__list strong { color: var(--ivory); font-size: 1.02rem; font-weight: 600; line-height: 1.3; }
.recog__by { grid-column: 2; color: var(--ivory-2); font-size: var(--fs-small); }

.recog__note { color: var(--ivory-2); }
.logos { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .55rem .95rem; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--cream); font-size: .85rem; font-weight: 600; color: var(--ink-2); transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease); }
.chip:hover { border-color: var(--gold-300); transform: translateY(-2px); background: var(--white); }
.chip--dark { background: rgba(247,244,238,.06); border-color: var(--line-dark); color: var(--ivory); }
.chip--dark:hover { background: rgba(247,244,238,.1); }
/* Facts ledger (cards pass C-01…C-04): label column + value column, one hairline per row; stacks below 640 */
.facts { display: grid; gap: 0; margin-top: 1.25rem; border-top: 1px solid var(--line); font-size: var(--fs-small); }
.facts > div { display: grid; grid-template-columns: 8.5rem minmax(0, 1fr); column-gap: 1.25rem; align-items: baseline; padding: .6rem 0; min-width: 0; }
.facts > div + div { border-top: 1px solid var(--line); }
.facts dt { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.facts dd { margin: 0; color: var(--navy-950); font-weight: 500; line-height: 1.45; text-wrap: pretty; }
@media (max-width: 639px) { .facts > div { grid-template-columns: 1fr; row-gap: .15rem; } }
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin: 1.5em 0; }
.stat-strip > div { background: var(--cream); padding: 1rem 1.1rem; }
.stat-strip strong { display: block; font-size: clamp(1.3rem, 1rem + 1vw, 1.6rem); font-weight: 400; letter-spacing: -0.03em; color: var(--navy-950); font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat-strip span { font-size: var(--fs-small); color: var(--text-2); }

/* 11. STEPS / CLIMB / TIMELINE --------------------------------------------- */
.steps { display: grid; gap: 1rem; position: relative; }
.steps__line { display: none; }
.step__link { position: absolute; right: .75rem; bottom: .75rem; width: var(--icon-l); height: var(--icon-l); border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); background: var(--cream); transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.step__link::after { content: ""; position: absolute; inset: -400px; }
.step__link svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.step:hover .step__link { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.step:hover .step__link svg { transform: translateX(3px); }
.step { position: relative; display: grid; gap: .6rem; padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.1rem, 2vw, 1.5rem) 3.6rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); overflow: hidden; }
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(5, minmax(0,1fr)); align-items: stretch; gap: .75rem; padding-top: calc(4 * var(--stair)); }
  .steps > .step { position: relative; z-index: 1; transform: translateY(calc(-1 * var(--i) * var(--stair))); }
  .step:hover { transform: translateY(calc(-1 * var(--i) * var(--stair) - 3px)); box-shadow: var(--shadow-2); border-color: var(--gold-300); }
}
@media (min-width: 640px) and (max-width: 1099px) { .steps { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; } .steps > .step:last-child:nth-child(odd) { grid-column: 1 / -1; } } /* tablets: cards in 2–3 columns instead of a one-column timeline */
@media (max-width: 639px) {
  .steps { gap: 0; padding-left: .25rem; }
  .step { border: 0; border-left: 2px solid var(--gold-200); border-radius: 0; background: transparent; padding: 0 0 1.5rem 1.25rem; gap: .35rem; }
  .step:last-child { padding-bottom: 0; }
  .step__link { position: static; width: auto; height: auto; border: 0; background: transparent; display: inline-flex; align-items: center; gap: .4rem; color: var(--navy); font-size: var(--fs-small); font-weight: 600; min-height: 44px; padding-block: .6rem; margin-block: -.6rem; }
  .step__link::after { display: none; }
  .step__link::before { content: "Read more"; }
}
.step__n { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--gold-700); }
.step h3 { font-size: var(--fs-h4); color: var(--navy-950); }
.step p { color: var(--text-2); font-size: .93rem; }
.step__meta { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.timeline { --tl-ink: var(--navy-950); --tl-muted: var(--text-2); --tl-when: var(--text-2); --tl-halo: var(--bg); --tl-line: var(--line); list-style: none; display: grid; gap: 0; position: relative; max-width: 58ch; }
@media (min-width: 900px) { .timeline { max-width: none; } }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 1px; background: var(--tl-line); }
.timeline li { position: relative; display: grid; gap: .35rem; padding: 0 0 2rem 2.5rem; }
.timeline li::before { content: ""; position: absolute; left: 6px; top: .45rem; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--tl-halo); }
.timeline .when { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--tl-when); }
.timeline strong, .timeline__t, .timeline__role { font-size: 1.05rem; font-weight: 700; color: var(--tl-ink); margin: 0; display: block; letter-spacing: 0; line-height: 1.3; }
.timeline p { color: var(--tl-muted); }
.timeline li ul { list-style: none; display: grid; gap: .25rem; margin-top: .25rem; padding: 0; }
.timeline li ul li { padding: 0 0 0 1rem; position: relative; color: var(--tl-muted); font-size: .95rem; }
.timeline li ul li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 1px; background: var(--gold); box-shadow: none; }
.timeline li:last-child { padding-bottom: 0; }
.section--navy .timeline, .band .timeline, .card--dark .timeline { --tl-ink: var(--ivory); --tl-muted: rgba(247,244,238,.74); --tl-when: var(--gold-300); --tl-halo: var(--navy); --tl-line: rgba(247,244,238,.2); }
.section--cream .timeline { --tl-halo: var(--surface); }
.timeline__org { font-size: var(--fs-small); color: var(--ink-2); font-weight: 600; }
.timeline__kpi { grid-column: 2; grid-row: 1 / 4; text-align: right; }
.timeline__kpi strong { display: block; font-size: 1.6rem; font-weight: 400; letter-spacing: -.02em; color: var(--navy-950); line-height: 1; }
.timeline__kpi small { font-size: var(--fs-xs); color: var(--text-2); }
.timeline--career li { grid-template-columns: minmax(0, 1fr) auto; }
.timeline--career li > :not(.timeline__kpi) { grid-column: 1; }
@media (max-width: 479px) { .timeline--career li { grid-template-columns: 1fr; } .timeline__kpi { grid-column: 1; grid-row: auto; text-align: left; display: flex; gap: .5rem; align-items: baseline; } }
.timeline li { transition: opacity .5s var(--ease); }
.js .timeline--fade li:not(.is-in) { opacity: .45; }
.timeline li[aria-current="step"] strong { color: var(--gold-700); }
.section--navy .timeline li[aria-current="step"] strong { color: var(--gold-300); }
@media (min-width: 1100px) {
  .timeline--h { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 1rem; max-width: none; }
  .timeline--h::before { top: 5px; left: 0; right: 0; bottom: auto; height: 1px; width: auto; }
  .timeline--h li { padding: 1.5rem 1rem 0 0; }
  .timeline--h li::before { left: 0; top: 0; }
}
.scrub, .dayline, .ladder { display: grid; gap: .5rem; margin: 1.5rem 0; max-width: 40rem; }
.scrub label, .dayline label, .ladder label { font-size: var(--fs-small); font-weight: 700; color: var(--navy-950); }
.section--navy .scrub label, .section--navy .dayline label { color: var(--ivory); }
.scrub input, .dayline input, .ladder input { accent-color: var(--gold); width: 100%; height: 44px; margin: 0; cursor: pointer; }
.scrub output, .dayline output, .ladder output { display: block; font-size: var(--fs-small); color: var(--text-2); min-height: 1.5em; }
.section--navy .scrub output, .section--navy .dayline output { color: var(--ivory-2); }
.climb { list-style: none; position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); counter-reset: climb; }
.climb::before { content: ""; position: absolute; left: clamp(1.1rem, 3vw, 1.75rem); top: 1rem; bottom: 1rem; width: 1px; background: var(--line); }
.climb__step { position: relative; display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); padding-left: clamp(2.5rem, 6vw, 4rem); align-items: center; }
@media (min-width: 900px) { .climb__step { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }
.climb .media { max-width: 480px; }
@media (max-width: 639px) { .climb .media { aspect-ratio: 21 / 9; } }
.climb__dot { position: absolute; left: calc(clamp(1.1rem, 3vw, 1.75rem) - 5px); top: 1.1rem; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--bg); z-index: 1; }
.climb__num { display: block; font-family: var(--font-serif); font-style: italic; font-size: clamp(3.5rem, 2.5rem + 4vw, 6.5rem); line-height: .85; color: var(--gold-200); letter-spacing: -.02em; }
.climb__meta { display: block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); margin-top: .75rem; }
.climb__step h3 { font-size: var(--fs-h2); margin-top: .35rem; color: var(--navy-950); }
.climb__step .lead { margin-top: 1rem; }
.climb__out { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.climb__out dt { font-size: var(--fs-xs); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); font-weight: 700; }
.climb__out dd { margin: .25rem 0 0; font-weight: 600; color: var(--navy-950); }
.climb__step .link { margin-top: 1rem; }
.climb__nav ol { list-style: none; display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.climb__nav ol::-webkit-scrollbar { display: none; }
.climb__nav a { display: grid; gap: .35rem; padding: .5rem .75rem; min-height: 44px; border-radius: var(--r-sm); font-size: var(--fs-small); font-weight: 600; color: var(--text-2); white-space: nowrap; transition: color var(--dur-micro) var(--ease), background-color var(--dur-micro) var(--ease); }
.climb__nav a small { color: var(--gold-700); font-family: var(--font-serif); font-style: italic; font-size: 1em; margin-right: .3rem; }
.climb__nav a:hover { background: var(--sand); color: var(--navy-950); }
.climb__tread { display: block; height: 3px; width: 100%; background: var(--line); border-radius: 2px; transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); transform-origin: 0 50%; }
.climb__nav a[aria-current="step"], .climb__nav a.is-past { color: var(--navy-950); }
.climb__nav a[aria-current="step"] .climb__tread, .climb__nav a.is-past .climb__tread { background: var(--gold); }
.climb__nav a[aria-current="step"] .climb__tread { transform: scaleX(1.15); }
@media (min-width: 1400px) { .climb__wrap { display: grid; grid-template-columns: 10rem minmax(0, 1fr); column-gap: 3rem; } .climb__wrap > *:not(.climb__nav) { grid-column: 2; } .climb__nav { grid-column: 1; grid-row: 1 / span 5; position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; } .climb__nav ol { display: grid; overflow: visible; padding: 0; } }
.weeks { display: grid; grid-template-columns: repeat(13, minmax(0,1fr)); gap: .35rem; margin-bottom: .75rem; list-style: none; }
.weeks li { height: 6px; border-radius: 3px; background: var(--gold-200); }
.weeks li:nth-child(odd) { background: var(--gold); }
.weeks__legend { display: flex; flex-wrap: wrap; gap: .35rem 1.25rem; font-size: var(--fs-xs); color: var(--text-2); margin-bottom: clamp(2rem, 4vw, 3rem); }
.weeks__legend strong { color: var(--navy-950); font-weight: 600; }

/* 12. BANDS / QUOTE / CTA ---------------------------------------------------- */
.band { position: relative; overflow: hidden; background: var(--navy-950); color: var(--ivory); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 4.5rem); isolation: isolate; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(640px circle at 70% 30%, rgba(217,157,31,.16), transparent 62%); }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(31,76,134,.35), transparent 55%); }
.band--full { border-radius: 0; }
.band--inset { background: var(--navy-800); border: 1px solid rgba(247,244,238,.1); }
.band--inset::before, .band--inset::after { display: none; }
.band h3 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem); }
.band .lead { color: var(--ivory-2); }
.band .eyebrow { color: var(--gold-300); }
.proof-grid { display: grid; gap: clamp(1rem, 2.5vw, 2rem); align-items: start; }
@media (min-width: 1100px) { .proof-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); } }
.band__grid { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
@media (min-width: 900px) { .band__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }
.quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.4rem); line-height: 1.3; color: var(--ivory); text-wrap: pretty; hanging-punctuation: first; }
.quote cite { display: block; font-family: var(--font-sans); font-style: normal; font-size: var(--fs-small); color: var(--gold-300); margin-top: 1rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.pull { position: relative; max-width: 52rem; margin: clamp(3rem, 6vw, 5rem) auto 0; padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-dark); }
.pull::before { content: "\201C"; position: absolute; left: -.05em; top: clamp(1.2rem, 3vw, 2rem); font-family: var(--font-serif); font-size: clamp(5rem, 10vw, 9rem); line-height: .8; color: rgba(232,195,106,.18); pointer-events: none; }
.pull .quote { font-size: clamp(1.35rem, 1rem + 1.3vw, 2.1rem); padding-left: clamp(1.5rem, 4vw, 3rem); }
.pull__by { display: flex; gap: .9rem; align-items: center; margin-top: 1.5rem; padding-left: clamp(1.5rem, 4vw, 3rem); font-size: var(--fs-small); color: var(--ivory-2); }
.pull__by img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: 50% 25%; box-shadow: 0 0 0 2px var(--gold); }
.pull__by strong { color: var(--ivory); display: block; font-weight: 600; }
.prose .pull { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); line-height: 1.3; color: var(--navy); border-top: 2px solid var(--gold); padding-top: .75rem; margin: 2em 0; max-width: none; }
.prose .pull::before { display: none; }
@media (min-width: 1280px) { .prose .pull { float: right; width: 14rem; margin: .2em -16rem 1em 2rem; } }
.cta { position: relative; overflow: hidden; text-align: center; background: var(--navy-950); color: var(--ivory); isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(720px circle at 80% 110%, rgba(217,157,31,.18), transparent 60%), radial-gradient(520px circle at 10% -10%, rgba(31,76,134,.4), transparent 60%); }
.cta h2 { max-width: 22ch; margin-inline: auto; }
.cta .lead { max-width: 40rem; margin: 1.25rem auto 0; color: var(--ivory-2); }
.cta .btn-row { justify-content: center; margin-top: 2.25rem; }
.cta .btn--outline { --btn-fg: var(--ivory); border-color: var(--line-dark-strong); }
.cta .btn--outline:hover { background: rgba(247,244,238,.08); border-color: var(--ivory); }
.cta__note { display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem 1rem; list-style: none; margin-top: 1.5rem; font-size: var(--fs-small); color: var(--ivory-2); }
.cta__note li { white-space: nowrap; }
.cta__note li + li::before { content: "·"; margin-right: 1rem; opacity: .6; }
.cta__addr { margin-top: .75rem; color: var(--ivory-3); }
.cta__addr a { color: var(--ivory); }
@media (max-width: 479px) { .cta__note li + li::before { display: none; } .cta__note { flex-direction: column; gap: .25rem; } .cta h2 em { display: block; } }
.section--tight + .cta { margin-top: 0; }

/* 13. FIT -------------------------------------------------------------------- */
/* Fit card (cards pass A-01…A-08): one container, two equal columns, hairline rows, inline icons, aligned footers */
.fit, .fit--single { display: grid; gap: 0; max-width: 72rem; margin-inline: auto; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.fit__col { display: grid; grid-template-rows: auto 1fr auto; align-content: start; padding: var(--pad-card); border: 0; border-radius: 0; background: transparent; min-width: 0; }
.fit__col + .fit__col { border-top: 1px solid var(--line); }
@media (min-width: 900px) { .fit, .fit--single { grid-template-columns: 1fr 1fr; } .fit__col + .fit__col { border-top: 0; border-left: 1px solid var(--line); } }
.fit__h, .fit__col h3 { font-size: var(--fs-h4); letter-spacing: -0.015em; color: var(--ink); margin: 0 0 .75rem; display: flex; align-items: center; gap: .75rem; text-transform: none; }
.fit__col--no .fit__h { color: var(--text-2); }
.fit__h i, .fit__col h3 i { display: inline-grid; place-items: center; width: var(--icon-m); height: var(--icon-m); border-radius: 50%; font-style: normal; flex: none; }
.fit__h i svg, .fit__col h3 i svg { width: 15px; height: 15px; }
.fit__col--yes .fit__h i { background: var(--gold); color: var(--navy-950); }
.fit__col--no .fit__h i { background: var(--sand); color: var(--slate); border: 1px solid var(--line); }
.fit__list, .fit__col ul { list-style: none; display: grid; align-content: start; margin: 0; padding: 0; }
.fit__list li, .fit__col li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: .8rem; align-items: start; padding: .75rem 0; color: var(--ink-2); line-height: 1.5; border-top: 1px solid var(--line); }
.fit__list li:first-child { border-top: 0; padding-top: .25rem; }
.fit__list li i { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-top: .2rem; font-style: normal; color: var(--gold-700); }
.fit__list li i svg { width: 15px; height: 15px; }
.fit__col--no .fit__list li { color: var(--text-2); }
.fit__col--no .fit__list li i { color: var(--slate); }
.fit__col--no .fit__list li i svg { width: 12px; height: 12px; }
.fit__foot { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--text-2); align-self: end; }
.fit__foot--note a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .18em; }
.fit__note { max-width: 44rem; margin-inline: auto; }
.fitcheck { margin: clamp(2rem, 4vw, 3rem) auto 0; max-width: 60rem; padding: var(--pad-card); border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); display: grid; gap: 1rem; }
.fitcheck__h { font-size: var(--fs-h4); color: var(--navy-950); }
.fitcheck fieldset { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; min-width: 0; }
.fitcheck legend { float: left; width: 100%; padding: 0; margin-bottom: .4rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.fitcheck__result { display: block; margin-top: .25rem; padding: 1rem 1.15rem; border-radius: var(--r-sm); background: var(--white); border: 1px solid var(--line); color: var(--navy-950); font-weight: 500; min-height: 3.2rem; }
.fitcheck__result:empty { display: none; }
.fitcheck__result a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .18em; }

/* 14. POSTS / ARTICLES ------------------------------------------------------ */
.post-card { display: grid; gap: 1rem; align-content: start; position: relative; transition: transform var(--dur-fast) var(--ease); }
@media (hover: hover) { .post-card:hover { transform: translateY(-2px); } .post-card:hover .media { box-shadow: var(--shadow-1); } }
.post-card:active { transform: translateY(0) scale(.995); }
.post-card .media { border-radius: var(--r-md); }
.post-card__meta { display: flex; flex-wrap: wrap; gap: .35rem .75rem; align-items: center; font-size: var(--fs-xs); font-weight: 600; color: var(--text-2); letter-spacing: 0; text-transform: none; }
.post-card__meta > * + *::before { content: "·"; margin-right: .75rem; opacity: .6; }
.post-card__cat { font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.post-card h3, .post-card h2 { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); color: var(--navy-950); text-wrap: balance; }
.post-card h3 a, .post-card h2 a { display: inline; padding-block: .35rem; margin-block: -.35rem; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px; transition: background-size var(--dur-fast) var(--ease); }
.post-card:hover h3 a, .post-card:hover h2 a { background-size: 100% 1px; }
.post-card p { color: var(--text-2); font-size: var(--fs-body); }
.post-card__go { margin-top: .25rem; font-size: var(--fs-small); }
.post-card:hover .post-card__go .no-wrap { background-size: 100% 1px; }
.post-card:hover .post-card__go svg { transform: translateX(4px); }
.post-card--featured { gap: 1.25rem; align-items: start; }
@media (min-width: 900px) { .post-card--featured { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 2.5rem; } .post-card--featured > div { padding-top: .25rem; } .post-card--featured h2, .post-card--featured h3 { font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.5rem); } }
.post-card__peek { display: grid; grid-template-rows: 0fr; overflow: hidden; color: var(--navy-950); font-size: var(--fs-small); border-left: 2px solid var(--gold); padding-left: .75rem; opacity: 0; margin-top: .75rem; transition: grid-template-rows .4s var(--ease), opacity .3s var(--ease); }
.post-card__peek > * { min-height: 0; }
@media (hover: hover) { .post-card--featured:hover .post-card__peek, .post-card--featured:focus-within .post-card__peek { grid-template-rows: 1fr; opacity: 1; } }
.post-card--note { border: 1px dashed var(--stone-600); border-radius: var(--r-md); padding: var(--pad-card); align-self: start; }
.grid--posts { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
@media (min-width: 640px) and (max-width: 1023px) { .grid--posts > .post-card:last-child:nth-child(odd), .grid--3 > .post-card:last-child:nth-child(odd) { grid-column: 1 / -1; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); align-items: center; column-gap: 1.5rem; } .grid--3 > .post-card:last-child:nth-child(odd) > div { margin-top: 0; } }
.section-title { font-size: var(--fs-h3); margin-bottom: 1.5rem; }
.follow { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; color: var(--text-2); font-size: var(--fs-small); margin-top: 1.25rem; }
.article-hero { padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem)); padding-bottom: 0; }
.article-hero h1 { max-width: 22ch; line-height: 1.06; }
.article-hero h1[data-long] { font-size: clamp(1.75rem, .9rem + 3.2vw, 3.5rem); }
.article-hero .eyebrow { margin-bottom: .75rem; }
.article__meta { display: flex; flex-wrap: wrap; gap: .5rem .75rem; align-items: center; margin-top: 1.25rem; font-size: var(--fs-small); color: var(--text-2); }
.article__meta > * + *::before { content: "\00B7"; margin-right: .75rem; color: var(--stone-600); }
.article__meta strong { color: var(--navy-950); }
.article__share { display: inline-flex; gap: .5rem; margin-left: auto; }
.article__share::before { display: none !important; }
.article__cover { margin-block: clamp(2rem, 5vw, 4rem); }
.article__cover .media { aspect-ratio: 4 / 3; border-radius: var(--r-md); }
@media (min-width: 640px) { .article__cover .media { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .article__cover .media { aspect-ratio: 21 / 9; } }
@media (min-width: 1280px) { .article__cover .media { border-radius: var(--r-lg); } }
.article-grid { display: grid; gap: 3rem; }
.article-grid > * { min-width: 0; }
@media (min-width: 1280px) { .article-grid { grid-template-columns: minmax(0, 62ch) 13rem; } .article-grid .toc { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; } }
.toc { position: relative; }
.toc__h { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); margin-bottom: .5rem; }
.toc ol { list-style: none; display: grid; gap: .1rem; }
.toc a { font-size: var(--fs-small); color: var(--text-2); display: inline-block; padding: .4rem 0; line-height: 1.35; transition: color var(--dur-micro) var(--ease); }
.toc a:hover, .toc a[aria-current="true"] { color: var(--navy); }
.toc a[aria-current="true"] { font-weight: 600; }
.toc::before { content: ""; position: absolute; left: -.75rem; top: 0; width: 2px; height: var(--toc-h, 0px); background: var(--gold); transform: translateY(var(--toc-y, 0px)); transition: transform var(--dur-fast) var(--ease), height var(--dur-fast) var(--ease); }
@media (max-width: 1279px) { .article-grid .toc { display: none; } }
.takeaways { padding: var(--pad-card); border-radius: var(--r-md); background: var(--navy-950); color: var(--ivory); margin: 2rem 0 2.5rem; }
.takeaways h2 { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-300); margin: 0 0 1rem; }
.takeaways ul { list-style: none; display: grid; gap: .65rem; margin: 0; padding: 0; }
.takeaways li { display: grid; grid-template-columns: 18px 1fr; gap: .75rem; line-height: 1.5; color: rgba(247,244,238,.9); }
.takeaways li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin: .55rem 0 0 .3rem; }
@media (max-width: 479px) { .takeaways li { font-size: .95rem; } }
.author { display: grid; grid-template-columns: 64px 1fr; gap: 1.1rem; align-items: start; padding: 1.5rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--cream); margin-top: 3rem; }
.author__avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: var(--navy); box-shadow: 0 0 0 2px var(--navy); }
.author__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.author strong { display: block; color: var(--navy-950); }
.author p { font-size: .92rem; color: var(--text-2); margin-top: .2rem; }
@media (max-width: 479px) { .author { grid-template-columns: 1fr; } }
.checklist { list-style: none; display: grid; gap: .5rem; margin: 1.5em 0 .5em; padding: 0; }
.checklist__btn { display: inline-flex; gap: .6rem; align-items: flex-start; text-align: left; line-height: 1.45; min-height: 44px; padding: .4rem 0; color: var(--ink-2); }
.checklist__btn::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: .25rem; border-radius: 50%; border: 1.5px solid var(--gold); transition: background-color var(--dur-fast) var(--ease); }
.checklist__btn[aria-pressed="true"]::before { background: var(--gold); }
.checklist__btn[aria-pressed="true"] { color: var(--text-2); text-decoration: line-through; text-decoration-color: var(--stone-600); }
.checklist__count { font-size: var(--fs-small); color: var(--text-2); margin-bottom: 1.5em; }
.tabs__list { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; margin: 1.5rem 0 1.25rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.tabs__list::-webkit-scrollbar { display: none; }
.tab { position: relative; flex: 1 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .7rem 1.1rem; border-radius: var(--r-sm); background: var(--sand); color: var(--navy); font-weight: 700; font-size: .9rem; transition: background-color var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease); white-space: nowrap; }
.tab:hover { background: var(--stone); }
.tab[aria-selected="true"] { background: var(--navy-950); color: var(--ivory); }
.tabs__panel[hidden] { display: none; }
.tabs__panel { animation: fadeUp .45s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tabs__panel h3:first-child { margin-top: 0; }

/* 15. ACCORDION ------------------------------------------------------------ */
.acc { border-top: 1px solid color-mix(in oklab, var(--navy) 18%, transparent); }
.acc__item { border-bottom: 1px solid color-mix(in oklab, var(--navy) 18%, transparent); }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem .25rem; border-radius: var(--r-sm); text-align: left; font-size: clamp(1.02rem, 1rem + .3vw, 1.2rem); font-weight: 500; color: var(--navy-950); letter-spacing: -0.01em; line-height: 1.3; transition: color var(--dur-micro) var(--ease), background-color var(--dur-micro) var(--ease); }
.acc__btn > span:first-child { text-wrap: balance; }
.acc__btn:hover { background: var(--cream); }
.acc__btn[aria-expanded="true"] { font-weight: 600; }
.acc__icon { flex: none; width: var(--icon-m); height: var(--icon-m); border-radius: 50%; border: 1px solid color-mix(in oklab, var(--navy) 18%, transparent); display: grid; place-items: center; transition: transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.acc__icon svg { width: 14px; height: 14px; }
.acc__btn:hover .acc__icon { background: var(--sand); border-color: var(--stone-600); }
.acc__btn:active .acc__icon { transform: scale(.92); transition-duration: 80ms; }
.acc__btn[aria-expanded="true"] .acc__icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.acc__btn[aria-expanded="true"]:active .acc__icon { transform: rotate(45deg) scale(.92); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.acc__panel:not(.is-open) { transition-duration: var(--dur-fast); }
.acc__panel > div { overflow: hidden; }
.acc__panel.is-open { grid-template-rows: 1fr; }
html.no-js .acc__panel { grid-template-rows: 1fr; }
html.no-js .acc__icon { display: none; }
.acc__body { padding: 0 0 1.35rem; color: var(--text-2); max-width: 68ch; line-height: 1.65; }
.acc__body p + p { margin-top: .8em; }
.acc--dark, .acc--dark .acc__item { border-color: var(--line-dark); }
.acc--dark .acc__btn { color: var(--ivory); }
.acc--dark .acc__btn:hover { background: rgba(247,244,238,.05); }
.acc--dark .acc__icon { border-color: rgba(247,244,238,.3); }
.acc--dark .acc__body { color: rgba(247,244,238,.74); }
.faq { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .faq { grid-template-columns: 240px minmax(0, 1fr); gap: 4rem; } .faq-rail { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; display: grid; gap: .25rem; } }
.faq-rail { display: flex; flex-wrap: wrap; gap: .5rem; align-content: start; }
.faq-rail a { display: inline-flex; gap: .4rem; align-items: center; justify-content: space-between; min-height: 44px; padding: .5rem .9rem; border-radius: var(--r-pill); border: 1px solid var(--line); font-size: var(--fs-small); font-weight: 600; color: var(--ink-2); transition: background-color var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease); }
.faq-rail a small { color: var(--gold-700); font-variant-numeric: tabular-nums; }
.faq-rail a:hover { background: var(--cream); border-color: var(--stone-600); }
.faq-rail a[aria-current] { background: var(--gold-100); border-color: var(--gold-200); color: var(--navy-950); }
@media (min-width: 1024px) { .faq-rail a { border-radius: var(--r-sm); } }
.faq-groups { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); min-width: 0; }
.faq-group { display: grid; gap: 1rem; }
.faq-group__h { font-size: var(--fs-h3); display: flex; gap: .75rem; align-items: baseline; }
.faq-group__n { font-family: var(--font-serif); font-style: italic; color: var(--gold-600); font-size: 1.1em; }
.faq-group .acc { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding-inline: clamp(1rem, 2.5vw, 1.75rem); }
.faq-group .acc .acc__item:last-child { border-bottom: 0; }
.faq-filter { display: grid; gap: .4rem; max-width: 32rem; margin-top: 1.5rem; }
.faq-filter > span { font-size: var(--fs-small); font-weight: 700; color: var(--navy-950); }
.faq-filter input { width: 100%; min-height: 48px; padding: .75rem 1rem .75rem 2.75rem; border-radius: var(--r-pill); border: 1px solid var(--slate-2); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6472' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='M20 20l-4-4'/%3E%3C/svg%3E") no-repeat 1rem center / 18px; font: inherit; font-size: max(1rem, var(--fs-body)); color: var(--ink); }
.faq-filter input:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; border-color: var(--navy); }
.faq-filter__count { font-size: var(--fs-small); color: var(--text-2); }
.faq-filter__empty { padding: 1rem 1.15rem; border: 1px dashed var(--stone-600); border-radius: var(--r-md); color: var(--text-2); }

/* 16. FORMS ---------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__title { font-size: var(--fs-h3); margin-bottom: .25rem; color: var(--navy-950); }
.form__intro { color: var(--text-2); margin-bottom: .5rem; }
.form__row { display: grid; gap: 1.1rem; align-items: start; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .5rem; align-content: start; }
.field label, .legend { font-size: var(--fs-small); font-weight: 700; color: var(--navy-950); letter-spacing: .01em; }
.field label .optional, .legend .optional { color: var(--slate); font-weight: 500; }
.fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: .5rem; }
.legend { padding: 0; margin: 0; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: .85rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--slate-2); background: var(--white); font: inherit; font-size: max(1rem, var(--fs-body)); color: var(--ink); transition: border-color var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease); appearance: none; -webkit-appearance: none; }
.field textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23022F60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.75rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--slate); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; border-color: var(--navy); box-shadow: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate); opacity: 1; }
.field [aria-invalid="true"] { border-color: var(--err-ink); }
.field__hint { font-size: var(--fs-xs); color: var(--text-2); }
.field__error { font-size: var(--fs-xs); color: var(--err); display: flex; gap: .4rem; align-items: center; }
.field__error::before { content: "!"; display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--err); color: #fff; font-size: .7rem; font-weight: 700; flex: none; }
.form__foot { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: .5rem; }
.form__foot p { font-size: var(--fs-xs); color: var(--text-2); max-width: 36ch; }
@media (max-width: 479px) { .form__foot { display: grid; gap: .9rem; } .form__foot .btn { width: 100%; } .form__foot p { max-width: none; } }
.form__status { padding: 1rem 1.15rem; border-radius: var(--r-sm); font-size: .95rem; display: none; }
.form__status.is-ok { display: block; background: var(--ok-bg); color: var(--ok); border: 1px solid var(--ok-line); }
.form__status.is-err { display: block; background: var(--err-bg); color: var(--err); border: 1px solid var(--err-line); }
.form__status.is-err a { color: inherit; font-weight: 700; text-decoration: underline; }
.form__status.form__status--target:not(:target) { display: none; }
.form__status--target:target { display: block; }
.form__done { display: grid; gap: .75rem; padding: 1rem 0; }
.form__done-mark { width: var(--icon-l); height: var(--icon-l); border-radius: 50%; background: var(--gold); color: var(--navy-950); display: grid; place-items: center; }
.form__done-mark svg { width: 20px; height: 20px; }
.form__done h2 { font-size: var(--fs-h3); color: var(--navy-950); }
.form__done p { color: var(--text-2); }
.form__done a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .18em; }
.form__intent { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem; font-size: var(--fs-small); color: var(--text-2); margin-bottom: .25rem; }
.form__intent .chip { min-height: 36px; padding: .35rem .85rem; background: var(--gold-100); border-color: var(--gold-200); color: var(--navy-950); }
.form__intent .plain { color: var(--navy); text-decoration: underline; text-underline-offset: .18em; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.choice-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; width: 100%; height: 100%; }
.choice span { display: inline-flex; align-items: center; gap: .55rem; min-height: 44px; padding: .6rem 1.1rem .6rem .95rem; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--white); font-size: .9rem; font-weight: 600; white-space: nowrap; color: var(--ink-2); transition: background-color var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease), transform 120ms var(--ease); }
.choice span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid currentColor; opacity: .5; flex: none; transition: transform 200ms var(--ease-spring), background-color 160ms var(--ease), opacity 160ms var(--ease); }
@media (hover: hover) { .choice span:hover { border-color: var(--stone-600); background: var(--cream); } }
.choice input:checked + span { background: var(--navy-950); color: var(--ivory); border-color: var(--navy-950); }
.choice input:checked + span::before { background: var(--gold); border-color: var(--gold); opacity: 1; transform: scale(1.25); }
.choice input:focus-visible + span { outline: 2px solid var(--navy); outline-offset: 3px; }
.choice span:active { transform: scale(.97); }
@media (max-width: 359px) { .choice { flex: 1 1 100%; } .choice span { width: 100%; justify-content: flex-start; white-space: normal; text-align: left; } }
.contact-aside { display: grid; gap: 1.25rem; align-content: start; }
.contact-aside .card { gap: .6rem; }
.contact-aside__title { font-size: var(--fs-h3); color: var(--ivory); }
.contact-aside__proof { color: var(--ivory-2); }
.contact-aside__proof strong { font-size: 1.25rem; color: var(--gold-300); font-weight: 600; }
.steps-list { margin: 0; padding-left: 1.2rem; display: grid; gap: .5rem; color: rgba(247,244,238,.85); }
.steps-list li::marker { color: var(--gold-300); font-weight: 700; }
.contact-aside dl { display: grid; gap: 1rem; margin: 0; }
.contact-aside dt { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); }
.contact-aside dd { margin: .2rem 0 0; font-size: 1.05rem; color: var(--navy-950); }
.contact-aside dd small { display: block; font-size: var(--fs-small); color: var(--text-2); margin-top: .15rem; }
.contact-aside dd a { font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .2em; }
.contact-aside dd a:hover { color: var(--navy-500); text-decoration-color: var(--navy-500); }
@media (max-width: 359px) { .contact-aside dd { font-size: .95rem; } }

/* 17. FOOTER & SIGNATURE --------------------------------------------------- */
.footer { background: var(--navy-900); color: var(--ivory-2); position: relative; overflow: hidden; }
.footer__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding-block: clamp(2rem, 5vw, 3.5rem); border-bottom: 1px solid var(--line-dark); }
.footer__close { font-family: var(--font-sans); font-size: clamp(1.4rem, 1rem + 1.6vw, 2.25rem); font-weight: 500; letter-spacing: -0.02em; color: var(--ivory); text-wrap: balance; line-height: 1.15; max-width: 22ch; }
.footer__cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; }
.footer__tel { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; font-weight: 600; color: var(--ivory); transition: color var(--dur-micro) var(--ease); }
.footer__tel svg { width: 16px; height: 16px; }
.footer__tel:hover { color: var(--gold-300); }
.footer__top { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; } }
@media (min-width: 360px) and (max-width: 899px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; } .footer__brand, .footer__top > address { grid-column: 1 / -1; } }
.footer__brand { display: grid; gap: 1.25rem; align-content: start; }
.footer__brand p { max-width: 34ch; font-size: .95rem; line-height: 1.6; }
.footer .footer__h { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-300); margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: .35rem; }
.footer li a { display: inline-block; padding-block: .55rem; margin-block: -.2rem; color: var(--ivory-2); transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.footer li a:hover { color: var(--gold-300); transform: translateX(4px); }
.footer li a[aria-current="page"] { color: var(--gold-300); }
.footer li a:active, .footer__bottom a:active { color: var(--gold-200); }
.footer address { font-style: normal; display: grid; gap: .35rem; }
.footer address a { display: inline-block; padding-block: .55rem; margin-block: -.2rem; color: var(--ivory); font-weight: 600; overflow-wrap: anywhere; }
.footer address a:hover { color: var(--gold-300); }
.footer address span { font-size: var(--fs-small); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 1.5rem 0 calc(2rem + env(safe-area-inset-bottom)); display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: space-between; font-size: var(--fs-xs); color: var(--ivory-3); }
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bottom ul a { display: inline-block; padding: .75rem 0; margin: -.75rem 0; }
.footer__bottom a:hover { color: var(--gold-300); }
.footer__bottom a[aria-current="page"] { color: var(--gold-300); }
.footer__legal { display: grid; gap: .25rem; }
.footer__glow { position: absolute; right: -10%; bottom: -30%; width: 60vw; max-width: 900px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(217,157,31,.16), transparent 60%); pointer-events: none; }
.social { display: inline-flex; gap: .6rem; }
.social a { display: grid; place-items: center; width: var(--icon-l); height: var(--icon-l); border-radius: 50%; border: 1px solid rgba(247,244,238,.2); color: var(--ivory); transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.social a:hover { background: var(--gold); color: var(--navy-950); border-color: var(--gold); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
/* Arctic Grey signature — locked spec (arctic-grey-signature skill), light variant for the navy footer */
/* Arctic Grey signature — geometry, sizes and keyframes copied from the live block on arcticgrey.com; colors mapped to the navy footer */
.ag-signature { display: flex; justify-content: center; }
.ag-signature a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 400; letter-spacing: .02em; color: var(--ivory-3); background: transparent; text-decoration: none; transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease); }
.ag-signature a:hover, .ag-signature a:active { transform: translateY(-1px); background: rgba(247,244,238,.06); color: var(--ivory); } /* never gold — the mark stays muted */
.ag-heart { display: inline-block; width: 15.2px; height: 15.2px; margin-top: 2px; flex: 0 0 15.2px; fill: currentColor; animation: ag-heartbeat 4.6s cubic-bezier(.4,0,.6,1) infinite; transform-origin: center; transition: transform .22s var(--ease); }
.ag-signature a:hover .ag-heart { transform: scale(1.18); }
.ag-coffee { display: inline-block; width: 22.4px; height: 22.4px; margin-top: -4px; flex: 0 0 22.4px; fill: currentColor; transform-origin: 50% 80%; transition: transform .22s var(--ease); }
.ag-signature a:hover .ag-coffee { transform: rotate(-6deg); }
.ag-steam { animation: ag-steam-rise 2.4s cubic-bezier(.4,0,.2,1) infinite; transform-origin: center; opacity: 0; }
.ag-steam-1 { animation-delay: 0s; }
.ag-steam-2 { animation-delay: .8s; }
.ag-steam-3 { animation-delay: 1.6s; }
@keyframes ag-heartbeat { 0%, 100% { transform: scale(1); } 6% { transform: scale(1.1); } 12% { transform: scale(1); } 18% { transform: scale(1.1); } 24% { transform: scale(1); } }
@keyframes ag-steam-rise { 0% { opacity: 0; transform: translateY(1.6px); } 30% { opacity: 1; } 70% { opacity: 1; transform: translateY(-1.6px); } 100% { opacity: 0; transform: translateY(-2.6px); } }
body.tab-hidden .ag-heart, body.tab-hidden .ag-steam { animation-play-state: paused; }

/* 18. STICKY BAR ----------------------------------------------------------- */
.sticky-cta { position: fixed; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom)); z-index: var(--z-sticky); display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .6rem .6rem .6rem 1rem; background: rgba(4,21,48,.92); color: var(--ivory); border-radius: var(--r-pill); box-shadow: var(--shadow-2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transform: translateY(120%); transition: transform var(--dur) var(--ease); }
.sticky-cta.is-visible { transform: none; }
.sticky-cta__text { display: none; font-size: var(--fs-small); font-weight: 600; line-height: 1.25; margin-right: auto; }
@media (min-width: 400px) and (max-width: 767px) { .sticky-cta__text { display: block; } }
.sticky-cta .btn { min-height: 44px; padding: .5rem 1rem; font-size: .85rem; flex: none; }
.sticky-cta__call { border-color: var(--line-dark-strong); gap: .4rem; }
.sticky-cta__call svg { width: 15px; height: 15px; }
@media (min-width: 768px) { .sticky-cta { display: none; } }
@media (max-width: 359px) { .sticky-cta { padding: .45rem; gap: .35rem; } .sticky-cta .btn { padding: .5rem .7rem; font-size: var(--fs-xs); min-height: 40px; } }

/* 19. MOTION --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--scale { transform: scale(.96); }
.reveal--left { transform: translateX(-22px); }
.reveal--right { transform: translateX(22px); }
.reveal--clip { clip-path: inset(0 0 100% 0 round var(--r-lg)); transform: none; transition: clip-path .7s var(--ease), opacity .5s var(--ease); }
.reveal--clip.is-in { clip-path: inset(0 0 0 0 round var(--r-lg)); }
html.no-js .reveal, html.no-js .txt-split .w, html.no-js .lines > span > span { opacity: 1; transform: none; clip-path: none; }
.txt-split .w { display: inline-block; max-width: 100%; overflow-wrap: break-word; opacity: 0; transform: translateY(.45em); transform-origin: 0 100%; transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(min(var(--i, 0) * 40ms, 400ms) + var(--d, 0s)); }
.txt-split.is-in .w { opacity: 1; transform: none; }
.reveal.is-in > .door, .reveal.is-in > .stat, .reveal.is-in > .post-card, .reveal.is-in > .fit__col, .reveal.is-in .rec__cell, .reveal.is-in > .card, .reveal.is-in > .svc, .reveal.is-in > .symptoms > li { animation: rise .5s var(--ease) both; animation-delay: calc(var(--n, 0) * 50ms); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.js .hero-in { animation: rise .7s var(--ease) both; animation-delay: calc(var(--i, 0) * 90ms); }
.lines > span { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.js .lines > span > span { display: inline-block; transform: translateY(110%); transition: transform .7s var(--ease); }
.js .lines.is-in > span > span { transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .txt-split .w, .lines > span > span, .hero-in { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__media img { animation: none; }
  .ag-heart, .ag-steam, .ag-coffee { animation: none; transition: none; }
  .ag-steam { opacity: .7; }
  .rec__bar[style]::before { width: min(100%, var(--pct, 100%)); }
}

/* 20. INTERIOR PAGES ------------------------------------------------------- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5.5rem)); padding-bottom: clamp(2.5rem, 6vw, 5.5rem); background: var(--navy-950); color: var(--ivory); overflow: hidden; isolation: isolate; }
.page-hero:not(.page-hero--light)::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(700px circle at 78% 20%, rgba(218,158,32,.14), transparent 62%), linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.page-hero:not(.page-hero--light)::after { content: ""; position: absolute; top: -8%; right: -6%; width: 48vw; max-width: 900px; aspect-ratio: 1694 / 477; background: url(../brand/logo-horizontal-white.svg) no-repeat right top / contain; opacity: .05; pointer-events: none; z-index: -1; }
.page-hero--light { background: var(--ivory); color: var(--ink); }
.page-hero__grid { display: grid; gap: clamp(2rem, 4vw, 4rem); align-items: end; }
@media (min-width: 960px) { .page-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }
.page-hero h1 { max-width: 16ch; }
.page-hero--pe h1 { max-width: 18ch; }
.page-hero .lead { color: var(--ivory-2); max-width: 38rem; margin-top: 1.25rem; }
.page-hero--light .lead { color: var(--text-2); }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero .btn-row { margin-top: 2rem; }
.page-hero .hero__proof { margin-top: 1.5rem; }
.page-hero__media { position: relative; }
.page-hero__media .media { aspect-ratio: 4 / 3; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px rgba(247,244,238,.1); }
.page-hero--light .page-hero__media .media { box-shadow: none; }
@media (min-width: 960px) { .page-hero__media .media--3x4 { aspect-ratio: 3 / 4; max-width: 420px; margin-left: auto; } }
@media (max-width: 959px) { .page-hero__media .media--3x4 { aspect-ratio: 4 / 5; max-width: min(100%, 360px); margin-left: 0; } .page-hero__media { order: -1; } .page-hero__media .media:not(.media--3x4) { aspect-ratio: 21 / 9; } }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,21,48,.55), rgba(4,21,48,.85) 70%, var(--navy-950)); }
.page-hero--quiet .page-hero__bg img { opacity: .22; filter: blur(2px) saturate(.7); object-position: 50% 60%; }
.page-hero--stairs .page-hero__bg img { opacity: .55; object-position: 70% 40%; filter: saturate(.6) contrast(1.1); }
.page-hero--stairs .page-hero__bg::after { background: linear-gradient(90deg, var(--navy-950) 0%, rgba(4,21,48,.85) 45%, rgba(4,21,48,.35) 100%), linear-gradient(180deg, rgba(4,21,48,.2), var(--navy-950) 92%); }
.page-hero--compact { padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem)); padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.page-hero--index { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.page-hero--form .page-hero__grid { align-items: start; }
@media (min-width: 960px) { .page-hero--form .page-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); } .page-hero--form > .container > .page-hero__grid > div:first-child { position: sticky; top: calc(var(--header-h) + 2rem); } }
.page-hero--form .form { background: var(--cream); color: var(--ink); }
.page-hero--form .form .field label, .page-hero--form .legend { color: var(--navy-950); }
.page-hero--index .page-hero__grid, .page-hero--compact .page-hero__grid { grid-template-columns: 1fr; }
.page-hero--index h1, .page-hero--compact h1 { max-width: 20ch; }
.page-hero__media--pop { position: relative; }
.page-hero__media--pop > svg { position: absolute; right: -6%; bottom: -10%; width: clamp(96px, 14vw, 180px); height: auto; filter: drop-shadow(0 18px 40px rgba(4,21,48,.45)); z-index: 2; }
@media (max-width: 959px) { .page-hero__media--pop > svg { display: none; } }
.byline { display: none; }
@media (max-width: 959px) { .byline { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-size: var(--fs-small); color: var(--ivory-2); } .byline img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: 50% 25%; box-shadow: 0 0 0 2px var(--gold); } .byline strong { color: var(--ivory); } .page-hero--about .page-hero__media { display: none; } }
@media (min-width: 960px) { .page-hero--about { overflow: visible; } .page-hero--about::after { display: none; } .page-hero--about .page-hero__bg { overflow: hidden; border-radius: 0; } }
.crumbs-nav { margin-bottom: 1.25rem; }
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em; color: var(--ivory-3); list-style: none; }
.crumbs li { white-space: nowrap; display: inline-flex; align-items: center; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; opacity: .5; }
.crumbs [aria-current] { color: var(--gold-300); display: inline-block; overflow: hidden; text-overflow: ellipsis; max-width: min(100%, 60vw); vertical-align: bottom; }
.crumbs a { display: inline-block; padding: .7rem .1rem; margin: -.7rem -.1rem; transition: color var(--dur-fast) var(--ease); }
.crumbs a:hover { color: var(--gold-300); }
.crumbs a:active { color: var(--gold-200); }
.crumbs--on-light { color: var(--text-2); }
.crumbs--on-light [aria-current] { color: var(--gold-700); }
.crumbs--on-light a:hover, .crumbs--on-light a:focus-visible { color: var(--navy); }
.crumbs--on-light a:active { color: var(--navy-600); }
.crumbs__short { display: none; }
@media (max-width: 479px) { .crumbs__short { display: inline; } .crumbs__long { display: none; } }
.answer { position: relative; padding: var(--pad-card); padding-left: calc(var(--pad-card) + .9rem); background: var(--white); border-radius: var(--r-md); font-size: clamp(1rem, .95rem + .35vw, 1.2rem); line-height: 1.5; color: var(--navy-950); max-width: 68ch; box-shadow: var(--shadow-1); }
.answer::before { content: ""; position: absolute; left: .9rem; top: 1.1rem; bottom: 1.1rem; width: 3px; border-radius: 2px; background: var(--gold); }
.answer strong { color: var(--navy-950); }
.answer p + p { margin-top: .8em; }
.answer--lift { margin-top: calc(-1 * clamp(2rem, 4vw, 3.5rem)); position: relative; z-index: 2; }
.answer--note { margin-top: clamp(2rem, 4vw, 3rem); }
.answer__q { font-size: var(--fs-h4); margin-bottom: .5rem; color: var(--navy-950); }
.answer__row { margin-top: .9rem; font-size: var(--fs-body); color: var(--text-2); }
.answer__for { margin-top: .8em; font-size: var(--fs-body); color: var(--text-2); }
.answer__facts { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1rem; margin-top: 1rem; font-size: var(--fs-small); }
.answer__facts dt { color: var(--gold-700); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: var(--fs-xs); }
.answer__facts dd { color: var(--navy-950); }
@media (max-width: 639px) { .answer { font-size: var(--fs-body); } .answer__facts { grid-template-columns: 1fr; gap: .15rem; } .answer__facts dd { margin-bottom: .5rem; } }
.symptoms { list-style: none; display: grid; gap: .75rem; }
@media (min-width: 720px) { .symptoms { grid-template-columns: 1fr 1fr; } .symptoms li:last-child:nth-child(odd) { grid-column: 1 / -1; } }
.symptoms li { display: grid; grid-template-columns: 22px 1fr; gap: .8rem; padding: 1rem 1.1rem; border-radius: var(--r-sm); background: var(--white); box-shadow: var(--shadow-1); line-height: 1.5; color: var(--ink-2); font-size: .95rem; }
.symptoms li::before { content: "\201C"; font-family: var(--font-serif); font-size: 3rem; line-height: .6; color: var(--gold-300); margin-top: .15rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--cream); -webkit-overflow-scrolling: touch; }
.table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { text-align: left; padding: 1rem 1.15rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--slate); background: var(--sand); }
.table th[scope="row"] { color: var(--navy-950); font-weight: 700; font-size: .95rem; text-transform: none; letter-spacing: 0; background: transparent; }
.table tr:last-child td, .table tr:last-child th[scope="row"] { border-bottom: 0; }
.table td strong { color: var(--navy-950); }
.table td { color: var(--ink-2); }
.table tr.reveal { display: table-row; }
@media (max-width: 719px) {
  .table-wrap { border: 0; background: transparent; overflow: visible; }
  .table { min-width: 0; }
  .table thead { position: absolute; clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; }
  .table, .table tbody, .table tr, .table th, .table td { display: block; }
  .table tr { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--cream); }
  .table tr + tr { margin-top: .75rem; }
  .table th[scope="row"] { font-size: var(--fs-h4); padding: 0 0 .5rem; border: 0; }
  .table td { padding: .35rem 0; border: 0; }
  .table td::before { content: attr(data-label); display: block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--slate); margin-bottom: .15rem; }
}
.leak-ledger { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 1.5rem; }
.leak-ledger li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .25rem 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.leak-ledger strong { color: var(--navy-950); font-weight: 700; display: block; }
.leak-ledger span { color: var(--text-2); font-size: .95rem; }
.leak-ledger .num { grid-column: 2; grid-row: 1 / 3; text-align: right; color: var(--gold-700); font-weight: 700; white-space: nowrap; font-size: var(--fs-small); }
@media (max-width: 479px) { .leak-ledger li { grid-template-columns: 1fr; } .leak-ledger .num { grid-column: 1; grid-row: auto; text-align: left; white-space: normal; } }
.cases { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.case { position: relative; display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); padding: clamp(1.25rem, 3vw, 2.5rem); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--cream); }
@media (min-width: 900px) { .case { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; } .case--rev { grid-template-columns: 320px minmax(0, 1fr); } .case--rev .case__side { order: -1; } .case__side { position: sticky; top: calc(var(--header-h) + 1.5rem); } }
.case__side { display: grid; gap: 1rem; align-content: start; }
.case__side .media { aspect-ratio: 4 / 3; border-radius: var(--r-sm); }
.case__tag { display: flex; flex-wrap: wrap; gap: .25rem .6rem; align-items: center; font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700); margin: 0 0 .75rem; }
.case__tag span { white-space: nowrap; }
.case__tag span + span::before { content: "·"; margin-right: .6rem; opacity: .6; }
.case h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); color: var(--navy-950); }
.case .prose { margin-top: .75rem; }
.case .prose p { color: var(--text-2); }
.case .link { margin-top: 1rem; }
.case__anchor { margin-left: .4rem; color: var(--gold-600); opacity: 0; font-weight: 400; transition: opacity var(--dur-fast) var(--ease); text-decoration: none; }
.case:hover .case__anchor, .case:focus-within .case__anchor { opacity: 1; }
@media (hover: none) { .case__anchor { opacity: .5; } }
.creds { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.creds--grouped { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 2rem 3rem; }
.creds__group ul { list-style: none; display: grid; gap: .8rem; margin-top: .9rem; }
.creds__group li { display: grid; gap: .1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.creds__group strong { color: var(--navy-950); }
.creds__group span { font-size: var(--fs-small); color: var(--text-2); }
.years { display: grid; gap: .25rem; margin-top: 1.5rem; }
.years__n { font-size: clamp(3rem, 2rem + 4vw, 6rem); font-weight: 400; letter-spacing: -.035em; color: var(--navy-950); line-height: 1; font-variant-numeric: tabular-nums; }
.years__l { display: block; font-size: var(--fs-small); color: var(--text-2); }
@media (min-width: 900px) { .career__lead { position: sticky; top: calc(var(--header-h) + 2rem); } }
.split .media--3x4 { max-width: 460px; }
.why__proof { display: grid; gap: 1rem; }
@media (min-width: 900px) { .why__proof { position: sticky; top: calc(var(--header-h) + 2rem); } .why__proof .media { margin-top: -6rem; box-shadow: var(--shadow-2); } .split--proof { overflow: visible; } }
.why__proof .media img { object-position: 30% 40%; }
.why__proof .ledger__note { color: var(--text-2); }
.plan__scrub { display: flex; flex-wrap: wrap; gap: .35rem; padding: .3rem; border-radius: var(--r-pill); background: rgba(247,244,238,.08); margin-bottom: 1.5rem; border: 0; }
.plan__scrub legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.plan__scrub label { position: relative; }
.plan__scrub input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.plan__scrub span { padding: .55rem .9rem; border-radius: var(--r-pill); font-size: .85rem; font-weight: 700; color: var(--ivory-2); min-height: 44px; display: inline-flex; align-items: center; transition: background-color var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease); }
.plan__scrub input:checked + span { background: var(--gold); color: var(--navy-950); }
.plan__scrub input:focus-visible + span { outline: 2px solid var(--gold-300); outline-offset: 2px; }
.plan .timeline li { transition: opacity var(--dur-fast) var(--ease); }
.plan:has([value="p1"]:checked) .timeline li:not([data-phase="p1"]), .plan:has([value="p2"]:checked) .timeline li:not([data-phase="p2"]), .plan:has([value="p3"]:checked) .timeline li:not([data-phase="p3"]), .plan:has([value="p4"]:checked) .timeline li:not([data-phase="p4"]) { opacity: .4; }
.legal { padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem)); padding-bottom: var(--section-sm); }
.legal h1 { font-size: var(--fs-h2); margin-bottom: .75rem; }
.legal__meta { font-size: var(--fs-small); color: var(--text-2); }
.legal__summary { margin-block: 1.25rem 2rem; }
.legal__grid { display: grid; gap: clamp(2rem, 4vw, 4rem); }
@media (min-width: 1024px) { .legal__grid { grid-template-columns: 220px minmax(0, 1fr); } .legal .toc { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; } }
.legal .prose { max-width: 62ch; counter-reset: clause; }
.legal .prose h2 { font-size: var(--fs-h3); margin: 2.2em 0 .55em; color: var(--navy-950); counter-increment: clause; display: grid; grid-template-columns: 2.6rem 1fr; align-items: baseline; }
.legal .prose h2::before { content: counter(clause, decimal-leading-zero); font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: .8em; color: var(--gold-600); letter-spacing: 0; }
.legal .prose h2:first-child { margin-top: 0; }
.anchor { margin-left: .4rem; color: var(--gold-600); opacity: 0; transition: opacity var(--dur-fast) var(--ease); text-decoration: none; font-weight: 400; }
h2:hover .anchor, .anchor:focus-visible { opacity: 1; }
@media (hover: none) { .anchor { opacity: .6; } }
.legal__close { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line); max-width: 62ch; display: grid; gap: .5rem; }
.copied { position: fixed; left: 50%; bottom: calc(1.5rem + env(safe-area-inset-bottom)); transform: translate(-50%, 20px); padding: .6rem 1rem; border-radius: var(--r-pill); background: var(--navy-950); color: var(--ivory); font-size: var(--fs-small); opacity: 0; pointer-events: none; transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); z-index: var(--z-top); }
.copied.is-on { opacity: 1; transform: translate(-50%, 0); }
main:has(> .error-page) { background: var(--navy-950); }
.error-page { min-height: min(100svh, 880px); display: grid; place-items: center; text-align: center; background: var(--navy-950); color: var(--ivory); padding: calc(var(--header-h) + 2rem) max(var(--gutter), env(safe-area-inset-left)) 4rem max(var(--gutter), env(safe-area-inset-right)); }
.error-page .display { font-size: clamp(5rem, 20vw, 14rem); line-height: .9; color: var(--gold-300); font-family: var(--font-serif); font-style: italic; font-weight: 400; margin-left: -.04em; }
.steps404 span { display: inline-block; }
.steps404 > span:nth-child(1) { transform: translateY(.18em); }
.steps404 > span:nth-child(3) { transform: translateY(-.18em); }
.error-page h1 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.75rem); margin-top: 1.5rem; }
.error-page .lead { max-width: 34ch; margin: 1rem auto 0; color: var(--ivory-2); text-wrap: balance; }
.error-page .btn-row { justify-content: center; margin-top: 2rem; }
.error-page__path { color: var(--ivory-3); margin-top: .75rem; }
.error-page__path code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; color: var(--gold-300); overflow-wrap: anywhere; }
.error-page__doors { margin-top: clamp(2rem, 4vw, 3rem); color: var(--ivory-2); }
.error-page__doors ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; margin-top: .5rem; }
.error-page__doors a { color: var(--gold-300); font-weight: 600; display: inline-block; padding: .5rem 0; text-decoration: underline; text-decoration-color: rgba(232,195,106,.4); text-underline-offset: .2em; }
.error-page__doors a:hover { text-decoration-color: currentColor; }
.error-page__doors a:active { color: var(--gold-200); }
.error-page__call, .error-page__back { margin-top: 1.25rem; color: var(--ivory-2); }
.error-page__call a, .error-page__back a { color: var(--ivory); }
.error-page__search { margin: 1.5rem auto 0; display: flex; gap: .5rem; max-width: 26rem; }
.error-page__search input { flex: 1; min-width: 0; min-height: 48px; padding: .7rem 1rem; border-radius: var(--r-pill); border: 1px solid var(--line-dark-strong); background: rgba(247,244,238,.06); color: var(--ivory); font: inherit; font-size: 1rem; }
.error-page__search input::placeholder { color: var(--ivory-3); }
.error-page__search input:focus-visible { outline: none; border-color: var(--gold-300); box-shadow: 0 0 0 4px rgba(232,195,106,.25); }
@media (max-width: 359px) { .error-page__search { flex-direction: column; } }
.error-page__stairs { width: min(320px, 70vw); height: auto; margin: clamp(2rem, 5vw, 3.5rem) auto 0; color: rgba(232,195,106,.45); }
.error-page__stairs .stairs__gap { color: var(--gold-300); transition: color var(--dur-fast) var(--ease); }
@media (hover: hover) { .error-page__stairs:hover .stairs__gap { stroke-dasharray: 60 0; color: var(--gold); } }
@media (max-height: 500px) { .error-page { padding-top: calc(var(--header-h) + .5rem); padding-bottom: 1.5rem; align-content: start; } .error-page .display { font-size: clamp(3rem, 14vh, 5rem); } .error-page .lead, .error-page__stairs { display: none; } .error-page .btn-row { margin-top: 1rem; } }

/* 21. UTILITIES ------------------------------------------------------------ */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flow > * + * { margin-top: 1.1em; }
.gap-lg { gap: clamp(1.5rem, 4vw, 3rem); }
.w-narrow { max-width: 40rem; }
.no-wrap { white-space: nowrap; }
.hide-sm { display: none; }
@media (min-width: 480px) { .hide-sm { display: inline; } }
.divider { display: flex; align-items: center; gap: 1rem; color: var(--gold-700); font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* 22. RESPONSIVE FLOORS (280px+) ------------------------------------------- */
@media (max-width: 479px) {
  :root { --header-h: 64px; }
  .brand__logo { height: 36px; }
  .brand--footer .brand__logo { height: 44px; }
  .page-hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .card { padding: 1.15rem; }
  .band { padding: 1.5rem 1.15rem; border-radius: var(--r-md); }
  .stat { padding: 1.35rem 1.15rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 359px) {
  :root { --gutter: 0.9rem; }
  .brand__logo { height: 32px; }
  .eyebrow { letter-spacing: .08em; }
  .drawer__list > li > a { font-size: 1.5rem; }
  .btn { padding-inline: 1.1rem; font-size: .9rem; }
  .acc__btn { font-size: 1rem; gap: .75rem; }
  .step { padding: 1rem; }
  .fit__col { padding: 1.1rem; }
  .author { grid-template-columns: 1fr; }
}
@media (max-height: 500px) {
  :root { --header-h: 60px; }
  .brand__logo { height: 32px; }
  .page-hero, .article-hero { padding-top: calc(var(--header-h) + 1.25rem); padding-bottom: 1.5rem; }
  .page-hero .crumbs-nav, .page-hero__media { display: none; }
  .page-hero .btn-row { margin-top: 1.25rem; }
}
@media (min-width: 1600px) { :root { --container: 84rem; } }

/* 23. PRINT ---------------------------------------------------------------- */
@media print {
  @page { margin: 18mm; }
  .site-header, .drawer, .sticky-cta, .progress, .page-hero__bg, .page-hero__media, .hero__media, .hero__scrim, .footer__glow, .media__tag, .btn-row, .crumbs-nav, .toc, .article__share, .footer__top, .footer__cta, .social, .legal__close, .form, .post-card .media, .nav__menu, .skip-link, .ag-signature, section[aria-labelledby="rel-title"] { display: none !important; }
  body { background: #fff; color: #000; }
  main { padding-top: 0 !important; }
  .page-hero, .hero, .section--navy, .band, .footer, .cta, .card--dark, .stats--dark .stat, .rec__cell, .takeaways { background: #fff !important; color: #000 !important; }
  .page-hero em, .section--navy em, .hero em, .cta em { color: #8F6614 !important; }
  .page-hero, .article-hero, .legal { padding-top: 0 !important; }
  .footer__bottom { color: #000; border-color: #999; justify-content: flex-start; }
  .reveal, .txt-split .w, .hero-in, .lines > span > span { opacity: 1 !important; transform: none !important; clip-path: none !important; animation: none !important; }
  .acc__panel, .acc__panel[hidden] { display: block !important; grid-template-rows: 1fr !important; }
  .acc__icon { display: none; }
  .acc__item, .case, .post-card, .climb__step, .timeline li { break-inside: avoid; }
  .rec__cell { border: 1px solid #000; }
  .rec__value, .takeaways h2, .takeaways li { color: #000; }
  .takeaways { border: 1px solid #999; }
  .timeline { --tl-ink: #000; --tl-muted: #333; --tl-when: #000; }
  .prose { max-width: none; }
  .prose a { color: #000; }
  .prose a[href^="http"]::after, .prose a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: .8em; }
  .legal h1 { font-size: 24pt; }
  .legal .prose h2 { font-size: 13pt; margin-top: 1.4em; }
  .article__cover { max-height: 9cm; overflow: hidden; }
  .table { min-width: 0; }
}
