/* ==========================================================================
   Tanya Blanchard: site.css
   White-dominant, warm. Gold is the accent thread, espresso is text + depth.
   Background "journey": sections are transparent when JS runs; the page
   colour eases between tones as each chapter crosses the viewport centre.
   ========================================================================== */

:root {
  /* Brand */
  --white: #ffffff;
  --cream: #faf7f1;
  --espresso: #1a0f00;
  --gold: #c9a84c;
  --gold-deep: #9f7d2c;   /* gold text at display sizes on light (3.9:1) */
  --gold-ink: #8a6a20;    /* small gold text on light (5.0:1) */
  --muted: #5c5042;       /* secondary text on light (7.8:1) */
  --on-dark: #faf7f1;
  --on-dark-muted: #bdb2a3;

  /* Tone-driven (redefined per tone below) */
  --bg: var(--white);
  --fg: var(--espresso);
  --fg-muted: var(--muted);
  --line: rgba(26, 15, 0, 0.13);
  --accent-text: var(--gold-deep);

  /* Type */
  --ff-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-body: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --t-hero: clamp(2.75rem, 1.15rem + 5.4vw, 6rem);
  --t-display: clamp(2.5rem, 1.2rem + 4.3vw, 5.25rem);
  --t-h2: clamp(2.1rem, 1.3rem + 2.7vw, 3.9rem);
  --t-h3: clamp(1.45rem, 1.15rem + 1vw, 2.1rem);
  --t-lead: clamp(1.15rem, 1.02rem + 0.45vw, 1.4rem);
  --t-body: 1.0625rem;
  --t-small: 0.9375rem;

  /* Layout */
  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1320px;
  --header-h: 76px;
  --chapter-pad: clamp(96px, 14vh, 184px);
  --r-frame: 20px;
  --r-card: 16px;

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --tone-dur: 0.9s;

  /* Layers */
  --z-content: 1;
  --z-header: 50;
  --z-menu: 60;
  --z-skip: 100;

  --shadow-card: 0 1px 2px rgba(26, 15, 0, 0.04), 0 12px 32px -12px rgba(26, 15, 0, 0.14);
}

html[data-tone="cream"] { --bg: var(--cream); }
html[data-tone="honey"] { --bg: #f7f0e1; }
/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
body {
  margin: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: var(--t-body);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color var(--tone-dur) var(--ease-soft), color var(--tone-dur) var(--ease-soft);
  overflow-x: clip;
}
[hidden] { display: none !important; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: rgba(201, 168, 76, 0.35); color: var(--espresso); }

:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: var(--z-skip);
  background: var(--espresso); color: var(--on-dark); padding: 12px 18px; border-radius: 3px;
  transform: translateY(-160%); transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: none; }

.wrap { width: 100%; max-width: calc(var(--maxw) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Typography ---------- */
.display, .h2, .h3 {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-weight: 350;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.display, .h2, .h3, .statement__text, .mission__text, .door__q, .accel__title, .creds__list b,
.flag__line, .aud li, .idx__t, .featured b, .talk h3, .quote-feature blockquote, .menu__links a,
.footer__brand p, .form-card h2, .form-success h3, .legal__text h2, .rating b { font-variation-settings: "opsz" 72; }
.display { font-size: var(--t-display); line-height: 1.06; }
.display--hero { font-size: var(--t-hero); line-height: 1.04; }
.h2 { font-size: var(--t-h2); line-height: 1.08; }
.h3 { font-size: var(--t-h3); line-height: 1.18; letter-spacing: -0.012em; font-weight: 380; }
.display em, .h2 em, .h3 em, .statement__text em, .mission__text em {
  font-style: italic;
  font-weight: 320;
  color: inherit;
}
/* Gold emphasis is rare: used once per page at most */
em.au { color: var(--accent-text); }
.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--fg-muted); max-width: 40ch; text-wrap: pretty; transition: color var(--tone-dur) var(--ease-soft); }
.body { color: var(--fg-muted); max-width: 62ch; text-wrap: pretty; transition: color var(--tone-dur) var(--ease-soft); }
.body + .body { margin-top: 1.1em; }
.kicker {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
@media (max-width: 480px) { .kicker { font-size: 0.75rem; letter-spacing: 0.1em; } }
.tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0; }
.tags li { display: inline-flex; align-items: center; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
.tags { margin-left: -32px; clip-path: inset(-8px -8px -8px 32px); }
.tags li::before { content: ""; flex: none; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin: 0 14px; }
.page-hero--center .tags { margin-left: 0; clip-path: none; }
.page-hero--center .tags li:first-child::before { display: none; }
.muted { color: var(--fg-muted); transition: color var(--tone-dur) var(--ease-soft); }

/* ---------- Buttons & links ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--espresso);
  --btn-bd: var(--gold);
  --hair: var(--gold);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 26px;
  border-radius: 3px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-size: 0.975rem; font-weight: 500; letter-spacing: 0.02em; white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.16s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* fine hairline frame that sits just outside the button and draws in on hover */
.btn::after {
  content: ""; position: absolute; inset: -5px; border: 1px solid var(--hair); border-radius: 4px;
  opacity: 0.9; pointer-events: none;
  transition: inset 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform 0.3s var(--ease-out); }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline-offset: 8px; border-radius: 3px; }
.btn--ink { --btn-bg: var(--espresso); --btn-fg: var(--on-dark); --btn-bd: var(--espresso); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--fg); --btn-bd: rgba(26, 15, 0, 0.55); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 0.9375rem; }
.btn--sm::after { inset: -4px; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { --btn-bg: #d4b45a; --btn-bd: #d4b45a; }
  .btn:hover::after { inset: -2px; opacity: 1; }
  .btn--ink:hover { --btn-bg: #33240f; --btn-bd: #33240f; }
  .btn--outline:hover { --btn-bg: var(--espresso); --btn-fg: var(--on-dark); --btn-bd: var(--espresso); }
  .btn:hover svg { transform: translateX(3px); }
  .btn:hover svg.i-out { transform: translate(2px, -2px); }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-weight: 500; color: var(--fg);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 22px 1px; background-position: 0 calc(100% - 9px); background-repeat: no-repeat;
  transition: background-size 0.45s var(--ease-out), color var(--tone-dur) var(--ease-soft);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .link-arrow:hover { background-size: 100% 1px; }
  .link-arrow:hover svg { transform: translateX(3px); }
  .link-arrow:hover svg.i-out { transform: translate(2px, -2px); }
}
.link-arrow:focus-visible { background-size: 100% 1px; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--header-h);
  color: var(--fg);
  transition: transform 0.45s var(--ease-out), background-color var(--tone-dur) var(--ease-soft), color var(--tone-dur) var(--ease-soft), box-shadow 0.3s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; background: var(--bg);
  opacity: 0; transition: opacity 0.3s ease, background-color var(--tone-dur) var(--ease-soft);
  box-shadow: 0 1px 0 var(--line);
}
.is-scrolled .site-header::before { opacity: 1; }
.header-hidden .site-header { transform: translateY(-100%); }
.header-hidden .site-header::before { box-shadow: none; }
.header__inner { position: relative; height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; justify-self: start; min-height: 48px; min-width: 44px; border-radius: 8px; }
.brand img { width: 44px; height: auto; transition: transform 0.5s var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .brand:hover img { transform: rotate(-4deg) scale(1.04); } }
.nav { display: flex; align-items: center; justify-content: center; gap: 6px; }
.header__cta { justify-self: end; }
.nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  font-size: 0.975rem; font-weight: 450; color: var(--fg); border-radius: 3px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 9px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) { .nav a:hover::after { transform: scaleX(1); } }
.menu-btn { display: none; width: 48px; height: 48px; margin-right: -10px; border-radius: 3px; align-items: center; justify-content: center; }
.menu-btn svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .nav { display: none; }
  .header__cta { display: none; }
  .header__inner { grid-template-columns: 1fr auto; }
  .menu-btn { display: inline-flex; justify-self: end; }
  .brand img { width: 34px; }
}

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--white); color: var(--espresso);
  display: flex; flex-direction: column;
  padding: 0 var(--gutter) max(28px, env(safe-area-inset-bottom));
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.menu-open .menu { visibility: visible; opacity: 1; transition: opacity 0.35s var(--ease-out); }
.menu__top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.menu__top img { width: 34px; }
.menu__close { width: 48px; height: 48px; margin-right: -10px; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; }
.menu__close svg { width: 26px; height: 26px; }
.menu__links { margin-top: clamp(24px, 6vh, 56px); display: grid; gap: 2px; }
.menu__links a {
  display: flex; align-items: baseline; justify-content: space-between; min-height: 56px;
  font-family: var(--ff-display); font-weight: 340; font-size: clamp(2rem, 9vw, 2.75rem); letter-spacing: -0.02em; line-height: 1.2;
  padding: 6px 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: calc(var(--i) * 45ms + 60ms);
}
.menu__links a[aria-current="page"] { font-style: italic; }
.menu-open .menu__links a { opacity: 1; transform: none; }
.menu__foot { margin-top: auto; display: grid; gap: 18px; padding-top: 28px; }
.menu__foot .btn { width: 100%; }
.menu__contact { display: flex; flex-wrap: wrap; gap: 4px 20px; color: var(--muted); font-size: 0.975rem; }
.menu__contact a { min-height: 44px; display: inline-flex; align-items: center; }
.menu-open { overflow: hidden; }

