/* Frequency First — Design System v1, extracted verbatim from the 79-Day page
   (79-day-challenge/index.html) so both pages stay on identical tokens.
   Locked 2026-05-17: 4 colors + white, 2 fonts, 8 type sizes, 4 weights. */
:root {
  /* ============================================================
     CARSON FREQUENCY FIRST DESIGN SYSTEM v1
     Locked: 2026-05-17. Every Carson page uses these tokens.
     8 sizes total (7 + price-hero). 4 weights. 2 fonts. 4 colors + white.
     Never bespoke. Never one-off.
     ~/.claude/plans/okay-i-need-to-wild-clover.md
     ============================================================ */

  /* COLORS — 4 + white */
  --divine-white: #FBFBFB;       /* PAPER */
  --warm-cream:   #EDE7D8;       /* alt section bg */
  --cosmic-night: #1A1A1A;       /* INK — primary text */
  --smoke:        #6B5E52;       /* INK-QUIET — secondary / meta */
  --gold:         #B38A32;       /* GOLD-ACCENT */
  --gold-deep:    #9F7838;       /* GOLD-FOCUS — final price + soul */
  --gold-border:  rgba(179,138,50,0.25);
  --gold-border-card: rgba(179,138,50,0.6);
  --gold-gradient: linear-gradient(135deg, #BE9A5A 0%, #9F7838 100%);

  /* Aliases kept for back-compat */
  --stone:        #1A1A1A;
  --gold-rich:    #BE9A5A;
  --text-soft:    #3D3530;

  /* FONTS — 2 only */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', sans-serif;

  /* TYPE SCALE — 7 tokens + 1 price exception. THE ENTIRE TYPOGRAPHY UNIVERSE. */
  --t-hero:       clamp(3rem, 4.5vw, 4.5rem);     /* 48–72px — H1 only */
  --t-display:    clamp(2.25rem, 3.4vw, 3rem);    /* 36–48px — H2 only */
  --t-title:      clamp(1.875rem, 2.6vw, 2.25rem);/* 30–36px — H3, FAQ Q, punchline soul lines */
  --t-lead:       1.75rem;                        /* 28px — leads, soul lines, pull-quotes, testimonials, totals */
  --t-body:       1.375rem;                       /* 🚨 22px — ALL READABLE TEXT — THE ABSOLUTE FLOOR. Nothing below this on Carson pages. */
  --t-meta:       1.375rem;                       /* 🚨 22px — DEPRECATED ALIAS resolving to --t-body */
  --t-eyebrow:    1.375rem;                       /* 🚨 22px — DEPRECATED ALIAS resolving to --t-body */
  --t-price-hero: clamp(3.5rem, 5.5vw, 5rem);     /* 56–80px — FINAL price only */

  /* WEIGHTS — 4 only */
  --w-light:   300;
  --w-regular: 400;
  --w-medium:  500;
  --w-bold:    600;

  /* Tracking */
  --ls-eyebrow: 0.14em;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--divine-white); }
body {
  background: var(--divine-white);
  color: var(--cosmic-night);
  font-family: var(--sans);
  font-weight: var(--w-regular);
  line-height: 1.75;
  overflow-x: hidden;
  font-size: var(--t-body);
}
/* Sticky header — early-bird bar + nav move together as one flush unit (no magic offsets) */
.site-header { position: sticky; top: 0; z-index: 200; }

/* ---- NAV ---- */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(251,251,251,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(179,138,50,0.15);
}
.nav-brand {
  font-family: var(--serif); font-size: var(--t-meta); font-weight: var(--w-regular);
  letter-spacing: 0.1em; color: var(--gold); text-decoration: none;
  text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--smoke); text-decoration: none; font-weight: var(--w-medium);
  opacity: 1; transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
/* BUTTONS / NAV CTA — UI controls, premium small (Apple/Hermès/Aesop pattern).
   These are the ONLY elements allowed below the 22px floor — they're tracked uppercase, not readable body. */
.nav-cta {
  font-family: var(--sans); font-size: 0.875rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-border); padding: 0.6rem 1.1rem;
  text-decoration: none; transition: all 0.25s; cursor: pointer; background: none; font-weight: var(--w-bold);
}
.nav-cta:hover { background: var(--gold-gradient); color: #fff; border-color: transparent; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS — small tracked uppercase, premium pattern ---- */
.btn-gold {
  display: inline-block; font-family: var(--sans); font-size: 0.9375rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold-gradient);
  color: #fff; padding: 0.95rem 2rem; text-decoration: none;
  transition: opacity 0.25s; border: none; cursor: pointer; font-weight: var(--w-bold);
  line-height: 1.3;
}
.btn-gold:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block; font-family: var(--sans); font-size: 0.9375rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--gold-border); color: var(--gold);
  padding: 0.95rem 2rem; text-decoration: none; transition: all 0.25s;
  background: none; cursor: pointer; font-weight: var(--w-bold); line-height: 1.3;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(179,138,50,0.06); }
.btn-ghost-white {
  display: inline-block; font-family: var(--sans); font-size: 0.9375rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7); color: #fff;
  padding: 0.95rem 2rem; text-decoration: none; transition: all 0.25s;
  background: none; cursor: pointer; font-weight: var(--w-bold); line-height: 1.3;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.15); }
.btn-gold-solid-white {
  display: inline-block; font-family: var(--sans); font-size: 0.9375rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: #fff; color: var(--gold-deep);
  padding: 0.95rem 2rem; text-decoration: none; transition: opacity 0.25s;
  border: none; cursor: pointer; font-weight: var(--w-bold); line-height: 1.3;
}
.btn-gold-solid-white:hover { opacity: 0.9; }

