/* ============ Tokens ============ */
:root {
  /* Palette: warm dark (default) */
  --bg: #0a0a0a;
  --bg-2: #131211;
  --bg-3: #1c1a17;
  --ink: #f5f1ea;
  --ink-2: #cfc8bb;
  --ink-3: #8a8377;
  --line: #2a2622;
  --line-2: #3a352e;
  --accent: #d4a574;
  --accent-ink: #0a0a0a;

  /* Type */
  --f-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --f-sans: "Geist", "Söhne", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-mono: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;

  /* Density */
  --pad-section: 140px;
  --pad-x: clamp(20px, 5vw, 88px);
  --gap-card: 28px;

  --maxw: 1320px;
  --radius: 14px;
  --radius-lg: 22px;
}

/* Light mode overrides */
:root[data-mode="light"] {
  --bg: #faf7f1;
  --bg-2: #f3eee5;
  --bg-3: #ebe4d6;
  --ink: #1a1814;
  --ink-2: #4a443b;
  --ink-3: #7a7263;
  --line: #e3dccc;
  --line-2: #d2c9b3;
  --accent: #a67a3f;
  --accent-ink: #faf7f1;
}

/* Density compact */
:root[data-density="compact"] {
  --pad-section: 88px;
  --gap-card: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ============ Layout primitives ============ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding-top: var(--pad-section); padding-bottom: var(--pad-section); position: relative; }
.section--tight { padding-top: calc(var(--pad-section) * 0.5); padding-bottom: calc(var(--pad-section) * 0.5); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--ink-3);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--accent); }

h1.display { font-size: clamp(54px, 8vw, 110px); }
h2.display { font-size: clamp(40px, 5.5vw, 84px); }
h3.display { font-size: clamp(28px, 3vw, 44px); }

.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.lead b { color: var(--ink); font-weight: 600; }

.label-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: color-mix(in oklab, var(--accent) 82%, var(--ink)); }
.btn--ghost { color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--bg-2); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--lg { padding: 18px 28px; font-size: 15px; }

.btn .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============ Top nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 16px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  transition: padding-top .28s cubic-bezier(.4,0,.2,1), padding-bottom .28s cubic-bezier(.4,0,.2,1);
}
/* Scroll-condensed sticky header: slim the bar and add a soft lift once
   the user scrolls off the top. */
.nav--condensed .nav__inner { padding-top: 9px; padding-bottom: 9px; }
.nav--condensed {
  box-shadow: 0 6px 22px -14px rgba(42, 38, 32, 0.28);
}
.nav__brand { transition: font-size .28s cubic-bezier(.4,0,.2,1); }
.nav--condensed .nav__brand { font-size: 19px; }
.nav__brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  justify-self: start;
}
.nav__inner > .btn { justify-self: end; }
.nav__brand .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.nav__links { display: flex; gap: 32px; justify-self: center; }
.nav__links a {
  font-size: 13.5px; color: var(--ink-2);
  transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }

/* ──── Hamburger + mobile menu (mobile only) ──── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  justify-self: end;
  align-items: center;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 2px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad-x) 24px;
  box-shadow: 0 14px 28px -20px rgba(42,38,32,0.18);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 60;
}
.nav__mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__mobile-menu > a,
.nav__mobile-drop > summary {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__mobile-drop > summary::-webkit-details-marker { display: none; }
.nav__mobile-drop > summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 22px;
  opacity: 0.5;
  font-weight: 300;
}
.nav__mobile-drop[open] > summary::after { content: "−"; }
.nav__mobile-drop-list {
  display: flex;
  flex-direction: column;
  padding: 4px 0 10px 14px;
}
.nav__mobile-drop-list a {
  font-size: 15px;
  color: var(--ink-2);
  padding: 8px 0;
  text-decoration: none;
}
.nav__mobile-cta {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

/* ──── Affiliates dropdown ──── */
.nav__drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: default;
  transition: color .2s;
}
.nav__drop-caret {
  width: 9px;
  height: 6px;
  opacity: .65;
  transition: transform .2s ease, opacity .2s;
}
.nav__drop:hover .nav__drop-trigger,
.nav__drop:focus-within .nav__drop-trigger {
  color: var(--ink);
}
.nav__drop:hover .nav__drop-caret,
.nav__drop:focus-within .nav__drop-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.nav__drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -4px);
  min-width: 168px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 40px -18px rgba(42, 38, 32, 0.22),
              0 2px 6px rgba(42, 38, 32, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 50;
}
/* Hover-bridge so the menu doesn't close in the gap between trigger and panel */
.nav__drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__drop:hover .nav__drop-menu,
.nav__drop:focus-within .nav__drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav__drop-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav__drop-menu a:hover {
  background: var(--bg-soft, rgba(42, 38, 32, 0.05));
  color: var(--ink);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: 200px;
  padding-bottom: 80px;
  overflow: visible;
}
.hero__grid {
  display: grid;
  gap: 56px;
  align-items: end;
}
.hero[data-layout="split"] .hero__portrait,
.hero[data-layout="asym"] .hero__portrait {
  margin-top: clamp(20px, 3vh, 50px);
}
.hero[data-layout="split"] .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.hero[data-layout="centered"] .hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero[data-layout="centered"] .hero__portrait { display: none; }
.hero[data-layout="centered"] .hero__sub { justify-content: center; }
.hero[data-layout="asym"] .hero__grid {
  grid-template-columns: 0.4fr 1.4fr 0.6fr;
  align-items: stretch;
}
.hero[data-layout="asym"] .hero__col-stat { display: flex; flex-direction: column; justify-content: space-between; }
.hero:not([data-layout="asym"]) .hero__col-stat { display: none; }

.hero__eyebrow { margin-bottom: 22px; }
.hero__award {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: -4px 0 24px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  font-size: 13px;
  color: var(--ink-2);
  text-wrap: pretty;
}
.hero__award b { color: var(--accent); font-weight: 600; }
.hero__award-icon { flex: 0 0 auto; width: 18px; height: 18px; color: var(--accent); }
.hero__award-icon svg { width: 100%; height: 100%; display: block; }
.hero__title { margin: 0 0 18px; }
.hero__tagline {
  margin: 0 0 22px;
  max-width: 30ch;
  font-family: var(--f-display);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.3;
  color: var(--ink-2);
  text-wrap: balance;
}
.hero__tagline-em { color: var(--ink); font-style: italic; }
.hero[data-layout="centered"] .hero__tagline { max-width: 36ch; }
.hero__sub {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
  align-items: center;
}
.hero__offer {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 11px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 52ch;
  text-wrap: pretty;
}
.hero__offer b { color: var(--ink); font-weight: 600; }
.hero__offer-tag {
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 999px;
  padding: 4px 10px;
  transform: translateY(-1px);
}
.hero__proof {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Handwritten annotation on hero italic word ──────── */
.hero__title em.has-annotate {
  position: relative;
  display: inline-block;
  overflow: visible;
}
.hero__annotate {
  position: absolute;
  top: -0.32em;
  right: -0.55em;
  transform: translateX(100%) rotate(-5deg);
  transform-origin: left bottom;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  pointer-events: none;
  color: #c75c3a;
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 600;
  font-size: 0.26em;
  line-height: 0.95;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.hero__annotate-arrow {
  width: 1.6em;
  height: 1.1em;
  flex: 0 0 auto;
  margin-right: 0.05em;
  transform: translateY(0.15em) scaleX(-1);
  opacity: 0.95;
}
.hero__annotate-txt { display: inline-block; }

/* Handwritten coral note after "business." — tucks up over the last word */
/* Headline note — uses a zero-width inline-block wrapper so the actual
   visible text (a position: absolute child) is OUT of the inline flow.
   This means we can freely add/remove characters in the note text
   without ever changing the headline's word-wrapping. */
.hero__title-note {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  overflow: visible;
  vertical-align: baseline;
  pointer-events: none;
}
.hero__title-note__txt {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 600;
  color: #ff6a4d;
  font-size: 0.28em;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  display: inline-block;
  /* Same position the user dialled in: 80px left + 30px down + slight tilt */
  transform: rotate(-3deg) translate(calc(0.6em - 80px), calc(-0.4em + 12px));
  transform-origin: left center;
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero__title-note__txt {
    font-size: 0.34em;
    transform: rotate(-3deg) translate(calc(0.5em - 80px), calc(-0.3em + 8px));
  }
}
@media (max-width: 720px) {
  .hero__annotate { font-size: 0.32em; right: -0.3em; }
}
.hero[data-layout="centered"] .hero__proof { justify-content: center; }
.hero__proof-avs {
  display: flex;
  align-items: center;
}
.hero__proof-avs img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line-2);
  margin-left: -10px;
  background: var(--bg-2);
}
.hero__proof-avs img:first-child { margin-left: 0; }
.hero__proof-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.hero__proof-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
}
.hero__proof-stars .star {
  width: 14px; height: 14px;
  display: block;
}
.hero__proof-line {
  font-size: 14.5px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.hero__proof-line b {
  color: var(--ink);
  font-weight: 600;
}

.hero__metrics {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.metric__num {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
}
.metric__label {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.metric__kicker {
  margin-top: 4px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink-3);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.hero__portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  width: 100%;
}
.hero__portrait:not(.hero__portrait--filled)::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 14px,
    color-mix(in oklab, var(--ink) 4%, transparent) 14px 15px
  );
}
.hero__portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}
.portrait-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.portrait-tag {
  position: absolute;
  top: 16px; right: 16px;
  display: flex; gap: 8px; align-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portrait-tag .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Asym stat column */
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg-2);
}
.stat-card + .stat-card { margin-top: 16px; }
.stat-card__big {
  font-family: var(--f-display);
  font-size: 56px; line-height: 0.95;
}
.stat-card__big em { color: var(--accent); font-style: italic; }