/* ---------- Chapters & tones ---------- */
main { position: relative; z-index: var(--z-content); overflow-x: clip; }
.chapter { position: relative; padding-block: var(--chapter-pad); }
.chapter--full { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) { .chapter--full { min-height: 0; } }
/* No-JS fallback: each chapter carries its own colour */
html:not(.js) .chapter[data-tone="cream"], html:not(.js) .site-footer { background: var(--cream); }
html:not(.js) .chapter[data-tone="honey"] { background: #f7f0e1; }
/* ---------- Reveal system: gentle whole-block fade-ups, used sparingly ---------- */
.motion [data-reveal], .motion [data-stagger] > * { transition: opacity 1.1s var(--ease-soft), transform 1.2s var(--ease-soft); transition-delay: calc(var(--d, 0) * 1ms); }
.motion [data-reveal="rise"]:not(.in), .motion [data-reveal="line"]:not(.in) { opacity: 0; transform: translateY(14px); }
.motion [data-reveal="frame"] picture { transition: opacity 1.4s var(--ease-soft) 0.15s; }
.motion [data-reveal="frame"]:not(.in) picture { opacity: 0; }
.motion [data-reveal="rule"] { transform-origin: left; transition: transform 1.4s var(--ease-soft); }
.motion [data-reveal="rule"]:not(.in) { transform: scaleX(0); }
.motion [data-stagger] > * { transition-delay: calc(var(--i, 0) * 70ms + var(--d, 0) * 1ms); }
.motion [data-stagger]:not(.in) > * { opacity: 0; transform: translateY(12px); }

/* ==========================================================================
   HOME
   ========================================================================== */
.hero { padding-top: calc(var(--header-h) + clamp(20px, 4vh, 48px)); padding-bottom: clamp(64px, 11vh, 140px); }
.hero__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: center; }
.hero__text { grid-column: 1 / span 6; grid-row: 1; display: grid; gap: clamp(22px, 3vh, 32px); justify-items: start; padding-block: clamp(24px, 4vh, 48px); }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 16px; }
.hero__eyebrow::after { content: ""; width: 56px; height: 1px; background: var(--gold); }
.hero__title { font-size: clamp(2.75rem, 1rem + 4.3vw, 5.4rem); line-height: 1.04; max-width: 11.5ch; }
.hero__roles li { font-size: 0.8125rem; color: var(--fg); }
@media (max-width: 480px) { .hero__roles { margin-left: -24px; clip-path: inset(-8px -8px -8px 24px); } .hero__roles li { font-size: 0.72rem; letter-spacing: 0.1em; } .hero__roles li::before { margin: 0 10px; } }
.hero__ctas { margin-top: clamp(4px, 1vh, 12px); }
/* Photo fills the right half and bleeds off the right edge of the viewport */
.hero__frame {
  grid-column: 7 / -1; grid-row: 1;
  position: relative; overflow: hidden;
  margin-right: calc(-1 * max(var(--gutter), (100vw - var(--maxw)) / 2));
  height: min(calc(100svh - var(--header-h) - clamp(40px, 8vh, 96px)), 860px);
  min-height: 520px;
  border-radius: 22px 0 0 22px;
  background: #eef0ef;
}
.hero__frame picture, .frame__img picture { position: absolute; inset: 0; }
.hero__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 47% 42%; }
@media (max-width: 860px) {
  .hero { padding-top: calc(var(--header-h) + 16px); }
  .hero__frame {
    grid-column: 1 / -1; grid-row: 1; margin: 0;
    height: auto; min-height: 0; aspect-ratio: 3 / 2;
    border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.7), 0 18px 40px -28px rgba(26, 15, 0, 0.35);
  }
  .hero__frame img { object-position: 50% 50%; }
  .hero__frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.7); pointer-events: none; }
  .hero__text { grid-column: 1 / -1; grid-row: 2; padding-block: 30px 0; gap: 22px; }
  .hero__eyebrow { font-size: 0; letter-spacing: 0; gap: 0; }
  .hero__eyebrow::after { width: 64px; }
  .hero__ctas { justify-self: stretch; flex-direction: column; align-items: stretch; gap: 16px; margin-top: 6px; }
  .hero__ctas .btn { width: 100%; min-height: 54px; }
}