/* ---- UTILITIES — eyebrows all use --t-eyebrow token ---- */
.gold-line { width: 40px; height: 1px; background: var(--gold); margin: 1.25rem 0; }
.gold-line-center { margin: 1.25rem auto; }
.section-eyebrow {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: var(--w-bold);
  display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::before { content: ''; flex: 0 0 28px; height: 1px; background: var(--gold); }
.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(179,138,50,0.25); }
.eyebrow-centered {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold); font-weight: var(--w-bold);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.eyebrow-centered::before,
.eyebrow-centered::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

/* ============================================================
   HERO — FLIPPED: PHOTO LEFT, COPY RIGHT
   ============================================================ */
.hero-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: start;
}

/* Photo is now the LEFT column */
.hero-photo-col {
  position: relative;
  overflow: hidden;
  order: 1;
  align-self: stretch;
  background-image: url('/photos/carson/hero.jpg');
  background-size: cover;
  background-position: center 72%;
}
.hero-photo-col::after {
  content: '';
  position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(179,138,50,0.5), transparent);
  z-index: 1;
}

/* Copy is now the RIGHT column */
.hero-copy-col {
  background: var(--divine-white);
  padding: calc(72px + 5rem) 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  order: 2;
}

.hero-eyebrow {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* H1 = --t-hero (DISPLAY scale, hero only) */
h1 {
  font-family: var(--serif);
  font-size: var(--t-hero);
  font-weight: var(--w-light); line-height: 1.06;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  background: linear-gradient(110deg, #9F7838 0%, #BE9A5A 25%, #F0D080 45%, #D4A840 55%, #BE9A5A 75%, #9F7838 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

/* Hero copy elements all use tokens */
.hero-sub {
  font-family: var(--serif); font-size: var(--t-lead);
  font-style: italic; color: var(--cosmic-night); line-height: 1.5;
  margin-bottom: 0.6rem; font-weight: var(--w-regular);
}
.hero-body {
  font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75;
  margin-bottom: 0.6rem; font-weight: var(--w-regular);
}
.hero-mechanism {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow);
  color: var(--gold); margin-bottom: 0; text-transform: uppercase; font-weight: var(--w-bold);
}
.hero-dot { font-size: var(--t-meta); line-height: 1; vertical-align: middle; }
.hero-dates {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold); margin: 0.75rem 0 1.25rem;
  padding: 0.625rem 0; border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  line-height: 1.9; font-weight: var(--w-bold);
}
.hero-btns { display: flex; flex-direction: column; gap: 1rem; }
.hero-btns-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   GOLD QUOTE SECTIONS
   ============================================================ */
.gold-quote-section {
  background: var(--gold-gradient);
  padding: 5rem 4rem;
  text-align: center;
}
.gold-quote-inner {
  max-width: 920px; margin: 0 auto;
  display: flex; align-items: center; gap: 4rem;
  text-align: left;
}
.gold-quote-img {
  flex: 0 0 220px; width: 220px; height: 280px;
  object-fit: cover; object-position: center top;
  display: block;
  border: 1px solid rgba(255,255,255,0.3);
  outline: 6px solid rgba(255,255,255,0.1);
  outline-offset: 4px;
}
.gold-quote-text { flex: 1; }
.gold-quote-section blockquote {
  font-family: var(--serif); font-size: var(--t-lead);
  font-style: italic; font-weight: var(--w-light);
  color: #fff; line-height: 1.5; margin-bottom: 1.25rem;
}
.gold-quote-section .quote-attr {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 2rem;
}

/* ============================================================
   GENERAL SECTIONS
   ============================================================ */
.section-white { background: var(--divine-white); padding: 8rem 4rem; }
.section-cream { background: var(--warm-cream); padding: 8rem 4rem; }
.section-inner { max-width: 780px; margin: 0 auto; }
.section-inner-wide { max-width: 960px; margin: 0 auto; }

/* H2 = --t-display (SECTION scale, section headlines only) */
.section-white h2,
.section-cream h2 {
  font-family: var(--serif); font-size: var(--t-display);
  font-weight: var(--w-light); color: var(--cosmic-night); line-height: 1.08; margin-bottom: 2rem;
}
.section-white h2 em,
.section-cream h2 em { font-style: italic; color: var(--gold); }

/* Body paragraph = --t-body (THE WORKHORSE) */
.section-white p,
.section-cream p {
  font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; margin-bottom: 1.25rem; font-weight: var(--w-regular);
}
.section-white p strong,
.section-cream p strong { color: var(--cosmic-night); font-weight: var(--w-bold); }

/* ---- TESTIMONIAL BAND with photo ---- */
.testi-band {
  background: var(--divine-white);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 5rem 4rem;
}
.testi-band-inner {
  max-width: 920px; margin: 0 auto;
  display: flex; align-items: center; gap: 4rem;
}
.testi-band-img {
  flex: 0 0 220px; width: 220px; height: 280px;
  object-fit: cover; object-position: center top;
  display: block;
  border: 1px solid var(--gold-border);
  outline: 6px solid rgba(179,138,50,0.08);
  outline-offset: 4px;
}
.testi-band-text { flex: 1; }

/* Testimonial quote = --t-lead, NOT italic */
.testi-band-text blockquote {
  font-family: var(--serif); font-size: var(--t-lead);
  font-style: normal; color: var(--cosmic-night); line-height: 1.6; margin-bottom: 1.25rem;
  font-weight: var(--w-regular);
}
/* Testimonial name = --t-eyebrow, gold uppercase */
.testi-band-attr {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold);
}

