/* ─────────────────────────────────────────────────────────────────
   06 — CLUBHOUSE
   Subscription is the hero. Pop Apologists colors loud.
   Boldonse for display, Bricolage Grotesque for body,
   DM Serif Display italic for one ownable accent.
─────────────────────────────────────────────────────────────────── */

:root {
  --pink: #FF2E86;
  --yellow: #FFD23F;
  --lime: #C6FF5E;
  --cream: #FFF1DC;
  --ink: #14110F;
  --softpink: #FFD3E4;
  --paper: #FAF6EE;
  --display: 'Boldonse', 'Arial Black', sans-serif;
  --body: 'Bricolage Grotesque', system-ui, sans-serif;
  --accent: 'DM Serif Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Reusable type ─────────────────────────────────────────────── */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 0.95; text-transform: uppercase; }
.accent { font-family: var(--accent); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.eyebrow { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.tag-flag { display: inline-block; background: var(--ink); color: var(--yellow); padding: 4px 10px; font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; border: 2px solid var(--ink); }

/* ── Sticker / badge ───────────────────────────────────────────── */
.sticker {
  display: inline-block;
  position: relative;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 8px 16px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-4deg);
}
.sticker.pink { background: var(--pink); color: var(--cream); }
.sticker.lime { background: var(--lime); }
.sticker.rot-right { transform: rotate(5deg); }
.sticker.rot-left { transform: rotate(-7deg); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: transform 80ms ease-out, box-shadow 80ms ease-out;
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn.primary { background: var(--pink); color: var(--ink); }
.btn.lime { background: var(--lime); color: var(--ink); }
.btn.yellow { background: var(--yellow); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn.ghost:hover { background: var(--ink); color: var(--cream); box-shadow: 5px 5px 0 var(--ink); transform: translate(-2px,-2px); }
.btn.big { font-size: 17px; padding: 20px 32px; }

/* ── Layout helpers ────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wide { max-width: 1440px; }
.section { padding: 80px 0; }
.section.tight { padding: 56px 0; }
.divider-line { height: 3px; background: var(--ink); border: 0; }

/* ── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 32px;
}
.brand-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.brand-mark .accent { font-size: 24px; color: var(--pink); }
.brand-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--pink); border: 2px solid var(--ink); display: inline-block; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--pink); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .signin { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: underline; text-underline-offset: 4px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  background: var(--pink);
  color: var(--cream);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  padding: 64px 32px 72px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--cream);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--cream);
  padding-bottom: 4px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--ink);
  font-size: 1.1em;
  display: inline-block;
  line-height: 0.9;
}
.hero p.lede {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.4;
}
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-ctas .btn { box-shadow: 6px 6px 0 var(--ink); }
.hero-ctas .signed-in { color: var(--cream); font-weight: 500; font-size: 14px; }
.hero-ctas .signed-in a { text-decoration: underline; text-underline-offset: 4px; font-weight: 700; }

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}
.hero-photo image-slot { width: 100%; height: 100%; display: block; }
.hero-photo .floater {
  position: absolute;
  bottom: -22px;
  right: -22px;
  z-index: 2;
}
.hero-photo .floater-2 {
  position: absolute;
  top: -16px;
  left: -22px;
  z-index: 2;
}

/* ── Stats strip (between hero and pricing) ────────────────────── */
.stat-strip {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.stat-strip-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 18px 32px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-strip-inner .dot { color: var(--pink); }
.stat-strip-inner .pink { color: var(--pink); }
.stat-strip-inner .lime { color: var(--lime); }
.stat-strip-inner .yellow { color: var(--yellow); }

/* ── Pricing section ───────────────────────────────────────────── */
.pricing-section {
  background: var(--cream);
  padding: 72px 0 88px;
  position: relative;
}
.pricing-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.pricing-head .eyebrow { color: var(--ink); margin-bottom: 12px; display: block; }
.pricing-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-head h2 .accent { color: var(--pink); font-size: 1.1em; line-height: 0.9; }
.pricing-head p {
  font-size: 17px;
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.pricing-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 36px 32px 32px;
  box-shadow: 10px 10px 0 var(--ink);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--yellow);
  transform: translateY(-8px);
}
.pricing-card .card-tier {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.pricing-card.featured .card-tier { color: var(--ink); }
.pricing-card .card-plan {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  margin-bottom: 18px;
}
.pricing-card .card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.pricing-card .card-price .num {
  font-family: var(--display);
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.pricing-card .card-price .per {
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.7;
}
.pricing-card .card-sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 24px;
  font-weight: 500;
}
.pricing-card .card-sub strong { font-style: normal; font-weight: 800; }
.pricing-card .perks {
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card .perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(20, 17, 15, 0.25);
  font-size: 15px;
  line-height: 1.35;
}
.pricing-card .perks li:last-child { border-bottom: 0; }
.pricing-card .perks li::before {
  content: '✓';
  font-weight: 700;
  font-family: var(--display);
  color: var(--pink);
  flex: 0 0 auto;
}
.pricing-card.featured .perks li::before { color: var(--ink); }
.pricing-card .card-btn { width: 100%; padding: 18px 20px; }
.pricing-card .fine {
  font-size: 12px;
  margin-top: 12px;
  text-align: center;
  opacity: 0.7;
}
.pricing-card .best-value-stamp {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 3;
}
.pricing-card .save-stamp {
  position: absolute;
  top: 28px;
  right: -28px;
  z-index: 3;
}

/* ── Gift block ────────────────────────────────────────────────── */
.gift {
  background: var(--lime);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 56px 0;
}
.gift-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.gift h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.gift h3 .accent { color: var(--pink); font-size: 1.1em; }
.gift p { font-size: 17px; max-width: 460px; margin-bottom: 24px; }

/* ── Featured episode ──────────────────────────────────────────── */
.episodes-section {
  background: var(--paper);
  padding: 80px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.section-head h2 .accent { color: var(--pink); }
.section-head .section-meta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-ep {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 48px;
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}
.featured-ep-art {
  aspect-ratio: 16 / 10;
  background: var(--softpink);
  position: relative;
  border-right: 3px solid var(--ink);
}
.featured-ep-art image-slot { width: 100%; height: 100%; display: block; }
.featured-ep-art .tag-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pink);
  color: var(--yellow);
  border-color: var(--ink);
}
.featured-ep-body { padding: 36px 32px 32px; display: flex; flex-direction: column; justify-content: center; }
.featured-ep .ep-num {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.featured-ep h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--cream);
}
.featured-ep .ep-desc { font-size: 16px; opacity: 0.88; margin-bottom: 18px; max-width: 460px; }
.featured-ep .ep-meta { display: flex; gap: 18px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.75; margin-bottom: 22px; }
.featured-ep .ep-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.featured-ep .ep-actions .btn { padding: 12px 18px; font-size: 13px; box-shadow: 4px 4px 0 var(--cream); border-color: var(--cream); }
.featured-ep .ep-actions .btn.primary { color: var(--yellow); }
.featured-ep .ep-actions .btn.ghost { background: transparent; color: var(--cream); box-shadow: none; }
.featured-ep .ep-actions .btn.ghost:hover { background: var(--cream); color: var(--ink); box-shadow: 4px 4px 0 var(--cream); }

/* ── Episode list ──────────────────────────────────────────────── */
.ep-list { display: flex; flex-direction: column; gap: 0; border-top: 3px solid var(--ink); }
.ep-row {
  display: grid;
  grid-template-columns: 56px 200px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
  transition: background 100ms ease;
}
.ep-row:hover { background: var(--cream); }
.ep-row.premium { background: var(--softpink); }
.ep-row.premium:hover { background: #ffc0d8; }
.ep-row .ep-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  border: 2px solid var(--ink);
  text-align: center;
  padding: 4px;
}
.ep-row.premium .ep-num-badge { background: var(--pink); color: var(--yellow); }
.ep-row.premium .ep-num-badge.small { font-size: 13px; }
.ep-row .ep-thumb {
  aspect-ratio: 16 / 9;
  width: 200px;
  background: var(--ink);
  border: 2px solid var(--ink);
  overflow: hidden;
}
.ep-row .ep-thumb image-slot { width: 100%; height: 100%; display: block; }
.ep-row .ep-info h4 {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.ep-row .ep-info p { font-size: 14px; opacity: 0.72; max-width: 540px; }
.ep-row .ep-side { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.ep-row .ep-side .meta { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.ep-row .ep-side .tag-flag { background: var(--pink); color: var(--yellow); }
.ep-row .ep-info .lock { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 4px; }

/* ── Brand narrative ───────────────────────────────────────────── */
.narrative {
  background: var(--pink);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.narrative-inner { text-align: center; max-width: 920px; margin: 0 auto; position: relative; }
.narrative h2 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--yellow);
  margin-bottom: 28px;
}
.narrative h2 .accent { color: var(--cream); font-size: 1em; }
.narrative p {
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.45;
}
.narrative .sig { font-family: var(--accent); font-style: italic; font-size: 22px; margin-top: 18px; }
.narrative .sticker { position: absolute; }
.narrative .sticker-1 { top: -10px; right: 6%; }
.narrative .sticker-2 { bottom: -10px; left: 6%; }

/* ── Cohort identification ─────────────────────────────────────── */
.cohort {
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
  padding: 80px 0;
}
.cohort h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  max-width: 900px;
}
.cohort h2 .accent { color: var(--pink); font-size: 1.1em; }
.cohort .sub { font-size: 17px; max-width: 600px; margin-bottom: 36px; }
.cohort-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}
.cohort-grid .item {
  padding: 22px 24px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  background: var(--yellow);
}
.cohort-grid .item .num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--pink);
  line-height: 1;
  flex: 0 0 auto;
}
.cohort .cta-line {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cohort .cta-line .accent { font-style: italic; font-size: 22px; }

/* ── Merch teaser ──────────────────────────────────────────────── */
.merch {
  background: var(--cream);
  padding: 80px 0;
}
.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.merch-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 0;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  position: relative;
}
.merch-photo {
  aspect-ratio: 4 / 3;
  background: var(--softpink);
  border-bottom: 3px solid var(--ink);
}
.merch-photo image-slot { width: 100%; height: 100%; display: block; }
.merch-info { padding: 24px 24px 28px; }
.merch-info .merch-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.merch-info h4 { font-family: var(--display); font-size: 28px; text-transform: uppercase; line-height: 0.95; margin-bottom: 10px; }
.merch-info h4 .accent { font-size: 1.1em; }
.merch-info .row { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.merch-info .price { font-family: var(--display); font-size: 32px; }
.merch-info .crossed { text-decoration: line-through; opacity: 0.5; font-size: 18px; margin-left: 8px; font-family: var(--body); font-weight: 600; }
.merch-info .small { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; }
.merch .member-note {
  margin-top: 28px;
  text-align: center;
  font-family: var(--accent);
  font-style: italic;
  font-size: 22px;
  color: var(--pink);
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
}
.faq h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--yellow);
}
.faq .sub { font-size: 16px; opacity: 0.7; margin-bottom: 40px; }
.faq-list { border-top: 2px solid var(--cream); }
.faq details {
  border-bottom: 2px solid var(--cream);
  padding: 22px 4px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  font-family: var(--body);
  font-weight: 700;
  font-size: 28px;
  color: var(--pink);
  flex: 0 0 auto;
}
.faq details[open] summary .plus { color: var(--lime); }
.faq details[open] summary .plus::after { content: ' −'; }
.faq summary:hover { color: var(--yellow); }
.faq .answer { margin-top: 14px; font-size: 16px; line-height: 1.55; max-width: 760px; opacity: 0.85; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--cream);
  padding: 72px 0 36px;
  border-top: 3px solid var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer .brand-mark { font-size: 28px; }
