/* ==========================================================================
   Creating Your Content World — Sales Page
   All styling lives here. To change WORDS, edit index.html instead.
   ========================================================================== */

/* --- Brand fonts ---------------------------------------------------------- */
@font-face { font-family: "Dahlia Blues"; src: url("assets/fonts/DahliaBlues.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Sunday Romantic"; src: url("assets/fonts/SundayRomantic-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Sunday Romantic"; src: url("assets/fonts/SundayRomantic-Italic.otf") format("opentype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Source Code Pro"; src: url("assets/fonts/SourceCodePro-VariableFont_wght.ttf") format("truetype"); font-weight: 200 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Code Pro"; src: url("assets/fonts/SourceCodePro-Italic-VariableFont_wght.ttf") format("truetype"); font-weight: 200 900; font-style: italic; font-display: swap; }

/* --- Design tokens -------------------------------------------------------- */
:root {
  /* Core brand */
  --olive: #8A8F32; --moss: #6E7538; --cream: #F8F5EA; --ochre: #CD930B; --sunny: #EEBB0E;
  /* Warm paper neutrals */
  --paper: #FBF9F1; --parchment: #EFE9D8; --sand: #E6DEC8;
  /* Ink */
  --espresso: #2C2A1E; --bark: #55513C; --driftwood: #86806A;
  /* Secondary earth tones */
  --terracotta: #B0563C; --brick: #8E4025; --clay: #C67A54; --cocoa: #6E4A32; --forest: #3B4A2C; --honey: #F0D08A;
  --white: #FFFFFF; --black: #1A160D;

  /* Fonts */
  --font-script: "Dahlia Blues", "Brush Script MT", cursive;
  --font-display: "Sunday Romantic", "Playfair Display", Georgia, serif;
  --font-body: "Source Code Pro", ui-monospace, "SFMono-Regular", monospace;

  --tracking-caps: 0.14em;
  --leading-tight: 1.08; --leading-normal: 1.6; --leading-relaxed: 1.75;

  /* Radii */
  --radius-xs: 6px; --radius-sm: 10px; --radius-md: 16px; --radius-lg: 22px; --radius-pill: 999px;
  /* Shadows (warm-tinted) */
  --shadow-xs: 0 1px 2px rgba(80,54,34,0.10);
  --shadow-sm: 0 2px 6px rgba(80,54,34,0.12);
  --shadow-md: 0 6px 18px rgba(80,54,34,0.14);
  --shadow-lg: 0 14px 34px rgba(80,54,34,0.16);
  --shadow-xl: 0 26px 60px rgba(80,54,34,0.20);
  --shadow-photo: 0 10px 26px rgba(80,54,34,0.22), 0 2px 6px rgba(80,54,34,0.14);
}

/* --- Reset / base --------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--moss);
  font-family: var(--font-body);
  color: var(--espresso);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--terracotta); }
a:hover { color: var(--brick); }
h1, h2, h3, p { margin: 0; }

/* The centered "paper sheet" that holds the whole page */
.sheet {
  width: 100%;
  margin: 0 auto;
  background: var(--moss) url('assets/textures/paper-olive-web.jpg') center / 1200px repeat;
  background-blend-mode: multiply;
  overflow-x: clip; /* clip (not hidden) so it doesn't break position: sticky */
}

/* --- Reusable text styles ------------------------------------------------- */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: var(--tracking-caps); display: inline-block; }
.eyebrow--sunny { color: var(--sunny); }
.eyebrow--honey { color: var(--honey); }
.eyebrow--terracotta { color: var(--terracotta); }
.eyebrow--olive { color: var(--olive); }

.script { font-family: var(--font-script); color: var(--olive); line-height: 1.15; }
.display { font-family: var(--font-display); font-weight: 400; line-height: var(--leading-tight); }

.h1 { font-family: var(--font-display); font-weight: 400; color: var(--cream); font-size: 92px; line-height: 1.02; }
.h2 { font-family: var(--font-display); font-weight: 400; line-height: var(--leading-tight); font-size: 48px; }
.h2--light { color: var(--espresso); }
.h2--dark { color: var(--cream); }
.h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--espresso); }

.lead { font-size: 18px; line-height: var(--leading-normal); }
.prose p { font-size: 17px; line-height: var(--leading-normal); margin: 0; }
.prose { display: grid; gap: 16px; }

.hl { background: var(--honey); padding: 2px 8px; border-radius: 4px; color: var(--espresso); font-weight: 600; }
/* The highlight "draws itself" left-to-right as it scrolls into view.
   Same progressive enhancement as the offer cards: browsers without
   scroll-driven animations (and reduced-motion users — see the bottom of
   this file) just see the solid highlight. */
@supports (animation-timeline: view()) {
  .hl {
    background: linear-gradient(var(--honey), var(--honey)) no-repeat 0 50% / 0% 100%;
    animation: kr-hl-sweep ease-out both;
    animation-timeline: view();
    animation-range: cover 5% cover 45%;
  }
  @keyframes kr-hl-sweep { to { background-size: 100% 100%; } }
}
/* Animated underline — same scroll-driven draw-in as .hl, but a thin
   sunny line under the words instead of a fill. */
.uline { background: linear-gradient(var(--sunny), var(--sunny)) no-repeat 0 100% / 100% 2px; padding-bottom: 3px; }
@supports (animation-timeline: view()) {
  .uline {
    background-size: 0% 2px;
    animation: kr-uline-sweep ease-out both;
    animation-timeline: view();
    animation-range: cover 5% cover 45%;
  }
  @keyframes kr-uline-sweep { to { background-size: 100% 2px; } }
}

/* --- Sections ------------------------------------------------------------- */
.section { padding: 90px 64px; }
.section--dark { color: var(--cream); }
.section--light { background: var(--cream) url('assets/textures/paper-cream-user.jpg') center / 1200px repeat; }
.section--rule-top { border-top: 1.5px solid rgba(248,245,234,0.18); }
.section--rule-top-sand { border-top: 1.5px solid var(--sand); }
.wrap { max-width: 1120px; margin: 0 auto; }
.center { text-align: center; }
.text-dim { color: #D8D3BE; }
.text-cream-soft { color: #E9E4D2; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; line-height: 1; letter-spacing: 0.01em;
  border-radius: var(--radius-pill); border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; padding: 12px 24px; font-size: 16px;
  transition: background .13s ease, transform .13s cubic-bezier(.34,1.56,.64,1), box-shadow .13s ease;
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 18px; }
/* All call-to-action buttons use the bright sunflower yellow (--sunny). */
.btn--primary, .btn--accent { background: var(--sunny); color: var(--espresso); box-shadow: var(--shadow-sm); }
.btn--primary:hover, .btn--accent:hover { background: var(--ochre); color: var(--espresso); }

.cta-group { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 44px; }
.cta-note { font-size: 13px; color: var(--driftwood); }
.cta-note--dark { color: #C9C3AA; }

/* --- Photo cards (white-framed, tilted snapshots) ------------------------- */
.photo { margin: 0; display: inline-block; background: var(--white); padding: 10px; border-radius: var(--radius-xs);
  box-shadow: var(--shadow-photo); transition: transform .38s ease, box-shadow .38s ease; }
.photo:hover { transform: rotate(0deg) translateY(-3px) !important; box-shadow: var(--shadow-xl); }
.photo.has-cap { padding: 10px 10px 0; }
.photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.photo__cap { font-family: var(--font-script); font-size: 22px; color: var(--olive); text-align: center;
  padding: 8px 4px 10px; line-height: 1; }
/* Bare photographic mount (square corners, no fixed ratio) */
.snap { background: var(--white); box-shadow: var(--shadow-photo); padding: 12px; display: inline-block; }
.snap img { display: block; width: 100%; }

/* --- Crayon marks (hand-drawn, tintable) & botanicals -------------------- */
.crayon { display: inline-block; pointer-events: none;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center; }
.crayon--circle { -webkit-mask-image: url('assets/marks/circle-1-web.png'); mask-image: url('assets/marks/circle-1-web.png'); aspect-ratio: 2; }
.crayon--heart1 { -webkit-mask-image: url('assets/marks/heart-1-web.png'); mask-image: url('assets/marks/heart-1-web.png'); aspect-ratio: 0.74; }
.crayon--heart2 { -webkit-mask-image: url('assets/marks/heart-2-web.png'); mask-image: url('assets/marks/heart-2-web.png'); aspect-ratio: 0.72; }
.crayon--scribble2 { -webkit-mask-image: url('assets/marks/scribble-2-web.png'); mask-image: url('assets/marks/scribble-2-web.png'); aspect-ratio: 1.5; }

.botanical { pointer-events: none; user-select: none; height: auto;
  filter: drop-shadow(0 6px 10px rgba(80,54,34,0.22)); }

/* --- Cards & chips -------------------------------------------------------- */
.card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.chip { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--radius-pill); padding: 6px 14px; }
.tag-script { font-family: var(--font-script); color: var(--terracotta); }

/* ==========================================================================
   Section-specific layout
   ========================================================================== */

/* Cart banner + live countdown */
.banner { background: var(--sunny); color: var(--espresso); padding: 10px 24px;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 12px; }
.banner__timer { display: inline-flex; gap: 8px; font-variant-numeric: tabular-nums; }
.banner__timer .cd { display: inline-flex; align-items: baseline; gap: 1px; }
.banner__timer .cd b { min-width: 1.5em; display: inline-block; text-align: right; }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 56px 0; box-sizing: border-box; max-width: 1320px; margin: 0 auto; }
.nav__mark { font-family: var(--font-script); font-size: 34px; color: var(--honey); line-height: 1; white-space: nowrap; text-decoration: none; }
.nav__mark:hover { color: var(--sunny); }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__link { color: #D8D3BE; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
.nav__link:hover { color: var(--honey); }

/* Hero */
.hero { padding: 56px 64px 90px; text-align: center; position: relative; overflow: hidden; }
.hero__badge { display: inline-block; background: var(--sunny); color: var(--espresso); font-size: 12px; font-weight: 700;
  letter-spacing: var(--tracking-caps); border-radius: var(--radius-pill); padding: 9px 20px; transform: rotate(-1deg);
  box-shadow: var(--shadow-sm); margin-bottom: 34px; }
.hero__script { font-family: var(--font-script); font-size: 54px; color: var(--honey); line-height: 1; }
.hero .h1 { margin-top: 10px; }
.hero__lead { font-size: 18px; line-height: var(--leading-normal); color: #EAE5D3; max-width: 600px; margin: 28px auto 0; }
.hero__cta { margin-top: 34px; display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__cta .cta-note { color: #D8D3BE; }
.hero__photos { display: flex; justify-content: center; align-items: flex-end; gap: 34px; margin-top: 60px; }

/* Generic two-column split */
.split { display: grid; gap: 64px; align-items: center; max-width: 1120px; margin: 0 auto; }
.split--shift { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
/* Keep the photo in view while the text column scrolls past */
.split--shift .media-center { position: sticky; top: 90px; }
.split--about { grid-template-columns: 400px minmax(0,1fr); gap: 76px; align-items: start; }
.split--guest { grid-template-columns: 460px 1fr; align-items: start; }
.split--pricing { grid-template-columns: 1fr 420px; gap: 60px; }
.media-center { position: relative; justify-self: center; }

/* Quiz */
.quiz__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.quiz__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; max-width: 1000px; margin: 0 auto; }
.quiz__opt { background: var(--white); border: 2px solid var(--white); border-radius: var(--radius-md);
  font-family: var(--font-body); /* <button> doesn't inherit the page font on its own */
  box-shadow: var(--shadow-sm); padding: 22px 20px; text-align: center; cursor: pointer; transition: transform .18s ease; }
.quiz__opt:hover { transform: translateY(-3px); }
.quiz__opt.is-active { background: #F0D08A; border-color: #CD930B; }
.quiz__opt-tag { font-family: var(--font-script); font-size: 24px; color: var(--olive); margin-bottom: 6px; }
.quiz__opt-label { font-size: 14px; font-weight: 600; color: var(--espresso); line-height: 1.45; }
.quiz__result { max-width: 760px; margin: 34px auto 0; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 34px 40px; }
.quiz__result-kicker { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--terracotta); margin-bottom: 10px; }
.quiz__result-audience { font-family: var(--font-display); font-size: 30px; color: var(--espresso); margin-bottom: 10px; }
.quiz__result-why { font-size: 15.5px; line-height: 1.7; color: var(--bark); margin-bottom: 14px; }
.quiz__fix { display: flex; align-items: center; gap: 12px; background: var(--honey); border-radius: var(--radius-md); padding: 14px 18px; }
.quiz__fix-label { font-family: var(--font-script); font-size: 22px; color: var(--brick); flex: 0 0 auto; }
.quiz__fix-text { font-size: 14px; font-weight: 600; color: var(--espresso); line-height: 1.5; }

/* Offer intro (two-card) */
.offer__cards { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: stretch; max-width: 1020px; margin: 0 auto; }
.offer__card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 38px 38px 42px; position: relative;
  transition: transform .25s ease, box-shadow .25s ease; }
.offer__card--a { transform: rotate(-0.7deg); }
.offer__card--b { transform: rotate(0.7deg); }
/* Straighten + lift on hover */
.offer__card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-lg); }
/* Drift in from the sides as the cards scroll into view. Uses the separate
   `translate` property so it can't fight the rotate/hover transforms. */
@keyframes kr-drift-l { from { translate: -46px 0; opacity: 0; } to { translate: 0 0; opacity: 1; } }
@keyframes kr-drift-r { from { translate: 46px 0; opacity: 0; } to { translate: 0 0; opacity: 1; } }
@supports (animation-timeline: view()) {
  .offer__card--a { animation: kr-drift-l ease-out both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
  .offer__card--b { animation: kr-drift-r ease-out both; animation-timeline: view(); animation-range: entry 5% entry 55%; }
}
.offer__plus { display: flex; align-items: center; justify-content: center; font-family: var(--font-script); font-size: 52px; color: var(--terracotta); }
.offer__label { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); border-radius: var(--radius-pill); padding: 6px 14px; }
.offer__title { font-family: var(--font-script); font-size: 38px; margin: 20px 0 4px; line-height: 1.15; }
.offer__body { font-size: 15px; line-height: 1.7; color: var(--bark); margin: 14px 0 20px; }
.checklist { display: grid; gap: 10px; font-size: 14px; color: var(--bark); }
.checklist div { display: flex; gap: 10px; }
.checklist .ck { font-weight: 700; }

/* Fit check */
.fitcheck__badge { display: inline-flex; align-items: center; gap: 14px; background: var(--parchment);
  border: 1.5px dashed var(--driftwood); border-radius: 8px; padding: 12px 26px; transform: rotate(-0.8deg); box-shadow: var(--shadow-xs); }
.fitcheck__grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; max-width: 1060px; margin: 56px auto 0; }
.fitcheck__list { display: grid; gap: 30px; }
.fitcheck__item { display: flex; gap: 18px; align-items: flex-start; }
.fitcheck__box { flex: 0 0 auto; width: 28px; height: 28px; background: var(--white); border: 2px solid var(--olive);
  border-radius: 8px; box-shadow: var(--shadow-xs); display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: var(--olive); margin-top: 2px; }
.fitcheck__item p { font-size: 16px; line-height: 1.65; color: var(--bark); }
.fitcheck__tag { font-family: var(--font-script); font-size: 21px; color: var(--terracotta); margin-top: 6px; }

/* Proof marquee */
.marquee-wrap { display: grid; gap: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { overflow: hidden; }
.marquee__track { display: flex; gap: 20px; width: max-content; align-items: stretch; }
.marquee__track--1 { animation: kr-marquee 55s linear infinite; }
.marquee__track--2 { animation: kr-marquee-rev 65s linear infinite; }
.marquee__card { flex: 0 0 auto; width: 340px; display: flex; flex-direction: column; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1.5px solid var(--sand); padding: 22px 24px; }
.marquee__text { font-size: 15.5px; line-height: 1.6; color: var(--bark); margin: 0 0 14px; }
.marquee__foot { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.marquee__who { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--driftwood); line-height: 1.3; }

/* Reviewer avatars (from Senja) */
.avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  box-shadow: var(--shadow-xs); background: var(--parchment); }
.avatar--mono { display: inline-flex; align-items: center; justify-content: center; color: var(--cream);
  font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.avatar--lg { width: 50px; height: 50px; }
.avatar--xl { width: 64px; height: 64px; }
.pull-quote .avatar { display: block; margin: 0 auto 14px; }
@keyframes kr-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes kr-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* About */
.about__sticky { position: sticky; top: 90px; }
.about__badges { display: flex; gap: 8px; margin-top: 34px; flex-wrap: wrap; }
.about__badge { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--forest);
  background: var(--honey); border-radius: var(--radius-pill); padding: 7px 14px; }
.about .prose p { font-size: 16.5px; line-height: var(--leading-relaxed); color: var(--bark); }
.sign { font-family: var(--font-script); font-size: 40px; color: var(--olive); transform: rotate(-2deg); margin-top: 28px; }
.sign--honey { color: var(--honey); }

/* "As seen on" press strip */
.seenon { padding: 46px 64px; border-top: 1.5px solid var(--sand); text-align: center; }
.seenon__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--terracotta); margin-bottom: 24px; }
.seenon__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 48px; }
.seenon__logo { font-family: var(--font-display); font-size: 30px; color: var(--driftwood); line-height: 1; letter-spacing: 0.01em; }
.seenon__img { width: auto; opacity: 0.62; }
.seenon__img--invert { filter: invert(1); } /* white source logo -> dark for the cream strip */
@media (max-width: 560px) {
  .seenon { padding: 38px 24px; }
  .seenon__logos { gap: 18px 30px; }
  .seenon__img { transform: scale(0.85); }
}

