/* ==========================================================================
   THYBRID — v1 static clone
   Plain CSS. No build step. Tokens mirror the original SPA's Tailwind values.
   ========================================================================== */

:root {
  /* Grounds */
  --paper:        #f4f1ea;  /* primary light ground */
  --paper-warm:   #f3ede3;  /* sanctuary / founders ground */
  --paper-deep:   #ece6d8;  /* alternating band */
  --paper-deep-2: #ece4d8;  /* testimonial alt band */
  --frame:        #d8d0c6;  /* image placeholder frame */

  /* Inks */
  --ink:          #17130f;  /* near-black brand ink */
  --ink-2:        #1a1612;
  --ink-3:        #1a1a1a;
  --black:        #000;
  --near-black:   #080808;
  --footer-bg:    #11100c;

  /* Off-white — brand off-white, used for all copy on dark grounds */
  --offwhite:     #f0e6e1;

  /* Accents (as rendered by the original) */
  --accent:       #e2462c;  /* section accent / italic display */
  --accent-deep:  #8b4331;  /* muted rust rule + eyebrow */
  --accent-clay:  #9f583f;  /* portrait-placeholder fill */

  /* Type */
  --display: "Instrument Serif", "PP Editorial New", Georgia, serif;
  --sans:    "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:    "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1400px;
}

/* --------------------------------------------------------------- reset -- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--offwhite);
  padding: 12px 18px;
  font-size: 13px;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

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

/* ---------------------------------------------------------- type roles -- */

.f-display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.f-italic  { font-family: var(--display); font-style: italic; font-weight: 400; }
.f-mono    { font-family: var(--mono); }

/* Eyebrow — the small tracked-out uppercase label above every section head */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(23, 19, 15, 0.62);
}
.eyebrow--accent { color: var(--accent-deep); }
.eyebrow--dark   { color: rgba(240, 230, 225, 0.72); }

/* Drop cap — the original opens several body blocks with a floated capital */
.dropcap::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 5.2em;
  line-height: 0.68;
  padding-right: 0.08em;
  margin-top: 0.04em;
}

/* --------------------------------------------------------------- layout -- */

.wrap { max-width: var(--wrap); margin-inline: auto; }
.wrap--narrow { max-width: 820px; }
.wrap--mid    { max-width: 1180px; }
.wrap--wide   { max-width: 1500px; }

.section { padding: 96px 32px; }
@media (min-width: 768px)  { .section { padding: 112px 64px; } }
@media (min-width: 1024px) { .section { padding: 128px 80px; } }

.section--tight { padding-block: 72px; }

.band-paper      { background: var(--paper);      color: var(--ink); }
.band-paper-warm { background: var(--paper-warm); color: var(--ink-2); }
.band-paper-deep { background: var(--paper-deep); color: var(--ink-3); }
.band-dark       { background: var(--ink);        color: var(--offwhite); }
.band-black      { background: var(--black);      color: var(--offwhite); }
.band-near-black { background: var(--near-black); color: var(--offwhite); }

.rule-t { border-top: 1px solid rgba(23,19,15,0.12); }
.rule-b { border-bottom: 1px solid rgba(23,19,15,0.12); }
.band-dark .rule-t, .band-black .rule-t { border-top-color: rgba(240,230,225,0.14); }
.band-dark .rule-b, .band-black .rule-b { border-bottom-color: rgba(240,230,225,0.14); }

/* ------------------------------------------------------------------ nav -- */

.nav {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: var(--black);
}

.nav__logo img { width: 128px; height: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: #e5e5e5;
  text-decoration: none;
  transition: color .3s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: #fff; }

.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .3s;
}
.nav__cta:hover { background: #e5e5e5; }
.nav__cta .arrow { transition: transform .3s; }
.nav__cta:hover .arrow { transform: translateX(4px); }

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none; border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  display: block; height: 1.5px; background: #fff; border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.nav__burger span:nth-child(1) { width: 100%; }
.nav__burger span:nth-child(2) { width: 64%; align-self: flex-end; }
.nav__burger span:nth-child(3) { width: 100%; }

.nav__drawer {
  display: none;
  background: var(--black);
  padding: 8px 32px 32px;
}
.nav__drawer.is-open { display: block; }
.nav__drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  color: #e5e5e5;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

@media (min-width: 900px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__burger { display: none; }
  .nav__drawer { display: none !important; }
}

/* --------------------------------------------------------------- footer -- */

.footer { background: var(--footer-bg); color: var(--offwhite); padding: 128px 32px 80px; }
@media (min-width: 768px)  { .footer { padding-inline: 64px; } }
@media (min-width: 1024px) { .footer { padding-inline: 96px; } }

.footer__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  gap: 64px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
}