.footer .brand-mark .accent { font-size: 32px; }
.footer .footer-tagline { margin-top: 12px; font-size: 14px; max-width: 320px; opacity: 0.75; }
.footer h5 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--pink);
}
.footer ul li { padding: 5px 0; font-size: 14px; font-weight: 500; }
.footer ul li a:hover { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

.newsletter-form { display: flex; gap: 0; margin-top: 12px; max-width: 360px; }
.newsletter-form input {
  flex: 1;
  font: inherit;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-size: 14px;
  border-right: 0;
}
.newsletter-form input::placeholder { color: rgba(20,17,15,0.5); }
.newsletter-form button {
  background: var(--pink);
  border: 3px solid var(--ink);
  color: var(--yellow);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 20px;
}
.newsletter-form button:hover { background: var(--ink); color: var(--cream); }

.footer-bottom {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
}
.footer-bottom .made { font-family: var(--accent); font-style: italic; font-size: 14px; opacity: 1; color: var(--pink); }

/* ─────────────────────────────────────────────────────────────────
   ELITE PAGE EXTRAS
─────────────────────────────────────────────────────────────────── */

.elite-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 96px;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.elite-hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--pink);
  max-width: 1100px;
}
.elite-hero h1 .accent { color: var(--yellow); font-size: 1em; line-height: 0.85; }
.elite-hero .lede { font-size: 19px; margin-top: 28px; max-width: 620px; color: var(--cream); }
.elite-hero .ctas { display: flex; gap: 20px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.elite-hero .ctas .accent { font-style: italic; color: var(--yellow); font-size: 18px; }
.elite-hero .back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 32px;
  text-decoration: underline; text-underline-offset: 4px;
}