/* Schedule */
.schedule__list { max-width: 940px; margin: 0 auto; }
.week { margin-bottom: 26px; }
.week__card { display: grid; grid-template-columns: 150px 1fr; gap: 26px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 26px 30px; align-items: start; min-height: 118px; }
.week__num { font-family: var(--font-script); font-size: 30px; line-height: 1; }
.week__date { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--driftwood); margin-top: 8px; }
.week__title { font-family: var(--font-display); font-size: 26px; color: var(--espresso); margin-bottom: 6px; }
.week__desc { font-size: 15px; color: var(--bark); line-height: 1.6; margin-bottom: 14px; }
.week__chips { display: flex; flex-wrap: wrap; gap: 8px; }
/* Chip color variants */
.chip--coaching { background: #EFE9D8; color: #55513C; }
.chip--guest { background: #F0D08A; color: #6E4A32; }
.chip--cowork { background: #E8EAD2; color: #3B4A2C; }
.chip--roast { background: #B0563C; color: #F8F5EA; }
.chip--party { background: #EEBB0E; color: #2C2A1E; }
/* Deal-the-deck scroll effect: week cards you haven't reached yet wait in a
   stack at the bottom of the screen (edges peeking out like a deck of cards),
   and each one settles into place, in order, as you scroll. Pure position:
   sticky — no transforms, no glitches, works in every browser. */
.week { position: sticky; }
.week:nth-child(1) { bottom: 60px; z-index: 7; }
.week:nth-child(2) { bottom: 52px; z-index: 6; }
.week:nth-child(3) { bottom: 44px; z-index: 5; }
.week:nth-child(4) { bottom: 36px; z-index: 4; }
.week:nth-child(5) { bottom: 28px; z-index: 3; }
.week:nth-child(6) { bottom: 20px; z-index: 2; }
.week:nth-child(7) { bottom: 12px; z-index: 1; }

/* Guest speakers */
/* Sticky like the About/Shift photos: the stack pins at top: 90px while
   the text + speaker cards scroll past (needs align-items: start on
   .split--guest so it starts at the top of the row). */
.guest__stack { position: sticky; top: 90px; }
.guest__main { background: var(--white); box-shadow: var(--shadow-photo); padding: 12px; transform: rotate(-2deg); position: relative; width: 460px; }
.guest__mini { background: var(--white); box-shadow: var(--shadow-photo); padding: 9px 9px 34px; transform: rotate(3.5deg);
  position: absolute; right: -20px; bottom: -85px; width: 240px; z-index: 3; }
.guest__mini-cap { position: absolute; left: 0; right: 0; bottom: 8px; text-align: center; font-family: var(--font-script); font-size: 18px; color: var(--espresso); }
.guest__reveals { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
/* Announced speaker cards (these replaced the dashed "?" reveal placeholders) */
.guest-card { background: rgba(248,245,234,0.07); border: 1.5px solid rgba(248,245,234,0.22);
  border-radius: var(--radius-md); padding: 14px 14px 18px; text-align: center; }
.guest-card__photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm);
  display: block; margin-bottom: 12px; }
.guest-card__name { font-family: var(--font-script); font-size: 24px; color: var(--cream); line-height: 1.1; margin-bottom: 6px; }
.guest-card__bio { font-size: 13px; line-height: 1.55; color: #D8D3BE; }

/* Team */
.team__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; max-width: 1020px; margin: 0 auto; }
.team__card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 18px 18px 24px; }
/* Headshots: uniform portrait 4:5 frame; capped so the cards don't get
   towering when the grid collapses on smaller screens. */
.team__photo { width: 100%; aspect-ratio: 4 / 5; max-height: 400px; object-fit: cover; display: block; }
.team__name { font-family: var(--font-script); font-size: 26px; color: var(--olive); margin: 16px 0 2px; }
.team__role { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--terracotta); margin-bottom: 8px; }
.team__bio { font-size: 14px; line-height: 1.6; color: var(--bark); }

/* Photo placeholder (drop a real photo in later) */
.photo-slot { width: 100%; display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--parchment); border: 1.5px dashed var(--driftwood); color: var(--driftwood);
  font-size: 12px; letter-spacing: 0.04em; padding: 12px; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Results */
.result-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1040px; margin: 0 auto 72px; }
.result-badge { display: inline-block; background: var(--honey); border-radius: var(--radius-pill); padding: 8px 18px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--forest); }
.result-stat { position: absolute; top: -18px; right: -14px; background: var(--brick); color: var(--cream);
  border-radius: var(--radius-pill); padding: 8px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  transform: rotate(4deg); box-shadow: var(--shadow-sm); z-index: 3; }