/* Statement (sticky, scroll-lit) */
.statement__stick { display: block; }
.statement__text {
  font-family: var(--ff-display); font-weight: 330; font-optical-sizing: auto;
  font-size: clamp(2rem, 1.1rem + 3.6vw, 4.4rem); line-height: 1.14; letter-spacing: -0.01em;
  max-width: 21ch; text-wrap: balance;
}
@media (min-width: 861px) { .statement__wrap { padding-left: calc(var(--gutter) + clamp(0px, 18vw, 300px)); } }
.statement__by { margin-top: 36px; display: flex; align-items: center; gap: 14px; line-height: 1.35; }
.statement__by img { width: 34px; flex: none; }
.statement__by b { display: block; font-weight: 500; }
.statement__by small { display: block; font-size: var(--t-small); color: var(--fg-muted); }

/* Doors */
.doors__head { display: grid; gap: 20px; margin-bottom: clamp(48px, 8vh, 88px); }
.doors { display: grid; grid-template-columns: minmax(0, 1fr); }
.doors > .doors__head { margin-bottom: clamp(40px, 6vh, 64px); }
/* Three equal cards: same width, same top line, same height, even gaps */
.doors__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.doors__list > li { display: flex; }
.doors__list > li > .door { width: 100%; }
.door {
  display: flex; flex-direction: column; gap: 16px; height: 100%;
  padding: clamp(28px, 3vw, 40px);
  background: var(--white); color: var(--espresso);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26, 15, 0, 0.04), 0 18px 40px -24px rgba(26, 15, 0, 0.18);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.door__q { text-wrap: balance; font-family: var(--ff-display); font-variation-settings: "opsz" 72; font-weight: 360; font-size: clamp(1.6rem, 1.2rem + 1.1vw, 2.2rem); line-height: 1.12; letter-spacing: -0.012em; }
.door__txt { color: var(--muted); }
.door__foot { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.975rem; }
.door__foot svg { width: 16px; height: 16px; color: var(--gold-deep); transition: transform 0.35s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .door:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(26, 15, 0, 0.04), 0 28px 50px -24px rgba(26, 15, 0, 0.24); }
  .door:hover .door__foot svg { transform: translateX(3px); }
}
@media (max-width: 900px) { .doors__list { grid-template-columns: 1fr; gap: 16px; } }

