/* ══════════════════════════════════════════════════════════════
   LIONHEART COACHING ACADEMY — The Invisible Good Kid Trap
   Webinar funnel stylesheet.  Single source of truth for all
   three pages ( / , /register/ , /thank-you/ ).

   Palette : deep black structure · vivid orange action ·
             layered creams for editorial warmth
   Type    : Instrument Serif (display)  ·  Satoshi (body)
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand — ink */
  --ink:            #0d0d0d;
  --ink-raised:     #171716;
  --ink-raised-2:   #1f1e1c;
  --ink-hairline:   rgba(237, 224, 196, 0.16);
  --ink-hairline-2: rgba(237, 224, 196, 0.28);

  /* Brand — orange */
  --orange:         #e8600a;
  --orange-hover:   #cf5406;
  --orange-active:  #b44904;
  --orange-light:   #ff8c42;
  --orange-wash:    rgba(232, 96, 10, 0.09);

  /* Brand — creams */
  --cream:          #faf6ee;
  --cream-2:        #ede0c4;
  --cream-3:        #d4b896;

  /* Text on cream */
  --text:           #17150f;
  --text-muted:     #5f5747;
  --text-faint:     #8b8171;

  /* Text on ink */
  --text-inv:       #f7f2e7;
  --text-inv-muted: #bcb2a0;
  --text-inv-faint: #8d8474;

  /* Lines & fields on cream */
  --line:           rgba(23, 21, 15, 0.13);
  --line-strong:    rgba(23, 21, 15, 0.24);
  --surface:        #fffdf8;
  --surface-sunk:   #f3ecdd;

  /* Type */
  --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Satoshi', 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.0625rem;
  --text-lg:   clamp(1.125rem, 1.02rem + 0.45vw, 1.3125rem);
  --text-xl:   clamp(1.5rem,   1.28rem + 1vw,    2rem);
  --text-2xl:  clamp(2rem,     1.5rem  + 2.2vw,  3.125rem);
  --text-3xl:  clamp(2.5rem,   1.62rem + 3.6vw,  4.5rem);

  /* Space */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.25rem;  --s-6: 1.5rem;   --s-8: 2rem;     --s-10: 2.5rem;
  --s-12: 3rem;    --s-16: 4rem;    --s-20: 5rem;    --s-24: 6rem;

  /* Radii */
  --r-xs: 3px;  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;  --r-xl: 22px;

  /* Shadows — warm-toned, never pure black */
  --sh-sm: 0 1px 2px rgba(58, 44, 20, 0.06), 0 2px 8px rgba(58, 44, 20, 0.04);
  --sh-md: 0 2px 6px rgba(58, 44, 20, 0.07), 0 10px 28px rgba(58, 44, 20, 0.08);
  --sh-lg: 0 4px 12px rgba(58, 44, 20, 0.08), 0 22px 56px rgba(58, 44, 20, 0.12);

  /* Layout */
  --w-text:  46rem;   /* 736px  — reading column      */
  --w-page:  70rem;   /* 1120px — default container   */
  --w-wide:  80rem;   /* 1280px — full editorial grid */

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 200ms;
}

/* ── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.62;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; text-wrap: balance; }
h1, h2 { font-family: var(--font-display); letter-spacing: -0.015em; }
h3, h4 { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; line-height: 1.28; }

p { text-wrap: pretty; }
p, li { max-width: 68ch; }

a { color: inherit; text-decoration: none; }

ul[role='list'], ol[role='list'] { list-style: none; }

em { font-style: italic; }

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

:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.on-ink :focus-visible, .ink :focus-visible { outline-color: var(--orange-light); }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--ink); color: var(--text-inv);
  padding: var(--s-3) var(--s-5); border-radius: var(--r-sm);
  font-size: var(--text-sm); font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--s-4); }

.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;
}

@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;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── LAYOUT PRIMITIVES ──────────────────────────────────── */
.wrap      { width: 100%; max-width: var(--w-page); margin-inline: auto; padding-inline: var(--s-6); }
.wrap-wide { width: 100%; max-width: var(--w-wide); margin-inline: auto; padding-inline: var(--s-6); }
.wrap-text { width: 100%; max-width: calc(var(--w-text) + 3rem); margin-inline: auto; padding-inline: var(--s-6); }