.ba-pair { position: relative; justify-self: center; display: flex; align-items: center; }
.ba-cap { position: absolute; left: 0; right: 0; bottom: 6px; text-align: center; font-family: var(--font-script); font-size: 17px; }
.pull-quote { max-width: 720px; margin: 10px auto 0; text-align: center; position: relative; }
.pull-quote p { font-family: var(--font-display); font-size: 27px; line-height: 1.4; color: var(--espresso); margin-bottom: 14px; }
.pull-quote__who { font-size: 13px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--driftwood); }

/* Pricing */
.price-guarantee { display: flex; gap: 16px; align-items: center; background: rgba(248,245,234,0.08);
  border: 1.5px solid rgba(248,245,234,0.22); border-radius: var(--radius-md); padding: 20px 24px; }
.receipt { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-photo);
  padding: 36px 34px; transform: rotate(1.2deg); position: relative; }
.receipt__title { text-align: center; font-family: var(--font-script); font-size: 30px; color: var(--olive); margin-bottom: 4px; }
.receipt__sub { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--driftwood);
  border-bottom: 1.5px dashed var(--sand); padding-bottom: 16px; margin-bottom: 16px; }
.receipt__lines { display: grid; gap: 10px; font-size: 14px; color: var(--bark); }
.receipt__lines > div { display: flex; justify-content: space-between; }
.receipt__lines .inc { color: var(--driftwood); }
.receipt__total { border-top: 1.5px dashed var(--sand); margin-top: 16px; padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; }
.receipt__total-label { font-size: 13px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--espresso); }
.receipt__price { font-family: var(--font-display); font-size: 44px; color: var(--espresso); }
.receipt__plan { text-align: right; font-size: 12.5px; color: var(--driftwood); margin-top: 2px; }