/* ============================================================
   METHOD — phase cards
   ============================================================ */
.method-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.phase-card {
  padding: 3rem 2.5rem;
  border: 1.5px solid rgba(179,138,50,0.45);
  border-radius: 4px;
  position: relative;
  background: #fff;
  box-shadow: inset 0 0 0 0 rgba(179,138,50,0), 0 2px 12px rgba(179,138,50,0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.phase-card:hover {
  background: #fffdf7;
  border-color: rgba(179,138,50,0.85);
  box-shadow: inset 0 0 40px rgba(179,138,50,0.07), 0 4px 28px rgba(179,138,50,0.18);
}
/* Phase number = decorative, kept as display element (single role, single use per card) */
.phase-num {
  font-family: var(--serif); font-size: var(--t-hero); font-weight: var(--w-light);
  color: var(--gold); line-height: 1; margin-bottom: 0.25rem; opacity: 0.55;
}
.phase-days {
  font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; font-weight: var(--w-bold);
  color: var(--gold); margin-bottom: 0.75rem;
}
/* Phase name = --t-title (H3 role) */
.phase-name {
  font-family: var(--serif); font-size: var(--t-title);
  font-weight: var(--w-light); color: var(--cosmic-night); margin-bottom: 0.75rem; line-height: 1.1;
}
.phase-desc {
  font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; font-weight: var(--w-regular);
}

/* ============================================================
   DECK SECTION
   ============================================================ */
.deck-place-num {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.deck-place-num::after { content: ''; flex: 1; height: 1px; background: rgba(179,138,50,0.2); }
/* Deck section sub-head = --t-title (H3) */
.deck-sub-head {
  font-family: var(--serif); font-size: var(--t-title);
  font-weight: var(--w-light); color: var(--cosmic-night); margin-bottom: 1.25rem; line-height: 1.2;
}
.deck-sub-label {
  display: block; font-family: var(--sans); font-size: var(--t-eyebrow);
  letter-spacing: var(--ls-eyebrow); color: var(--smoke); font-weight: var(--w-regular); margin-top: 0.4rem;
  text-transform: uppercase;
}
.deck-sub-section { margin-bottom: 5.5rem; padding-bottom: 5.5rem; }
.deck-sub-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* Physical deck 2-col layout */
.deck-physical-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 1.75rem 0 1.25rem;
}
.deck-physical-img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
}
.deck-physical-text p {
  font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; margin-bottom: 1.1rem; font-weight: var(--w-regular);
}
.deck-physical-text p:last-child { margin-bottom: 0; }
.deck-physical-text p em {
  font-style: italic; color: var(--smoke);
}
.deck-physical-text p strong { font-weight: var(--w-bold); }

.deck-features { display: flex; flex-direction: column; gap: 0.9rem; margin: 1.5rem 0 1.25rem; }
.deck-feature { font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; position: relative; padding-left: 1.4rem; font-weight: var(--w-regular); }
.deck-feature::before { content: '\2726'; color: var(--gold); font-size: 0.55rem; position: absolute; left: 0; top: 0.42rem; }
.deck-app-header { text-align: center; margin-bottom: 1.5rem; }
.deck-app-eyebrow {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
/* Deck app question = lead italic (a quote) */
.deck-app-question { font-family: var(--serif); font-size: var(--t-body); font-style: italic; color: var(--smoke); font-weight: var(--w-regular); }
.deck-app-cards { display: flex; gap: 14px; justify-content: center; }
.deck-card-wrap { border-radius: 12px; overflow: hidden; flex: 0 0 170px; width: 170px; aspect-ratio: 1122/1724; box-shadow: 0 8px 32px rgba(26,26,26,0.12); }
.deck-card-wrap img { display: block; width: 108%; height: 108%; margin-left: -4%; margin-top: -4%; object-fit: cover; }

/* ============================================================
   RHYTHM — NUMBERED LIST
   ============================================================ */
/* Rhythm subhead = --t-lead italic (lead-level subhead) */
.rhythm-sub { font-family: var(--serif); font-size: var(--t-lead); font-style: italic; color: var(--cosmic-night); margin-bottom: 2rem; font-weight: var(--w-light); }
.rhythm-numbered { list-style: none; counter-reset: step; margin: 2rem 0; }
.rhythm-numbered li {
  counter-increment: step;
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid rgba(179,138,50,0.12);
}
.rhythm-numbered li:last-child { border-bottom: none; }
/* Step number = decorative single-role display element */
.rhythm-step-num {
  font-family: var(--serif); font-size: var(--t-title); font-weight: var(--w-light);
  color: var(--gold); flex-shrink: 0; line-height: 1.2; min-width: 2rem;
}
.rhythm-step-text {
  font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; padding-top: 0.25rem; font-weight: var(--w-regular);
}

.activation-dates-head {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.activation-dates-head::after { content: ''; flex: 1; height: 1px; background: rgba(179,138,50,0.25); }
.dates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.date-item { padding: 1.5rem; border: 1px solid rgba(179,138,50,0.15); text-align: center; }
.date-item-month { font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; font-weight: var(--w-bold); }
/* Date = --t-title (H3-level moment) */
.date-item-date { font-family: var(--serif); font-size: var(--t-title); font-weight: var(--w-light); color: var(--cosmic-night); margin-bottom: 0.25rem; }
.date-item-time { font-size: var(--t-meta); color: var(--smoke); font-weight: var(--w-regular); }
.early-bird-callout { margin-top: 2.5rem; padding: 2rem 2.25rem; border: 1px solid var(--gold-border); border-top: 2px solid var(--gold); background: rgba(179,138,50,0.03); }
.early-bird-label { font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-weight: var(--w-bold); }
.early-bird-callout p { font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; margin-bottom: 0; font-weight: var(--w-regular); }
.early-bird-callout strong { font-weight: var(--w-regular); color: var(--gold); }

/* ---- TESTIMONIALS GRID ---- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 680px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--divine-white); border: 1px solid var(--gold-border);
  padding: 2.5rem 2.25rem;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 20px rgba(26,26,26,0.05);
}
.testi-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-border); margin-bottom: 1.25rem; display: block; }
/* Testimonial quote = --t-lead, NOT italic */
.testi-card blockquote {
  font-family: var(--serif); font-size: var(--t-lead); font-style: normal;
  color: var(--cosmic-night); line-height: 1.6; margin-bottom: 1.5rem; flex: 1;
  font-weight: var(--w-regular);
}
/* Name = --t-eyebrow gold uppercase */
.testi-name { font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; font-weight: var(--w-bold); }
/* Role = --t-body italic INK (same visual weight as quote — no "quieter") */
.testi-role { font-size: var(--t-body); color: var(--cosmic-night); font-style: italic; font-weight: var(--w-regular); }

/* ============================================================
   VALUE STACK — Dramatic price moment (Brunson/Apple Store)
   Hierarchy: BODY for items → LEAD for totals → PRICE-HERO for final
   ============================================================ */
.value-section-head {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold); margin: 2.5rem 0 0.75rem;
}
.value-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.value-table th {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; color: var(--gold); text-align: left;
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--gold-border);
}
.value-table th:last-child { text-align: right; }
/* Item rows = --t-body */
.value-table td {
  font-size: var(--t-body); color: var(--cosmic-night); padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(179,138,50,0.1); vertical-align: top; line-height: 1.65;
  font-weight: var(--w-medium);
}
/* Item price (right col) = MATCH label exactly — same family, same size, same weight */
.value-table td:last-child { text-align: right; color: var(--cosmic-night); white-space: nowrap; font-family: inherit; font-size: var(--t-body); font-weight: var(--w-bold); }
.value-table td strong { font-weight: var(--w-bold); color: var(--cosmic-night); font-size: var(--t-body); font-family: inherit; }
/* Sub-description = SAME size, SAME family as label and price (no shrinking, no font swap) */
.value-sub { display: block; font-size: var(--t-body); color: var(--smoke); margin-top: 0.4rem; line-height: 1.6; font-weight: var(--w-regular); font-family: inherit; }
/* Total Value row = same family as everything else, lead size, medium weight */
.value-table .total-row td { border-top: 1px solid var(--gold-border); border-bottom: none; padding-top: 1.75rem; font-family: inherit; font-size: var(--t-lead); font-style: normal; font-weight: var(--w-medium); }
.value-table .total-row td:first-child { color: var(--cosmic-night); font-family: inherit; font-size: var(--t-lead); font-weight: var(--w-medium); }
.value-table .total-row td:last-child { color: var(--cosmic-night); font-family: inherit; font-size: var(--t-lead); font-weight: var(--w-medium); }
/* Final Price row — same family as everything else; LABEL = lead, NUMBER = crescendo size, gold */
.value-table .price-row td { padding-top: 0.65rem; padding-bottom: 1.75rem; font-family: inherit; font-weight: var(--w-bold); line-height: 1.1; vertical-align: middle; }
.value-table .price-row td:first-child { font-size: var(--t-lead); color: var(--cosmic-night); }
.value-table .price-row td:last-child { font-size: var(--t-price-hero); color: var(--gold-deep); font-family: var(--serif); font-weight: var(--w-regular); }
/* You save line — same family, same size as body, weight regular; gold $ for emphasis */
.stack-math { font-family: inherit; font-size: var(--t-body); font-style: normal; color: var(--cosmic-night); margin-top: 0.5rem; font-weight: var(--w-regular); line-height: 1.6; text-align: right; }
.stack-math strong { color: var(--gold-deep); font-weight: var(--w-bold); font-style: normal; }

/* ============================================================
   VIP COMPARISON TABLE — Two sizes only (body + price-hero)
   ============================================================ */
.vip-sub { font-family: var(--serif); font-size: var(--t-lead); font-style: italic; color: var(--smoke); margin-bottom: 2rem; font-weight: var(--w-regular); }
.vip-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.vip-table th {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: var(--w-bold);
  text-transform: uppercase; padding: 0.75rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--gold-border);
}
.vip-table th:nth-child(2) { color: var(--smoke); text-align: center; }
.vip-table th:nth-child(3) { color: var(--gold); background: rgba(179,138,50,0.05); text-align: center; }
/* All cells = --t-body */
.vip-table td {
  padding: 1.15rem 1.25rem; border-bottom: 1px solid rgba(179,138,50,0.08);
  font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.6; vertical-align: middle;
  font-weight: var(--w-regular);
}
.vip-table td:nth-child(2),
.vip-table td:nth-child(3) { text-align: center; }
.vip-table td:nth-child(3) { background: rgba(179,138,50,0.03); }
.vip-check { color: var(--gold); font-size: var(--t-body); }
.vip-dash { color: var(--smoke); font-size: var(--t-body); }
/* Total Value row = --t-lead (the anchor/comparison, smaller) */
.vip-price-row td { border-bottom: none; padding-top: 1.5rem; font-family: var(--serif); font-weight: var(--w-medium); line-height: 1.3; font-size: var(--t-lead); }
.vip-price-row td:nth-child(2) { color: var(--cosmic-night); }
.vip-price-row td:nth-child(3) { color: var(--cosmic-night); background: rgba(179,138,50,0.04); }
/* YOUR PRICE row = --t-price-hero (THE DRAMATIC MOMENT — what they actually pay) */
.vip-savings-row td { padding-top: 0.85rem; padding-bottom: 1.5rem; font-family: var(--serif); font-weight: var(--w-bold); line-height: 1.3; font-size: var(--t-lead); }
.vip-savings-row td:nth-child(2) { color: var(--cosmic-night); }
.vip-savings-row td:nth-child(3) { background: rgba(179,138,50,0.04); color: var(--gold-deep); }
.vip-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 2.5rem; }
.vip-ctas-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   GUIDE / MEET CARSON
   ============================================================ */