.footer__logo { width: 120px; height: auto; margin-bottom: 28px; }

.footer__line {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  max-width: 400px;
  margin-bottom: 32px;
  color: var(--offwhite);
}
@media (min-width: 768px) { .footer__line { font-size: 28px; } }

.footer__place {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,230,225,0.88);
}

.footer__heading {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(240,230,225,0.88);
  margin-bottom: 40px;
}

.footer__list a {
  display: block;
  font-size: 18px;
  color: var(--offwhite);
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity .3s;
}
.footer__list a:hover { opacity: .5; }

.footer__base {
  max-width: var(--wrap);
  margin: 128px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(240,230,225,0.1);
}
.footer__base p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,230,225,0.86);
}

/* --------------------------------------------------------------- pills -- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.pill .arrow { display: inline-block; transition: transform .3s; }
.pill:hover .arrow { transform: translateX(4px); }

.pill--dark  { background: var(--ink);      color: var(--paper); }
.pill--dark:hover  { background: #000; }
.pill--light { background: var(--offwhite); color: var(--ink);  }
.pill--light:hover { background: #fff; }

.pill--square { border-radius: 2px; padding: 14px 22px; font-size: 13px; font-weight: 500; }

.microcopy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(23,19,15,0.55);
}
.band-dark .microcopy,
.band-black .microcopy,
.band-near-black .microcopy { color: rgba(240,230,225,0.72); }

/* ============================================================== HOME ==== */
/* Full-bleed scroll-snap video stack with a fixed nav overlay.             */

.home { background: #000; }

.home__reel {
  height: 100dvh;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background: #000;
}

.home__panel {
  position: relative;
  height: 100dvh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: #000;
}
.home__panel video,
.home__panel img.home__still {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,0) 45%, rgba(0,0,0,.7));
  pointer-events: none;
}

.home__topbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px 0;
}
.home__topbar img { width: 136px; height: auto; }

.home__menu-btn {
  background: none; border: 0; cursor: pointer;
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 40px; padding: 6px 0;
}
.home__menu-btn span { display: block; height: 1.5px; background: #fff; border-radius: 1px; }
.home__menu-btn span:nth-child(1) { width: 17px; }
.home__menu-btn span:nth-child(2) { width: 11px; margin-left: 6px; }
.home__menu-btn span:nth-child(3) { width: 17px; }

.home__overlay {
  position: fixed;
  left: 0; right: 0;
  bottom: 40px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 24px;
  /* soft dark halo so the stacked links stay legible over any frame */
  text-shadow: 0 2px 40px rgba(0,0,0,.85), 0 0 90px rgba(0,0,0,.7);
}
@media (min-width: 1024px) { .home__overlay { bottom: 48px; } }

.home__nav { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }

.home__nav a {
  display: block;
  text-decoration: none;
  font-size: 7vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: rgba(255,255,255,0.5);
  transition: color .3s;
}
@media (min-width: 768px) { .home__nav a { font-size: 30px; } }

.home__nav a:hover,
.home__nav a.is-active { color: #fff; }

.home__cta {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  margin-bottom: 16px;
}
.home__cta span:first-child { border-bottom: 1px solid #fff; padding-bottom: 4px; }
.home__cta .arrow { display: inline-block; margin-left: 4px; transition: transform .3s; }
.home__cta:hover .arrow { transform: rotate(-45deg); }

.home__note {
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
}

/* =========================================================== PAGE HEROS = */

.hero-light { padding: 80px 32px 0; }
@media (min-width: 768px)  { .hero-light { padding-inline: 64px; } }
@media (min-width: 1024px) { .hero-light { padding-inline: 96px; } }

.hero-light__inner { max-width: var(--wrap); margin-inline: auto; padding-bottom: 80px; }

.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 8.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 24px 0 40px;
  /* The original sets this at 1200px in PP Editorial New and wraps to 3 lines.
     Instrument Serif (the free stand-in) is markedly more condensed, so the
     same string fits 2 lines. Kept near the original measure rather than
     squeezed to ~620px purely to recover the third line — see clone report. */
  max-width: 900px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
  max-width: 700px;
  margin-bottom: 56px;
  color: rgba(23,19,15,0.86);
}

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }

/* Editorial hero (sanctuary / founders) — serif at large display size */
.hero-editorial { padding: 112px 40px 64px; }
.hero-editorial__inner { max-width: 1440px; margin-inline: auto; }
.hero-editorial h1 {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin-top: 40px;
  max-width: 980px;
}
.hero-editorial__lede {
  margin-top: 32px;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(23,19,15,0.78);
}
.hero-editorial__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Full-bleed image hero (the daily rhythm) */
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 82vh;
  background: #000;
  overflow: hidden;
}
.hero-image > img {
  position: absolute; inset: 0;
  height: 100%; width: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.34) 48%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.14) 48%, rgba(0,0,0,.42) 100%);
}
.hero-image__inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin-inline: auto;
  width: 100%;
  padding: 144px 32px 80px;
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .hero-image__inner { grid-template-columns: 7fr 5fr; padding-inline: 64px; align-items: end; }
}
@media (min-width: 1024px) { .hero-image__inner { padding-inline: 80px; padding-bottom: 96px; } }