/* ============ Marquee ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 18px;
  white-space: nowrap;
}
.marquee__num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--accent);
}
.marquee__text {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.marquee__dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--line-2);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Press strip ============ */
.press {
  display: flex; flex-wrap: wrap; gap: 56px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.press__label { color: var(--ink-3); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.press__logo {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  opacity: 0.85;
}
.press__logo--alt { font-family: var(--f-sans); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 14px; }

/* ============ Ventures strip ("what I run") ============ */
.ventures {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 42px 0 26px;
}
.ventures__honor {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  text-wrap: pretty;
}
.ventures__honor b { color: var(--accent); font-weight: 600; }
.ventures__honor-icon { flex: 0 0 auto; width: 27px; height: 27px; color: var(--accent); }
.ventures__honor-icon svg { width: 100%; height: 100%; display: block; }
.ventures__label {
  flex: 0 0 auto;
  width: 76px;
  padding-top: 6px;
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}
.ventures__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.venture {
  padding: 2px 34px;
  border-left: 1px solid var(--line);
}
.venture:first-child { padding-left: 0; border-left: none; }
.venture__tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.venture__name {
  font-family: var(--f-display);
  font-size: 25px;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.venture__desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 780px) {
  .ventures { flex-direction: column; gap: 22px; padding: 32px 0 22px; }
  .ventures__grid { grid-template-columns: 1fr; gap: 22px; }
  .venture { padding: 0 0 0 16px; border-left: 2px solid var(--line); }
  .venture:first-child { padding-left: 16px; border-left: 2px solid var(--line); }
  .ventures__honor { padding: 18px 0 32px; gap: 11px; font-size: 13.5px; }
}

/* ============ Section header ============ */
.s-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}
.s-head h2 { margin: 18px 0 0; }
.s-head__right { color: var(--ink-2); max-width: 44ch; font-size: 17px; }
.s-head__right b { color: var(--ink); font-weight: 600; }

/* Story header: top-align the intro with the headline's first line (desktop 2-col only) */
@media (min-width: 981px) {
  #story .s-head { align-items: start; }
  #story .s-head__right { margin-top: 44px; }
}
/* Story intro: italic display serif treatment */
#story .s-head__right {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  max-width: none;
}
#story .s-head__right b { font-weight: inherit; color: var(--accent); }

/* ============ Story (scroll-triggered) ============ */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.story__sticky {
  position: sticky; top: 120px;
}
.story__chapters { display: flex; flex-direction: column; gap: 88px; }
.chapter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  position: relative;
}
.chapter h3 {
  font-family: var(--f-display);
  font-size: 32px;
  margin: 0 0 14px;
  line-height: 1.05;
  color: var(--ink);
  transition: color .8s ease;
}
.chapter p {
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
  font-size: 16.5px;
  transition: color .8s ease;
}
.chapter:not(.is-active) h3 {
  color: color-mix(in oklab, var(--ink) 60%, transparent);
  transition: color .25s ease;
}
.chapter p b {
  color: var(--ink);
  font-weight: 600;
  transition: color .8s ease;
}
.chapter:not(.is-active) p b {
  color: color-mix(in oklab, var(--ink) 55%, transparent);
  transition: color .25s ease;
}
.chapter:not(.is-active) p {
  color: color-mix(in oklab, var(--ink-2) 70%, transparent);
  transition: color .25s ease;
}
.chapter__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  padding-top: 8px;
  width: 40px;
  transition: color .4s ease;
}
.chapter.is-active .chapter__num { color: var(--accent); }
.chapter__visual {
  margin-top: 22px;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-2);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 12px,
    color-mix(in oklab, var(--ink) 3%, transparent) 12px 13px
  );
  position: relative;
}
/* Pinned proof receipt (chapter 03 — first 1,000 units) */
.chapter__receipt {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  max-width: 250px;
  background: #fff;
  padding: 0;
  border-radius: 4px 0 14px 0;
  overflow: hidden;
  box-shadow: -10px -10px 30px -14px rgba(24, 26, 22, 0.45);
  transform: none;
  z-index: 6;
  border: 1px solid rgba(24,26,22,0.06);
}
.chapter__receipt img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
/* The .has-img rule above absolutely-positions every image in the visual and
   forces height:100% — which collapses the receipt (it has no fixed height).
   Restore the receipt image to normal flow so it shows its real proportions. */