.guide-layout {
  display: grid; grid-template-columns: 320px 1fr; gap: 5rem;
  align-items: start; margin-bottom: 3.5rem;
}
.guide-photo-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 15%;
  border: 1px solid var(--gold-border); display: block; margin-bottom: 1.25rem;
  box-shadow: 8px 8px 0 rgba(179,138,50,0.1);
}
/* Guide name = --t-title (H3 role) */
.guide-photo-name { font-family: var(--serif); font-size: var(--t-title); font-weight: var(--w-light); color: var(--cosmic-night); margin-bottom: 0.25rem; line-height: 1.2; }
.guide-photo-title { font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--smoke); line-height: 1.6; font-weight: var(--w-bold); }
/* Guide pullquote = --t-lead italic */
.guide-pullquote {
  font-family: var(--serif); font-size: var(--t-lead); font-style: italic;
  color: var(--gold-deep); line-height: 1.5; margin-top: 1.5rem; font-weight: var(--w-light);
  border-left: 2px solid var(--gold); padding-left: 1.25rem;
}
.guide-text p { font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; margin-bottom: 1.1rem; font-weight: var(--w-regular); }
.guide-text p em { font-style: italic; color: var(--gold); }
/* Guide close line = --t-title italic (punchline tier — section-closing soul line) */
.guide-close-line { font-family: inherit; font-size: var(--t-body); font-style: italic; color: var(--gold-deep); margin-top: 1rem; font-weight: var(--w-regular); line-height: 1.75; }
.guide-cred-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--gold-border); padding-top: 2.5rem;
}
/* Credentials = --t-meta */
.guide-cred-item { font-size: var(--t-meta); color: var(--smoke); line-height: 1.65; padding-right: 2rem; border-right: 1px solid rgba(179,138,50,0.12); font-weight: var(--w-regular); }
.guide-cred-item:last-child { border-right: none; padding-right: 0; padding-left: 2rem; }
.guide-cred-item:not(:first-child):not(:last-child) { padding-left: 2rem; }
.guide-cred-label { display: block; font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; font-weight: var(--w-bold); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-box {
  border: 1px solid var(--gold-border); border-top: 2px solid var(--gold);
  padding: 3rem 3.5rem; text-align: center; max-width: 680px; margin: 0 auto;
  background: var(--divine-white);
  box-shadow: 0 4px 40px rgba(26,26,26,0.06);
}
.guarantee-label { font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: var(--w-bold); }
/* Guarantee H3 = --t-title */
.guarantee-box h3 { font-family: var(--serif); font-size: var(--t-title); font-weight: var(--w-light); color: var(--cosmic-night); margin-bottom: 1.5rem; line-height: 1.2; }
.guarantee-box p { font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; margin-bottom: 1rem; font-weight: var(--w-regular); }
.guarantee-box p:last-child { margin-bottom: 0; color: var(--smoke); font-size: var(--t-meta); font-style: italic; }

/* ============================================================
   FAQ
   ============================================================ */
details { border-bottom: 1px solid var(--gold-border); }
details:first-of-type { border-top: 1px solid var(--gold-border); }
/* FAQ question = --t-title */
summary {
  font-family: var(--serif); font-size: var(--t-title); font-weight: var(--w-regular); color: var(--cosmic-night);
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s; line-height: 1.3;
}
summary:hover { color: var(--gold); }
summary::after { content: '+'; font-family: var(--sans); font-size: var(--t-title); color: var(--gold); font-weight: var(--w-light); flex-shrink: 0; margin-left: 1rem; transition: transform 0.25s; }
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { color: var(--gold); }
/* FAQ answer = --t-body */
.faq-answer { font-size: var(--t-body); color: var(--cosmic-night); line-height: 1.75; padding-bottom: 1.5rem; max-width: 680px; font-weight: var(--w-regular); }
.faq-answer a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(179,138,50,0.25); font-weight: var(--w-medium); }
.faq-answer strong { color: var(--cosmic-night); font-weight: var(--w-bold); }