@media (min-width: 48rem) {
  .wrap, .wrap-wide, .wrap-text { padding-inline: var(--s-10); }
}

section { position: relative; }

.band        { padding-block: clamp(3.5rem, 8vw, 7rem); }
.band-tight  { padding-block: clamp(2.75rem, 5vw, 4.25rem); }
.band-tall   { padding-block: clamp(4.5rem, 10vw, 9rem); }

.ink {
  background: var(--ink);
  color: var(--text-inv);
}
.ink h1, .ink h2, .ink h3, .ink h4 { color: var(--text-inv); }
.ink p, .ink li { color: var(--text-inv-muted); }

.cream-2 { background: var(--cream-2); }

.rule { height: 1px; background: var(--line); border: 0; }
.ink .rule { background: var(--ink-hairline); }

/* ── TYPE UTILITIES ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.eyebrow::after {
  content: ''; flex: 0 0 2.25rem; height: 1px; background: currentColor; opacity: 0.55;
}
.eyebrow--muted { color: var(--text-faint); }
.ink .eyebrow--muted { color: var(--text-inv-faint); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: ''; flex: 0 0 2.25rem; height: 1px; background: currentColor; opacity: 0.55;
}

.h-display { font-family: var(--font-display); font-size: var(--text-3xl); letter-spacing: -0.02em; }
.h-section { font-family: var(--font-display); font-size: var(--text-2xl); }
.h-sub     { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }

.lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--text-muted);
}
.ink .lede,
.reg-hero .lede,
.ty-hero .lede { color: var(--text-inv-muted); }
.reg-hero .lede strong,
.ty-hero .lede strong { color: var(--text-inv); font-weight: 700; }
.reg-hero p, .reg-hero li,
.ty-hero p, .ty-hero li { color: var(--text-inv-muted); }
.reg-hero h1, .reg-hero h2,
.ty-hero h1, .ty-hero h2 { color: var(--text-inv); }

.prose > * + * { margin-top: var(--s-5); }
.prose strong { font-weight: 700; color: var(--text); }
.ink .prose strong { color: var(--text-inv); }

.accent { color: var(--orange); }
.serif-em { font-family: var(--font-display); font-style: italic; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 3.125rem;
  padding: 0.875rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  box-shadow: 0 1px 2px rgba(80, 32, 0, 0.16), 0 8px 22px rgba(232, 96, 10, 0.22);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  text-align: center;
  cursor: pointer;
}
.btn:hover { background: var(--orange-hover); transform: translateY(-1px);
             box-shadow: 0 2px 4px rgba(80, 32, 0, 0.18), 0 14px 32px rgba(232, 96, 10, 0.3); }
.btn:active { background: var(--orange-active); transform: translateY(0); box-shadow: 0 1px 2px rgba(80, 32, 0, 0.2); }

.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--lg { min-height: 3.625rem; padding: 1.0625rem 2.375rem; font-size: 0.9375rem; }
.btn--sm { min-height: 2.625rem; padding: 0.5rem 1.125rem; font-size: var(--text-xs); }
.btn--block { display: flex; width: 100%; }

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong); box-shadow: none;
  text-transform: none; letter-spacing: 0.01em; font-weight: 600;
}
.btn--ghost:hover { background: rgba(23, 21, 15, 0.05); border-color: var(--text); transform: none; box-shadow: none; }
.ink .btn--ghost,
.site-header .btn--ghost,
.reg-hero .btn--ghost,
.ty-hero .btn--ghost { color: var(--text-inv); border-color: rgba(247, 242, 231, 0.34); }
.ink .btn--ghost:hover,
.site-header .btn--ghost:hover,
.reg-hero .btn--ghost:hover,
.ty-hero .btn--ghost:hover { background: rgba(247, 242, 231, 0.09); border-color: var(--cream-3); color: var(--text-inv); }

.cta-block { margin-top: var(--s-8); }
.cta-micro {
  margin-top: var(--s-4);
  font-size: var(--text-sm);
  color: var(--text-faint);
  max-width: 40ch;
}
.ink .cta-micro { color: var(--text-inv-faint); }
.cta-micro--center { margin-inline: auto; text-align: center; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-hairline);
  color: var(--text-inv);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 4.25rem;
}
.brand { display: flex; align-items: center; gap: 0.625rem; min-width: 0; }
.brand img { width: 2rem; height: auto; flex: none; }
.brand__name {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-3);
  line-height: 1.35;
  max-width: 11ch;
}
.header__meta {
  display: none;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inv-faint);
  font-weight: 600;
}
@media (min-width: 62rem) {
  .header__meta { display: block; }
  .brand__name { max-width: none; font-size: 0.75rem; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-inv);
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 7vw, 5rem);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(232, 96, 10, 0.16), transparent 60%),
    radial-gradient(90% 70% at 4% 96%, rgba(212, 184, 150, 0.09), transparent 62%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(3rem, 5vw, 5rem); }
}

.hero h1 {
  font-size: var(--text-3xl);
  color: var(--text-inv);
  margin-bottom: var(--s-6);
}
.hero h1 .quiet { color: var(--cream-3); }
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--text-inv-muted);
  max-width: 40ch;
}
.hero__sub strong { color: var(--text-inv); font-weight: 700; }

.tagline {
  display: inline-flex; align-items: baseline; gap: 0.4em; flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--cream-3);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--ink-hairline);
  width: 100%;
}
.tagline em { color: var(--orange-light); }

/* Event chip strip */
.event-strip {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-bottom: var(--s-7, 1.75rem);
  padding-bottom: 0;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.4375rem 0.8125rem;
  border: 1px solid var(--ink-hairline-2);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-inv);
  background: rgba(247, 242, 231, 0.045);
  white-space: nowrap;
}
.chip svg { flex: none; opacity: 0.75; }
.chip--alert {
  border-color: rgba(232, 96, 10, 0.55);
  background: var(--orange-wash);
  color: var(--orange-light);
}
.chip--alert svg { opacity: 1; }
.chip--light {
  border-color: var(--line-strong); color: var(--text);
  background: rgba(23, 21, 15, 0.035);
}
.chip--light svg { opacity: 0.6; }