.hero-image h1 {
  font-family: var(--display);
  font-size: clamp(48px, 9.4vw, 142px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--offwhite);
  max-width: 980px;
}
.hero-image__lede {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(240,230,225,0.86);
  max-width: 560px;
}

/* Media strip that follows a hero */
.media-band { max-width: 1440px; margin-inline: auto; padding-inline: 40px; }
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--frame);
}
.media-frame img { height: 100%; width: 100%; object-fit: cover; }
.media-frame--tall  { height: clamp(300px, 52vw, 700px); }
.media-frame--wide  { height: clamp(260px, 42vw, 560px); }
.media-frame--panel { height: clamp(260px, 40vw, 520px); }

/* ============================================================ SECTIONS == */

.section-head { max-width: 1400px; margin-inline: auto; }

.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 6.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-top: 28px;
  max-width: 1100px;
}
.section-title--xl { font-size: clamp(40px, 7.4vw, 82px); }
.section-title--sm { font-size: clamp(34px, 5vw, 64px); }

.section-lede {
  margin-top: 28px;
  max-width: 760px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(23,19,15,0.80);
}
.band-dark .section-lede,
.band-black .section-lede,
.band-near-black .section-lede { color: rgba(240,230,225,0.80); }

/* Long-form prose */
.prose {
  max-width: 700px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.65;
}
.prose p + p { margin-top: 32px; }
.prose--dark { color: rgba(240,230,225,0.82); }
.prose--light { color: rgba(23,19,15,0.80); }
.prose strong { font-weight: 600; color: inherit; }
.band-dark .prose strong,
.band-black .prose strong { color: var(--offwhite); }

/* Two-up: copy beside an image, alternating sides */
.duo {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .duo { grid-template-columns: 1fr 1fr; gap: 80px; } }
.duo--flip > :first-child { order: 2; }
@media (max-width: 1023px) { .duo--flip > :first-child { order: 0; } }

.duo__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--frame);
}
.duo__media img { height: 100%; width: 100%; object-fit: cover; }

.duo__numeral {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  display: block;
  margin-bottom: 24px;
}
.duo__title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.duo__sub {
  font-family: var(--display);
  font-size: clamp(21px, 2.4vw, 24px);
  line-height: 1.25;
  margin-bottom: 28px;
}
.duo__body {
  max-width: 480px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(23,19,15,0.80);
}
.duo__body p + p { margin-top: 20px; }
.duo__foot {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(23,19,15,0.12);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(23,19,15,0.72);
}

/* Facility rows (sanctuary) */
.facility { padding-block: 64px; border-top: 1px solid rgba(23,19,15,0.12); }
.facility__grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .facility__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.facility--flip .facility__media { order: -1; }
@media (max-width: 899px)  { .facility--flip .facility__media { order: 0; } }

.facility h3 {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 55px);
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-top: 20px;
  max-width: 560px;
}
.facility__body {
  margin-top: 24px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(23,19,15,0.78);
}
.facility__body p + p { margin-top: 24px; }
.facility__tag {
  margin-top: 32px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: rgba(23,19,15,0.62);
}

/* Persona / Q&A rows */
.row-split {
  display: grid;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(23,19,15,0.12);
}
@media (min-width: 1024px) { .row-split { grid-template-columns: 1fr 2fr; gap: 96px; } }

.row-split h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.1;
}
.row-split p.body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(23,19,15,0.80);
  margin-bottom: 32px;
  max-width: 800px;
}