.chapter__visual.has-img .chapter__receipt img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: fill;
}
.chapter__receipt-cap {
  display: block;
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}
@media (max-width: 640px) {
  .chapter__receipt { right: 0; bottom: 0; width: 48%; }
}
.chapter__visual span {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.chapter__visual.has-img {
  background-image: none;
  overflow: hidden;
  padding: 0;
}
.chapter__visual.has-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.chapter__visual.is-contain img {
  object-fit: contain;
  object-position: center;
  padding: 14px;
}
.chapter__visual.is-contain {
  background: var(--bg);
}
.chapter__visual.has-img span {
  z-index: 2;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  padding: 5px 9px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ============ Pledge card (chapter 04) ============ */
.chapter__visual.is-pledge {
  background: var(--bg-3);
  background-image:
    radial-gradient(circle at 20% 20%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 55%),
    repeating-linear-gradient(-45deg, transparent 0 12px, color-mix(in oklab, var(--ink) 3%, transparent) 12px 13px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chapter__visual.is-pledge > span {
  z-index: 3;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  padding: 5px 9px;
  border-radius: 4px;
}
.pledge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 6%;
}
.pledge__paper {
  position: relative;
  width: 88%; max-width: 460px;
  background: #f4ecd8;
  color: #2b2620;
  border-radius: 3px;
  padding: 28px 30px 26px;
  transform: rotate(-1.6deg);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 18px 36px -16px rgba(0,0,0,0.55),
    0 36px 60px -24px rgba(0,0,0,0.35);
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0 27px,
      rgba(60,40,30,0.10) 27px 28px
    );
}
/* Tape strip */
.pledge__paper::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  width: 64px; height: 18px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(220, 200, 140, 0.55);
  border-left: 1px dashed rgba(0,0,0,0.08);
  border-right: 1px dashed rgba(0,0,0,0.08);
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.2);
}
.pledge__stamp {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: #8a3a1e;
  border: 1.5px solid #8a3a1e;
  padding: 4px 8px;
  border-radius: 3px;
  transform: rotate(6deg);
  opacity: 0.85;
}
.pledge__head {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  margin: 4px 0 14px;
  color: #2b2620;
}
.pledge__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: "Caveat", cursive;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
  color: #3a2f25;
}
.pledge__list li {
  display: flex; align-items: center; gap: 12px;
  text-decoration: line-through;
  text-decoration-color: rgba(138, 58, 30, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.pledge__check {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border: 1.5px solid #2b2620;
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #8a3a1e;
}
.pledge__check svg { width: 18px; height: 18px; }
.pledge__list li:nth-child(1) .pledge__check { transform: rotate(-2deg); }
.pledge__list li:nth-child(2) .pledge__check { transform: rotate(1.5deg); }
.pledge__list li:nth-child(3) .pledge__check { transform: rotate(-1deg); }
.pledge__sig {
  margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: "Caveat", cursive;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #2b2620;
}
.pledge__scribble {
  width: 80px; height: 12px;
  color: #2b2620;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .pledge__paper { padding: 22px 22px 20px; }
}
.story__progress {
  width: 2px;
  background: var(--line);
  position: relative;
  border-radius: 2px;
  height: 240px;
}
.story__progress span {
  position: absolute; top: 0; left: 0; width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: height .3s ease;
}
.story__stick-inner h2 { margin: 14px 0 18px; }

/* ============ Scrapbook visual (chapters 01 + 02) ============ */
.chapter__visual.is-scrap {
  background: var(--bg-3);
  background-image:
    radial-gradient(circle at 80% 15%, color-mix(in oklab, var(--accent) 6%, transparent), transparent 55%),
    repeating-linear-gradient(-45deg, transparent 0 12px, color-mix(in oklab, var(--ink) 3%, transparent) 12px 13px);
  overflow: hidden;
  padding: 0;
}
.chapter__visual.is-scrap > span {
  z-index: 6;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  padding: 5px 9px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.scrap-paper {
  position: absolute;
  background: #f3eee1;
  box-shadow: 0 8px 26px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.06) inset;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.scrap-paper img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.scrap-tape {
  position: absolute;
  width: 70px; height: 18px;
  background: rgba(212,165,116,0.32);
  border: 1px solid rgba(212,165,116,0.5);
  z-index: 5;
}
.scrap-note {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--accent);
  z-index: 5;
  line-height: 1;
}

/* Chapter 01 — school project: three layered papers (brief + research + sketch) */
.scrap--school .scrap-paper--research {
  top: 0%; left: 42%; width: 52%; height: 100%;
  transform: translateX(-5.5%) scale(1.32);
  z-index: 1;
  background: #fbf7ec;
}
.scrap--school .scrap-paper--research img {
  object-fit: contain;
  object-position: center;
  padding: 4%;
}
.scrap--school .scrap-paper--brief {
  top: 0; right: 0; left: auto; width: 31%; height: 44%;
  transform-origin: top right;
  transform: scale(1.15);
  z-index: 2;
}
.scrap--school .scrap-paper--brief img {
  object-position: top center;
}
.scrap--school .scrap-paper--sketch {
  top: 22%; right: 2%; width: 41%; height: 70%;
  transform: translate(17.7%, 24%);
  z-index: 3;
  background: #fdfaf2;
}
.scrap--school .scrap-paper--sketch img {
  object-fit: contain;
  object-position: top center;
  padding: 0 1% 1%;
}
.scrap--school .scrap-tape--brief {
  top: 0%; left: 10%;
  transform: rotate(-12deg);
  z-index: 4;
}
.scrap--school .scrap-tape--sketch {
  top: 0%; right: 12%;
  transform: rotate(10deg) translateX(-20px);
  z-index: 4;
}
.scrap--school .scrap-tape--research {
  top: 4%; left: 44%;
  transform: rotate(-3deg) translate(10px, -10px);
  z-index: 2;
  background: rgba(212,165,116,0.22);
  border-color: rgba(212,165,116,0.4);
}
.scrap--school .scrap-paper--clock { display: none; }
.scrap--school .scrap-paper--clock img {
  object-fit: contain;
  object-position: center;
  padding: 7%;
}
.scrap--school .scrap-tape--clock {
  bottom: 52%; right: 4%;
  transform: rotate(8deg) translate(-15px, 25px);
  z-index: 5;
}
/* Chapter 01 — real photo of Jay drawing, as a taped polaroid (the human anchor) */
.scrap--school .scrap-paper--photo {
  top: 0; bottom: 0; left: 0; width: 40%; aspect-ratio: auto; height: auto;
  transform: none;
  z-index: 5;
  background: #fbf9f4;
  padding: 0;
  box-shadow: 10px 0 28px rgba(0,0,0,0.4);
}
.scrap--school .scrap-paper--photo img {
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 1px;
}
.scrap-photo__cap {
  position: absolute;
  bottom: 7px; left: 0; right: 0;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1;
  color: #4a3e35;
  z-index: 2;
}
.scrap--school .scrap-tape--photo {
  bottom: 42%; left: 2%;
  transform: rotate(-18deg);
  z-index: 6;
  background: rgba(212,165,116,0.3);
  border-color: rgba(212,165,116,0.5);
}

/* Cleaner chapter-01 composition: photo full-height left; drawing + research +
   dated brief stacked right. Hide the tape clutter, the 2nd clock sketch and
   the polaroid caption (the section label already carries the date). */
.scrap--school .scrap-tape--brief,
.scrap--school .scrap-tape--sketch,
.scrap--school .scrap-tape--research,
.scrap--school .scrap-tape--clock,
.scrap--school .scrap-tape--photo,
.scrap--school .scrap-photo__cap { display: none; }

/* Chapter 02 — retail: single big photo */
.scrap--retail .scrap-paper--store {
  top: 0; left: 0; right: 0; bottom: 0;
  width: auto; height: auto;
  transform: rotate(0deg);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.scrap--retail .scrap-paper--store img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.scrap--retail .scrap-tape--store {
  display: none;
}
.scrap--retail .scrap-note {
  bottom: 7%; right: 5%;
  transform: rotate(-4deg);
  z-index: 6;
}

/* ============ Case studies grid ============ */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
}
.case {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform .4s ease, border-color .4s ease;
}
.case:hover { transform: translateY(-4px); border-color: var(--line-2); }
.case__bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    35deg,
    transparent 0 14px,
    color-mix(in oklab, var(--ink) 4%, transparent) 14px 15px
  );
}
.case__top {
  position: absolute; top: 22px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.case__chip {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}
.case__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  transition: background .3s, transform .3s;
}
.case:hover .case__arrow { background: var(--accent); color: var(--accent-ink); transform: rotate(-45deg); border-color: var(--accent); }
.case__body {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
}
.case__big {
  font-family: var(--f-display);
  font-size: clamp(40px, 3.2vw, 56px);
  line-height: 0.95;
  margin-bottom: 6px;
}
.case__big em { color: var(--accent); font-style: italic; }
/* sparkline trajectory (case viz) */
.case__viz {
  position: absolute;
  left: 22px; right: 22px;
  top: 78px; bottom: 128px;
  display: flex; flex-direction: column; gap: 8px;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 1;
}
.case:hover .case__viz { opacity: 0; transform: translateY(-6px); }
.case__spark { width: 100%; flex: 1; overflow: visible; }