/* Proof band: honey-tinted focal moment, big gold figures, calm count-ups */
.proof-band { display: grid; gap: 0; }
.proof-band__title {
  display: flex; align-items: center; justify-content: center; gap: 18px; text-align: center;
  font-family: var(--ff-body); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg);
  margin-bottom: clamp(40px, 7vh, 72px);
}
.proof-band__title::before, .proof-band__title::after { content: ""; width: clamp(32px, 6vw, 72px); height: 1px; background: var(--gold); }
.proof-band__stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-band__stats li { display: grid; justify-items: center; align-content: start; gap: 12px; text-align: center; padding: 8px clamp(12px, 2vw, 32px); }
.proof-band__stats li + li { border-left: 1px solid rgba(201, 168, 76, 0.55); }
.proof-band__stats b, .proof-band__hundreds b {
  display: block; font-family: var(--ff-display); font-weight: 300; color: var(--gold-deep);
  letter-spacing: -0.03em; line-height: 0.95; font-variant-numeric: lining-nums;
}
.proof-band__stats b { font-size: clamp(3.2rem, 1.4rem + 4.2vw, 6.2rem); text-align: right; }
.proof-band__stats span, .proof-band__hundreds span { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.proof-band__rule { height: 1px; background: rgba(201, 168, 76, 0.7); margin: clamp(48px, 8vh, 96px) 0; }
.proof-band__pair { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: center; }
.proof-band__hundreds { grid-column: 1 / span 6; display: grid; justify-items: start; gap: 14px; }
.proof-band__hundreds b { font-style: italic; font-size: clamp(4.4rem, 1.6rem + 8.6vw, 11rem); }
.proof-band__quote { grid-column: 7 / span 6; display: grid; gap: 28px; }
.proof-band__quote blockquote p {
  font-family: var(--ff-display); font-variation-settings: "opsz" 72; font-style: italic; font-weight: 330;
  font-size: clamp(1.6rem, 1rem + 1.5vw, 2.5rem); line-height: 1.25; letter-spacing: -0.01em; color: var(--fg); text-wrap: pretty;
}
.proof-band__quote .statement__by { margin-top: 0; }
@media (max-width: 860px) {
  .proof-band__stats { grid-template-columns: minmax(0, 1fr); }
  .proof-band__stats li { padding: 22px 0; }
  .proof-band__stats li + li { border-left: 0; }
  .proof-band__stats li + li::before { content: ""; width: 48px; height: 1px; background: var(--gold); margin-bottom: 22px; }
  .proof-band__stats b { font-size: clamp(3.6rem, 17vw, 4.8rem); }
  .proof-band__hundreds, .proof-band__quote { grid-column: 1 / -1; }
  .proof-band__quote { justify-items: center; text-align: center; }
  .proof-band__quote .statement__by { text-align: left; }
  .proof-band__hundreds { justify-items: center; text-align: center; margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .proof-band__title { font-size: 0.72rem; letter-spacing: 0.1em; gap: 10px; }
  .proof-band__title::before, .proof-band__title::after { width: 20px; }
}

/* Roots */
.roots__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.roots__grid--flip { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); max-width: calc(1160px + var(--gutter) * 2); }
.roots__copy { display: grid; gap: 26px; }
.roots__mission { display: flex; gap: 16px; align-items: flex-start; padding-top: 26px; border-top: 1px solid var(--line); font-weight: 500; max-width: 46ch; }
.roots__mission::before { content: ""; flex: none; width: 28px; height: 1.5px; margin-top: 0.8em; background: var(--gold); }
.roots__tree { position: relative; justify-self: center; width: min(100%, 520px); }
.roots__tree img { width: 100%; }
.roots__tree .grow { will-change: clip-path; }
@media (max-width: 860px) {
  .roots__grid { grid-template-columns: 1fr; }
  .roots__tree { width: min(78%, 360px); order: -1; }
}

/* Meet: magazine composition (title wide, portrait offset right and low, body indented) */
.mag { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: start; }
.mag__title { grid-column: 1 / span 7; grid-row: 1; max-width: 11ch; }
.mag__lede { display: grid; gap: 28px; align-content: start; }
.mag--text .mag__lede { grid-column: 1 / span 5; grid-row: 1; }
.mag--text .mag__title { max-width: 11ch; }
.mag--text .mag__body { grid-column: 7 / span 6; grid-row: 1; margin-top: 0; }
.mag__photo { grid-column: 9 / span 4; grid-row: 1 / span 2; margin-top: clamp(64px, 13vh, 160px); justify-self: stretch; margin-left: auto; width: 100%; }
.mag__body { grid-column: 2 / span 6; grid-row: 2; margin-top: clamp(40px, 7vh, 80px); display: grid; gap: 26px; }
@media (max-width: 860px) {
  .mag__title, .mag__body { grid-column: 1 / -1; }
  .mag--text .mag__lede, .mag--text .mag__body { grid-column: 1 / -1; }
  .mag--text .mag__body { grid-row: 2; margin-top: 36px; }
  .mag--text .mag__title { max-width: 14ch; }
  .mag__photo { grid-column: 3 / -1; grid-row: 2; margin-top: 40px; margin-right: 22px; width: auto; }
  .mag__body { grid-row: 3; margin-top: 48px; }
}
.frame { position: relative; max-width: 440px; margin-bottom: 22px; }
.frame__img { position: relative; overflow: hidden; border-radius: var(--r-frame); aspect-ratio: 4 / 5; background: #e9e1d4; }
.frame__img img { position: absolute; left: 0; top: -6%; width: 100%; height: 112%; object-fit: cover; object-position: 50% 30%; }
.frame__line { position: absolute; inset: 22px -22px -22px 22px; border: 1.5px solid var(--gold); border-radius: calc(var(--r-frame) + 4px); z-index: -1; pointer-events: none; }
.facts { display: grid; gap: 18px; margin-top: 8px; }
.facts li { display: grid; gap: 2px; }
.facts li b { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); }
.facts li span { color: var(--fg-muted); }


/* Academy poster */
.poster { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: start; }
.poster > * { min-width: 0; }
.poster__type { grid-column: 1 / span 9; grid-row: 1; display: grid; gap: 28px; }
.poster__type .display { max-width: 13ch; }
/* Two balanced columns under the headline: flagship card left, description + handoff right */
.poster__card { grid-column: 1 / span 6; grid-row: 2; margin-top: clamp(48px, 8vh, 96px); }
.poster__aside {
  grid-column: 8 / span 5; grid-row: 2; margin-top: clamp(48px, 8vh, 96px);
  padding-top: clamp(28px, 3.4vw, 44px);
  display: grid; gap: 28px; justify-items: start; align-content: start;
}
.poster__aside::before { content: ""; width: 48px; height: 1px; background: var(--gold); }
.poster__lead {
  font-family: var(--ff-display); font-variation-settings: "opsz" 72; font-weight: 340;
  font-size: clamp(1.45rem, 1rem + 1vw, 2rem); line-height: 1.3; letter-spacing: -0.01em;
  color: var(--fg); max-width: 26ch; text-wrap: pretty;
}
.card {
  background: var(--white); color: var(--espresso);
  border-radius: var(--r-card);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-card);
}
.card .kicker { color: var(--gold-ink); }
.card--flagship {
  position: relative; overflow: hidden;
  padding: clamp(36px, 4vw, 60px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 2px 4px rgba(26, 15, 0, 0.04), 0 40px 80px -36px rgba(26, 15, 0, 0.3);
}
.card--flagship::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gold); }
.card--flagship .accel__title { font-size: clamp(2.5rem, 1.6rem + 2.4vw, 3.8rem); margin-top: 16px; }
.card--flagship .accel__txt { font-size: 1.0625rem; }
.accel__title em { white-space: nowrap; }
@media (max-width: 760px) { .flag__body .h3 { font-size: 1.65rem; text-wrap: balance; } }
.card--flagship .accel__ctas { margin-top: 32px; }
.accel__title { font-family: var(--ff-display); font-weight: 360; font-size: clamp(2rem, 1.4rem + 1.8vw, 2.9rem); line-height: 1.04; letter-spacing: -0.025em; margin-top: 14px; }
.accel__title em { font-style: italic; }
.accel__meta { margin-top: 16px; }
.card .tags li { color: var(--muted); }
.accel__txt { margin-top: 18px; color: var(--muted); }
.accel__ctas { margin-top: 28px; display: grid; gap: 6px; justify-items: start; }
@media (max-width: 960px) {
  .poster__type, .poster__card, .poster__aside { grid-column: 1 / -1; }
  .poster__card { grid-row: 2; margin-top: 44px; }
  .poster__aside { grid-row: 3; margin-top: 44px; padding-top: 0; gap: 22px; }
  .poster__lead { font-size: 1.4rem; }
}