/* ============================================================
   CLOSING CTA — Gold gradient background
   ============================================================ */
#closing {
  background: var(--gold-gradient);
  padding: 9rem 4rem; text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
#closing .eyebrow-centered { color: rgba(255,255,255,0.8); }
#closing .eyebrow-centered::before,
#closing .eyebrow-centered::after { background: rgba(255,255,255,0.5); }
/* Closing H2 = --t-display (matches all H2s) */
#closing h2 { font-family: var(--serif); font-size: var(--t-display); font-weight: var(--w-light); color: #fff; line-height: 1.08; margin-bottom: 1.5rem; }
/* Closing italic = --t-lead italic (lead role) */
.closing-italic { font-family: var(--serif); font-size: var(--t-lead); font-style: italic; color: rgba(255,255,255,0.95); line-height: 1.5; margin-bottom: 2rem; font-weight: var(--w-regular); }
#closing p { font-size: var(--t-body); color: rgba(255,255,255,0.92); line-height: 1.75; margin-bottom: 1rem; font-weight: var(--w-regular); }
/* Closing final = --t-lead italic (soul statement role) */
.closing-final { font-family: var(--serif); font-size: var(--t-lead); font-style: italic; color: #fff; margin: 2rem 0 2.5rem; font-weight: var(--w-light); }
.closing-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.closing-btns-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.founding-counter {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  margin: 2rem auto 1.5rem; max-width: 540px;
}
/* Founding counter line = --t-meta (16px floor, NOT 13px) — readable scarcity info */
.founding-counter-line {
  font-family: var(--sans); font-size: var(--t-meta); letter-spacing: 0.04em; font-weight: var(--w-regular);
  color: rgba(255,255,255,0.95);
  display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.6; text-align: left;
}
.founding-counter-line .glyph { color: rgba(255,255,255,0.95); font-size: var(--t-meta); line-height: 1.6; flex-shrink: 0; padding-top: 0.05em; }
.founding-counter-line strong { color: #fff; font-weight: var(--w-bold); }
.closing-mantra { font-family: var(--serif); font-size: var(--t-meta); font-style: italic; color: rgba(255,255,255,0.55); margin-top: 2.5rem; letter-spacing: 0.04em; }

/* ============================================================
   FOOTER — eyebrow + meta tokens
   ============================================================ */
footer {
  background: var(--warm-cream);
  padding: 3rem 4rem;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { font-family: var(--serif); font-size: var(--t-eyebrow); font-weight: var(--w-bold); letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; }
.footer-link { font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--smoke); text-decoration: none; transition: color 0.2s; font-weight: var(--w-medium); }
.footer-link:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--gold-border); padding-top: 2rem; }
.footer-copy { font-family: var(--sans); font-size: var(--t-eyebrow); color: var(--smoke); font-weight: var(--w-regular); letter-spacing: 0.04em; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: var(--sans); font-size: var(--t-eyebrow); color: var(--smoke); text-decoration: none; transition: color 0.2s; font-weight: var(--w-regular); letter-spacing: 0.04em; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   DATE PICKER
   ============================================================ */
.date-picker { margin: 0 auto 2rem; max-width: 480px; text-align: left; }
.date-picker-label {
  font-family: var(--sans); font-size: var(--t-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--smoke); margin-bottom: 0.85rem; display: block; font-weight: var(--w-bold);
}
.date-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.date-option { position: relative; }
.date-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.date-option label {
  display: flex; flex-direction: column; padding: 0.85rem 1rem;
  border: 1px solid var(--gold-border); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--sans);
}
.date-option label .date-name {
  font-size: var(--t-eyebrow); font-weight: var(--w-bold); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem;
}
.date-option label .date-time {
  font-size: var(--t-eyebrow); letter-spacing: 0.04em; color: var(--smoke);
}
.date-option input[type="radio"]:checked + label {
  border-color: var(--gold); background: rgba(179,138,50,0.06);
}
.date-option label:hover { border-color: var(--gold); }
.date-picker-note {
  font-family: var(--sans); font-size: var(--t-eyebrow); color: var(--smoke);
  margin-top: 0.75rem; letter-spacing: 0.04em; line-height: 1.6;
}
/* Dark variant for closing section */
.date-picker-dark .date-picker-label { color: rgba(255,255,255,0.55); }
.date-picker-dark .date-option label { border-color: rgba(255,255,255,0.18); }
.date-picker-dark .date-option label .date-name { color: var(--gold-rich); }
.date-picker-dark .date-option label .date-time { color: rgba(255,255,255,0.45); }
.date-picker-dark .date-option input[type="radio"]:checked + label {
  border-color: var(--gold-rich); background: rgba(190,154,90,0.1);
}
.date-picker-dark .date-option label:hover { border-color: var(--gold-rich); }
.date-picker-dark .date-picker-note { color: rgba(255,255,255,0.4); }
.earlybird-banner {
  max-width: 480px; margin: 0 auto 1.2rem;
  background: rgba(179,138,50,0.08); border: 1px solid rgba(179,138,50,0.3);
  padding: 0.85rem 1.1rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.earlybird-banner-icon { font-size: var(--t-meta); flex-shrink: 0; margin-top: 1px; }
.earlybird-banner-text { font-family: var(--sans); font-size: var(--t-meta); line-height: 1.6; color: var(--smoke); letter-spacing: 0.02em; font-weight: var(--w-regular); }
.earlybird-banner-text strong { color: var(--gold); font-weight: var(--w-bold); }
.earlybird-banner-dark { background: rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.3); }
.earlybird-banner-dark .earlybird-banner-text { color: rgba(255,255,255,0.92); }
.earlybird-banner-dark .earlybird-banner-text strong { color: #fff; }
.earlybird-banner-dark .earlybird-banner-icon { color: #fff; }
.cal-link-row { max-width: 480px; margin: 0.7rem auto 0; text-align: right; min-height: 1.4rem; }
.cal-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-size: var(--t-eyebrow); font-weight: var(--w-bold);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold);
  text-decoration: none; opacity: 0; transition: opacity 0.25s; pointer-events: none;
}
.cal-link.visible { opacity: 1; pointer-events: auto; }
.cal-link-dark { color: var(--gold-rich); }
.cal-link svg { flex-shrink: 0; }