/* Hero portrait */
.hero__figure { position: relative; }
.portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--ink-hairline-2);
  background: var(--ink-raised);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--tall { aspect-ratio: 4 / 5; }
.portrait--wide { aspect-ratio: 3 / 2; }
.portrait__caption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: var(--s-8) var(--s-5) var(--s-4);
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.55) 45%, transparent);
  color: var(--text-inv);
}
.portrait__caption .name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.2;
  display: block;
}
.portrait__caption .role {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 0.3rem;
  font-weight: 600;
}

.seat-badge {
  position: absolute; z-index: 3;
  top: -0.875rem; right: -0.5rem;
  background: var(--orange);
  color: #fff;
  padding: 0.625rem 0.9375rem;
  border-radius: var(--r-sm);
  box-shadow: 0 12px 30px rgba(232, 96, 10, 0.35);
  text-align: center;
  line-height: 1.05;
  transform: rotate(2deg);
}
.seat-badge .n { display: block; font-family: var(--font-display); font-size: 1.75rem; }
.seat-badge .l { display: block; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
@media (min-width: 62rem) { .seat-badge { top: -1.125rem; right: -1.125rem; } }

/* ── PROOF BAR ──────────────────────────────────────────── */
.proofbar {
  background: var(--ink-raised);
  border-block: 1px solid var(--ink-hairline);
  color: var(--text-inv);
  padding-block: var(--s-8);
}
.proofbar__grid {
  display: grid;
  gap: var(--s-6) var(--s-8);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 56rem) {
  .proofbar__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-8); }
}
.stat { position: relative; padding-left: var(--s-4); }
.stat::before {
  content: ''; position: absolute; left: 0; top: 0.35rem; bottom: 0.35rem;
  width: 2px; background: var(--orange); border-radius: 2px;
}
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 1.4rem + 1.8vw, 2.625rem);
  line-height: 1;
  color: var(--text-inv);
  display: block;
}
.stat__l {
  display: block; margin-top: 0.5rem;
  font-size: var(--text-xs);
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-inv-faint);
  max-width: 22ch;
}