/* Speaking chapter + marquee */
.stage__head { display: grid; gap: 22px; }
.stage__head .display { max-width: 14ch; }
@media (min-width: 961px) { .stage__head { padding-left: calc(var(--gutter) + 33%); } }
.creds { margin-top: clamp(56px, 9vh, 104px); display: grid; gap: 22px; }
.creds__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px clamp(24px, 4vw, 64px); }
.creds__list li { display: grid; gap: 8px; align-content: start; }
.creds__list b { text-wrap: balance; font-family: var(--ff-display); font-variation-settings: "opsz" 72; font-style: italic; font-weight: 330; font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem); line-height: 1.15; letter-spacing: -0.01em; }
.creds__list span { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
@media (max-width: 760px) { .creds__list { grid-template-columns: 1fr; } }
.stage__cta { margin-top: 48px; }

/* Reviews rail */
.reviews__top { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; row-gap: 32px; align-items: end; margin-bottom: clamp(36px, 6vh, 56px); }
.reviews__top .h2 { grid-column: 1 / span 6; max-width: 14ch; }
.reviews__score { grid-column: 8 / span 5; justify-self: end; display: grid; justify-items: end; gap: 22px; }
.rating.rating--big { gap: 18px; }
.rating.rating--big b { font-size: clamp(3.6rem, 2rem + 3vw, 5rem); color: var(--gold-deep); }
.rating.rating--big .stars svg { width: 20px; height: 20px; }
.rating.rating--big small { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
@media (max-width: 860px) {
  .reviews__top { text-align: center; }
  .reviews__top .h2, .reviews__score { grid-column: 1 / -1; justify-self: center; justify-items: center; }
  .reviews__top .h2 { margin-inline: auto; }
  .rating.rating--big { flex-direction: column; gap: 10px; }
  .rating.rating--big > div { display: grid; justify-items: center; }
}
.rating { display: flex; align-items: center; gap: 14px; }
.rating b { font-family: var(--ff-display); font-weight: 340; font-size: 3rem; line-height: 1; }
.rating small { display: block; font-size: var(--t-small); color: var(--fg-muted); margin-top: 4px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.rail-ctrl { display: flex; gap: 10px; }
.rail-btn { width: 48px; height: 48px; border-radius: 3px; border: 1px solid var(--fg); display: inline-flex; align-items: center; justify-content: center; transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease, transform 0.16s var(--ease-out); }
.rail-btn svg { width: 20px; height: 20px; }
.rail-btn:active { transform: scale(0.95); }
.rail-btn[disabled] { opacity: 0.3; cursor: default; }
@media (hover: hover) and (pointer: fine) { .rail-btn:not([disabled]):hover { background: var(--fg); color: var(--bg); } }
.rail {
  display: flex; gap: 20px; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--maxw)) / 2));
  padding: 8px max(var(--gutter), calc((100vw - var(--maxw)) / 2)) 28px;
  scrollbar-width: none;
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.rail.is-dragging a { pointer-events: none; }
.review {
  flex: none; width: min(84vw, 400px); scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--white); color: var(--espresso); border-radius: var(--r-card); padding: 30px 30px 26px;
  box-shadow: var(--shadow-card);
}
.review blockquote { font-size: 1.0625rem; line-height: 1.6; color: #3a2e20; flex: 1; }
.review figcaption { padding-top: 16px; border-top: 1px solid rgba(26, 15, 0, 0.1); }
.review figcaption b { display: block; font-weight: 500; }
.review figcaption span { font-size: 0.9375rem; color: var(--muted); }
.reviews__foot { margin-top: 8px; display: flex; justify-content: flex-end; }
@media (max-width: 860px) { .reviews__foot { justify-content: center; } }

/* Close CTA */
.close { text-align: center; }
.close__inner { display: grid; justify-items: center; gap: 28px; }
.close__inner .display { max-width: 14ch; }
.close__tree { width: 64px; }
.close .lead { margin-inline: auto; max-width: 46ch; }
.close .cta-row { justify-content: center; }

/* ==========================================================================
   INTERIOR PAGES
   ========================================================================== */
.page-hero { padding-top: calc(var(--header-h) + clamp(56px, 13vh, 150px)); padding-bottom: clamp(72px, 12vh, 140px); }
.page-hero__inner { display: grid; gap: 28px; }
.page-hero .display { max-width: 15ch; }
.page-hero__rule { width: min(240px, 40%); height: 1.5px; background: var(--gold); }
.page-hero--center .page-hero__inner { justify-items: center; text-align: center; }
.page-hero--center .display--hero { font-size: clamp(3rem, 1.2rem + 6.2vw, 6.75rem); max-width: 16ch; margin-inline: auto; }
.page-hero--center .lead { margin-inline: auto; max-width: 46ch; }
.page-hero--center .cta-row, .page-hero--center .tags { justify-content: center; }

/* About hero */
.about-hero { padding-top: calc(var(--header-h) + clamp(40px, 9vh, 110px)); padding-bottom: var(--chapter-pad); }
.about-hero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(40px, 6vw, 104px); align-items: center; }
.about-hero__copy { display: grid; gap: 28px; }
.about-hero__copy .display { max-width: 11.5ch; }
.about-hero .frame__img { aspect-ratio: 5 / 6; }
@media (max-width: 860px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero .frame { max-width: 440px; margin-right: 22px; }
}

/* Sticky-side story */
.story { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 7vw, 120px); align-items: start; }
.story__head { position: sticky; top: calc(var(--header-h) + 48px); display: grid; gap: 22px; }
.story__body { display: grid; gap: 1.2em; padding-top: 8px; }
.story__body p { font-size: var(--t-lead); line-height: 1.6; color: var(--fg-muted); text-wrap: pretty; }
.story__body p:first-child { color: var(--fg); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .story__head { position: static; } }

/* Mission (about) */
.mission__stick { display: grid; place-items: center; }
.mission__text { position: relative; text-align: center; margin-inline: auto; max-width: 20ch; font-family: var(--ff-display); font-weight: 330; font-size: clamp(2rem, 1.1rem + 3.4vw, 4.2rem); line-height: 1.14; letter-spacing: -0.02em; text-wrap: balance; }
.mission__label { display: block; text-align: center; margin-bottom: 28px; }

