/* ==========================================================================
   Financially Astute Clubs — lead-magnet landing page
   Structure: Wescott reference · Colors: FAC crest (club green + gold)
   Display type: Mona Sans by GitHub (SIL Open Font License), variable, self-hosted.
   ========================================================================== */

@font-face {
  font-family: "Mona Sans";
  src: url("fonts/mona-sans-var.woff2") format("woff2");
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #efece4;
  --bg-2: #e6e1d4;
  --surface: #f7f5ef;
  --ink: #24261f;
  --ink-2: #4b4e45;
  --muted: #62655b;
  --line: rgba(36, 38, 31, 0.13);

  --dark: #121411;
  --dark-2: #1c1f1a;
  --on-dark: #f3f1ea;
  --on-dark-2: #b6baae;
  --line-dark: rgba(243, 241, 234, 0.13);

  --green: #005530;
  --green-600: #00673a;
  --gold: #c4ad36;
  --gold-hi: #d4c054;

  /* the Wescott glow, recoloured from the FAC crest: pale club green into gold */
  --glow-a: rgba(150, 196, 104, 0.62);
  --glow-b: rgba(222, 205, 110, 0.62);
  --glow-base: #e9e6d9;

  --display: "Mona Sans", "Arial", sans-serif;
  --sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --max: 1240px;
  --header-h: 84px;

  --r-btn: 8px;
  --r-pill: 6px;
  --r-card: 8px;
  --r-panel: 10px;
  --r-input: 6px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: #9a9d91 var(--bg);
}
html.has-smoothscroll { scroll-behavior: auto !important; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3 { text-wrap: balance; color: var(--ink); font-synthesis: none; }
p, li, dd { text-wrap: pretty; }
button { font: inherit; }

::selection { background: var(--green); color: #fff; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.hero :focus-visible,
.dark-band :focus-visible,
.site-header :focus-visible,
.closing :focus-visible,
.site-footer :focus-visible,
.doc-hero :focus-visible { outline-color: var(--gold-hi); }
.dark-band .glow-card :focus-visible { outline-color: var(--green); }

section[id] { scroll-margin-top: var(--header-h); }
main:focus { outline: none; }

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

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 200;
  padding: 12px 18px; background: var(--dark); color: #fff;
  border-radius: var(--r-btn); font-weight: 600; text-decoration: none;
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(88px, 10vw, 140px); }

.rule { height: 1px; margin: clamp(32px, 4vw, 48px) 0; border: 0; background: var(--line); }
.rule-dark { background: var(--line-dark); }
.rule-soft { background: rgba(36, 38, 31, 0.12); margin: 28px 0 18px; }

/* ---------- type ---------- */
.eyebrow {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 22px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.4; color: var(--muted); white-space: nowrap;
}
.eyebrow::before {
  content: ""; flex: none; width: 7px; height: 7px; margin-top: 5px;
  background: var(--gold); border-radius: 1px;
}

.section-title {
  font-family: var(--display); font-stretch: 112%;
  font-weight: 500;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 17ch;
}
.section-title-center { text-align: center; margin-inline: auto; }
.on-dark { color: var(--on-dark); }

.lead { font-size: clamp(16.5px, 1.25vw, 18px); line-height: 1.6; color: var(--ink-2); max-width: 56ch; }

.statement {
  font-family: var(--display); font-stretch: 112%;
  font-weight: 450;
  font-size: clamp(27px, 2.8vw, 40px);
  line-height: 1.24;
  letter-spacing: -0.015em;
  color: #5b5d55;
  max-width: 30ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border: 1px solid transparent; border-radius: var(--r-btn);
  font-family: var(--sans); font-size: 15px; font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 160ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 14.5px; }
.btn-block { width: 100%; }
.btn-light { background: #fff; color: var(--ink); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.45); }
@media (hover: hover) and (pointer: fine) {
  .btn-light:hover { background: #f1efe8; box-shadow: 0 10px 26px -14px rgba(0, 0, 0, 0.5); }
  .btn-dark:hover { background: #2a2e27; box-shadow: 0 10px 26px -14px rgba(18, 20, 17, 0.7); }
  .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
}

.sq-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid transparent; border-radius: var(--r-pill);
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out), opacity 200ms ease;
}
.sq-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sq-btn:active { transform: scale(0.94); }
.sq-btn[disabled] { opacity: 0.35; cursor: default; }
.sq-btn-glass { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.22); color: #fff; }
.sq-btn-soft { background: rgba(36, 38, 31, 0.08); color: var(--ink); }
.sq-btn-dark { background: var(--dark); color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .sq-btn-glass:hover { background: rgba(255, 255, 255, 0.22); }
  .sq-btn-soft:hover { background: var(--dark); color: #fff; }
  .sq-btn-dark:not([disabled]):hover { background: var(--green); }
}

.text-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 4px; border: 0; background: none;
  font-size: 14.5px; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: color 200ms ease, transform 160ms var(--ease-out);
}
.text-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 200ms var(--ease-out); }
.text-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .text-btn:hover { color: var(--green); }
  #voice-prev:hover svg { transform: translateX(-3px); }
  #voice-next:hover svg { transform: translateX(3px); }
}