/* ── SECTION HEAD ───────────────────────────────────────── */
.sec-head { max-width: 44rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::before {
  content: ''; flex: 0 0 2.25rem; height: 1px; background: currentColor; opacity: 0.55;
}
.sec-head p { margin-top: var(--s-5); }
.sec-head--center p { margin-inline: auto; }

/* ── TRAP / NUMBERED LIST ───────────────────────────────── */
.traps { display: grid; gap: 1px; background: var(--ink-hairline); border-block: 1px solid var(--ink-hairline); }
@media (min-width: 60rem) { .traps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.trap {
  background: var(--ink);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.trap__n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.9;
  color: var(--orange);
}
.trap h3 { font-size: 1.1875rem; color: var(--text-inv); }
.trap p { font-size: var(--text-base); color: var(--text-inv-muted); margin: 0; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.125rem);
  box-shadow: var(--sh-sm);
}
.card--sunk { background: var(--surface-sunk); box-shadow: none; }
.card--ink {
  background: var(--ink-raised); border-color: var(--ink-hairline); color: var(--text-inv);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.card--ink h3, .card--ink h2 { color: var(--text-inv); }
.card--ink p, .card--ink li { color: var(--text-inv-muted); }

.card h3 { margin-bottom: var(--s-3); }

.duo { display: grid; gap: var(--s-6); }
@media (min-width: 54rem) { .duo { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-8); } }

/* Fit / not-fit lists */
.checks { display: grid; gap: var(--s-4); }
.checks li {
  display: grid; grid-template-columns: 1.375rem 1fr; gap: var(--s-3);
  align-items: start; font-size: var(--text-base); max-width: none;
}
.checks li svg { margin-top: 0.28rem; flex: none; }
.checks--yes svg { color: var(--orange); }
.checks--no svg { color: var(--text-faint); }
.checks--no li { color: var(--text-muted); }

/* ── LEARN / AGENDA ROWS ────────────────────────────────── */
.agenda { border-top: 1px solid var(--line); }
.agenda__row {
  display: grid; gap: var(--s-3) var(--s-8);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 54rem) {
  .agenda__row { grid-template-columns: 4.5rem minmax(0, 15rem) minmax(0, 1fr); }
}
.agenda__n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
  padding-top: 0.15rem;
}
.agenda__row h3 { font-size: 1.125rem; }
.agenda__row p { margin: 0; color: var(--text-muted); }
.ink .agenda { border-color: var(--ink-hairline); }
.ink .agenda__row { border-color: var(--ink-hairline); }