/* Numbers spread (about) */
.spread { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 48px 24px; margin-top: clamp(48px, 8vh, 88px); align-items: end; }
.spread__item b { display: block; font-family: var(--ff-display); font-weight: 300; line-height: 0.95; letter-spacing: -0.035em; color: var(--accent-text); font-variant-numeric: lining-nums; font-size: clamp(3.4rem, 2rem + 4vw, 5.6rem); }
.spread__item span { display: block; margin-top: 12px; color: var(--fg-muted); max-width: 22ch; }
.spread__item--lead { grid-column: 1 / span 6; grid-row: span 2; }
.spread__item--lead b { font-size: clamp(5.5rem, 3rem + 10vw, 13rem); }
.spread__item:nth-child(2) { grid-column: 8 / span 5; }
.spread__item:nth-child(3) { grid-column: 8 / span 2; }
.spread__item:nth-child(4) { grid-column: 11 / span 2; }
.spread__foot { grid-column: 1 / -1; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 40px; color: var(--fg-muted); }
.spread__foot li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 99px; background: var(--gold); margin-right: 12px; vertical-align: 2px; }
@media (max-width: 860px) {
  .spread { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .spread__item--lead { grid-column: 1 / -1; grid-row: auto; }
  .spread__item:nth-child(2) { grid-column: 1 / -1; }
  .spread__item:nth-child(3), .spread__item:nth-child(4) { grid-column: auto; }
}

/* Record (definition grid) */
.record { --rule: rgba(201, 168, 76, 0.45); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(40px, 7vh, 72px); border-top: 1px solid var(--rule); }
.record > div { display: grid; gap: 8px; align-content: start; padding: clamp(22px, 3vh, 30px) clamp(20px, 3vw, 40px); border-bottom: 1px solid var(--rule); }
.record > div:nth-child(odd) { border-right: 1px solid var(--rule); padding-left: 0; }
.record--compact { margin-top: 4px; }
.record--compact > div { padding: 18px 20px; gap: 6px; }
.record--compact > div:nth-child(odd) { padding-left: 0; }
.record--compact dd { font-size: 0.975rem; line-height: 1.5; color: var(--fg-muted); }
.record dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); }
.record dd { font-size: 1.125rem; line-height: 1.5; }
@media (max-width: 760px) { .record { grid-template-columns: 1fr; } .record > div, .record > div:nth-child(odd) { border-right: 0; padding-inline: 0; } }

/* Academy: flagship */
.flag { overflow: hidden; }
.flag__six { display: grid; gap: 0; margin-block: clamp(24px, 5vh, 48px); }
.flag__line { display: block; font-family: var(--ff-display); font-weight: 320; font-size: clamp(3.4rem, 1.4rem + 8.4vw, 10rem); line-height: 0.98; letter-spacing: -0.035em; white-space: nowrap; will-change: transform; }
.flag__line em { font-style: italic; }
.flag__line--b { text-align: right; }
/* room for the drift so neither line is clipped at the viewport edge (half of the JS travel distance) */
.flag__six { --drift-room: calc(min(260px, 18vw) / 2); }
.flag__line:not(.flag__line--b) { padding-left: var(--drift-room); }
.flag__line--b { padding-right: var(--drift-room); }
@media (max-width: 760px) { .flag__line--b { padding-right: 0; padding-left: var(--drift-room); } }
@media (max-width: 520px) { .flag__line { font-size: clamp(2.5rem, 12vw, 3.4rem); } }
.flag__body { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px 56px; align-items: end; margin-top: clamp(16px, 3vh, 36px); }
.flag__body .h3 { font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.6rem); }
.flag__body .lead { max-width: 36ch; }
.flag__facts { margin-top: 22px; }
@media (max-width: 760px) { .flag__body { grid-template-columns: 1fr; } .flag__line--b { text-align: left; } }

/* Audience list (lit) */
.aud { display: grid; gap: 4px; margin-top: clamp(32px, 6vh, 64px); }
.aud li { font-family: var(--ff-display); font-weight: 330; font-size: clamp(2.6rem, 1.3rem + 5vw, 6.4rem); line-height: 1.04; letter-spacing: -0.03em; transition: opacity 0.5s ease, color 0.5s ease, transform 0.6s var(--ease-out); }
.aud li em { font-style: italic; transition: color 0.5s ease; }

/* Student quotes */
.students { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); margin-top: clamp(40px, 7vh, 72px); align-items: start; }
.quote-feature { position: relative; padding-top: 28px; }
.quote-feature::before { content: ""; position: absolute; top: 0; left: 0; width: 48px; height: 1px; background: var(--gold); }
.quote-feature blockquote { font-family: var(--ff-display); font-weight: 330; font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2.2rem); line-height: 1.32; letter-spacing: -0.012em; }
.quote-side { display: grid; gap: 28px; }
.quote-side figure { padding-top: 4px; }
.quote-side blockquote { color: var(--fg-muted); }
.q-by { margin-top: 20px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.q-by span { color: var(--fg-muted); font-weight: 400; font-size: var(--t-small); }
@media (max-width: 860px) { .students { grid-template-columns: 1fr; } }

/* Speaking: featured rows */
.featured { margin-top: clamp(40px, 7vh, 72px); }
.featured { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px clamp(24px, 4vw, 64px); }
.featured { align-items: stretch; }
.featured li {
  display: grid; gap: 14px; align-content: start;
  padding: clamp(28px, 3vw, 40px);
  background: var(--white); color: var(--espresso);
  border: 1px solid rgba(201, 168, 76, 0.35); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26, 15, 0, 0.03), 0 16px 36px -26px rgba(26, 15, 0, 0.16);
}
.featured li span { color: var(--muted); }
.featured li b { font-size: clamp(1.5rem, 1.1rem + 0.9vw, 2rem); line-height: 1.15; }
.featured b { font-family: var(--ff-display); font-weight: 330; font-size: clamp(1.8rem, 1.1rem + 2.6vw, 3.6rem); line-height: 1.1; letter-spacing: -0.02em; }
.featured b { font-style: italic; }
.featured span { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
@media (max-width: 760px) { .featured { grid-template-columns: 1fr; } }

/* Talks grid */
.talks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: clamp(40px, 7vh, 72px); }
.talks > :nth-child(even) { transform: translateY(clamp(0px, 3vh, 32px)); }
.talk { padding: clamp(26px, 2.6vw, 36px); display: grid; gap: 10px; align-content: start; background: var(--white); color: var(--espresso); border-radius: 14px; box-shadow: 0 1px 2px rgba(26,15,0,.04), 0 18px 40px -26px rgba(26,15,0,.16); }
.talk p { color: var(--muted) !important; }
.talk h3 { font-family: var(--ff-display); font-weight: 360; font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.8rem); line-height: 1.2; letter-spacing: -0.012em; }
.talk p { color: var(--fg-muted); }
@media (max-width: 760px) { .talks { grid-template-columns: 1fr; } .talks > :nth-child(even) { transform: none; } }