.pager { display: flex; align-items: center; gap: 10px; }
.pager-count { font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: 0.08em; color: var(--muted); }
.dashes { display: inline-flex; gap: 4px; }
.dashes i { display: block; width: 10px; height: 2px; border-radius: 1px; background: rgba(255, 255, 255, 0.35); transition: width 300ms var(--ease-out), background-color 300ms ease; }
.dashes i.is-on { width: 26px; background: #fff; }
.dashes-dark i { background: rgba(36, 38, 31, 0.22); }
.dashes-dark i.is-on { background: var(--ink); }

/* ---------- glow surface (Wescott signature) ---------- */
.glow {
  background:
    radial-gradient(60% 80% at 30% 100%, var(--glow-a) 0%, rgba(150, 196, 104, 0) 70%),
    radial-gradient(55% 70% at 85% 20%, var(--glow-b) 0%, rgba(222, 205, 110, 0) 70%),
    var(--glow-base);
}
.glow-card { border-radius: var(--r-panel); color: var(--ink); }

.gold-sq {
  display: inline-grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: var(--r-input);
  background: var(--gold);
}
.gold-sq svg { width: 20px; height: 20px; fill: none; stroke: var(--dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.gold-sq-sm { width: 30px; height: 30px; }
.gold-sq-sm svg { width: 16px; height: 16px; }
.gold-tag {
  display: inline-flex; align-items: center; min-height: 24px; padding: 0 9px;
  border-radius: 4px; background: var(--gold); color: var(--dark);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 16px var(--gutter) 0;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.nav-box {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 6px 6px 12px;
  background: rgba(18, 20, 17, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-panel);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  transition: background-color 260ms ease, border-color 260ms ease;
}
.site-header.is-scrolled .nav-box,
.site-header.menu-open .nav-box { background: rgba(18, 20, 17, 0.92); border-color: rgba(255, 255, 255, 0.08); }
.brand { display: flex; align-items: center; gap: 10px; min-height: 44px; padding-right: 8px; text-decoration: none; }
.brand-crest { width: 34px; height: auto; }
.brand-word { width: 132px; height: auto; }

.menu-btn {
  position: relative; width: 44px; height: 44px; padding: 0;
  border: 0; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.1); cursor: pointer;
  transition: background-color 200ms ease, transform 160ms var(--ease-out);
}
.menu-btn:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) { .menu-btn:hover { background: rgba(255, 255, 255, 0.2); } }
.menu-bar {
  position: absolute; left: 13px; width: 18px; height: 1.6px; border-radius: 1px; background: #fff;
  transition: transform 240ms var(--ease-out), opacity 200ms ease;
}
.menu-bar:nth-child(1) { top: 16px; }
.menu-bar:nth-child(2) { top: 21.2px; }
.menu-bar:nth-child(3) { top: 26.4px; }
.menu-btn[aria-expanded="true"] .menu-bar:nth-child(1) { transform: translateY(5.2px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-bar:nth-child(3) { transform: translateY(-5.2px) rotate(-45deg); }

.nav-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 300px; padding: 10px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-panel);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
  transform-origin: top left;
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(0.97);
  transition: opacity 200ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
}
.nav-panel.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity 200ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s; }
.nav-links { display: grid; gap: 2px; margin-bottom: 10px; }
.nav-links a {
  display: flex; align-items: center; min-height: 48px; padding: 0 14px;
  border-radius: var(--r-pill);
  font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: 19px; color: var(--on-dark); text-decoration: none;
  transition: background-color 200ms ease;
}
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { background: rgba(255, 255, 255, 0.08); } }
.nav-panel .nav-panel-cta { width: 100%; color: var(--ink); }
.header-cta { color: var(--ink); margin-top: 6px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; color: #fff; background: var(--dark);
  overflow: hidden; isolation: isolate;
}
.hero-media, .hero-media picture, .hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; }
.hero-poster, .hero-video { object-fit: cover; object-position: var(--hero-x, 12%) 50%; }
.hero-video { opacity: 0; transition: opacity 1200ms var(--ease-out); }
.hero-video.is-playing { opacity: 1; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.82) 0%, rgba(10, 12, 9, 0.55) 36%, rgba(10, 12, 9, 0.08) 68%),
    linear-gradient(180deg, rgba(10, 12, 9, 0.4) 0%, rgba(10, 12, 9, 0) 24%, rgba(10, 12, 9, 0) 62%, rgba(10, 12, 9, 0.6) 100%);
}
.hero-inner {
  position: relative; width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto;
  padding: calc(var(--header-h) + clamp(40px, 10vh, 110px)) var(--gutter) clamp(28px, 5vh, 48px);
  display: flex; flex-direction: column;
}
.hero-copy { max-width: none; }
.hero-title {
  font-family: var(--display); font-stretch: 112%; font-weight: 500;
  font-size: clamp(48px, 6.2vw, 96px); line-height: 1.02; letter-spacing: -0.035em;
  color: #fff; margin-bottom: 22px;
}
.hero-title em { font-style: normal; }
.line { display: block; overflow-x: visible; overflow-y: clip; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.line-inner { display: block; white-space: nowrap; }
.hero-sub { max-width: 46ch; font-size: clamp(16px, 1.2vw, 17.5px); line-height: 1.55; color: rgba(255, 255, 255, 0.84); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }


/* hero entrance: one authored moment, masked line reveal then a soft rise */
.motion .line-inner { animation: line-up 1100ms var(--ease-out) both; }
.motion .line:nth-child(2) .line-inner { animation-delay: 100ms; }
.motion .line:nth-child(3) .line-inner { animation-delay: 200ms; }
.motion .rise { animation: rise 900ms var(--ease-out) both; animation-delay: calc(var(--d, 0) * 110ms + 200ms); }
.motion @keyframes line-up { from { transform: translateY(105%); } to { transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }

/* ---------- positioning ---------- */
.pos-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 16px; align-items: stretch; }
.purpose-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  padding: clamp(24px, 2.6vw, 34px);
}
.purpose-card blockquote p { font-family: var(--display); font-stretch: 112%; font-size: clamp(20px, 1.75vw, 24px); line-height: 1.35; color: #3f4239; }
.purpose-by { display: flex; align-items: center; gap: 12px; }
.purpose-by img { width: 44px; height: auto; }
.by-name { display: block; font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: 17px; color: var(--ink); line-height: 1.3; }
.by-role { display: block; font-size: 13.5px; color: var(--ink-2); }

.club-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.club-tile {
  display: grid; align-content: center; gap: 4px; min-height: 108px; padding: 18px 20px;
  background: var(--surface); border-radius: var(--r-card);
  transition: background-color 200ms ease;
}
.club-name { font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.2; color: var(--ink); }
.club-place { font-size: 13.5px; color: var(--muted); }
@media (hover: hover) and (pointer: fine) { .club-tile:hover { background: #fff; } }
.clubs-more { margin-top: 22px; font-size: 14.5px; color: var(--muted); max-width: 90ch; }

/* ---------- built for ---------- */
.built { padding-top: 0; }
.built-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.built-media { border-radius: var(--r-panel); overflow: hidden; }
.built-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 42% 50%; }
.built-copy .section-title { margin-bottom: 20px; }
.built-copy .rule { margin: 32px 0 24px; }
.mini-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mini-card { padding: 20px; background: var(--surface); border-radius: var(--r-card); }
.mini-card .gold-sq { margin-bottom: 18px; }
.mini-title { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: 19px; line-height: 1.25; margin-bottom: 6px; }
.mini-text { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* ---------- dark band ---------- */
.dark-band {
  margin-inline: clamp(0px, 1vw, 12px);
  padding-block: clamp(88px, 10vw, 140px);
  background: var(--dark);
  border-radius: var(--r-panel);
  color: var(--on-dark-2);
}
.dark-band .section-title-center { margin-bottom: clamp(40px, 5vw, 64px); }

.svc-card { padding: clamp(22px, 2.6vw, 32px); }
.svc-slides { display: grid; }
.svc-slide {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.svc-slide[hidden] { display: grid; visibility: hidden; opacity: 0; pointer-events: none; }
.svc-copy { padding-top: 8px; }
.svc-title { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(25px, 2.3vw, 32px); line-height: 1.15; letter-spacing: -0.015em; margin-bottom: 10px; }
.svc-price { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.svc-text { font-size: 16px; color: #3f4239; max-width: 44ch; margin-bottom: 28px; }
.svc-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.svc-photo { position: relative; border-radius: var(--r-card); overflow: hidden; }
.svc-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
/* corner brackets like the reference frames */
.svc-photo::before, .svc-photo::after {
  content: ""; position: absolute; width: 14px; height: 14px; border-color: rgba(255, 255, 255, 0.9); border-style: solid; pointer-events: none;
}
.svc-photo::before { top: 12px; left: 12px; border-width: 1.5px 0 0 1.5px; }
.svc-photo::after { right: 12px; bottom: 12px; border-width: 0 1.5px 1.5px 0; }
.svc-card .pager { margin-top: 20px; }
.svc-note { margin-top: 18px; text-align: center; font-size: 14.5px; color: var(--on-dark-2); }

/* slide transitions: crossfade, copy rises, photos settle */
.svc-slide, .voice { transition: opacity 500ms var(--ease-out), visibility 0s linear 500ms; }
.svc-slide.is-active, .voice.is-active { transition: opacity 500ms var(--ease-out), visibility 0s; }
.svc-slide .svc-copy > *, .voice-body > * { transition: transform 600ms var(--ease-out), filter 600ms var(--ease-out); }
.svc-slide[hidden] .svc-copy > *, .voice[hidden] .voice-body > * { transform: translateY(10px); filter: blur(3px); }
.svc-photo img { transition: transform 900ms var(--ease-out); }
.svc-slide[hidden] .svc-photo img { transform: scale(1.06); }
.svc-slide .svc-copy > :nth-child(2) { transition-delay: 40ms; }
.svc-slide .svc-copy > :nth-child(3) { transition-delay: 80ms; }
.svc-slide .svc-copy > :nth-child(4) { transition-delay: 120ms; }
.svc-photo + .svc-photo img { transition-delay: 80ms; }

.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.stat { padding: 28px 24px 30px; }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid var(--line-dark); }
.stat-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-hi); white-space: nowrap; }
.stat-num {
  display: flex; align-items: baseline;
  margin: 14px 0 8px;
  font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(46px, 5vw, 72px); line-height: 1; letter-spacing: -0.03em;
  color: var(--on-dark); font-variant-numeric: tabular-nums;
}
.stat-unit { margin-left: 8px; font-family: var(--sans); font-size: 15px; letter-spacing: 0; color: var(--on-dark-2); }
.stat-note { font-size: 14.5px; line-height: 1.5; color: var(--on-dark-2); }
/* odometer digits */
.odo { display: inline-flex; overflow: hidden; height: 1em; line-height: 1; }
.odo-col { display: flex; flex-direction: column; transition: transform 1800ms var(--ease-out); }
.odo-col span { display: block; height: 1em; }

.craft { margin-top: clamp(80px, 10vw, 128px); }
.craft-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.craft-talk { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; object-fit: cover; object-position: 50% 20%; border-radius: 50%; border: 2px solid var(--dark); }
.avatars img + img { margin-left: -10px; }
.craft-talk-title { display: block; font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: 18px; color: var(--on-dark); line-height: 1.25; }
.craft-talk-sub { display: block; font-size: 14px; color: var(--on-dark-2); }
.craft-text { font-size: 16px; color: var(--on-dark-2); max-width: 50ch; }
.craft .rule { margin: clamp(32px, 4vw, 48px) 0; }
.craft-media { position: relative; border-radius: var(--r-panel); overflow: hidden; }
.craft-media img { width: 100%; height: auto; aspect-ratio: 16 / 8; object-fit: cover; }
.craft-tag {
  position: absolute; right: clamp(14px, 2vw, 24px); bottom: clamp(14px, 2vw, 24px);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(18, 20, 17, 0.62); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-card); color: #fff; font-size: 13.5px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}

/* ---------- process (tabs) ---------- */
.process .section-title-center { margin-bottom: clamp(40px, 5vw, 60px); }
.process-card {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 14px;
  padding: 14px; background: var(--surface); border-radius: var(--r-panel);
}
.process-media { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3; }
.process-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 600ms var(--ease-out), transform 1200ms var(--ease-out);
}
.process-img.is-active { opacity: 1; transform: none; }
.process-body { display: flex; flex-direction: column; padding: clamp(10px, 2vw, 22px); }
.tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.tab {
  position: relative;
  min-height: 36px; padding: 0 12px;
  border: 0; border-radius: var(--r-pill);
  background: rgba(36, 38, 31, 0.07);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); white-space: nowrap; cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
}
/* 36px visual chip, 44px hit area */
.tab::after { content: ""; position: absolute; inset: -4px 0; }
.tab:active { transform: scale(0.96); }
.tab[aria-selected="true"] { background: var(--dark); color: #fff; }
@media (hover: hover) and (pointer: fine) { .tab[aria-selected="false"]:hover { background: rgba(36, 38, 31, 0.14); color: var(--ink); } }
.tab-panels { margin-top: auto; padding-top: 40px; display: grid; }
.tab-panel { grid-area: 1 / 1; border-top: 1px solid var(--line); padding-top: 22px; }
.tab-panel:not([hidden]) { animation: panel-in 420ms var(--ease-out); }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); filter: blur(2px); } to { opacity: 1; transform: none; filter: none; } }
.panel-title { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(22px, 1.9vw, 26px); line-height: 1.2; margin-bottom: 10px; }
.panel-text { font-size: 15.5px; color: var(--ink-2); }
.center-cta { display: flex; justify-content: center; margin-top: 32px; }