/* ── CHECKOUT MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(26,26,26,0.75); backdrop-filter: blur(8px);
  align-items: flex-start; justify-content: center;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-panel {
  background: var(--divine-white);
  max-width: 460px; width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative; margin: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; cursor: pointer;
  font-size: var(--t-title); color: var(--smoke); line-height: 1; padding: 0.25rem;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--cosmic-night); }
.modal-eyebrow {
  font-family: var(--sans); font-size: 0.8125rem; letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; font-weight: var(--w-bold);
}
/* Modal title = --t-title */
.modal-title {
  font-family: var(--serif); font-size: var(--t-title); font-weight: var(--w-regular);
  color: var(--cosmic-night); margin-bottom: 0.6rem; line-height: 1.3;
}
.modal-subtitle {
  font-family: var(--sans); font-size: var(--t-meta); color: var(--smoke);
  line-height: 1.65; margin-bottom: 1.5rem; font-weight: var(--w-regular);
}
.modal-date-options {
  display: flex; gap: 0.65rem; margin-bottom: 1.1rem;
}
.modal-date-card { flex: 1; cursor: pointer; }
.modal-date-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.modal-date-card-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; padding: 1rem 0.6rem;
  border: 1px solid var(--gold-border); transition: all 0.2s; text-align: center;
}
.modal-date-card:hover .modal-date-card-inner { border-color: var(--gold); }
.modal-date-card input[type="radio"]:checked + .modal-date-card-inner {
  border-color: var(--gold); background: rgba(179,138,50,0.07);
}
/* Modal date chips — UI selectors, not readable body. Small + clean. */
.modal-date-name {
  font-family: var(--serif); font-size: 1.25rem; font-weight: var(--w-medium); color: var(--cosmic-night); line-height: 1.2;
}
.modal-date-time {
  font-family: var(--sans); font-size: 0.875rem; color: var(--smoke); letter-spacing: 0.04em; white-space: nowrap;
}
.modal-earlybird {
  font-family: var(--sans); font-size: 1rem; color: var(--smoke);
  background: rgba(179,138,50,0.06); border: 1px solid var(--gold-border);
  padding: 0.85rem 1.1rem; margin-bottom: 1.5rem; line-height: 1.55; font-weight: var(--w-regular);
}
.modal-earlybird strong { color: var(--gold); font-weight: var(--w-bold); }
.modal-continue-btn, .modal-pay-btn, .modal-done-btn { width: 100%; text-align: center; }
.modal-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-summary {
  font-family: var(--sans); color: var(--cosmic-night);
  border: 1px solid var(--gold-border); padding: 1.1rem 1.25rem; margin-bottom: 1.25rem; font-weight: var(--w-regular);
}
.modal-summary strong { color: var(--cosmic-night); font-weight: var(--w-bold); }
.modal-sum-title { font-family: var(--serif); font-size: 1.5rem; font-weight: var(--w-regular); color: var(--cosmic-night); line-height: 1.2; }
.modal-sum-tier { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: var(--w-bold); margin-top: 0.25rem; margin-bottom: 0.9rem; }
.modal-sum-list { list-style: none; padding: 0; margin: 0 0 0.9rem; border-top: 1px solid rgba(179,138,50,0.18); padding-top: 0.85rem; }
.modal-sum-list li { position: relative; padding: 0.35rem 0 0.35rem 1.4rem; font-size: 1.0625rem; color: var(--cosmic-night); line-height: 1.45; }
.modal-sum-list li::before { content: "✓"; position: absolute; left: 0; top: 0.35rem; color: var(--gold); font-weight: var(--w-bold); }
.modal-sum-list li.modal-sum-bonus-label { padding-left: 0; padding-top: 0.75rem; margin-top: 0.5rem; border-top: 1px dashed rgba(179,138,50,0.25); font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: var(--w-bold); }
.modal-sum-list li.modal-sum-bonus-label::before { content: ""; }
.modal-sum-list li .modal-sum-sub { color: var(--smoke); font-size: 0.9375rem; margin-left: 0.35rem; }
.modal-sum-price-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(179,138,50,0.18); padding-top: 0.85rem; font-size: 1.0625rem; color: var(--smoke); letter-spacing: 0.04em; text-transform: uppercase; }
.modal-sum-price { font-family: var(--serif); font-size: 1.875rem; color: var(--cosmic-night); font-weight: var(--w-regular); letter-spacing: 0; text-transform: none; }
/* VIP Upgrade toggle */
.modal-upgrade { display: flex; align-items: flex-start; gap: 0.85rem; padding: 1rem 1.1rem; margin-bottom: 1rem; border: 1px solid var(--gold-border); cursor: pointer; transition: all 0.2s; background: rgba(179,138,50,0.04); }
.modal-upgrade:hover { border-color: var(--gold); background: rgba(179,138,50,0.08); }
.modal-upgrade input[type="checkbox"] { margin-top: 0.35rem; width: 1.15rem; height: 1.15rem; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.modal-upgrade-body { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.modal-upgrade-title { font-family: var(--sans); font-size: 1.0625rem; font-weight: var(--w-bold); color: var(--cosmic-night); line-height: 1.3; }
.modal-upgrade-tag { display: inline-block; margin-left: 0.4rem; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: var(--w-bold); vertical-align: middle; }
.modal-upgrade-sub { font-family: var(--sans); font-size: 0.9375rem; color: var(--smoke); line-height: 1.45; }
.modal-upgrade-price { font-family: var(--serif); font-size: 1.25rem; font-weight: var(--w-bold); color: var(--gold-deep); align-self: center; white-space: nowrap; }
.modal-form-row { margin-bottom: 0.7rem; }
.modal-input {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid #d4ccc5;
  font-family: var(--sans); font-size: var(--t-meta); color: var(--cosmic-night);
  background: #fff; outline: none; transition: border-color 0.2s; font-weight: var(--w-regular);
}
.modal-input:focus { border-color: var(--gold); }
.modal-stripe-element { margin: 1rem 0; min-height: 44px; }
.modal-error {
  font-family: var(--sans); font-size: var(--t-meta); color: #c0392b;
  margin-bottom: 0.75rem; padding: 0.7rem 0.9rem;
  background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.2);
}
.modal-secure {
  font-family: var(--sans); font-size: var(--t-eyebrow); color: var(--smoke);
  text-align: center; margin-top: 0.75rem; letter-spacing: 0.04em; opacity: 0.7;
}
.modal-success-icon {
  width: 2.75rem; height: 2.75rem; background: var(--gold-gradient);
  color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: var(--t-title); margin: 0 auto 1.25rem;
}
.modal-cal-links { margin: 1.5rem 0 0; }
.modal-cal-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: var(--t-eyebrow); font-weight: var(--w-bold);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold);
  text-decoration: none; padding: 0.85rem 1rem;
  border: 1px solid var(--gold-border); margin-bottom: 0.5rem; transition: all 0.2s;
}
.modal-cal-link:hover { background: rgba(179,138,50,0.06); border-color: var(--gold); }
.modal-done-btn { margin-top: 1.25rem; }