.pullquote {
  padding-left: 20px;
  border-left: 2px solid var(--accent-deep);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

/* Numbers */
.numbers { display: grid; gap: 48px; text-align: center; }
@media (min-width: 768px) { .numbers { grid-template-columns: repeat(3, 1fr); gap: 64px; } }
.numbers .fig {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 88px);
  line-height: 1;
  margin-bottom: 24px;
}
.numbers .cap {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  max-width: 220px;
  margin-inline: auto;
  color: rgba(23,19,15,0.86);
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 80px;
}
.divider-label::before, .divider-label::after {
  content: ""; height: 1px; flex: 1; max-width: 100px;
  background: rgba(23,19,15,0.2);
}
.divider-label span {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5em; white-space: nowrap;
}

/* Schedule table (daily rhythm) */
.sched { border-top: 1px solid rgba(23,19,15,0.45); }
.sched__row {
  display: grid;
  gap: 24px;
  padding-block: 40px;
  border-bottom: 1px solid rgba(23,19,15,0.15);
  align-items: start;
}
@media (min-width: 900px) {
  .sched__row { grid-template-columns: 130px minmax(200px, .9fr) minmax(300px, 1.4fr); gap: 32px; }
}
.sched__time {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.sched__name {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 8px;
}
.sched__fixed {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}
.sched__note { font-size: 14px; font-style: italic; font-weight: 300; }
.sched__why { }
@media (min-width: 900px) { .sched__why { border-left: 1px solid rgba(23,19,15,0.15); padding-left: 48px; } }
.sched__why span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.sched__why p { font-size: 15px; font-weight: 300; line-height: 1.6; }

.sched__extras { display: grid; gap: 40px; margin-top: 80px; padding-top: 48px; border-top: 1px solid rgba(23,19,15,0.2); }
@media (min-width: 768px) { .sched__extras { grid-template-columns: repeat(3, 1fr); } }
.sched__extras h3 {
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--accent-deep);
  margin-bottom: 20px;
}
.sched__extras .pair {
  display: grid; grid-template-columns: 74px minmax(0,1fr); gap: 16px;
  font-size: 15px; line-height: 1.6; margin-bottom: 12px;
}
.sched__extras .pair p:first-child { font-family: var(--mono); font-weight: 700; }

/* Arc / takeaway triples */
.triple { display: grid; gap: 64px; align-items: start; }
@media (min-width: 768px) { .triple { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.triple__step { padding-top: 32px; border-top: 1px solid rgba(23,19,15,0.2); }
.triple__step .k {
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.triple__step h3 {
  font-family: var(--display);
  font-size: 28px; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.triple__step p {
  font-family: var(--display);
  font-size: 21px; font-weight: 300; line-height: 1.4;
  color: rgba(23,19,15,0.80);
}

/* Q&A pairs */
.qa { display: grid; gap: 48px; }
@media (min-width: 768px) { .qa { grid-template-columns: 1fr 1fr; gap: 64px; } }
.qa__item { padding-top: 40px; border-top: 1px solid rgba(23,19,15,0.12); }
.qa__item h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.qa__item p { font-size: 17px; font-weight: 300; line-height: 1.65; color: rgba(23,19,15,0.80); }

/* Team / coach cards */
.people { display: grid; gap: 28px; }
@media (min-width: 700px)  { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .people--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .people--3 { grid-template-columns: repeat(3, 1fr); } }

.person__media {
  position: relative;
  overflow: hidden;
  background: var(--black);
  height: clamp(280px, 32vw, 420px);
}
.person__media img { height: 100%; width: 100%; object-fit: cover; }

/* Portrait stand-in — the original shows photographs of the coaches here.
   This clone deliberately ships a graphic placeholder instead. */
.person__media--placeholder { background: var(--ink); }
.person__media--placeholder::before {
  content: "";
  position: absolute; top: 0; left: 0;
  height: 82%; width: 62%;
  background: var(--accent-clay);
  border-bottom-right-radius: 160px;
}
.person__placeholder-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding-inline: 40px;
  text-align: center;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: rgba(240,230,225,0.78);
}

.person__name { font-family: var(--display); font-size: 32px; line-height: 1; margin-top: 20px; }
.person__role {
  margin-top: 8px;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.34em;
  color: rgba(23,19,15,0.58);
}
.person__note { margin-top: 16px; font-size: 14px; line-height: 1.8; color: rgba(23,19,15,0.78); }

.band-dark .person__role { color: rgba(240,230,225,0.72); }
.band-dark .person__note { color: rgba(240,230,225,0.80); }

/* Testimonial video cards */
.story {
  display: grid;
  gap: 56px;
  max-width: 1500px;
  margin-inline: auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .story { grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr); gap: 64px; }
  .story--wide { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .story--flip .story__media { order: 2; }
}

.story__card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(23,19,15,0.1);
  background: var(--ink);
  padding: 8px;
  box-shadow: 0 28px 90px rgba(23,19,15,0.2);
  max-width: 420px;
  margin-inline: auto;
}
.story__card--wide { max-width: 860px; }

.story__frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 9 / 16;
}
.story__card--wide .story__frame { aspect-ratio: 16 / 9; }
.story__frame video, .story__frame img { height: 100%; width: 100%; object-fit: cover; }
.story__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.12) 55%, rgba(0,0,0,.58));
  pointer-events: none;
}