/* ---------- team ---------- */
.team { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%); }
.team-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(36px, 4vw, 52px); }
.team-controls { display: flex; gap: 8px; flex: none; }
.team-track {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2)) 16px;
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  scrollbar-width: none; overscroll-behavior-x: contain;
}
.team-track::-webkit-scrollbar { display: none; }
.team-track:focus-visible { outline-offset: -2px; }
.member {
  position: relative; flex: 0 0 clamp(236px, 20vw, 262px);
  scroll-snap-align: start; border-radius: var(--r-card); overflow: hidden; background: var(--dark);
}
.member img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 700ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .member:hover img { transform: scale(1.04); } }
.member::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 13, 10, 0) 50%, rgba(12, 13, 10, 0.78) 76%, rgba(12, 13, 10, 0.94) 100%);
}
.member-info { position: absolute; left: 16px; right: 64px; bottom: 16px; z-index: 1; display: grid; gap: 3px; }
.member-name { font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: 19px; line-height: 1.2; color: #fff; }
.member-role { font-size: 13px; line-height: 1.4; color: rgba(255, 255, 255, 0.82); }
.member-badge {
  position: absolute; right: 14px; bottom: 16px; z-index: 1;
  display: grid; place-items: center; min-width: 38px; height: 34px; padding: 0 6px;
  border-radius: var(--r-input); background: var(--gold); color: var(--dark);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em;
}
.team-foot { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.team-progress { position: relative; flex: 1; height: 2px; border-radius: 1px; background: rgba(36, 38, 31, 0.14); overflow: hidden; }
.team-progress i { position: absolute; inset: 0 auto 0 0; width: 30%; border-radius: 1px; background: var(--ink); transition: transform 160ms linear; }
.team-foot-btns { display: none; gap: 8px; }
.team-note { margin-top: 26px; font-size: 15px; color: var(--ink-2); max-width: 80ch; }
.team-note strong { font-weight: 600; color: var(--ink); }

/* ---------- voices ---------- */
.voices { padding-top: clamp(40px, 5vw, 64px); }
.voices .section-title-center { margin-bottom: clamp(36px, 4.5vw, 56px); max-width: 20ch; }
.voice-card { padding: clamp(18px, 2.2vw, 26px); }
.voice-slides { display: grid; }
.voice {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: minmax(180px, 3fr) minmax(0, 7fr); gap: clamp(24px, 5vw, 72px); align-items: center;
}
.voice[hidden] { display: grid; visibility: hidden; opacity: 0; pointer-events: none; }
.voice-img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-card); }
.voice-crest { display: grid; place-items: center; background: rgba(255, 255, 255, 0.4); }
.voice-crest img { width: 52%; height: auto; }
.voice-body blockquote p { font-family: var(--display); font-stretch: 112%; font-size: clamp(23px, 2.3vw, 32px); line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 26px; max-width: 30ch; }
.voice-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ---------- framework ---------- */
.framework { padding-top: clamp(40px, 5vw, 64px); }
.fw-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 4vw, 52px); }
.fw-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fw-visual {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 4 / 3; border-radius: var(--r-card); overflow: hidden; margin-bottom: 18px;
}
.fw-illus { position: absolute; left: 12px; bottom: 10px; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #4f5247; }
.wheel { width: 84%; height: auto; overflow: visible; }
.wheel-label { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; fill: #3f4239; }
.wheel-node { fill: var(--green); }
.wheel-grid polygon, .wheel-grid path { fill: none; stroke: rgba(36, 38, 31, 0.28); stroke-width: 1; }
.wheel-shape { fill: rgba(0, 85, 48, 0.22); stroke: var(--green); stroke-width: 1.6; stroke-linejoin: round; transform-origin: 110px 110px; }
.heat { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; width: 70%; }
.heat i { display: block; aspect-ratio: 1; border-radius: 4px; background: rgba(0, 85, 48, var(--h)); }
.steps-viz { display: flex; align-items: flex-end; gap: 10px; width: 76%; height: 62%; }
.steps-viz span { flex: 1; height: calc(var(--s) * 25%); display: flex; align-items: flex-start; justify-content: center; border-radius: 4px 4px 0 0; background: rgba(0, 85, 48, calc(0.18 + var(--s) * 0.16)); transform-origin: bottom; }
.steps-viz b { margin-top: -22px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: #3f4239; white-space: nowrap; }
.fw-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.fw-title { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(19px, 1.6vw, 22px); line-height: 1.28; padding-top: 12px; border-top: 1px solid var(--line); }

.pillar-list {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 32px;
  margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--line);
}
.pillar { display: grid; grid-template-columns: 34px minmax(0, 1fr); column-gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pillar-num { grid-row: span 2; font-size: 13px; font-variant-numeric: tabular-nums; color: var(--green); padding-top: 4px; }
.pillar-name { font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: 19px; line-height: 1.3; color: var(--ink); }
.pillar-text { font-size: 14.5px; color: var(--ink-2); }

/* ---------- assessment ---------- */
.assess { padding-top: clamp(40px, 5vw, 64px); }
.assess-card {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px);
  padding: clamp(24px, 4vw, 56px); align-items: center;
}
.assess-copy .eyebrow { color: #4f5247; }
.assess-copy .section-title { margin-bottom: 16px; max-width: 14ch; }
.assess-copy .lead { margin-bottom: 26px; color: #3f4239; }
.dimension-list { counter-reset: dim; display: grid; border-top: 1px solid rgba(36, 38, 31, 0.16); }
.dimension-list li {
  counter-increment: dim; display: flex; gap: 14px; padding: 11px 0;
  border-bottom: 1px solid rgba(36, 38, 31, 0.16); font-size: 15.5px; color: var(--ink);
}
.dimension-list li::before { content: counter(dim); flex: none; width: 16px; font-variant-numeric: tabular-nums; color: var(--green); font-weight: 600; }
.lead-form { padding: clamp(22px, 3vw, 36px); background: #fbfaf6; border-radius: var(--r-panel); box-shadow: 0 24px 60px -34px rgba(36, 38, 31, 0.45); }
.form-title { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(24px, 2.1vw, 28px); line-height: 1.2; margin-bottom: 6px; }
.form-hint { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.req { font-weight: 400; color: var(--muted); }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 0 14px;
  border: 1px solid #8f9287; border-radius: var(--r-input); background: #fff;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field select {
  appearance: none; padding-right: 44px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%2324261f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center / 18px no-repeat;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 85, 48, 0.22); }
.field [aria-invalid="true"] { border-color: #a4262c; }
.field-error { font-size: 14px; color: #a4262c; }
.lead-form .btn { margin-top: 6px; min-height: 52px; }
.form-status { margin-top: 14px; font-size: 15px; color: var(--green); }
.form-status:empty { display: none; }

/* ---------- faq ---------- */
.faq .section-title-center { margin-bottom: clamp(36px, 4.5vw, 52px); }
.accordion { max-width: 780px; margin: 0 auto; display: grid; gap: 10px; }
.acc-item { background: var(--surface); border-radius: var(--r-card); }
.acc-heading { font: inherit; }
.acc-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; min-height: 64px; padding: 16px 16px 16px 22px;
  border: 0; background: none; text-align: left; cursor: pointer;
  font-family: var(--display); font-stretch: 112%; font-weight: 450; font-size: clamp(17px, 1.4vw, 19px); line-height: 1.35; color: var(--ink);
}
.acc-icon { position: relative; flex: none; width: 28px; height: 28px; border-radius: var(--r-input); background: var(--dark); transition: background-color 200ms ease; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: #fff;
  transform: translate(-50%, -50%); transition: transform 260ms var(--ease-out);
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.is-open .acc-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.acc-item.is-open .acc-icon::after { transform: translate(-50%, -50%) rotate(135deg); }
@media (hover: hover) and (pointer: fine) { .acc-trigger:hover .acc-icon { background: var(--green); } }
.acc-panel { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows 300ms var(--ease-out), visibility 0s linear 300ms; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows 300ms var(--ease-out), visibility 0s; }
.acc-inner { overflow: hidden; }
.acc-inner p { padding: 0 64px 22px 22px; font-size: 15.5px; color: var(--ink-2); }

/* ---------- closing + footer ---------- */
.closing {
  position: relative; min-height: min(96vh, 900px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; background: var(--dark); isolation: isolate;
}
.closing-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 45% 50%; z-index: -2; }
.closing-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18, 20, 17, 0.55) 0%, rgba(18, 20, 17, 0.4) 45%, rgba(18, 20, 17, 0.7) 75%, var(--dark) 100%);
}
.closing-inner { padding-block: 120px; }
.closing-title {
  font-family: var(--display); font-stretch: 112%; font-weight: 500;
  font-size: clamp(38px, 4.6vw, 66px); line-height: 1.05; letter-spacing: -0.03em;
  color: #fff; margin: 0 auto 18px; max-width: 14ch;
}
.closing-text { font-size: clamp(16px, 1.3vw, 18px); color: rgba(255, 255, 255, 0.84); max-width: 46ch; margin: 0 auto 30px; }
.closing-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.site-footer { background: var(--dark); color: var(--on-dark-2); padding: 24px 0 36px; overflow: hidden; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: clamp(24px, 3vw, 48px); align-items: start;
  padding-top: 48px; border-top: 1px solid var(--line-dark);
}
.footer-brand { display: flex; align-items: center; gap: 12px; min-height: 48px; text-decoration: none; margin-bottom: 14px; }
.footer-brand img:first-child { width: 44px; height: auto; }
.footer-word { width: 160px; height: auto; }
.footer-tag { font-size: 14.5px; max-width: 34ch; }
.footer-head { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 10px; }
.footer-col a {
  display: inline-flex; align-items: center; min-height: 40px;
  font-size: 14.5px; color: var(--on-dark-2); text-decoration: none; overflow-wrap: anywhere;
  transition: color 200ms ease;
}
@media (hover: hover) and (pointer: fine) { .footer-col a:hover { color: #fff; } }

.footer-giant { width: 100%; max-width: 1100px; height: auto; margin: clamp(48px, 7vw, 96px) auto 0; opacity: 0.07; }
.footer-line { margin-top: 28px; font-size: 14px; line-height: 1.8; text-align: center; color: var(--on-dark-2); }
.footer-line a { color: #fff; text-underline-offset: 4px; }
.footer-line .sep { margin: 0 10px; color: rgba(255, 255, 255, 0.3); }
.footer-copy { margin-top: 6px; font-size: 13px; text-align: center; color: #8f9489; }

/* ---------- scroll-linked reveals (visible by default; JS opts elements in) ---------- */
.pre-reveal { opacity: 0; transform: translateY(20px); filter: blur(5px); }
.pre-reveal.is-visible {
  opacity: 1; transform: none; filter: none;
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), filter 800ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.clip-reveal.pre-clip { clip-path: inset(10% 6% 10% 6% round var(--r-panel)); }
.clip-reveal.pre-clip img { transform: scale(1.12); }
.clip-reveal.pre-clip.is-visible { clip-path: inset(0 0 0 0 round var(--r-panel)); transition: clip-path 1300ms var(--ease-out); }
.clip-reveal img { transition: transform 1600ms var(--ease-out); }
.clip-reveal.pre-clip.is-visible img { transform: none; }
.fw-card.pre-reveal:not(.is-visible) .wheel-shape { transform: scale(0.4); opacity: 0; }
.fw-card .wheel-shape { transition: transform 1100ms var(--ease-out) 250ms, opacity 600ms ease 250ms; }
.fw-card.pre-reveal:not(.is-visible) .heat i { opacity: 0; transform: scale(0.6); }
.fw-card .heat i { transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.fw-card.pre-reveal:not(.is-visible) .steps-viz span { transform: scaleY(0); }
.fw-card .steps-viz span { transition: transform 900ms var(--ease-out); transition-delay: calc(var(--s) * 90ms + 200ms); }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* near-square desktop/tablet screens: faces stay clear at the top, copy sits on the calm lower part */
@media (min-width: 761px) and (max-aspect-ratio: 13/10) {
  .hero-inner { justify-content: flex-end; padding-bottom: clamp(40px, 6vh, 64px); }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 12, 9, 0.4) 0%, rgba(10, 12, 9, 0) 22%, rgba(10, 12, 9, 0.1) 42%, rgba(10, 12, 9, 0.78) 66%, rgba(10, 12, 9, 0.92) 100%),
      linear-gradient(90deg, rgba(10, 12, 9, 0.5) 0%, rgba(10, 12, 9, 0) 70%);
  }
}
@media (max-height: 820px) and (min-width: 761px) {
  .hero-inner { padding-top: calc(var(--header-h) + 6vh); }
  .hero-title { font-size: clamp(44px, min(6.2vw, 10.4vh), 96px); }
}

@media (max-width: 960px) {
  .pos-grid, .built-grid, .svc-slide, .craft-head, .process-card, .assess-card, .voice { grid-template-columns: minmax(0, 1fr); }
  .club-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .built-media img { aspect-ratio: 16 / 11; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line-dark); }
  .fw-cards { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
  .pillar-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-img { aspect-ratio: 16 / 10; object-position: 50% 22%; }
  .voice-crest { aspect-ratio: 16 / 10; }
  .voice-crest img { width: auto; height: 62%; }
  .tab-panels { padding-top: 28px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { padding-top: 10px; }
  .header-cta { display: none; }
  .btn { width: 100%; }
  .hero-actions, .closing-actions { flex-direction: column; }
  .center-cta .btn, .fw-head .btn { width: 100%; }
  .team-controls { display: none; }
  .team-foot-btns { display: flex; }
  .site-header { gap: 0; }
  .nav-box { flex: 1; justify-content: space-between; }
  .nav-panel { width: auto; left: 0; right: 0; }

  /* hero: top-weighted media, copy sits low on the calm part of the frame */
  .hero-poster, .hero-video { object-position: 50% 0%; }
  .hero-shade { background: linear-gradient(180deg, rgba(10, 12, 9, 0.35) 0%, rgba(10, 12, 9, 0.05) 22%, rgba(10, 12, 9, 0.55) 46%, rgba(10, 12, 9, 0.92) 66%, rgba(10, 12, 9, 0.96) 100%); }
  .hero-inner { justify-content: flex-end; padding-top: calc(var(--header-h) + 20px); padding-bottom: 32px; }
    .hero-title { font-size: clamp(34px, 11vw, 50px); margin-bottom: 16px; }
  .hero-sub { font-size: 16px; margin-bottom: 22px; }

  .eyebrow { font-size: 12px; letter-spacing: 0.12em; }
  .club-tiles { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .club-tile { min-height: 0; }
  .mini-cards { grid-template-columns: minmax(0, 1fr); }
  .dark-band { margin-inline: 0; border-radius: 0; }
  .svc-card .pager { justify-content: center; }
  .stats { grid-template-columns: minmax(0, 1fr); }
  .stat, .stat + .stat { padding: 24px 0; border-left: 0; }
  .stat + .stat { border-top: 1px solid var(--line-dark); }
  .craft-media img { aspect-ratio: 4 / 3; }
  .craft-tag { position: static; margin-top: 10px; background: var(--dark-2); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .team-head { flex-direction: column; align-items: flex-start; }
  .member { flex-basis: 74vw; }
  .fw-head { flex-direction: column; align-items: flex-start; }
  .pillar-list { grid-template-columns: minmax(0, 1fr); }
  .tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tab { min-height: 44px; }
  .voice-nav .pager-count { display: none; }
  .acc-inner p { padding-right: 22px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-line .sep { display: none; }
  .footer-line { display: grid; gap: 2px; }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero-title { font-size: clamp(32px, 10vw, 42px); margin-bottom: 12px; }
  .hero-sub { font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
}

@media (max-width: 380px) {
  .eyebrow { font-size: 11.5px; letter-spacing: 0.1em; }
  .stat-label { font-size: 12px; }
  .fw-meta { font-size: 11.5px; gap: 8px; }
  .dashes i { width: 7px; }
  .dashes i.is-on { width: 18px; }
  .svc-card .pager-count { display: none; }
  .brand-word { width: 116px; }
}

/* ---------- accessibility statement page ---------- */
.doc-hero {
  padding: calc(var(--header-h) + clamp(56px, 9vw, 110px)) 0 clamp(56px, 7vw, 88px);
  background: var(--dark); color: #fff;
}
.doc-hero .eyebrow { color: var(--on-dark-2); }
.doc-title { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(42px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.015em; color: #fff; margin-bottom: 20px; }
.doc-intro { max-width: 60ch; font-size: clamp(16.5px, 1.3vw, 19px); color: rgba(255, 255, 255, 0.84); }
.doc-body { padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 9vw, 120px); }
.doc-container { max-width: calc(780px + var(--gutter) * 2); }
.doc-body h2 { font-family: var(--display); font-stretch: 112%; font-weight: 500; font-size: clamp(25px, 2.4vw, 32px); line-height: 1.2; margin: 44px 0 12px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p { color: var(--ink-2); margin-bottom: 14px; }
.doc-body ul { display: grid; gap: 10px; margin-bottom: 16px; }
.doc-body li { position: relative; padding-left: 22px; color: var(--ink-2); }
.doc-body li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 1px; background: var(--gold); }
.doc-body a { color: var(--green); text-underline-offset: 4px; overflow-wrap: anywhere; }
.doc-updated { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; color: var(--muted) !important; }
.footer-col a[aria-current="page"] { color: var(--gold-hi); }