/* Thank-you experience now lives at /thank-you/ — orphan ty-* styles removed. */
.closing-earlybird-note {
  font-family: var(--sans); font-size: var(--t-meta); color: rgba(255,255,255,0.9);
  text-align: center; margin: 0 auto 0.6rem; max-width: 540px; letter-spacing: 0.02em; font-weight: var(--w-regular); line-height: 1.6;
}
.closing-date-note {
  font-family: var(--sans); font-size: var(--t-meta); color: rgba(255,255,255,0.75);
  text-align: center; margin: 0 auto 2rem; max-width: 540px; letter-spacing: 0.02em; font-weight: var(--w-regular); line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  /* Stack hero grid */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-col { order: 1; height: 60vw; max-height: 480px; background-position: center 15%; }
  .hero-photo-col img { object-position: center 15%; }
  .hero-photo-col::after { display: none; }
  .hero-copy-col { order: 2; padding: 5rem 2rem 4rem; }
}

@media (max-width: 860px) {
  nav { padding: 0.85rem 1.5rem; }
  .nav-links { display: none; }

  /* Sections */
  .section-white, .section-cream { padding: 5rem 1.5rem; }
  .gold-quote-section { padding: 5rem 1.5rem; }
  #closing { padding: 5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }

  /* Method phases */
  .method-phases { grid-template-columns: 1fr; }
  .phase-card:nth-child(1),
  .phase-card:nth-child(2) { border-bottom: 0.5px solid rgba(179,138,50,0.18); }
  .phase-card:nth-child(odd) { border-right: 0.5px solid rgba(179,138,50,0.18); }
  .phase-card:last-child { border-bottom: none; }

  /* Deck physical grid */
  .deck-physical-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Testi band */
  .testi-band { padding: 3rem 1.5rem; }
  .testi-band-inner { flex-direction: column; gap: 2rem; }
  .testi-band-img { flex: none; width: 100%; height: 260px; object-position: center 25%; }

  /* Guide */
  .guide-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .guide-cred-bar { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .guide-cred-item { border-right: none; padding: 0; }

  /* Dates */
  .dates-grid { grid-template-columns: 1fr; }

  /* Guarantee */
  .guarantee-box { padding: 2.25rem 1.75rem; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .vip-ctas-row { flex-direction: column; }
  .hero-btns-row { flex-direction: column; align-items: stretch; }
  .hero-btns-row .btn-gold,
  .hero-btns-row .btn-ghost { text-align: center; }
  .closing-btns-row { flex-direction: column; align-items: stretch; }
  .closing-btns-row .btn-gold-solid-white,
  .closing-btns-row .btn-ghost-white { text-align: center; }
  .deck-app-cards { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  /* Nav — brand + CTA both shrink to fit 375px viewport */
  nav { padding: 0.7rem 1rem; }
  .nav-logo { height: 22px; }
  .nav-brand { font-size: 0.8125rem; letter-spacing: 0.05em; }
  .nav-cta { padding: 0.45rem 0.75rem; font-size: 0.6875rem; letter-spacing: 0.1em; }

  /* Hero copy — tighter sides on small phones */
  .hero-copy-col { padding: 3.5rem 1.25rem 3rem; }

  /* Closing section — reduce tall top/bottom padding */
  #closing { padding: 3.5rem 1.25rem; }

  /* Phase cards — kill the border-right that bleeds through on 1-col layout */
  .phase-card:nth-child(odd) { border-right: none; }

  /* Squeeze section side padding slightly further */
  .section-white, .section-cream { padding: 4rem 1.25rem; }
  .gold-quote-section { padding: 4rem 1.25rem; }

  /* VIP table — prevent overflow on narrow phones */
  .vip-table { table-layout: fixed; }
  .vip-table td, .vip-table th { word-break: break-word; }
}