/* Works-for strip */
.tags-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 30px auto 0; }
.tag-pill { background: rgba(248,245,234,0.1); border: 1.5px solid rgba(248,245,234,0.28); color: var(--cream);
  border-radius: var(--radius-pill); padding: 10px 20px; font-size: 14px; font-weight: 600; }

/* The niche objection ("That's great Kelsey, but my business is different.") */
.objection { position: relative; }
.objection__inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.objection__head { position: relative; display: inline-block; }
.objection__title { font-size: 54px; line-height: 1.14; }
.objection__heard { position: absolute; right: -30px; top: -34px; font-family: var(--font-script);
  font-size: 26px; color: var(--honey); transform: rotate(6deg); white-space: nowrap; }
.objection__prose { display: grid; gap: 16px; font-size: 16.5px; line-height: 1.75; color: #E9E4D2;
  text-align: left; max-width: 640px; margin: 30px auto 0; }
.objection__prose p { margin: 0; }
.objection__marquee { margin-top: 44px; }
.marquee__track--pills { animation: kr-marquee 40s linear infinite; gap: 14px; }
.objection__closer { text-align: center; font-family: var(--font-script); font-size: 28px; color: var(--sunny);
  margin-top: 26px; transform: rotate(-1deg); position: relative; }

/* Tilted artwork polaroids, hand-placed off the sides. Hidden below 1200px —
   narrower than that and they'd crowd the text column. */