/* Booking / forms */
.book { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 104px); align-items: start; }
.book__info { display: grid; gap: 26px; position: sticky; top: calc(var(--header-h) + 40px); }
.contact-list { display: grid; gap: 4px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; min-height: 60px; padding: 8px 0; }
.contact-list svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }
.contact-list small { display: block; font-size: 0.875rem; color: var(--fg-muted); line-height: 1.3; }
.contact-list b { font-weight: 500; }
.formats { display: grid; gap: 14px; }
.formats li b { font-weight: 500; }
.formats li span { color: var(--fg-muted); }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } .book__info { position: static; } }
/* Speaking, phones only: heading + intro, then the form, then phone/email and formats */
@media (max-width: 768px) {
  .book--speaking { row-gap: 0; }
  .book--speaking .book__info { display: contents; }
  .book--speaking .book__info > .h2 { order: 1; }
  .book--speaking .book__info > .body { order: 2; margin-top: 18px; }
  .book--speaking .form-card { order: 3; margin-top: 32px; }
  .book--speaking .contact-list { order: 4; margin-top: 44px; }
  .book--speaking .formats { order: 5; margin-top: 28px; }
}

.form-card { background: var(--white); color: var(--espresso); border-radius: var(--r-card); padding: clamp(24px, 3.6vw, 48px); box-shadow: var(--shadow-card); }
.form-card h2 { font-family: var(--ff-display); font-weight: 360; font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem); letter-spacing: -0.015em; line-height: 1.15; }
.form-card > p { margin-top: 8px; color: var(--muted); }
.form { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.field { display: grid; gap: 8px; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label, .field .label { font-size: 0.9375rem; font-weight: 500; color: var(--espresso); }
.field label .req { color: var(--gold-ink); }
.field label .opt { color: var(--muted); font-weight: 400; }
.input {
  width: 100%; min-height: 54px; padding: 14px 16px;
  font-size: 1rem; line-height: 1.4; color: var(--espresso);
  background: var(--cream); border: 1.5px solid rgba(26, 15, 0, 0.16); border-radius: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none; -webkit-appearance: none;
}
.input::placeholder { color: #7a6c5b; }
textarea.input { min-height: 150px; resize: vertical; }
select.input { padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%231a0f00' d='M213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80a8 8 0 0 1 11.32-11.32L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; cursor: pointer; }
.input:hover { border-color: rgba(26, 15, 0, 0.32); }
.input:focus { outline: none; border-color: var(--gold-deep); background-color: var(--white); box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25); }
.field.is-invalid .input { border-color: #a1321f; background-color: #fff8f6; }
.field__err { display: none; font-size: 0.9rem; color: #a1321f; }
.field.is-invalid .field__err { display: block; }
.field__help { font-size: 0.9rem; color: var(--muted); }
.check { grid-column: 1 / -1; display: flex; gap: 14px; align-items: flex-start; cursor: pointer; padding: 6px 0; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 1.5px solid rgba(26, 15, 0, 0.35); background: var(--cream); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; transition: background-color 0.2s ease, border-color 0.2s ease; }
.check__box svg { width: 16px; height: 16px; color: var(--espresso); opacity: 0; transform: scale(0.8); transition: opacity 0.15s ease, transform 0.2s var(--ease-out); }
.check input:checked + .check__box { background: var(--gold); border-color: var(--gold); }
.check input:checked + .check__box svg { opacity: 1; transform: none; }
.check input:focus-visible + .check__box { outline: 2px solid var(--gold-ink); outline-offset: 3px; }
.check span:last-child { font-size: 0.975rem; color: var(--muted); line-height: 1.5; }
.check.is-invalid .check__box { border-color: #a1321f; }
.form__submit { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 6px; }
.form__submit .btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }
.form__note { font-size: 0.9rem; color: var(--muted); }
.form__status { grid-column: 1 / -1; font-size: 0.975rem; }
.form__status.is-error { color: #a1321f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { display: grid; gap: 14px; justify-items: start; padding: 12px 0; }
.form-success .tick { width: 56px; height: 56px; border-radius: 3px; background: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.form-success .tick svg { width: 26px; height: 26px; }
.form-success h3 { font-family: var(--ff-display); font-weight: 360; font-size: 2rem; letter-spacing: -0.015em; }
.form-success p { color: var(--muted); max-width: 44ch; }
@media (max-width: 620px) { .form { grid-template-columns: 1fr; } }

/* Resources: editorial index with small serif figures */
.index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px, 8vh, 88px) clamp(32px, 6vw, 112px); }
.idx {
  display: grid; grid-template-columns: 2.4rem minmax(0, 1fr); column-gap: 18px; row-gap: 12px; align-items: baseline;
  padding: clamp(22px, 2.4vw, 32px); margin: calc(-1 * clamp(22px, 2.4vw, 32px)); border-radius: 14px;
  background-color: rgba(250, 247, 241, 0);
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.idx > :not(.idx__n) { grid-column: 2; }
.idx__n { grid-row: 1; font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--gold-ink); font-variant-numeric: oldstyle-nums; }
.idx__t { font-family: var(--ff-display); font-variation-settings: "opsz" 72; font-weight: 340; font-size: clamp(1.9rem, 1.3rem + 1.8vw, 3rem); line-height: 1.05; letter-spacing: -0.015em; transition: transform 0.55s var(--ease-out); }
.idx__d { color: var(--fg-muted); max-width: 38ch; transition: transform 0.55s var(--ease-out) 0.03s; }
.idx__cta {
  justify-self: start; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 500;
  background-image: linear-gradient(var(--gold), var(--gold)); background-size: 22px 1px; background-position: 0 calc(100% - 9px); background-repeat: no-repeat;
  transition: background-size 0.55s var(--ease-out), transform 0.55s var(--ease-out) 0.06s;
}
.idx__cta svg { width: 16px; height: 16px; transition: transform 0.45s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .idx:hover { background-color: rgba(250, 247, 241, 1); box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.28); }
  .idx:hover .idx__t, .idx:hover .idx__d, .idx:hover .idx__cta { transform: translateX(6px); }
  .idx:hover .idx__cta { background-size: 100% 1px; }
  .idx:hover .idx__cta svg { transform: translate(3px, -3px); }
}
.idx:focus-visible { outline-offset: 2px; border-radius: 14px; }
.idx:focus-visible .idx__cta { background-size: 100% 1px; }
@media (prefers-reduced-motion: reduce) { .idx:hover .idx__t, .idx:hover .idx__d, .idx:hover .idx__cta { transform: none; } }
@media (max-width: 760px) { .index { grid-template-columns: 1fr; gap: 44px; } .idx { padding: 0; margin: 0; } }

/* Licensing */
.legal { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.legal dl > div { padding: 14px 0; display: grid; gap: 4px; }
.legal dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
.legal dd { font-size: 1.125rem; font-weight: 500; }
.legal__text { display: grid; gap: 1.1em; color: var(--fg-muted); max-width: 66ch; }
.legal__text h2 { font-family: var(--ff-display); font-weight: 360; font-size: 1.6rem; color: var(--fg); letter-spacing: -0.012em; margin-top: 0.8em; }
.legal__text h2:first-child { margin-top: 0; }
.legal__text a { color: var(--fg); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
@media (max-width: 860px) { .legal { grid-template-columns: 1fr; } }

/* 404 */
.nf { min-height: 100svh; display: grid; place-items: center; text-align: center; padding-block: calc(var(--header-h) + 40px) 80px; }
.nf__inner { display: grid; justify-items: center; gap: 26px; }
.nf__tree { width: 120px; }

/* ---------- Mobile action bar ---------- */
.mbar { display: none; }
@media (max-width: 860px) {
  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--white); border-top: 1px solid rgba(201, 168, 76, 0.7);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mbar__a { display: flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 12px; text-align: center; white-space: nowrap; font-size: clamp(0.7rem, 3.1vw, 0.8125rem); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-ink); }
  .mbar__a--ink { background: var(--espresso); color: var(--on-dark); }
  .mbar__a:focus-visible { outline-offset: -4px; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  .menu-open .mbar { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: var(--z-content); overflow-x: clip; padding-top: clamp(80px, 12vh, 140px); padding-bottom: max(32px, env(safe-area-inset-bottom)); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-bottom: 56px; }
.footer__brand { display: grid; gap: 18px; align-content: start; }
.footer__brand img { width: 64px; }
.footer__brand p { font-family: var(--ff-display); font-size: 1.5rem; line-height: 1.25; font-weight: 340; letter-spacing: -0.01em; max-width: 16ch; }
.footer__brand small { color: var(--fg-muted); font-size: var(--t-small); }
.footer__col h2 { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 14px; }
.footer__col a { overflow-wrap: anywhere; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; color: var(--fg); transition: color 0.2s ease; }
.footer__col a svg { width: 15px; height: 15px; opacity: 0.7; }
@media (hover: hover) and (pointer: fine) { .footer__col a:hover { color: var(--gold-ink); } }
.socials { display: flex; gap: 6px; margin-top: 8px; }
.socials a { width: 44px; height: 44px; border-radius: 3px; border: 1px solid var(--line); justify-content: center; }
.socials svg { width: 20px !important; height: 20px !important; opacity: 1 !important; }
.footer__legal { padding-top: 28px; border-top: 1px solid var(--line); display: grid; gap: 14px; font-size: 0.9rem; color: var(--fg-muted); }
.footer__legal p { max-width: 110ch; }
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 4px 24px; }
.footer__legal nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--fg); text-decoration: underline; text-decoration-color: rgba(201, 168, 76, 0.8); text-underline-offset: 4px; }
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto !important; }
  body, .site-header, .site-header::before { transition-duration: 0.3s !important; }
  .statement, .mission { height: auto; }
  .statement__stick, .mission__stick { position: static; height: auto; padding-block: var(--chapter-pad); }
}