.elite-stats {
  background: var(--lime);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 36px 0;
}
.elite-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 3px solid var(--ink);
}
.elite-stats-grid .stat {
  padding: 8px 24px;
  border-right: 3px solid var(--ink);
  text-align: left;
}
.elite-stats-grid .stat .num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.elite-stats-grid .stat .lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.perks-section { background: var(--paper); padding: 88px 0; }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}
.perks-grid .perk {
  background: var(--cream);
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 36px 28px 32px;
  position: relative;
}
.perks-grid .perk:nth-child(odd) { background: var(--paper); }
.perks-grid .perk .perk-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 14px;
}
.perks-grid .perk h3 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  min-height: 64px;
}
.perks-grid .perk p { font-size: 15px; line-height: 1.5; }

.schedule { background: var(--cream); padding: 80px 0; border-top: 3px solid var(--ink); }
.day-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 3px solid var(--ink);
}
.day-strip .day {
  padding: 28px 14px;
  text-align: center;
  border-right: 3px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.day-strip .day:last-child { border-right: 0; }
.day-strip .day .name { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.day-strip .day .label {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 12px;
}
.day-strip .day.public { background: var(--lime); }
.day-strip .day.elite { background: var(--pink); color: var(--yellow); }
.day-strip .day.elite .name { color: var(--yellow); opacity: 1; }

.bonus-gallery { background: var(--ink); color: var(--cream); padding: 80px 0; }
.bonus-gallery h2 { color: var(--yellow); }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.bonus-card {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--cream);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--pink);
}
.bonus-card .art {
  aspect-ratio: 16 / 9;
  background: var(--softpink);
  border-bottom: 3px solid var(--ink);
}
.bonus-card .art image-slot { width: 100%; height: 100%; display: block; }
.bonus-card .body { padding: 24px 24px 26px; }
.bonus-card .ge-flag {
  background: var(--pink); color: var(--yellow);
  font-family: var(--body); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  padding: 4px 10px; text-transform: uppercase;
  display: inline-block; margin-bottom: 12px;
  border: 2px solid var(--ink);
}
.bonus-card h4 { font-family: var(--display); font-size: 22px; line-height: 1; text-transform: uppercase; margin-bottom: 10px; }
.bonus-card p { font-size: 14px; opacity: 0.78; }
.bonus-card .meta { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 14px; opacity: 0.65; }

.testimonials { background: var(--softpink); border-top: 3px solid var(--ink); padding: 80px 0; }
.testimonials h2 .accent { color: var(--pink); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 28px 26px 26px;
  box-shadow: 6px 6px 0 var(--ink);
}
.testimonial .stars { color: var(--pink); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote {
  font-family: var(--accent);
  font-style: italic;
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.testimonial .name { font-family: var(--display); font-size: 14px; text-transform: uppercase; margin-bottom: 2px; }
.testimonial .since { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; }

.final-cta {
  background: var(--pink);
  color: var(--cream);
  padding: 96px 0;
  text-align: center;
  border-top: 3px solid var(--ink);
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.final-cta h2 .accent { color: var(--cream); font-size: 1em; }
.final-cta p { font-size: 19px; max-width: 600px; margin: 0 auto 32px; }
.final-cta .ctas { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── Marquee strip variant for elite hero ──────────────────────── */
.marquee-strip {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track .dot { color: var(--pink); margin: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