/* ranked client-wins leaderboard (viz variant) */
.case__viz--board { gap: 11px; }
.case__board {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}
.case__board-row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.case__board-rank {
  flex: 0 0 auto;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 9px; font-weight: 600;
  display: grid; place-items: center;
}
.case__board-row.is-top .case__board-rank {
  background: var(--accent);
  color: var(--accent-ink);
}
.case__board-amt {
  flex: 0 0 auto;
  width: 50px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.case__board-row.is-top .case__board-amt { color: var(--ink); }
.case__board-tag {
  flex: 0 0 auto;
  width: 72px;
  text-align: right;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.case__board-bar {
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: var(--bg-3);
  overflow: hidden;
}
.case__board-bar i {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 42%, var(--bg-2));
  transform: scaleX(0);
  transform-origin: left center;
}
.case__board-row.is-top .case__board-bar i { background: var(--accent); }
.reveal.is-in .case__board-bar i {
  animation: boardGrow 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal.is-in .case__board-row:nth-child(1) .case__board-bar i { animation-delay: 0.15s; }
.reveal.is-in .case__board-row:nth-child(2) .case__board-bar i { animation-delay: 0.28s; }
.reveal.is-in .case__board-row:nth-child(3) .case__board-bar i { animation-delay: 0.41s; }
.reveal.is-in .case__board-row:nth-child(4) .case__board-bar i { animation-delay: 0.54s; }
@keyframes boardGrow { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .case__board-bar i { transform: scaleX(1); }
  .reveal.is-in .case__board-bar i { animation: none; }
}

/* "who I've helped" — countries + client types (viz variant) */
.case__viz--reach { gap: 14px; }
.reach {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.reach__flags { display: flex; flex-wrap: wrap; gap: 6px; }
.reach__flag {
  width: 25px; height: 17px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 1px 2px rgba(24, 26, 22, 0.18), 0 0 0 1px rgba(24, 26, 22, 0.04);
}
.reach__flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reach__roles { display: flex; flex-wrap: wrap; gap: 6px; }
.reach__role {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 55%, transparent);
}
.case__spark-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.case__spark-area {
  fill: color-mix(in oklab, var(--accent) 14%, transparent);
  stroke: none;
}
.case__spark-dot { fill: var(--accent); }
.case__spark-dot--end {
  filter: drop-shadow(0 0 6px color-mix(in oklab, var(--accent) 60%, transparent));
}
.case__spark-grid {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 2 4;
  opacity: 0.7;
}
.case__spark-axis {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.case__spark-axis span:last-child { color: var(--accent); }

/* bar-chart variant */
.case__bar {
  fill: color-mix(in oklab, var(--accent) 38%, transparent);
  transition: fill .3s ease;
}
.case__bar--peak {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px color-mix(in oklab, var(--accent) 55%, transparent));
}

/* pull-quote variant */
.case__viz--quote {
  align-items: center; justify-content: center;
  padding: 4px 4px 0;
}
.case__quote {
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  max-width: 100%;
}
.case__quote-mark {
  position: absolute;
  top: -4px; left: -28px;
  width: 26px; height: 26px;
  color: color-mix(in oklab, var(--accent) 55%, transparent);
}
.case__quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.case__quote-cite {
  margin-top: 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}

/* milestone (progression track) variant */
.case__milestone {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 4px 2px 0;
}
.case__milestone-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.2;
}
.case__milestone-labels span {
  text-align: center;
  flex: 1;
  position: relative;
}
.case__milestone-labels span:first-child { text-align: left; }
.case__milestone-labels span:last-child  { text-align: right; }
.case__milestone-labels span.is-win {
  color: var(--accent);
  font-weight: 500;
}
.case__milestone-rail {
  position: relative;
  display: flex;
  align-items: center;
  height: 22px;
}
.case__milestone-track {
  position: absolute;
  left: 8px; right: 8px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: var(--line);
  border-radius: 2px;
}
.case__milestone-fill {
  position: absolute;
  left: 8px; right: 8px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    color-mix(in oklab, var(--accent) 20%, transparent),
    var(--accent)
  );
  border-radius: 2px;
}
.case__milestone-dots {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}
.case__milestone-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 55%, var(--bg-3));
  box-shadow: 0 0 0 4px var(--bg-3);
}
.case__milestone-dots span.is-win {
  width: 18px; height: 18px;
  background: var(--accent);
  box-shadow:
    0 0 0 4px var(--bg-3),
    0 0 0 7px color-mix(in oklab, var(--accent) 28%, transparent),
    0 0 14px color-mix(in oklab, var(--accent) 55%, transparent);
}

/* "New order" notification anchored to the first-sale node */
.case__order-toast {
  position: absolute;
  top: calc(100% + 14px);
  right: -4px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow:
    0 10px 24px -10px rgba(24, 26, 22, 0.40),
    0 2px 6px -2px rgba(24, 26, 22, 0.14);
  white-space: nowrap;
  z-index: 6;
  opacity: 0;
  transform: translateY(6px) scale(0.92);
  transform-origin: top right;
}
.case__order-toast::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 15px;
  width: 2px;
  height: 16px;
  background: color-mix(in oklab, var(--accent) 45%, var(--line));
  border-radius: 2px;
}
.case__order-toast-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
}
.case__order-toast-icon svg { width: 16px; height: 16px; display: block; }
.case__order-toast-text { display: flex; flex-direction: column; gap: 3px; }
.case__order-toast-label {
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}
.case__order-toast-amt {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1;
}
.reveal.is-in .case__order-toast {
  animation:
    orderToastIn 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.4) 0.5s forwards,
    orderToastNudge 6s ease-in-out 1.7s infinite;
}
@keyframes orderToastIn {
  0%   { opacity: 0; transform: translateY(6px) scale(0.92); }
  60%  { opacity: 1; transform: translateY(-2px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes orderToastNudge {
  0%, 90%, 100% { transform: translateY(0) scale(1); }
  93% { transform: translateY(-3px) scale(1.035); }
  97% { transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.is-in .case__order-toast,
  .reveal.is-in .case__start-chip {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* "Starting today" marker anchored to the ENROLLED node — bookends the payoff */
.case__start-chip {
  position: absolute;
  bottom: calc(100% + 26px);
  left: -4px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  background: color-mix(in oklab, var(--bg-2) 65%, #fff);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 5px 14px -8px rgba(24, 26, 22, 0.25);
  white-space: nowrap;
  z-index: 6;
  opacity: 0;
  transform: translateY(-6px) scale(0.94);
  transform-origin: bottom left;
}
.case__start-chip::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 11px;
  width: 2px;
  height: 30px;
  background: color-mix(in oklab, var(--accent) 30%, var(--line));
  border-radius: 2px;
}
/* the chip stands in for the ENROLLED label on this node */
.case__milestone:has(.case__start-chip) .case__milestone-labels span:first-child {
  visibility: hidden;
}
.case__start-chip-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--bg-3);
  color: var(--ink-2);
  display: grid;
  place-items: center;
}
.case__start-chip-icon svg { width: 15px; height: 15px; display: block; }
.case__start-chip-text { display: flex; flex-direction: column; gap: 2px; }
.case__start-chip-label {
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}
.case__start-chip-val {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1;
}
.reveal.is-in .case__start-chip {
  animation: startChipIn 0.65s cubic-bezier(0.2, 0.9, 0.3, 1.4) 0.35s forwards;
}
@keyframes startChipIn {
  0%   { opacity: 0; transform: translateY(-6px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* retail-acceptance stamp variant */
.case__viz--stamp {
  padding: 4px 0;
}
.case__stamp-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  display: grid;
  place-items: center;
}
.case__stamp {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 22px 38px 20px;
  border: 2.5px solid var(--accent);
  border-radius: 4px;
  outline: 1px solid var(--accent);
  outline-offset: 5px;
  transform: rotate(-2deg);
  background: color-mix(in oklab, var(--accent) 5%, transparent);
  color: var(--accent);
  max-width: 90%;
}
.case__stamp-head, .case__stamp-foot {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent) 78%, transparent);
  white-space: nowrap;
}
.case__stamp-main {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--accent);
  white-space: nowrap;
}
/* product photo + stamp overlay variant */
.case__pack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.case__pack img {
  max-width: 84%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 20px rgba(24, 26, 22, 0.20));
}

/* before / after drag-to-compare */
.case__viz--compare { padding: 4px 0; }
.cmp-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
}
.cmp {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* static before|after split (no drag) */
.cmp--static .cmp__pane--before { clip-path: inset(0 50% 0 0); }
.cmp--static .cmp__pane--after { clip-path: inset(0 0 0 50%); }
.cmp__seam {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 28%, transparent);
  pointer-events: none;
  z-index: 3;
}
.cmp__pane {
  position: absolute;
  inset: 0;
}
.cmp__pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 18px rgba(24, 26, 22, 0.22));
  pointer-events: none;
}
/* per-bottle padding so the two differently-framed photos render at a matched height */
.cmp__pane--before img { padding: 2px 6% 2px; }
.cmp__pane--after img { padding: 2px 3%; }
.cmp__tag {
  position: absolute;
  top: 4px;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.cmp__tag--before {
  left: 0;
  background: color-mix(in oklab, var(--bg-3) 80%, transparent);
  color: var(--ink-3);
}
.cmp__tag--after {
  right: 0;
  background: var(--accent);
  color: var(--accent-ink);
}
.cmp__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 35%, transparent);
  pointer-events: none;
}
.cmp__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 5px 14px -4px rgba(24, 26, 22, 0.4);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.cmp__knob svg { width: 19px; height: 19px; display: block; }