/* ==========================================================================
   PHONE POLISH (768px and below only; desktop untouched)
   Same hierarchy, rhythm and components as desktop, re-composed for a narrow screen.
   ========================================================================== */
@media (max-width: 768px) {
  /* Rhythm: proportional section spacing instead of desktop's 14vh on a tall, narrow screen */
  :root { --chapter-pad: clamp(72px, 11vh, 96px); }
  .page-hero { padding-top: calc(var(--header-h) + 44px); padding-bottom: clamp(64px, 9vh, 88px); }
  .about-hero { padding-top: calc(var(--header-h) + 20px); }
  .site-footer { padding-top: 72px; }
  .footer__top { gap: 36px; padding-bottom: 40px; }

  /* Type: centred heroes sized so lines break cleanly (no lonely words) */
  .page-hero--center .display--hero { font-size: clamp(2.4rem, 10.4vw, 2.9rem); line-height: 1.06; }
  .featured b, .idx__t, .talk h3, .mag__title, .reviews__top .h2, .stage__head .display { text-wrap: balance; }

  /* Buttons: primary actions full width, secondary text links centred beneath */
  .page-hero--center .cta-row, .close .cta-row { flex-direction: column; align-items: stretch; width: 100%; gap: 14px; }
  .page-hero--center .cta-row .btn, .close .cta-row .btn { width: 100%; }
  .page-hero--center .cta-row .link-arrow, .close .cta-row .link-arrow { align-self: center; }
  .close__inner { justify-items: stretch; }
  .close__inner > .close__tree { justify-self: center; }
  .stage__cta .btn, .card--flagship .btn, .flag__body .btn, .reviews__score .btn { width: 100%; }
  .card--flagship .accel__ctas { justify-items: stretch; }
  .card--flagship .accel__ctas .link-arrow { justify-self: center; }
  .flag__body > div:last-child { width: 100%; }
  .reviews__score { width: 100%; }
  .form__submit { flex-direction: column; align-items: stretch; text-align: center; }
  .form__submit .btn { width: 100%; }

  /* About: portrait leads, like the homepage's photo-first hero */
  .about-hero .frame { order: -1; width: min(60vw, 240px); justify-self: center; margin: 4px 22px 44px 0; }
  .about-hero .frame__img { aspect-ratio: 4 / 5; }

  /* Footer: short Explore links in two columns so the footer isn't a long single list */
  .footer__col:nth-child(2) ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
}

@media print {
  .motion [data-reveal], .motion [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .site-header, .menu, .mbar { display: none !important; }
}