/* ── TAKEAWAYS ──────────────────────────────────────────── */
.takeaways { display: grid; gap: var(--s-5); }
@media (min-width: 50rem) { .takeaways { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.takeaway {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-4);
  padding: var(--s-5) var(--s-6) var(--s-5) var(--s-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.takeaway__mark {
  font-family: var(--font-display); font-size: 1.25rem; color: var(--orange); line-height: 1.2;
}
.takeaway p { margin: 0; font-size: var(--text-base); }
.takeaway strong { display: block; margin-bottom: 0.2rem; }

/* ── WHY NOW TIMELINE ───────────────────────────────────── */
.timeline { display: grid; gap: 0; margin-top: var(--s-8); }
.timeline__item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-5);
  padding-bottom: var(--s-6);
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: relative; width: 0.75rem; display: flex; justify-content: center; padding-top: 0.5rem;
}
.timeline__dot::before {
  content: ''; width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--orange); flex: none; z-index: 1;
}
.timeline__item:not(:last-child) .timeline__dot::after {
  content: ''; position: absolute; top: 1.1rem; bottom: -0.5rem; width: 1px;
  background: var(--ink-hairline-2);
}
.timeline__item p { margin: 0; }
.timeline__item strong { color: var(--text-inv); }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.quotes { display: grid; gap: var(--s-6); }
@media (min-width: 54rem) { .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 72rem) { .quotes--three { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.quote {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  box-shadow: var(--sh-sm);
}
.quote__mark {
  font-family: var(--font-display); font-size: 3rem; line-height: 0.6;
  color: var(--cream-3); margin-bottom: var(--s-4); height: 1.4rem;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1875rem, 1.05rem + 0.5vw, 1.4375rem);
  line-height: 1.32;
  letter-spacing: -0.012em;
  margin-bottom: var(--s-5);
  flex: 1;
}
.quote__cite {
  display: block; font-style: normal;
  padding-top: var(--s-4); border-top: 1px solid var(--line);
  font-size: var(--text-sm);
}
.quote__cite .who { display: block; font-weight: 700; }
.quote__cite .what { display: block; color: var(--text-faint); font-size: var(--text-xs); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 0.2rem; font-weight: 600; }

.quote--feature {
  background: var(--ink-raised); border-color: var(--ink-hairline); color: var(--text-inv);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.quote--feature .quote__mark { color: var(--orange); }
.quote--feature blockquote { color: var(--text-inv); }
.quote--feature .quote__cite { border-color: var(--ink-hairline-2); }
.quote--feature .quote__cite .what { color: var(--cream-3); }

/* Video testimonials */
.videos { display: grid; gap: var(--s-6); }
@media (min-width: 50rem) { .videos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-8) var(--s-6); } }
.video-card {
  display: flex; flex-direction: column; gap: var(--s-4);
}
.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink-hairline-2);
  box-shadow: var(--sh-md);
}
.video-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-to-play thumbnail facade — loads YouTube only on demand */
.video-play {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  padding: 0; margin: 0; border: 0;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
}
.video-play img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 700ms var(--ease), opacity 300ms var(--ease);
}
.video-play::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 45%, rgba(13, 13, 13, 0.42) 100%);
  opacity: 0; transition: opacity 300ms var(--ease);
}
.video-play:hover img { transform: scale(1.035); }
.video-play:hover::after { opacity: 1; }
.video-play__badge {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 4rem; height: 4rem;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.5);
  transition: transform 280ms var(--ease), background-color 280ms var(--ease);
  z-index: 1;
}
.video-play:hover .video-play__badge { transform: translate(-50%, -50%) scale(1.09); background: var(--orange-light); }
.video-play:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.video-play__badge svg { margin-left: 0.15rem; }
@media (prefers-reduced-motion: reduce) {
  .video-play img, .video-play__badge { transition: none; }
  .video-play:hover img { transform: none; }
}
.video-card h3 { font-size: 1.0625rem; margin: 0; }
.video-card p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); }
.ink .video-card p { color: var(--text-inv-muted); }
.video-card__link {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.4em; margin-top: 0.15rem;
}
.video-card__link:hover { color: var(--orange-light); text-decoration: underline; text-underline-offset: 3px; }

/* ── HOST SECTION ───────────────────────────────────────── */
.host { display: grid; gap: clamp(2.25rem, 5vw, 4rem); align-items: start; }
@media (min-width: 60rem) {
  .host { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
}
.host__media { display: grid; gap: var(--s-4); }
.host__media .portrait { box-shadow: var(--sh-lg); border-color: var(--line); }
.host__media-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }

.creds { display: grid; gap: 0; margin-top: var(--s-8); border-top: 1px solid var(--line); }
.ink .creds { border-color: var(--ink-hairline); }
.creds__row {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.ink .creds__row { border-color: var(--ink-hairline); }
.creds__row dt {
  font-family: var(--font-display); font-size: 1.0625rem; color: var(--orange); white-space: nowrap;
  min-width: 4.5rem;
}
.creds__row dd { margin: 0; font-size: var(--text-base); }

.pull {
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: var(--orange-wash);
  border: 1px solid rgba(232, 96, 10, 0.28);
  border-radius: var(--r-md);
}
.pull p { margin: 0; font-family: var(--font-display); font-size: var(--text-lg); line-height: 1.35; color: var(--text); }
.ink .pull p { color: var(--text-inv); }
.pull .src { display: block; margin-top: var(--s-3); font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--orange); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); max-width: var(--w-text); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-5);
  padding-block: var(--s-5);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.0625rem;
  list-style: none;
  min-height: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  color: var(--orange); flex: none; transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding-bottom: var(--s-5); }
.faq details p { color: var(--text-muted); margin: 0; }
.faq details p + p { margin-top: var(--s-4); }

/* ── FINAL CTA ──────────────────────────────────────────── */
.final { position: relative; background: var(--ink); color: var(--text-inv); overflow: hidden; }
.final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(75% 100% at 50% 100%, rgba(232, 96, 10, 0.2), transparent 65%);
  pointer-events: none;
}
.final__inner { position: relative; text-align: center; max-width: 40rem; margin-inline: auto; }
.final h2 { font-size: var(--text-2xl); margin-bottom: var(--s-5); }
.final .lede { margin-inline: auto; }
.final .btn { margin-top: var(--s-8); }

/* ── STICKY MOBILE CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
  padding: 0.625rem var(--s-4) calc(0.625rem + env(safe-area-inset-bottom));
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-hairline-2);
  display: flex; align-items: center; gap: var(--s-4);
  transform: translateY(110%);
  transition: transform 260ms var(--ease);
}
.sticky-cta[data-visible='true'] { transform: translateY(0); }
.sticky-cta__text {
  flex: 1; min-width: 0;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--cream-3); line-height: 1.35;
}
.sticky-cta .btn { flex: none; }
@media (min-width: 62rem) { .sticky-cta { display: none; } }
body[data-sticky='true'] { padding-bottom: 0; }
@media (max-width: 61.99rem) { body { padding-bottom: 0; } }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: var(--text-inv-faint);
  border-top: 1px solid var(--ink-hairline);
  padding-block: var(--s-10) var(--s-12);
  font-size: var(--text-sm);
}
.site-footer__inner { display: grid; gap: var(--s-6); }
@media (min-width: 54rem) {
  .site-footer__inner { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
}
.site-footer p { margin: 0; max-width: 52ch; }
.site-footer .brand__name { color: var(--cream-3); }
.footer-links { display: flex; flex-wrap: wrap; gap: var(--s-5); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.footer-links a:hover { color: var(--orange-light); }
.legal { margin-top: var(--s-6); font-size: var(--text-xs); color: rgba(141, 132, 116, 0.8); }

/* ── REGISTRATION PAGE ──────────────────────────────────── */
.reg-hero { background: var(--ink); color: var(--text-inv); padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.reg-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(110% 80% at 88% 0%, rgba(232, 96, 10, 0.15), transparent 62%);
  pointer-events: none;
}
.reg-hero__inner { position: relative; max-width: 48rem; }
.reg-hero h1 { font-size: var(--text-2xl); margin-bottom: var(--s-5); }

.reg-layout { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (min-width: 64rem) {
  .reg-layout { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(2.5rem, 4vw, 4rem); }
  .reg-layout__aside { position: sticky; top: 5.5rem; }
}

/* Calendly */
.calendly-panel {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.calendly-panel__head {
  padding: var(--s-6) clamp(1.25rem, 3vw, 2rem);
  background: var(--ink);
  color: var(--text-inv);
  display: grid; gap: var(--s-2);
}
.calendly-panel__head h1,
.calendly-panel__head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 1.875rem); line-height: 1.12;
  color: var(--text-inv); margin: 0 0 0.375rem;
}
.calendly-panel__head p { margin: 0; font-size: var(--text-sm); color: var(--cream-3); }
.calendly-panel__body { padding: 0; background: #ede0c4; }
.calendly-inline-widget { width: 100%; }
.calendly-panel__foot {
  padding: var(--s-5) clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(23, 21, 15, 0.1);
  background: var(--cream-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5);
}
.calendly-panel__foot span { display: inline-flex; align-items: center; gap: 0.4em; }
.calendly-fallback {
  padding: var(--s-6) clamp(1.25rem, 3vw, 2rem);
  font-size: var(--text-sm);
}

.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-sm); }
.aside-card + .aside-card { margin-top: var(--s-5); }
.aside-card__figure {
  border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: var(--s-4);
  aspect-ratio: 3 / 2; background: var(--cream-3);
}
.aside-card__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aside-card__note { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }
.aside-card__note + .aside-card__note { margin-top: 0.75rem; }
.aside-card__note strong { color: var(--text); }
.aside-card h2, .aside-card h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-4); }