/* "Accepted at GNC" rubber-stamp seal — always visible (sits above the clipped panes) */
.cmp__stamp {
  position: absolute;
  left: 6px;
  bottom: 10px;
  width: 70px;
  height: 70px;
  z-index: 4;
  pointer-events: none;
  transform: rotate(-9deg);
  filter: drop-shadow(0 2px 4px rgba(24, 26, 22, 0.18));
}
.cmp__stamp svg { width: 100%; height: 100%; display: block; overflow: visible; }
.cmp__stamp-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  opacity: 0.92;
}
.cmp__stamp-ring--inner { stroke-width: 1; opacity: 0.6; }
.cmp__stamp-arc {
  fill: var(--accent);
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.cmp__stamp-word {
  fill: var(--accent);
  font-family: var(--f-display);
  font-size: 30px;
  font-style: italic;
  text-anchor: middle;
  letter-spacing: 0.01em;
}

/* the compare card stays interactive (no hover-fade / no story panel) */
.case--static:hover .case__viz {
  opacity: 1;
  transform: none;
}
.case--static .case__hover { display: none; }
.case__stamp--overlay {
  position: absolute;
  top: 0;
  right: 2px;
  gap: 4px;
  padding: 8px 13px 7px;
  border-width: 2px;
  outline-offset: 3px;
  max-width: none;
  transform: rotate(5deg);
  background: color-mix(in oklab, var(--bg-2) 78%, transparent);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.case__stamp--overlay .case__stamp-head,
.case__stamp--overlay .case__stamp-foot {
  font-size: 7.5px;
  letter-spacing: 0.16em;
}
.case__stamp--overlay .case__stamp-main {
  font-size: 17px;
}

/* cases section footnote */
.cases__foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 76ch;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
}
.cases__foot-mark {
  font-family: var(--f-display);
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: -2px;
}

.case__product {
  position: absolute;
  top: 74px;
  left: 22px; right: 22px;
  bottom: 138px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.case__product img {
  max-width: 78%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.18));
  transition: transform .4s ease;
}
.case:hover .case__product img { transform: scale(1.04); }
:root[data-mode="dark"] .case__product img,
:root:not([data-mode]) .case__product img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.55));
}
.case__name {
  font-size: 14px; color: var(--ink-2);
  margin-bottom: 18px;
}
.case__hover {
  position: absolute;
  inset: 0;
  padding: 28px;
  background: color-mix(in oklab, var(--bg-3) 96%, transparent);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
  display: flex; flex-direction: column; justify-content: space-between;
  pointer-events: none;
}
.case:hover .case__hover { opacity: 1; transform: translateY(0); pointer-events: auto; }
.case__hover h4 { font-family: var(--f-display); font-size: 26px; margin: 16px 0 12px; line-height: 1.1; }
.case__hover p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.case__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.case__stat-num { font-family: var(--f-display); font-size: 26px; color: var(--accent); }
.case__stat-lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }

/* ============ Quiz ============ */
.quiz {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -42px rgba(20, 32, 26, 0.5);
  padding: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.quiz__left .label-mono { color: var(--accent); }
.quiz__left h2 { margin: 14px 0 18px; font-size: clamp(34px, 3.5vw, 52px); }
.quiz__left p { color: var(--ink-2); max-width: 36ch; }
.quiz__progress {
  margin-top: 36px;
  display: flex; gap: 6px;
}
.quiz__progress span {
  height: 4px; flex: 1; background: var(--line); border-radius: 2px;
}
.quiz__progress span.is-on { background: var(--accent); }
/* Panel holds ONE constant height across all states (Q1–Q3 + result),
   so the card never jumps when you advance or reach the diagnosis. */
.quiz__panel { display: flex; flex-direction: column; justify-content: center; min-height: 432px; }
.quiz__q { font-family: var(--f-display); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.15; margin: 0 0 24px; min-height: 2.3em; }
/* Hold the card at a constant height across steps: reserve 2 question lines + 4 option rows */
.quiz__opts { display: flex; flex-direction: column; gap: 12px; min-height: 292px; }
.quiz__opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--bg-2);
  text-align: left;
  width: 100%;
  transition: border-color .25s, background .25s, transform .25s;
}
.quiz__opt:hover { border-color: var(--accent); background: var(--bg-3); transform: translateX(4px); }
.quiz__opt.is-sel { border-color: var(--accent); background: var(--bg-3); }
.quiz__opt span:first-child { font-size: 15.5px; }
.quiz__opt .key {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.quiz__result {
  text-align: left;
}
.quiz__result h3 { font-family: var(--f-display); font-size: clamp(30px, 3vw, 42px); margin: 8px 0 14px; line-height: 1.1; }
.quiz__result h3 em { color: var(--accent); font-style: italic; }
.quiz__result p { color: var(--ink-2); margin: 0 0 22px; max-width: 48ch; }
.quiz__result-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quiz__restart {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
}
.quiz__restart:hover { color: var(--ink); }

/* ============ Before / After ============ */
.ba {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.ba__title {
  position: sticky;
  top: 100px;
  align-self: start;
}
.ba__title h2 { margin: 14px 0 22px; }
.ba__title .lead { max-width: 44ch; }

.ba__meta {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column;
  gap: 10px;
}
.ba__meta-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  font-size: 14px;
  line-height: 1.4;
}
.ba__meta-key {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 2px;
}
.ba__meta-val { color: var(--ink-2); }
.ba__meta-val--win {
  color: var(--accent);
  font-weight: 500;
}

/* The receipts — stacked real screenshots */
.receipts {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 20px 0;
}
.receipt {
  position: relative;
  margin: 0;
  padding: 14px 14px 18px;
  background: #fdfbf6;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.02),
    0 24px 40px -16px rgba(40, 30, 20, 0.18),
    0 60px 80px -30px rgba(40, 30, 20, 0.12);
  max-width: 520px;
}
.receipt--back {
  transform: rotate(-1.2deg);
  margin-right: auto;
  margin-left: 0;
}
.receipt--front {
  transform: rotate(1.2deg);
  margin-left: auto;
  margin-right: 0;
}
.receipt--consult {
  transform: rotate(-0.6deg);
  margin-right: auto;
  margin-left: 0;
}
.receipt__badge {
  position: absolute;
  top: -12px; left: 18px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px color-mix(in oklab, var(--accent) 60%, transparent);
}
:root[data-mode="dark"] .receipt,
:root:not([data-mode]) .receipt {
  background: var(--bg-2);
  border-color: var(--line-2);
}
.receipt img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.receipt__cap {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.receipt__tape {
  position: absolute;
  width: 78px; height: 22px;
  background: color-mix(in oklab, var(--accent) 18%, #f4ecd8);
  border-left: 1px dashed rgba(0,0,0,0.06);
  border-right: 1px dashed rgba(0,0,0,0.06);
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.18);
  opacity: 0.85;
  z-index: 3;
}
.receipt__tape--tl {
  top: -10px; left: -18px;
  transform: rotate(-12deg);
}
.receipt__tape--br {
  bottom: -8px; right: -16px;
  transform: rotate(8deg);
}

@media (max-width: 900px) {
  .ba { grid-template-columns: 1fr; gap: 48px; }
  .receipts { gap: 56px; }
  .receipt--back, .receipt--front { transform: none; margin: 0 auto; }
}

/* ============ Testimonials (video) ============ */
.vids {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 24px;
  grid-template-rows: 340px 340px;
}
.vid {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .3s;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 16px,
    color-mix(in oklab, var(--ink) 4%, transparent) 16px 17px
  );
  text-decoration: none;
  color: inherit;
}
.vid__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: brightness(0.78) contrast(1.02);
}
.vid:hover .vid__bg-img { filter: brightness(0.82) contrast(1.02); }
.vid--receipt {
  background-image: none;
  background: #fdfbf4;                 /* polaroid photo paper */
  border-color: transparent;
  border-radius: 3px;
  /* even frame on top + sides, chunky mat at the bottom for the caption */
  padding: 15px 15px 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: default;
  box-shadow:
    0 1px 2px rgba(24,34,18,0.16),
    0 3px 8px rgba(24,34,18,0.08),
    0 26px 44px -22px rgba(24,34,18,0.55);
}
.vid--receipt:hover { transform: translateY(-4px) rotate(-0.4deg); }
/* the FB message reads as the photo inside the polaroid: crisp corners + hairline */
.vid--receipt .vid__receipt-img {
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(24,34,18,0.07);
}
.vid__receipt-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg);
  padding: 12px;
}
.vid__receipt-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
/* HTML chat bubbles — uniform text size across all receipts */
.vid__receipt-img--msg {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 14px 14px;
}
.fbmsg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
.fbmsg__av {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 2px;
}
.fbmsg__col { flex: 1 1 auto; min-width: 0; }
.fbmsg__bubble {
  position: relative;
  background: #e9ebee;
  border-radius: 16px;
  padding: 8px 12px 9px;
  margin-bottom: 9px;
}
.fbmsg__name {
  font-size: 12.5px;
  font-weight: 700;
  color: #1c1e21;
  line-height: 1.3;
  margin-bottom: 1px;
}
.fbmsg__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #1c1e21;
  letter-spacing: 0;
  word-break: break-word;
}
.fbmsg__react {
  position: absolute;
  right: 8px; bottom: -11px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #fff;
  border-radius: 999px;
  padding: 1px 5px 1px 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.fbmsg__rx {
  font-size: 11px;
  line-height: 1;
  display: inline-block;
}
.fbmsg__rx--like, .fbmsg__rx--love { margin-right: -3px; }
.fbmsg__rx-count {
  font-size: 11px;
  color: #65676b;
  margin-left: 4px;
}
.fbmsg__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #65676b;
  padding-left: 4px;
}
.fbmsg__action.is-love { color: #e0245e; font-weight: 700; }
.fbmsg__bold { font-weight: 700; color: #65676b; }
.fbmsg__sep { color: #8a8d91; }
:root[data-mode="dark"] .vid__receipt-img--msg,
:root:not([data-mode]) .vid__receipt-img--msg { background: #fff; }
/* polaroid caption: handwritten name over a small mono stat, centered in the bottom mat */
.vid__receipt-meta {
  margin-top: 12px;
  padding: 0 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1px;
}
.vid__receipt-name {
  font-family: "Caveat", var(--f-display);
  font-size: 25px;
  line-height: 1;
  color: #2a2622;
}
.vid__receipt-tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a917f;
}

/* Note tile — large, photo-led artifact, matched to the polaroid style */
.vid--note {
  background-image: none;
  background: #fdfbf4;
  border-color: transparent;
  border-radius: 3px;
  padding: 15px 15px 6px;
  cursor: default;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(24,34,18,0.16),
    0 3px 8px rgba(24,34,18,0.08),
    0 26px 44px -22px rgba(24,34,18,0.55);
}
.vid--note:hover { transform: translateY(-4px) rotate(-0.4deg); }
.vid__note-img {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #efe9dc;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(24,34,18,0.07);
}
.vid__note-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  filter: contrast(1.04);
}
.vid__note-caption {
  padding: 15px 8px 8px;
  background: transparent;
  border-top: none;
}
.vid__note-caption .vid__note-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.vid__note-caption .vid__note-tag::before {
  content: ""; width: 18px; height: 1px; background: var(--accent);
}
.vid__note-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: #2a2622;
  margin: 0 0 12px;
  text-wrap: balance;
}
.vid__note-byline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a917f;
}
.vid__note-byline strong { color: #2a2622; font-weight: 500; }
.vid__note-byline .vid__receipt-name { display: block; text-transform: none; letter-spacing: 0; }
.vid__note-role {
  display: block;
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a917f;
}

/* sticky washi tape across the top of every polaroid card */
.vid--receipt, .vid--note { overflow: visible; }
.vid--receipt::before, .vid--note::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 94px;
  height: 26px;
  transform: translateX(-50%) rotate(-2.6deg);
  background: color-mix(in oklab, var(--accent) 24%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 34%, transparent);
  box-shadow: 0 1px 2px rgba(24,34,18,0.10);
  z-index: 6;
  pointer-events: none;
}
.vids .vid:nth-child(2n)::before { transform: translateX(-50%) rotate(2.4deg); }
.vid:hover { transform: translateY(-3px); }
.vid--big { grid-row: span 2; }
.vid__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink);
  transition: transform .3s, background .3s;
}
.vid:hover .vid__play { transform: translate(-50%, -50%) scale(1.08); }
.vid__overlay {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.vid__overlay h4 { font-family: var(--f-display); font-size: 24px; margin: 0; }
.vid__overlay span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.vid__chip {
  position: absolute; top: 22px; left: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
}
.vid__chip--br {
  top: auto; left: auto;
  bottom: 64px; right: 16px;
  z-index: 4;
}

/* ============ Final CTA ============ */
.cta-end {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-end::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(600px 300px at 50% 0%, color-mix(in oklab, var(--accent) 18%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.cta-end > * { position: relative; }
.cta-end h2 { margin: 14px auto 22px; max-width: 16ch; }
.cta-end > p { color: var(--ink-2); max-width: 48ch; margin: 0 auto 40px; }

/* Dark closing callout (landing only) — the page's single dark "decision point".
   Uses the forest-ink #14201A (same tone as footer + checklist card), cream text,
   and a lifted sage accent so small labels pop. The olive Book button is left
   as-is so it glows against the dark. Scoped var overrides invert every child. */
.cta-end--dark {
  --ink: #F1EFE4;
  --ink-2: #E3E1D4;
  --ink-3: #9aa790;
  --bg-2: #1b2a22;
  --line: #243a2f;
  --line-2: #2e4a3b;
  color: var(--ink);
  background: #14201A;
  border-color: #243a2f;
}
/* lift the accent to olive/sage so mono labels + "currently booking" pop on the dark */
.cta-end--dark .cta-end__step-time { color: #9bb37a; }
.cta-end--dark .cta-end__sig strong { color: #9bb37a; }
.cta-end--dark .cta-end__alt a { color: #9bb37a; }

/* 3-step agenda */
.cta-end__agenda {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 740px;
  margin: 0 auto 44px;
}
.cta-end__step {
  background: var(--bg-2);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: center;
}
.cta-end__step-num {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--ink-3);
}
.cta-end__step-time {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.cta-end__step-label {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15; color: var(--ink);
}

.cta-end__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* "Not ready?" alt path */
.cta-end__alt {
  margin: 32px auto 0;
  padding: 22px 28px 4px;
  max-width: 580px;
  border-top: 1px dashed var(--line-2);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.cta-end__alt strong { color: var(--ink); font-weight: 500; }
.cta-end__alt a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: 500;
}

.cta-end__sig {
  margin-top: 48px;
  display: flex; gap: 14px; align-items: center; justify-content: center;
  color: var(--ink-3);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.cta-end__sig::before, .cta-end__sig::after { content: ""; width: 30px; height: 1px; background: var(--line-2); }
.cta-end__sig strong { color: var(--accent); font-weight: 500; }

/* Handwritten signature with tiny avatar */
.cta-end__handsign {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-end__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  border: 2px solid var(--bg-2);
  box-shadow: 0 0 0 1px var(--line-2);
}
.cta-end__handsign-name {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}
.cta-end__handsign-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 720px) {
  .cta-end__agenda { grid-template-columns: 1fr; }
  .cta-end__handsign-meta { flex-basis: 100%; }
}

/* Full-bleed closing CTA — dark panel spans the viewport edge-to-edge,
   inner content stays centered and capped for readability. */
.section--bleed { padding: 0; }
.section--bleed > .container { max-width: none; padding-left: 0; padding-right: 0; width: 100%; }
.cta-end--full { border-radius: 0; border-left: 0; border-right: 0; }
.cta-end--full > *:not(.cta-end__agenda) { max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-end--full .cta-end__agenda { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ============ Footer ============ */
/* Footer is pinned to Instrument Serif regardless of font tweak,
   so it always matches the editorial draft. */
.foot {
  --f-display: "Instrument Serif", Georgia, serif;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 80px 56px;
  margin-bottom: 56px;
}
.foot__brand {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--accent);
  line-height: 1;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.foot__brand-mark {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 4px;
  margin-right: 4px;
}
.foot__brand span { color: var(--accent); }

.foot__manifesto {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.25;
  color: var(--ink);
  margin: 22px 0 26px;
  max-width: 26ch;
  text-wrap: balance;
  /* Match the draft (no antialiased) — serif renders heavier with subpixel AA */
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.foot__manifesto em { color: var(--accent); font-style: italic; }

/* Waitlist + welcome gift */
.foot__waitlist {
  margin-bottom: 6px;
  max-width: 460px;
}
.foot__waitlist-label {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.foot__form {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--ink);
  padding: 4px 0 8px;
  align-items: center;
}
.foot__input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  padding: 6px 4px;
}
.foot__input::placeholder { color: var(--ink-3); font-style: italic; }
.foot__submit {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 6px 8px 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s ease;
}
.foot__submit:hover { gap: 12px; }
.foot__fine {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-style: italic;
  line-height: 1.45;
}
.foot__waitlist-done {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0 10px;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.3;
  border-bottom: 1.5px solid var(--accent);
}
.foot__waitlist-tick {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.foot__waitlist-tick svg { width: 20px; height: 20px; }

.foot__welcome {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--accent) 6%, transparent);
  border: 1px dashed color-mix(in oklab, var(--accent) 35%, var(--line-2));
  border-radius: 10px;
}
.foot__gift {
  flex: 0 0 56px;
  width: 56px; height: 72px;
  border-radius: 3px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 2px 4px 10px -4px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  padding: 6px 5px;
  gap: 3px;
  overflow: hidden;
}
.foot__gift::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 12px;
  background: var(--accent);
}
.foot__gift-line {
  height: 2px;
  background: var(--line-2);
  border-radius: 1px;
}
.foot__gift-line:nth-child(1) { margin-top: 14px; width: 100%; }
.foot__gift-line:nth-child(2) { width: 80%; }
.foot__gift-line:nth-child(3) { width: 92%; }
.foot__gift-line:nth-child(4) { width: 60%; }
.foot__gift-line:nth-child(5) { width: 75%; }
.foot__welcome-text {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.foot__welcome-key {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 500;
}
.foot__welcome-text strong { color: var(--ink); font-weight: 500; }

/* Hand-signed identity block */
.foot__sig {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
}
.foot__sig-name {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
}
.foot__sig-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.45;
}

/* Columns */
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.foot__col { min-width: 0; }
.foot__col h5 {
  font-family: var(--f-mono); font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 16px;
}
.foot__col a {
  display: block; padding: 5px 0;
  color: var(--ink-2); font-size: 15px;
  font-weight: 400;
  transition: color .2s ease;
}
.foot__col a:hover { color: var(--accent); }
.foot__col-link--accent { color: var(--accent) !important; }
.foot__meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  margin-left: 6px;
  letter-spacing: 0.02em;
}

.foot__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.foot__legal { display: inline-flex; gap: 10px; align-items: center; }
.foot__legal a { transition: color 0.18s ease; }
.foot__legal a:hover { color: var(--accent); }
.foot__legal button {
  font: inherit; letter-spacing: inherit; color: var(--ink-3);
  background: none; border: 0; padding: 0; cursor: pointer;
  transition: color 0.18s ease;
}
.foot__legal button:hover { color: var(--accent); }

/* ============ Cookie consent banner ============ */
.cc-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 1000;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  animation: cc-rise 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cc-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cc-banner__body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px clamp(18px, 3vw, 26px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cc-banner__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.cc-banner__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cc-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cc-btn {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.18s ease, border-color 0.18s ease;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-btn--ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}
.cc-btn--ghost:hover { border-color: var(--ink-3); }
.cc-btn--solid {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--accent-ink);
}
@media (max-width: 560px) {
  .cc-banner__actions { width: 100%; }
  .cc-btn { flex: 1; text-align: center; }
}

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; gap: 56px; }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 560px) {
  .foot__cols { grid-template-columns: 1fr; }
}

/* ============ Sticky CTA bar ============ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(140%);
  z-index: 40;
  display: flex; align-items: center; gap: 14px;
  padding: 8px 10px 8px 10px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  box-shadow: 0 18px 40px -20px color-mix(in oklab, var(--ink) 60%, transparent);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  max-width: calc(100% - 32px);
}
.sticky-cta.is-on { transform: translateX(-50%) translateY(0); }
.sticky-cta__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  font-family: var(--f-display);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink);
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  margin: -14px 0 0 18px;
}
.sticky-cta__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sticky-cta__copy { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta__copy strong { font-size: 13px; font-weight: 500; }
.sticky-cta__copy span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; color: color-mix(in oklab, var(--bg) 60%, var(--ink-3)); text-transform: uppercase; }
.sticky-cta .btn { padding: 10px 16px; }
/* Desktop shows the booking button; the WhatsApp link is mobile-only. */
.sticky-cta__wa { display: none; }

/* ============ Freedom section (the payoff) ============ */
.fr__inner { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 52px); }
.fr__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.fr__lead {
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.03;
  margin: 14px 0 0;
  max-width: 14ch;
}
.fr__lead em { font-style: italic; color: var(--accent); }
.fr__intro {
  color: var(--ink-2);
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.7;
  margin: 0;
}
.fr__intro b { color: var(--ink); font-weight: 600; }
.fr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}
.fr__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  display: flex;
  align-items: flex-end;
}
.fr__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fr__photo.morocco img { object-position: center 30%; }
.fr__photo.europe img { object-position: center 70%; }
.fr__photo.nz img { object-position: center 40%; }
.fr__cap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 16px;
}
.fr__cap::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120%;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  z-index: -1;
  pointer-events: none;
}
.fr__cap .place { font-family: var(--f-display); font-size: clamp(20px, 1.8vw, 26px); color: #fff; }
.fr__cap .yr { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: color-mix(in oklab, var(--accent) 60%, #fff); }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ Small screens ============ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  /* Mobile: surface a COMPACT "Book a call" pill in the sticky header so
     the primary (call) CTA is always reachable. The WhatsApp float owns
     the soft ask separately. */
  .nav__inner > .btn {
    display: inline-flex;
    justify-self: end;
    padding: 8px 13px;
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    gap: 0;
    white-space: nowrap;
  }
  .nav__inner > .btn .arrow { display: none; }
  /* Sticky (not fixed): keeps the header in normal flow so it doesn't
     leave a gap above the hero, but pins it to the top on scroll so the
     "Book a call" CTA is always one tap away. */
  .nav { position: sticky; top: 0; }
  .hero { padding-top: 36px; }
  .nav__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    width: 100% !important;
  }
  /* Very narrow phones: tighten the discovery-call pill + gaps so it never
     crowds the brand. */
  @media (max-width: 380px) {
    .nav__inner { gap: 10px; }
    .nav__inner > .btn { padding: 8px 11px; font-size: 11px; }
  }
  .hero__grid { grid-template-columns: 1fr !important; }
  .hero__metrics { grid-template-columns: 1fr 1fr; }
  .s-head { grid-template-columns: 1fr; }
  .fr__top { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story__sticky { position: static; }
  .cases { grid-template-columns: 1fr 1fr; }
  .quiz { grid-template-columns: 1fr; gap: 32px; }
  .quiz__q, .quiz__opts { min-height: 0; }
  .quiz__panel { min-height: 0; justify-content: flex-start; }
  .ba { grid-template-columns: 1fr; }
  .vids { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px 300px; }
  .vid--big { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 640px) {
  .cases { grid-template-columns: 1fr; }
  .hero__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
    align-items: start;
  }
  .hero__metrics .metric__num { font-size: 30px; }
  .hero__metrics .metric__label { font-size: 9.5px; letter-spacing: 0.08em; margin-top: 6px; }
  .hero__metrics .metric__kicker { font-size: 12.5px; }
  .vids { grid-template-columns: 1fr; grid-template-rows: unset; grid-auto-rows: minmax(260px, auto); }
  .vid--big { grid-column: auto; }
  /* Mobile: show the FULL handwritten note (no crop) with the caption block
     directly below — mirrors the desktop tile. The tile inherits overflow:hidden
     and a fixed 260px grid row, both of which clipped the note; release them so
     the tile grows to fit the whole image + caption. */
  .vid--note {
    overflow: visible;
    height: auto;
  }
  .vid--note .vid__note-img {
    flex: none;
    overflow: visible;
  }
  .vid--note .vid__note-img img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}
@media (max-width: 720px) {
  .hero { padding-top: 28px; padding-bottom: 40px; }
  .hero__grid { gap: 28px; }
  /* The h1 has an inline fontSize:101px on it (carried over from desktop
     where it's the intended display size). On phones 101px puts each
     word on its own line and wastes screen real estate — override down
     to a comfortable, readable scale. */
  .hero__title { font-size: 56px !important; line-height: 1.05; }
  /* Make room at the bottom of the page so the sticky "Talk to Jay"
     CTA never sits directly on top of footer content. */
  body { padding-bottom: 88px; }
  .sticky-cta { bottom: 14px; }
  /* Press strip: 56px gap → way too airy when logos wrap onto their
     own rows on phones. Tighten both row and column gaps. */
  .press {
    gap: 14px 28px;
    padding: 28px 0;
  }
  /* Sticky "Talk to Jay" pill — on mobile the two-line label was
     wrapping into 5+ skinny lines. Hide the subtitle, shrink the
     headline, and keep the whole pill compact. */
  .sticky-cta {
    gap: 8px;
    padding: 6px 8px 6px 8px;
    max-width: calc(100% - 16px);
  }
  .sticky-cta__avatar {
    width: 32px;
    height: 32px;
    margin: 0;
    font-size: 13px;
  }
  .sticky-cta__copy {
    flex-shrink: 0;
    min-width: max-content;
    line-height: 1.15;
  }
  /* Mobile: the WhatsApp button carries the full "Message Jay on WhatsApp"
     label, so the separate "Talk to Jay" copy is redundant and was getting
     squeezed out — hide it and let the button own the pill. */
  .sticky-cta__copy { display: none; }
  .sticky-cta__copy strong {
    font-size: 13px;
    white-space: nowrap;
  }
  .sticky-cta__copy span { display: none; }
  .sticky-cta .btn--primary {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  /* Mobile: swap the booking button for a WhatsApp link. Keep it compact
     and non-shrinking so the full label + arrow always fit inside the pill
     (the trailing arrow was getting clipped on narrow phones). */
  .sticky-cta__book { display: none; }
  .sticky-cta__wa {
    display: inline-flex;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12.5px;
    gap: 7px;
    white-space: nowrap;
  }
  .sticky-cta__wa .wa-glyph { width: 17px; height: 17px; flex-shrink: 0; }
}


/* ============ Ways to work together ============ */
.ways-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 48px; }
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-card); align-items: stretch; }
.way-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); padding: 32px 30px; position: relative; }
.way-card--feature { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.way-tag { position: absolute; top: -11px; left: 30px; background: var(--accent); color: var(--accent-ink); font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.way-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.way-num { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }
.way-price { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; white-space: nowrap; }
.way-name { margin: 0 0 8px; font-size: clamp(24px, 2vw, 30px); }
.way-for { font-size: 15px; color: var(--ink-2); margin: 0 0 22px; }
.way-rule { height: 1px; background: var(--line); margin: 0 0 20px; }
.way-list { list-style: none; margin: 0 0 28px; padding: 0; }
.way-list li { position: relative; padding-left: 27px; margin-bottom: 12px; font-size: 15px; color: var(--ink); line-height: 1.45; }
.way-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; line-height: 18px; text-align: center; border-radius: 50%; background: var(--bg-3); color: var(--accent); font-size: 10px; font-weight: 700; }
.way-foot { margin-top: auto; }
.way-cad { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.way-card .btn { width: 100%; justify-content: center; }
.ways-note { margin-top: 32px; font-size: 15px; color: var(--ink-2); text-align: center; }
.ways-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* ============ Lead magnet — inline band ============ */
.eyebrow--accent { color: var(--accent); }
.eyebrow--accent::before { background: var(--accent); }
.lm-band { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: 0 30px 70px -42px rgba(20, 32, 26, 0.5); padding: clamp(32px, 4vw, 56px); }
.lm-copy { min-width: 0; }
/* handwritten aside pointing at the checklist card from the left margin */
.lm-band { position: relative; }
.lm-anno {
  position: absolute;
  left: -212px;
  top: 18%;
  width: 185px;
  color: #4c6d33;
  transform: rotate(-2deg);
  pointer-events: none;
}
.lm-anno-txt {
  display: block;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
}
.lm-anno-arrow {
  display: block;
  width: 112px;
  height: auto;
  margin-top: 8px;
  margin-left: 30px;
  opacity: 0.92;
}
@media (max-width: 1663px) {
  .lm-anno { display: none; }
}
/* mobile-only handwritten note above the checklist card */
.lm-note-m { display: none; }
@media (max-width: 880px) {
  .lm-note-m {
    display: block;
    text-align: center;
    color: #4c6d33;
    transform: rotate(-2deg);
    margin: 0 0 22px;
    pointer-events: none;
  }
  #checklist { padding-top: clamp(28px, 6vw, 44px); }
  .lm-note-m-txt {
    display: block;
    font-family: "Caveat", cursive;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.05;
  }
  .lm-note-m-arrow {
    display: block;
    width: 84px;
    height: auto;
    margin: 4px auto 0;
    transform: translateX(-20px);
    opacity: 0.92;
  }
}
.lm-band h3.display { margin: 18px 0 16px; max-width: 16ch; font-size: clamp(30px, 3vw, 40px); line-height: 1.06; }
.lm-desc { font-size: 17px; color: var(--ink-2); max-width: 46ch; margin: 0 0 24px; text-wrap: pretty; }
.lm-bullets { list-style: none; margin: 0 0 30px; padding: 0; }
.lm-bullets li { position: relative; padding-left: 20px; margin-bottom: 11px; font-size: 15px; line-height: 1.45; color: var(--ink); }
.lm-bullets li::before { content: "\2014"; position: absolute; left: 0; top: 0; color: var(--accent); }
.lm-form { display: flex; gap: 10px; max-width: 460px; flex-wrap: wrap; }
.lm-input { flex: 1; min-width: 200px; border: 1px solid var(--line-2); background: var(--bg); border-radius: 999px; padding: 15px 22px; font-family: var(--f-sans); font-size: 15px; color: var(--ink); transition: border-color .15s; }
.lm-input::placeholder { color: var(--ink-3); }
.lm-input:focus { outline: none; border-color: var(--accent); }
.lm-input[aria-invalid="true"] { border-color: var(--accent); }
.lm-micro { margin: 14px 0 0; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-3); text-transform: uppercase; }
.lm-success { font-size: 16px; color: var(--ink); max-width: 44ch; margin: 4px 0 0; }
.lm-success a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* faux one-pager preview — A4 cover */
.doc-wrap { display: flex; justify-content: center; }
.doc { width: 320px; max-width: 100%; aspect-ratio: 1 / 1.414; display: flex; flex-direction: column; background: #14201a; color: #ece9df; border-radius: 14px; padding: 34px 30px; transform: rotate(2deg); box-shadow: 0 32px 60px -26px rgba(0,0,0,0.55); position: relative; overflow: hidden; }
.doc::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.4px); background-size: 7px 7px; pointer-events: none; }
.doc::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 150px; background: radial-gradient(120% 100% at 18% 0%, color-mix(in oklab, var(--accent) 36%, transparent), transparent 72%); pointer-events: none; }
.doc > * { position: relative; z-index: 1; }
.doc__k { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in oklab, var(--accent) 70%, #ece9df); }
.doc__h { font-family: var(--f-display); font-style: italic; font-size: 30px; line-height: 1.05; margin: 14px 0 0; color: #f4f1e7; }
.doc__list { list-style: none; margin: auto 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.doc__item { display: flex; align-items: center; gap: 12px; font-family: var(--f-sans); font-size: 14px; color: #d9d5c8; }
.doc__dot { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.doc__dot svg { width: 12px; height: 12px; display: block; }
.doc__rule { height: 1px; background: rgba(255,255,255,0.14); margin: 22px 0 13px; }
.doc__foot { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in oklab, var(--accent) 76%, #ece9df); }

@media (max-width: 880px) {
  .lm-band { grid-template-columns: 1fr; gap: 32px; }
  .doc-wrap { order: -1; }
  .doc { width: 248px; padding: 28px 24px; }
  .doc__h { font-size: 26px; }
}
@media (max-width: 760px) {
  .ways-grid { grid-template-columns: 1fr; }
  .ways-head { margin-bottom: 36px; }
}

/* Anchor offset for Google Ads sitelinks — clears the fixed top nav
   so a jumped-to heading isn't hidden under the header. */
#honest, #ways, #faq { scroll-margin-top: 88px; }