.story__bars { position: absolute; top: 12px; left: 12px; right: 12px; z-index: 3; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.story__bars span { height: 3px; background: rgba(255,255,255,.22); overflow: hidden; display: block; }
.story__bars span i { display: block; height: 100%; background: #fff; }

.story__chip {
  position: absolute; top: 32px; left: 16px; right: 16px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.story__avatar {
  display: flex; align-items: center; justify-content: center;
  height: 36px; width: 36px; flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 600; letter-spacing: .08em;
  color: #fff;
}
.story__who { min-width: 0; }
.story__who p:first-child {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: #fff;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.story__who p:last-child { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,.62); }
.story__idx { flex-shrink: 0; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.75); }

.story__play {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; width: 100%;
}
.story__play span {
  display: flex; align-items: center; justify-content: center;
  height: 56px; width: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: background .2s, color .2s;
}
.story__play:hover span { background: #fff; color: #000; }
.story__play.is-playing span { opacity: 0; }

.story__title {
  font-family: var(--display);
  font-size: clamp(38px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 880px;
}
.story__meta { margin-top: 40px; padding-block: 28px; border-top: 1px solid rgba(23,19,15,0.12); border-bottom: 1px solid rgba(23,19,15,0.12); }
.story__meta .n { font-family: var(--display); font-size: 40px; line-height: 1; }
.story__meta .r { margin-top: 12px; font-size: 15px; line-height: 1.5; color: rgba(23,19,15,0.58); }
.story__copy { margin-top: 40px; max-width: 760px; font-size: 19px; line-height: 1.85; color: #4f463f; }

/* Stat strip */
.stats { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(240,230,225,0.2); }
.stats > div { padding: 20px 16px; border-right: 1px solid rgba(240,230,225,0.16); }
.stats > div:last-child { border-right: 0; }
.stats .k { font-size: 9px; text-transform: uppercase; letter-spacing: 0.28em; color: rgba(240,230,225,0.78); }
.stats .v { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--offwhite); }

/* Featured-in logo strip — the original shows press marks here. */
.featured { display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; padding-top: 64px; border-top: 1px solid rgba(23,19,15,0.12); }
.featured__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5em; opacity: .6; }
.featured__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 56px; }
.featured__list li {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .01em;
  color: rgba(23,19,15,0.62);
}

/* Closing CTA */
.closer { text-align: center; padding: 128px 32px; }
.closer h2 {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--offwhite);
}
.closer .pill { margin-bottom: 40px; }

/* Apply form */
.apply-shell { max-width: 780px; margin-inline: auto; }
.apply-progress {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(23,19,15,0.6);
  padding-bottom: 16px; border-bottom: 1px solid rgba(23,19,15,0.15);
  margin-bottom: 48px;
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: .28em;
  margin-bottom: 12px;
}
.field .req { color: var(--accent-deep); margin-left: 8px; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 18px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23,19,15,0.3);
  color: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.apply-actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 56px; }
.apply-actions button {
  background: none; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .2em;
}
.apply-actions button[disabled] { opacity: .35; cursor: not-allowed; }

/* --------------------------------------------------------- motion opt-in */

/* Progressive enhancement only: the hide-then-reveal state is applied by a
   class that JS puts on <html>. Without JS (or for a crawler) every section
   renders fully visible. The original SPA fails exactly here. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .home__reel { scroll-snap-type: none; }
}

/* ------------------------------------------------------------ narrow vp - */

@media (max-width: 480px) {
  .section { padding-inline: 20px; }
  .hero-light, .footer { padding-inline: 20px; }
  .hero-editorial { padding-inline: 20px; }
  .media-band { padding-inline: 20px; }
  .hero-image__inner { padding-inline: 20px; }
  .story__meta .n { font-size: 32px; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; border-bottom: 1px solid rgba(240,230,225,0.16); }
  .stats > div:last-child { border-bottom: 0; }
}