.objection__polaroid { position: absolute; margin: 0; display: none; background: var(--white);
  box-shadow: var(--shadow-photo); transform: rotate(var(--tw, 0deg)); }
.objection__polaroid img:not(.botanical) { width: 100%; object-fit: cover; display: block; }
.objection__polaroid--seascape { top: 268px; left: -38px; width: 218px; padding: 9px 9px 26px; z-index: 2; }
.objection__polaroid--seascape img:not(.botanical) { height: 168px; }
.objection__polaroid--sketchbook { top: 433px; left: 79px; width: 154px; padding: 7px 7px 20px; z-index: 3; }
.objection__polaroid--sketchbook img:not(.botanical) { height: 104px; }
.objection__polaroid--florals { top: 212px; right: -23px; width: 212px; padding: 9px 9px 26px; z-index: 2; }
.objection__polaroid--florals img:not(.botanical) { height: 162px; }
.objection__polaroid--greenhouse { top: 125px; right: 101px; width: 160px; padding: 8px 8px 22px; z-index: 2; }
.objection__polaroid--greenhouse img:not(.botanical) { height: 120px; }
@media (min-width: 1200px) { .objection__polaroid { display: block; } }
/* Slide in from the sides as they scroll into view (same progressive
   enhancement as the offer cards — static image without support). */
@keyframes kr-slide-l { from { opacity: 0; transform: translateX(-140px) rotate(-9deg); } to { opacity: 1; transform: translateX(0) rotate(var(--tw, -3deg)); } }
@keyframes kr-slide-r { from { opacity: 0; transform: translateX(140px) rotate(9deg); } to { opacity: 1; transform: translateX(0) rotate(var(--tw, 3deg)); } }
@supports (animation-timeline: view()) {
  .objection__polaroid--seascape { animation: kr-slide-l ease-out both; animation-timeline: view(); animation-range: entry 5% entry 45%; }
  .objection__polaroid--sketchbook { animation: kr-slide-l ease-out both; animation-timeline: view(); animation-range: entry 10% entry 50%; }
  .objection__polaroid--florals { animation: kr-slide-r ease-out both; animation-timeline: view(); animation-range: entry 12% entry 52%; }
  .objection__polaroid--greenhouse { animation: kr-slide-r ease-out both; animation-timeline: view(); animation-range: entry 24% entry 64%; }
}

/* Stat callout (Why this, why now) */
.stat-callout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0; }
.stat-card { background: var(--white); border: 1.5px solid var(--sand); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 24px 20px; text-align: center; }
.stat-card__num { font-family: var(--font-display); font-size: 42px; line-height: 1; }
.stat-card__label { font-size: 13.5px; line-height: 1.55; color: var(--bark); margin-top: 10px; }

/* Post toggle (before/after) */
.toggle-btns { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.toggle-btn { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  border-radius: var(--radius-pill); padding: 11px 22px; cursor: pointer; border: 2px solid var(--cream);
  background: transparent; color: var(--cream); }
.toggle-btn.is-active { background: var(--cream); color: var(--espresso); }
.post-demo { display: grid; grid-template-columns: 440px 320px; gap: 40px; justify-content: center; align-items: start; }
.post-card { background: var(--white); box-shadow: var(--shadow-photo); padding: 14px 14px 20px; transform: rotate(-1deg); position: relative; }
.post-card > img { width: 100%; height: 300px; object-fit: cover; display: block; }
.post-caption { font-size: 14px; line-height: 1.6; color: var(--espresso); margin: 14px 4px 8px; }
.post-stats { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; margin: 0 4px; }
.post-comments-label { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); color: #D8D3BE; margin-bottom: 12px; }
.post-comments { display: grid; gap: 10px; }
.post-comment { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); padding: 12px 16px; }
.post-comment__who { font-size: 11.5px; font-weight: 700; color: var(--olive); margin-bottom: 3px; }
.post-comment__text { font-size: 13.5px; line-height: 1.5; color: var(--bark); }
.post-note { font-family: var(--font-script); font-size: 27px; color: var(--sunny); margin-top: 20px; transform: rotate(-2deg); }
/* Buyer-mode sale overlays */
.notif { position: absolute; display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px;
  box-shadow: 0 10px 26px rgba(40,30,20,0.28); padding: 10px 18px 10px 10px; z-index: 3; }