.detail-list { display: grid; gap: 0; }
.detail-list > div { display: grid; gap: 0.15rem; padding-block: var(--s-3); border-bottom: 1px solid var(--line); }
.detail-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-list dt { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); font-weight: 700; }
.detail-list dd { margin: 0; font-weight: 700; font-size: var(--text-base); }

.mini-list { display: grid; gap: var(--s-3); }
.mini-list li { display: grid; grid-template-columns: 1rem 1fr; gap: var(--s-3); font-size: var(--text-sm); align-items: start; max-width: none; }
.mini-list li svg { margin-top: 0.25rem; color: var(--orange); flex: none; }

.trust-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

/* ── THANK YOU PAGE ─────────────────────────────────────── */
.ty-hero { background: var(--ink); color: var(--text-inv); position: relative; overflow: hidden; }
.ty-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(90% 80% at 50% -10%, rgba(232, 96, 10, 0.2), transparent 62%),
    radial-gradient(70% 60% at 92% 100%, rgba(212, 184, 150, 0.08), transparent 60%);
  pointer-events: none;
}
.ty-hero__inner { position: relative; max-width: 44rem; margin-inline: auto; text-align: center; }
.ty-seal {
  width: 4.5rem; height: 4.5rem; margin: 0 auto var(--s-6);
  border-radius: 50%;
  border: 1px solid rgba(232, 96, 10, 0.5);
  background: var(--orange-wash);
  display: grid; place-items: center;
  color: var(--orange-light);
}
.ty-hero h1 { font-size: var(--text-2xl); margin-bottom: var(--s-5); }
.ty-hero .lede { margin-inline: auto; }
.ty-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3);
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--ink-hairline);
}

.steps { display: grid; gap: var(--s-6); counter-reset: step; }
@media (min-width: 56rem) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-6); } }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--sh-sm);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.75rem; line-height: 1;
  color: var(--orange); display: block; margin-bottom: var(--s-4);
}
.step h3 { font-size: 1.0625rem; margin-bottom: var(--s-3); }
.step p { margin: 0; font-size: var(--text-base); color: var(--text-muted); }

.prep-list { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.prep-list li { display: grid; grid-template-columns: 1.25rem 1fr; gap: var(--s-3); align-items: start; max-width: none; }
.prep-list li svg { margin-top: 0.3rem; color: var(--orange); flex: none; }

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal[data-shown='true'] { opacity: 1; transform: none; }

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .site-header, .sticky-cta, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ── SMALL-SCREEN REFINEMENTS ───────────────────────────── */
@media (max-width: 26.5rem) {
  /* Keep the wordmark to two tight lines instead of three */
  .brand__name { font-size: 0.625rem; letter-spacing: 0.1em; max-width: 20ch; }
  .brand img { width: 28px; height: 36px; }

  /* Two event chips per row rather than one */
  .chip { padding: 0.375rem 0.6875rem; font-size: 0.625rem; letter-spacing: 0.04em; }
  .event-strip, .ty-strip { gap: 0.5rem; }

  .sticky-cta__text { font-size: 0.625rem; letter-spacing: 0.04em; }
}

/* Scroll sentinel for the mobile sticky CTA — needs a measurable box */
[data-sticky-after] { display: block; width: 100%; height: 1px; }