.notif__logo { width: 44px; height: 44px; border-radius: 12px; background: #635BFF; display: flex; align-items: center;
  justify-content: center; font-size: 26px; font-weight: 700; color: #fff; }
.notif__app { font-size: 15px; font-weight: 700; color: #1A1A1A; line-height: 1.2; }
.notif__msg { font-size: 13.5px; color: #1A1A1A; line-height: 1.3; }
.notif--1 { top: 26px; right: -34px; animation: kr-notif .5s ease-out .4s both; }
.notif--2 { top: 96px; right: -20px; z-index: 2; animation: kr-notif .5s ease-out 1.3s both; }
.sold-stamp { position: absolute; bottom: 175px; left: -26px; background: var(--brick); color: var(--cream);
  border: 3px solid var(--cream); border-radius: var(--radius-pill); padding: 14px 26px; font-family: var(--font-display);
  font-size: 32px; letter-spacing: 0.1em; box-shadow: var(--shadow-md); z-index: 3; animation: kr-sold .45s ease-out 2.1s both; }
@keyframes kr-notif { 0% { opacity: 0; transform: translateX(70px) scale(0.9); } 65% { transform: translateX(-6px) scale(1.02); } 100% { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes kr-sold { 0% { opacity: 0; transform: rotate(-14deg) scale(2.2); } 70% { transform: rotate(-12deg) scale(0.94); } 100% { opacity: 1; transform: rotate(-12deg) scale(1); } }
.is-hidden { display: none !important; }

/* Benefit stack */
.benefits__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; max-width: 1060px; margin: 0 auto; }
.benefit { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 26px 26px 28px; }
.benefit__tag { font-family: var(--font-script); font-size: 22px; color: var(--terracotta); margin-bottom: 10px; }
.benefit__title { font-family: var(--font-display); font-size: 24px; color: var(--espresso); margin-bottom: 8px; }
.benefit__desc { font-size: 14px; line-height: 1.6; color: var(--bark); }
.benefit-outro { max-width: 700px; margin: 52px auto 0; text-align: center; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 34px 40px; }
.benefit-outro__script { font-family: var(--font-script); font-size: 28px; color: var(--olive); margin-bottom: 8px; }
.benefit-outro__big { font-family: var(--font-display); font-size: 27px; line-height: 1.35; color: var(--espresso); }

/* Testimonial quotes */
.quote-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; max-width: 880px; margin: 0 auto; }
.quote-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1.5px solid var(--sand); padding: 28px 30px; }
.quote-card__tag { font-family: var(--font-script); font-size: 22px; margin-bottom: 8px; }
.quote-card__text { font-size: 16.5px; line-height: 1.7; color: var(--bark); margin-bottom: 16px; }
.quote-card__foot { display: flex; align-items: center; gap: 12px; }
.quote-card__who { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--driftwood); line-height: 1.3; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq__list { display: grid; gap: 14px; }
.faq details { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 22px 26px; }
.faq summary { font-family: var(--font-display); font-size: 21px; color: var(--espresso); display: flex;
  justify-content: space-between; align-items: center; gap: 16px; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { font-family: var(--font-body); color: var(--terracotta); font-size: 22px; font-weight: 700; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq p { font-size: 15px; line-height: 1.7; color: var(--bark); margin-top: 14px; }

/* Footer */
.footer { padding: 30px 56px; font-size: 12px; letter-spacing: 0.06em; color: #C9C3AA;
  border-top: 1.5px solid rgba(248,245,234,0.18); max-width: 1320px; margin: 0 auto; box-sizing: border-box; }
.footer a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--honey); }
.footer__disclaimer { font-size: 11px; line-height: 1.65; letter-spacing: 0.02em; color: rgba(248,245,234,0.5);
  max-width: 960px; margin: 0 auto 22px; text-align: center; }
.footer__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer__mark { font-family: var(--font-script); font-size: 28px; color: var(--honey); }

.spacer { height: 80px; }

/* Legal pages (terms.html, privacy.html) */
.legal { max-width: 720px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-weight: 400; font-size: 46px; line-height: var(--leading-tight); color: var(--espresso); }
.legal__updated { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--driftwood); margin: 10px 0 30px; }
.legal h2 { font-family: var(--font-display); font-weight: 400; font-size: 26px; color: var(--espresso); margin: 34px 0 10px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.75; color: var(--bark); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; display: grid; gap: 10px; }
.legal strong { color: var(--espresso); }

/* ==========================================================================
   Responsive — collapse the fixed desktop layout for tablet & phone
   ========================================================================== */
@media (max-width: 960px) {
  .section { padding: 64px 28px; }
  .nav { padding: 20px 28px 0; }
  .nav__link { display: none; }        /* keep just the wordmark + "Save my seat" on small screens */
  .hero { padding: 40px 24px 64px; }
  .h1 { font-size: 56px; }
  .hero__script { font-size: 40px; }
  .h2, .h2--light, .h2--dark { font-size: 36px; }

  /* Stack every two-column layout. minmax(0,1fr) lets the track shrink BELOW
     the width of a fixed-size image — without it, a 400px photo widens the
     whole row and pushes the text off-screen. */
  .split--shift, .split--about, .split--guest, .split--pricing,
  .fitcheck__grid, .result-row { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .about__sticky, .split--shift .media-center, .guest__stack { position: static; }

  /* Decorative accents are hand-placed for desktop and hang off the edges —
     hide the ones that would clip or crowd the copy on smaller screens. */
  .botanical { display: none; }
  .crayon--heart1, .crayon--scribble2 { display: none; }
  .objection__heard { display: none; }
  .objection__title { font-size: 38px; }

  /* Never let a fixed-width photo or card exceed the screen */
  .photo, .snap, .guest__main, .post-card, .receipt { max-width: 100%; }

  /* Card grids */
  .quiz__grid, .team__grid, .benefits__grid, .guest__reveals { grid-template-columns: 1fr 1fr; }
  .offer__cards { grid-template-columns: 1fr; gap: 40px; }
  .offer__plus { padding: 8px 0; }
  .offer__card--a, .offer__card--b, .receipt { transform: none; }  .post-demo { grid-template-columns: 1fr; gap: 28px; }
  .post-card { max-width: 440px; margin: 0 auto; }
  .quote-grid { grid-template-columns: 1fr; }

  /* RESULTS: image(s) on top, and un-stack the overlapping collage into a
     clean single image (row 1) or side-by-side before/after (rows 2 & 3). */
  .result-row > .media-center, .result-row > .ba-pair { order: -1; }
  .media-center { width: 100%; text-align: center; }
  .result-row .media-center .snap:nth-of-type(2) { display: none; }
  .ba-pair { justify-content: center; gap: 10px; }
  .ba-pair .snap { position: static !important; margin: 0 !important; max-width: 47%; }
  .ba-pair .snap:nth-of-type(3) { display: none; }
  .result-stat { right: 0; }

  /* GUEST (Mia): headshot drops below the main video, no overlap */
  .guest__stack { text-align: center; }
  .guest__main { margin: 0 auto; }
  .guest__mini { position: static; right: auto; bottom: auto; width: 200px; max-width: 72%; margin: 16px auto 0; }

  /* Buyer-post overlays: keep the Stripe notifs & SOLD stamp on-screen */
  .notif--1, .notif--2 { right: 6px; }
  .sold-stamp { left: 6px; }

  /* WEEKLY SCHEDULE: full-width rows with a "week + date" header line.
     The deal-the-deck effect is desktop-only — cards read normally here. */
  .week { position: static; }
  .week__card { grid-template-columns: 1fr; gap: 6px; padding: 22px 24px; }
  .week__card > div:first-child { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .week__date { margin-top: 0; }
  .week__title { font-size: 22px; margin-top: 6px; }
}
@media (max-width: 560px) {
  .section { padding: 52px 20px; }
  .h1 { font-size: 42px; }
  .h2, .h2--light, .h2--dark { font-size: 30px; }
  .objection__title { font-size: 30px; }
  .legal h1 { font-size: 34px; }
  .hero__script { font-size: 32px; }
  .quiz__grid, .team__grid, .benefits__grid, .guest__reveals, .stat-callout { grid-template-columns: 1fr; }
  .footer__row { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==========================================================================
   Mobile fixes & polish — a second pass on top of the blocks above.
   Everything here only applies at phone/tablet widths; desktop is untouched.
   ========================================================================== */
@media (max-width: 960px) {
  /* Several section titles set their size inline in index.html, which beats
     the responsive rules above. !important wins the phone back. */
  .h2, .h2--light, .h2--dark { font-size: 36px !important; }
  h2.display { font-size: 44px !important; }
  /* No single-word last lines on headings (ignored by older browsers) */
  .h1, .h2, .h3, .display, .week__title, .benefit__title { text-wrap: balance; }

  /* TESTIMONIALS: the auto-scroll marquee becomes a swipeable row. iOS
     pauses CSS animations in Low Power / Reduce Motion modes, which froze
     the cards in place — a real scroller always works. (script.js skips
     the card duplication below desktop width for the same reason.) */
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee__track { animation: none !important; padding: 4px 20px; }
  .marquee__card { width: min(300px, 78vw) !important; scroll-snap-align: center; }
  .marquee-wrap { -webkit-mask-image: none; mask-image: none; }

  /* Big hand-placed photos: cap them so one image never fills a whole
     phone screen (the widths are inline in index.html, hence !important) */
  .split--shift .photo, .split--about .photo, .fitcheck__grid .photo { width: min(250px, 72vw) !important; }

  /* Team headshots: landscape crop, roughly half the height */
  .team__photo { aspect-ratio: 3 / 2; max-height: 210px; }

  /* The offer cards' drift-in animation shoves the full-width cards past
     the screen edge mid-scroll — skip it here */
  .offer__card--a, .offer__card--b { animation: none; }

  /* RESULTS: keep the before/after pairs + their stat badge on-screen */
  .ba-pair { max-width: 100%; }
  .result-stat { right: 6px; }

  /* Buyer-post demo: the SOLD stamp is anchored to the card bottom, but the
     card is much taller here — pin it to the photo, not the caption text */
  .sold-stamp { bottom: auto; top: 230px; }

  /* Buttons that wrap to two lines stay centered */
  .btn { text-align: center; }
  .cta-note { text-align: center; }

  /* iOS zooms the whole page when focusing inputs smaller than 16px */
  .wl-field input { font-size: 16px; }
}
@media (max-width: 560px) {
  .h2, .h2--light, .h2--dark { font-size: 30px !important; }
  h2.display { font-size: 34px !important; }
  .pull-quote p { font-size: 22px !important; }

  /* Compact hero: tighter spacing and three small polaroids, so the
     headline + CTA sit close to the fold */
  .hero { padding: 32px 20px 48px; }
  .hero__badge { margin-bottom: 24px; }
  .hero__lead { margin-top: 20px; font-size: 16px; }
  .hero__cta { margin-top: 26px; }
  .hero__photos { margin-top: 34px; gap: 10px; }
  .hero__photos .photo { width: 30% !important; margin-bottom: 0 !important; padding: 6px; }
  .hero__photos .photo__cap { font-size: 15px; padding: 5px 2px 7px; }

  /* Long-form text: monospace runs wide, and on a narrow line 17px reads
     as a wall — one notch smaller keeps the same copy far more scannable */
  .prose p { font-size: 15.5px; }
  .objection__prose { font-size: 15.5px; }

  /* Quiz result: stack "the fix →" above its text instead of squeezing
     the text into a skinny column */
  .quiz__fix { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Guest speaker cards: photo-left mini rows, so three stacked cards
     don't cost three screens of scrolling */
  .guest-card { display: grid; grid-template-columns: 92px 1fr; gap: 14px;
    align-items: center; text-align: left; padding: 12px 14px; }
  .guest-card__photo { margin-bottom: 0; }
  .guest-card__name { font-size: 22px; margin-bottom: 4px; }
  .guest-card__bio { font-size: 12.5px; }

  /* One-line countdown banner (drop the "cohort begins…" tail) */
  .banner__label:last-of-type { display: none; }

  /* Footer fine print was 11px at 50% opacity — barely legible on phones */
  .footer__disclaimer { font-size: 12px; color: rgba(248,245,234,0.65); }
}

/* ==========================================================================
   Waitlist page (waitlist.html)
   ========================================================================== */
.wl-hero { padding: 64px 64px 40px; text-align: center; position: relative; }
.wl-hero__badge { display: inline-block; background: var(--parchment); color: var(--bark); font-size: 12px; font-weight: 700;
  letter-spacing: var(--tracking-caps); border-radius: var(--radius-pill); padding: 9px 20px; transform: rotate(-1deg);
  box-shadow: var(--shadow-sm); margin-bottom: 34px; }
.wl-hero__script { font-family: var(--font-script); font-size: 54px; color: var(--honey); line-height: 1; }
.wl-hero .h1 { font-size: 68px; line-height: 1.06; margin: 10px auto 0; max-width: 900px; }
.wl-hero__lead { max-width: 720px; margin: 26px auto 0; display: grid; gap: 14px; }
.wl-hero__lead p { font-size: 18px; line-height: var(--leading-normal); color: #EAE5D3; }

/* The white sign-up / success card */
.wl-card-wrap { max-width: 560px; margin: 44px auto 0; position: relative; }
.wl-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 38px 42px 40px; transform: rotate(-0.5deg); text-align: left; }
.wl-card__script { font-family: var(--font-script); font-size: 32px; color: var(--olive); margin-bottom: 4px; }
.wl-fields { display: grid; gap: 14px; }
.wl-field { display: grid; gap: 6px; }
.wl-field label { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-caps); color: var(--bark); }
.wl-field input { font-family: var(--font-body); font-size: 15px; color: var(--espresso); background: var(--white);
  border: 1.5px solid var(--sand); border-radius: var(--radius-md); padding: 13px 16px; outline: none; width: 100%; }
.wl-field input:focus { border-color: var(--olive); }
.wl-submit { width: 100%; margin-top: 8px; }
.wl-submit[disabled] { opacity: 0.65; cursor: default; }
.wl-card__fineprint { font-size: 12.5px; color: var(--driftwood); margin-top: 16px; text-align: center; }
.wl-card__error { font-size: 13px; font-weight: 600; color: #A23520; margin-top: 12px; text-align: center; }
.wl-card--success { padding: 46px 42px 44px; text-align: center; position: relative; }
.wl-success__script { font-family: var(--font-script); font-size: 44px; color: var(--olive); line-height: 1.1; }
.wl-card--success p { font-size: 15px; line-height: 1.7; color: var(--bark); max-width: 380px; margin: 16px auto 0; }

/* "A note from K" */
.wl-note { padding: 70px 64px 96px; display: grid; grid-template-columns: 320px 1fr; gap: 72px;
  align-items: center; max-width: 1020px; margin: 0 auto; }
.wl-note__media { position: relative; justify-self: center; }
.wl-note__title { font-size: 42px; margin: 14px 0 18px; }
.wl-note__prose { display: grid; gap: 14px; }
.wl-note__prose p { font-size: 16.5px; line-height: var(--leading-normal); color: #E9E4D2; }
.wl-note__prose strong { color: var(--cream); }
.wl-note__sign { font-family: var(--font-script); font-size: 46px; color: var(--honey); line-height: 1; margin-top: 26px; }

.nav__tag { text-align: right; margin-left: 16px; }

/* Waitlist page — tablet & phone (mirrors the main page's breakpoints) */
@media (max-width: 960px) {
  .nav__tag { display: none; }   /* same treatment as the main page's nav links */
  .wl-hero { padding: 44px 24px 32px; }
  .wl-hero .h1 { font-size: 48px; }
  .wl-hero__script { font-size: 40px; }
  .wl-card { padding: 30px 26px 32px; }
  .wl-card--success { padding: 38px 26px 36px; }
  .wl-note { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 56px 28px 72px; }
  .wl-note__title { font-size: 34px; }
}
@media (max-width: 560px) {
  .wl-hero .h1 { font-size: 36px; }
  .wl-hero__script { font-size: 32px; }
  .wl-hero__badge { max-width: 100%; white-space: normal; line-height: 1.5; }
  .wl-success__script { font-size: 34px; }
  .wl-note__media .photo { width: 100% !important; max-width: 300px; }
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track--1, .marquee__track--2, .marquee__track--pills { animation: none; }
  /* No sweep — restore the plain solid highlight/underline (their sweep
     gradients start at 0% width, so killing the animation alone would
     hide them) */
  .hl { animation: none; background: var(--honey); }
  .uline { animation: none; background-size: 100% 2px; }
  .notif, .sold-stamp { animation: none; }
  .week { position: static; }
  .offer__card--a, .offer__card--b { animation: none; }
  .objection__polaroid { animation: none; }
  html { scroll-behavior: auto; }
}
