/* 09-newsstand — 08-magazine-v3 bones re-dressed in the 2026 red/eggshell identity.
   Palette + type per BRAND_SPEC_2026.md REVISION 2: eggshell paper, brand red,
   DM Serif Display display serif, Tinos editorial serif, Archivo heavy grotesk,
   Oswald boxed tabs only, DM Mono folios. Signature: live-built episode cover art
   (duotone pink-mat, split cover, teal news card, name stack). No tickers; type
   and photos never overlap. */

:root {
  --paper:       #F2EEE6;
  --paper-white: #FBF9F5;
  --red:         #C23415;
  --red-deep:    #B52D1A;
  --red-hot:     #EE471E;
  --maroon:      #7E2217;
  --pink:        #F2C7CC;
  --teal:        #9DD3D0;
  --ink:         #141110;
  --ink-mute:    rgba(20, 17, 16, 0.66);
  --rule:        rgba(194, 52, 21, 0.45);
  --rule-faint:  rgba(20, 17, 16, 0.12);
  --font-display:   'DM Serif Display', 'Didot', 'Bodoni MT', serif;
  --font-editorial: 'Tinos', 'Times New Roman', Times, serif;
  --font-cond:      'Archivo', 'Arial Narrow', sans-serif;
  --font-tab:       'Oswald', 'Arial Narrow', sans-serif;
  --font-punch:     'Archivo', 'Arial Narrow', sans-serif;
  --font-mono:      'DM Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-editorial);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* faint newsprint grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: multiply;
  opacity: .035;
}

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ---------- type helpers ---------- */
.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- duotone photo treatment (motif 1) ---------- */
.duotone image-slot,
.duotone img {
  filter: grayscale(1) sepia(1) saturate(4) hue-rotate(-25deg) contrast(1.05);
}

/* ---------- Top nav (paper-colored: wordmark PNG has baked-in cream bg) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--red);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-tab {
  font-family: var(--font-tab);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 4px 8px 3px;
  margin-left: 12px;
  align-self: center;
}
.nav-links {
  display: flex; gap: 26px; margin-left: auto;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.nav-links a { text-decoration: none; color: var(--ink); }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  border: 2px solid var(--red);
  padding: 11px 20px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: transparent; color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--paper);
  border-bottom: 2px solid var(--red);
  overflow: hidden;
}
.hero-dateline {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 32px 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  padding: 64px 32px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 7.2vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.hero h1 .i {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.hero-tag {
  margin: 30px 0 0; max-width: 480px;
  font-family: var(--font-editorial);
  font-size: 17px; line-height: 1.55;
  color: var(--ink-mute);
}
.hero-listen { margin-top: 36px; }
.hero-listen-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px; margin-bottom: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.listen-row { display: flex; flex-wrap: wrap; gap: 10px; }
.listen-pill {
  background: var(--paper-white); color: var(--ink);
  padding: 12px 18px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--red);
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .15s, box-shadow .15s, color .15s;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.listen-pill:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--red);
  color: var(--red);
}
.listen-pill svg { width: 16px; height: 16px; }
.hero-secondary {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 3px;
}
.hero-secondary:hover { color: var(--ink); border-color: var(--ink); }

/* hero right — pink-matted duotone host stack */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 540px;
  justify-self: end;
  margin: 8px 0;
}
.host-card {
  position: absolute;
  background: var(--pink);
  padding: 12px 12px 34px;
  box-shadow: 6px 8px 0 rgba(126, 34, 23, 0.28);
}
.host-card image-slot { width: 100%; height: calc(100% - 22px); display: block; background: var(--paper-white); }
.host-card .cap {
  position: absolute; left: 0; right: 0; bottom: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--maroon);
  text-align: center;
}
.host-card.h1 { left: 0; top: 5%; width: 56%; height: 62%; transform: rotate(-3deg); }
.host-card.h2 { right: 1%; top: 12%; width: 47%; height: 58%; transform: rotate(3deg); z-index: 2; }
.host-card.h3 { left: 25%; bottom: 3%; width: 53%; height: 44%; transform: rotate(-2deg); z-index: 3; }

/* ---------- divider band — flat red-deep color band, static readable copy ---------- */
.divider-band {
  background: var(--red-deep);
  color: var(--paper);
  padding: 22px 32px;
  border-bottom: 2px solid var(--red);
}
.divider-band-inner {
  max-width: 1320px; margin: 0 auto;
  text-align: center;
  font-family: var(--font-punch);
  font-weight: 900;
  font-stretch: 85%;
  text-transform: uppercase;
  font-size: clamp(15px, 1.8vw, 21px);
  line-height: 1.35;
  letter-spacing: 0.12em;
  color: var(--paper);
}
.divider-band-inner .dot { color: var(--teal); margin: 0 16px; }

/* ---------- Section frame ---------- */
section { padding: 80px 32px; }
.wrap { max-width: 1320px; margin: 0 auto; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: 52px;
  border-bottom: 2px solid var(--ink); padding-bottom: 22px;
}
.section-head h2 {
  font-family: var(--font-cond);
  font-weight: 850;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}
.section-head h2 em {
  font-style: normal;
  color: var(--red);
}
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--paper-white);
  background: var(--red);
  padding: 5px 10px 4px;
}
.section-head .meta {
  font-family: var(--font-editorial);
  font-size: 15px; max-width: 380px;
  color: var(--ink-mute);
  align-self: end; padding-bottom: 6px;
}
.section-head .meta a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.section-head .meta a:hover { color: var(--ink); border-color: var(--ink); }

/* ================================================================
   LIVE COVER ART SYSTEM — spec motifs rebuilt in HTML/CSS.
   .cover is the base canvas; variants dress it. Sized by the parent
   (featured art panel or list thumbnail); type scales via em on a
   font-size set per context (.ep-feature-art / .thumb).
   ================================================================ */
.cover {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  display: block;
}

/* — motif 1 (revised): flat red type panel with fully-visible tone-on-tone word,
   duotone pink-mat portrait BESIDE it — type and photo never overlap */
.cover-duo {
  background: var(--red-deep);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.cover-duo .type-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7% 8%;
  min-width: 0;
}
.cover-duo .folio-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.cover-duo .word {
  font-family: var(--font-punch);
  font-weight: 900;
  font-stretch: 78%;
  text-transform: uppercase;
  font-size: 3.1em;
  letter-spacing: 0.02em;
  color: var(--red-hot);
  line-height: 0.95;
  user-select: none;
}
.cover-duo .brandline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.8em;
  color: var(--paper);
}
.cover-duo .mat {
  background: var(--pink);
  padding: 6%;
  align-self: center;
  justify-self: center;
  width: 78%;
  aspect-ratio: 4 / 5;
  max-height: 88%;
}
.cover-duo .mat image-slot { width: 100%; height: 100%; display: block; background: var(--paper-white); }

/* — motif 2: split cover — photo left, red panel + teal type right */
.cover-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--red-deep);
}
.cover-split .photo { position: relative; overflow: hidden; background: var(--maroon); }
.cover-split .photo image-slot { width: 100%; height: 100%; display: block; }
.cover-split .panel {
  position: relative;
  background: var(--red-deep);
  padding: 9% 8%;
  display: flex; flex-direction: column;
}
.cover-split .panel .didone {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9em;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--teal);
  text-transform: uppercase;
}
.cover-split .panel .cond {
  font-family: var(--font-cond);
  font-weight: 850;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 1.28em;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--teal);
  margin-top: 2%;
}
.cover-split .panel .kicker {
  margin-top: auto;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 0.85em;
  line-height: 1.25;
  color: var(--teal);
}

/* — motif 7: teal news card — red type, mini photo, big number */
.cover-news { background: var(--teal); }
.cover-news .spread {
  position: absolute; top: 6%; left: 6%; right: 6%;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.cover-news .spread .mid { font-size: 0.62em; align-self: center; }
.cover-news .mini {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 26%;
  aspect-ratio: 4 / 5;
  background: var(--paper-white);
  padding: 1.5%;
}
.cover-news .mini image-slot { width: 100%; height: 100%; display: block; }
.cover-news .bignum {
  position: absolute; right: 6%; bottom: 4%;
  font-family: var(--font-punch);
  font-weight: 900;
  font-stretch: 78%;
  font-size: 2.4em;
  line-height: 1;
  color: var(--red);
}
.cover-news .newsline {
  position: absolute; left: 6%; bottom: 6%;
  max-width: 28%;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 0.82em;
  line-height: 1.2;
  color: var(--red);
}

/* — motif 6: guest-name stack — red Didone list on eggshell */
.cover-stack {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.15em;
  padding: 7%;
  text-align: center;
}
.cover-stack .name {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 1.35em;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--red);
}
.cover-stack .name.alt { color: var(--maroon); }
.cover-stack .stackfoot {
  margin-top: 4%;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.65em;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* — finished-cover slot (supplied PNGs via src fallback) */
.cover-img image-slot { width: 100%; height: 100%; display: block; }

/* ---------- Featured episode — side-by-side card ---------- */
.ep-feature {
  background: var(--paper-white);
  border: 2px solid var(--ink);
  padding: 24px;
  margin-bottom: 56px;
  box-shadow: 12px 12px 0 var(--red);
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.ep-feature-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  font-size: 26px; /* em base for cover type */
}
.ep-feature-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px 8px 4px 0;
}
.ep-feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}
.ep-feature-title {
  font-family: var(--font-cond);
  font-weight: 850;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}
.ep-feature-title em { font-style: normal; color: var(--red); }
.ep-feature-lede {
  font-family: var(--font-editorial);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.ep-feature-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.ep-feature-meta .sep { color: var(--red); }
.ep-feature-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--paper-white);
  border: 2px solid var(--red);
  padding: 14px 22px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-play:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-play-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--red);
  font-size: 9px;
  padding-left: 2px;
}
.btn-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 14px 20px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.btn-save:hover { background: var(--ink); color: var(--paper); }
.btn-save-icon { font-weight: 700; }

/* ---------- Episode list ---------- */
.ep-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}
.ep-row {
  display: grid;
  grid-template-columns: 76px 200px 1fr 92px 64px;
  gap: 24px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--rule-faint);
  align-items: center;
  cursor: pointer;
  transition: background .15s;
}
.ep-row:hover { background: var(--paper-white); }
.ep-row:hover .ep-title { color: var(--red); }
.ep-row .n {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.ep-row .n.is-premium { color: var(--maroon); }
.ep-row .thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  font-size: 9.5px; /* em base for mini cover type */
  border: 1px solid var(--rule-faint);
}
.ep-row .ti .ep-title {
  margin: 0 0 6px;
  font-family: var(--font-cond);
  font-weight: 850;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color .2s;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
}
.ep-row .ti .ep-desc {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 540px;
}
.ep-row .date, .ep-row .dur {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}
/* boxed GLOBAL ELITES tab (motif 4) */
.premium-tag {
  display: inline-block;
  font-family: var(--font-tab);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 4px 8px 3px;
  line-height: 1;
}

/* ---------- Calm strip ---------- */
.calm-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 44px 32px;
  background: var(--paper);
}
.calm-strip-inner {
  max-width: 1320px; margin: 0 auto;
  text-align: center;
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  color: var(--ink);
}
.calm-strip-inner .dot { color: var(--red); margin: 0 14px; font-style: normal; }

/* ---------- Global Elite tease — maroon card ---------- */
.elite-tease { background: var(--paper); }
.elite-tease-eyebrow { display: inline-block; margin-bottom: 28px; }
.elite-tease-card {
  background: var(--maroon);
  color: var(--paper);
  box-shadow: 12px 12px 0 var(--pink);
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.elite-tease-figure {
  margin: 0;
  padding: 32px 0 32px 32px;
  display: block;
}
.elite-tease-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--pink);
  padding: 14px;
  position: relative;
}
.elite-tease-photo image-slot {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper-white);
}
.elite-tease-figure figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--pink);
  padding-right: 24px;
}
.elite-tease-body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
}
.elite-tease-tab {
  align-self: flex-start;
  font-family: var(--font-tab);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 6px 12px 5px;
}
.elite-tease h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--paper);
}
.elite-tease h2 em { font-style: italic; color: var(--pink); }
.elite-tease p {
  max-width: 560px;
  font-family: var(--font-editorial);
  font-size: 17px;
  line-height: 1.55;
  color: var(--paper);
  opacity: .92;
  margin: 0;
}
.elite-tease p b { font-style: normal; font-weight: 700; color: var(--teal); }
.elite-tease-inside { border-top: 1px solid rgba(242, 199, 204, 0.4); padding-top: 18px; }
.elite-tease-inside h4 {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.elite-tease-bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.elite-tease-bullets li {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  color: var(--paper);
}
.elite-tease-bullets li::before {
  content: '★';
  position: absolute;
  left: 0; top: 0;
  color: var(--teal);
  font-size: 11px;
  line-height: 2;
}
.elite-tease-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--paper);
  color: var(--red);
  padding: 17px 26px;
  transition: transform .15s ease, background .15s ease;
  margin-top: 4px;
}
.elite-tease-cta:hover { transform: translate(-2px, -2px); background: var(--paper-white); }

/* ---------- Merch — The Closet ---------- */
.merch { background: var(--paper); border-top: 1px solid var(--rule); }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product {
  background: var(--paper-white);
  border: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 6px 6px 0 var(--red);
  transition: transform .2s, box-shadow .2s;
}
.product:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--red); }
.product .pic {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.product .pic image-slot { width: 100%; height: 100%; display: block; }
.product .price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: var(--paper-white);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.product-body {
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.product-body h3 {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 850;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.015em;
  color: var(--ink);
}
.product-body h3 em { font-style: normal; color: var(--red); }
.product-body .cap {
  font-family: var(--font-editorial);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-mute);
  margin-top: 2px;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.view-link {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Footer — red-deep, live-type wordmark ---------- */
footer {
  background: var(--red-deep);
  color: var(--paper);
  padding: 80px 32px 36px;
}
.footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 238, 230, 0.3);
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--teal);
  margin: 0 0 18px;
}
.footer-grid ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  font-family: var(--font-editorial);
  font-size: 14px;
}
.footer-grid a { text-decoration: none; color: var(--paper); opacity: .85; }
.footer-grid a:hover { color: var(--teal); opacity: 1; }
.foot-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  color: var(--paper);
}
.foot-brand em { font-style: italic; color: var(--pink); }
.foot-tag {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--paper);
  opacity: .8;
  max-width: 320px;
  margin-bottom: 24px;
}
.foot-news {
  display: flex; gap: 0;
  border: 1px solid var(--paper);
  overflow: hidden;
  max-width: 340px;
  background: transparent;
}
.foot-news input {
  background: transparent; color: var(--paper);
  border: none; outline: none;
  padding: 11px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  flex: 1;
  min-width: 0;
}
.foot-news input::placeholder { color: rgba(242, 238, 230, 0.65); }
.foot-news button {
  background: var(--paper); color: var(--red);
  border: none; padding: 11px 18px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-bottom {
  max-width: 1320px; margin: 24px auto 0;
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--font-mono);
  font-size: 10px; color: var(--paper);
  opacity: .75;
  text-transform: uppercase; letter-spacing: 0.22em;
}

/* ==================== ELITE PAGE ==================== */

/* elite hero — full-bleed red-deep, tone-on-tone giant type, pink-mat photo */
.eh {
  background: var(--red-deep); color: var(--paper);
  position: relative; overflow: hidden;
  padding: 0;
}
.eh-folios {
  max-width: 1320px; margin: 0 auto;
  padding: 22px 32px 0;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative; z-index: 4;
}
.eh-stage {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}
/* giant tone-on-tone type — fully readable, photo sits beside it (never behind) */
.eh-word {
  display: flex; flex-direction: column;
  font-family: var(--font-punch);
  font-weight: 900;
  font-stretch: 78%;
  text-transform: uppercase;
  color: var(--red-hot);
  line-height: 0.88;
  font-size: clamp(72px, 11vw, 184px);
  letter-spacing: 0.01em;
  user-select: none;
  min-width: 0;
}
.eh-mat {
  position: relative;
  width: min(300px, 100%);
  aspect-ratio: 4 / 5;
  justify-self: center;
  background: var(--pink);
  padding: 16px 16px 40px;
  transform: rotate(-2deg);
  box-shadow: 8px 10px 0 rgba(20, 17, 16, 0.22);
}
.eh-mat image-slot { width: 100%; height: 100%; display: block; background: var(--paper-white); }
.eh-mat .cap {
  position: absolute; left: 0; right: 0; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--maroon);
  text-align: center;
}
.eh-inner {
  position: relative; z-index: 3;
  max-width: 900px; margin: 0 auto;
  padding: 48px 32px 96px;
  text-align: center;
}
.eh-crest {
  display: inline-block;
  font-family: var(--font-tab);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: var(--teal);
  padding: 6px 14px 5px;
  margin-bottom: 26px;
}
.eh h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 8vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 0 0 30px;
  color: var(--paper);
}
.eh h1 .i { font-style: italic; color: var(--teal); }
.eh-sub {
  max-width: 620px; margin: 0 auto 40px;
  font-family: var(--font-editorial);
  font-size: 18px;
  line-height: 1.55;
  color: var(--paper);
  opacity: .92;
}
.eh-cta {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: var(--teal);
  padding: 20px 34px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--maroon);
  transition: transform .15s, box-shadow .15s;
}
.eh-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--maroon);
}
.eh-finePrint {
  display: block; margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .7;
}

/* perks — 6 cards */
.perks-section { background: var(--paper); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.perk-card {
  background: var(--paper-white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  padding: 26px 24px 28px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.perk-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--red);
}
.perk-card-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--red);
  line-height: 1;
}
.perk-card-rule {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-top: 2px;
}
.perk-card-h {
  font-family: var(--font-cond);
  font-weight: 850;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}
.perk-card-p {
  font-family: var(--font-editorial);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

/* schedule — hairline day table */
.schedule-section { background: var(--paper); border-top: 1px solid var(--rule); }
.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.day {
  padding: 22px 14px;
  border-right: 1px solid var(--rule-faint);
  min-height: 130px;
  display: flex; flex-direction: column; gap: 8px;
}
.day:last-child { border-right: 0; }
.day .dn {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.day .dl {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--ink-mute);
}
.day .pill {
  margin-top: auto;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
}
.day.public .pill { color: var(--ink); border-top: 3px solid var(--ink); padding-top: 6px; }
.day.elite .pill {
  color: var(--paper-white);
  background: var(--red);
  padding: 5px 8px 4px;
}
.day.empty .pill { color: var(--ink-mute); opacity: .55; }
.day.empty .dn { color: var(--ink-mute); }

/* pricing — two plan cards */
.pricing-section { background: var(--paper); border-top: 1px solid var(--rule); }
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--paper-white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink);
}
.plan--featured {
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: 8px 8px 0 var(--pink);
  color: var(--paper);
}
.plan-flag {
  position: absolute;
  top: -16px; right: 24px;
  background: var(--teal);
  color: var(--red-deep);
  font-family: var(--font-tab);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 7px 12px 6px;
  transform: rotate(-3deg);
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--maroon);
}
.plan-tier {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--red);
  letter-spacing: 0.22em;
}
.plan--featured .plan-tier { color: var(--teal); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}
.plan-amt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 6.4vw, 84px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plan--featured .plan-amt { color: var(--paper); }
.plan-per {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: lowercase;
}
.plan--featured .plan-per { color: var(--pink); }
.plan-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--red);
  opacity: 0.55;
  margin: 4px 0 2px;
}
.plan--featured .plan-rule { background: var(--pink); }
.plan-note {
  font-family: var(--font-editorial);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.plan--featured .plan-note { color: var(--paper); opacity: .9; }
.plan-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-bullets li {
  font-family: var(--font-editorial);
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.plan--featured .plan-bullets li { color: var(--paper); }
.plan-bullets li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--red);
  font-size: 11px;
}
.plan--featured .plan-bullets li::before { color: var(--teal); }
.plan-bullets b { font-weight: 700; }
.plan--featured .plan-bullets b { color: var(--teal); }
.plan-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: var(--paper-white);
  padding: 18px 24px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.plan-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.plan--featured .plan-cta {
  background: var(--teal);
  color: var(--red-deep);
  box-shadow: 4px 4px 0 var(--maroon);
}
.plan--featured .plan-cta:hover { box-shadow: 6px 6px 0 var(--maroon); }

/* faq — definition list */
.faq-section { background: var(--paper); border-top: 1px solid var(--rule); }
.faq-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 60px;
  row-gap: 0;
}
.faq-dl dt {
  font-family: var(--font-cond);
  font-weight: 800;
  font-stretch: 84%;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0.015em;
  padding: 28px 0;
  border-top: 1px solid var(--rule-faint);
  color: var(--ink);
}
.faq-dl dd {
  font-family: var(--font-editorial);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--rule-faint);
  color: var(--ink);
  opacity: 0.88;
}
.faq-dl dt:last-of-type, .faq-dl dd:last-of-type {
  border-bottom: 1px solid var(--rule-faint);
}
.faq-dl a { color: var(--red); }

/* closing — teal panel, red type */
.closing {
  padding: 110px 32px;
  text-align: center;
  background: var(--teal);
}
.closing h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 auto 28px;
  max-width: 900px;
  color: var(--red);
}
.closing h2 em { font-style: italic; }
.closing p {
  font-family: var(--font-editorial);
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--red-deep);
}
.closing-link {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 19px 32px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--maroon);
  transition: transform .15s, box-shadow .15s;
}
.closing-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--maroon);
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ep-row { grid-template-columns: 60px 170px 1fr 84px 56px; gap: 18px; }
}

@media (max-width: 900px) {
  .hero-grid, .ep-feature, .elite-tease-card, .footer-grid, .plan-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 40px; padding-bottom: 64px; }
  .hero-art { max-width: 420px; justify-self: center; margin-top: 8px; }
  .nav-links { display: none; }
  .nav-tab { display: none; }
  .ep-feature-art { font-size: 20px; }
  .ep-row { grid-template-columns: 48px 140px 1fr; }
  .ep-row .date, .ep-row .dur { display: none; }
  .elite-tease-figure { padding: 28px 28px 0; }
  .elite-tease-body { padding: 32px 28px 36px; }
  .cal { grid-template-columns: repeat(2, 1fr); }
  .day { min-height: 108px; border-bottom: 1px solid var(--rule-faint); }
  .faq-dl { grid-template-columns: 1fr; }
  .faq-dl dt { padding-bottom: 8px; }
  .faq-dl dd { padding-top: 0; border-top: 0; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .eh-stage { grid-template-columns: 1fr; gap: 36px; justify-items: center; }
  .eh-word { font-size: clamp(64px, 15vw, 130px); align-items: center; text-align: center; }
}

@media (max-width: 560px) {
  section { padding: 56px 20px; }
  .nav-inner { padding: 14px 20px; gap: 16px; }
  .nav-logo img { height: 24px; }
  .nav-cta { padding: 9px 12px; font-size: 10.5px; letter-spacing: 0.12em; margin-left: auto; }
  .hero-grid { padding: 44px 20px 56px; }
  .hero-dateline { padding: 14px 20px 12px; }
  .hero h1 { font-size: clamp(44px, 12.5vw, 60px); }
  .divider-band { padding: 18px 20px; }
  .divider-band-inner .dot { margin: 0 10px; }
  .section-head {
    flex-direction: column; align-items: flex-start; gap: 14px;
    margin-bottom: 36px;
  }
  .ep-feature { padding: 16px; gap: 22px; box-shadow: 8px 8px 0 var(--red); }
  .ep-feature-art { font-size: 15px; }
  .ep-feature-title { font-size: 26px; }
  .ep-row { grid-template-columns: 110px 1fr; row-gap: 10px; }
  .ep-row .n { grid-column: 1 / -1; }
  .ep-row .thumb { font-size: 7px; }
  .ep-row .ti .ep-title { font-size: 17px; }
  .ep-row .ti .ep-desc { font-size: 14px; }
  .merch-grid { grid-template-columns: 1fr; }
  .elite-tease-card { box-shadow: 8px 8px 0 var(--pink); }
  .elite-tease h2 { font-size: 40px; }
  .elite-tease-bullets { grid-template-columns: 1fr; }
  .calm-strip { padding: 32px 20px; }
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .perks-grid { grid-template-columns: 1fr; }
  .cal { grid-template-columns: 1fr; }
  .day { min-height: 0; }
  .eh-stage { padding: 28px 20px 0; gap: 28px; }
  .eh-word { font-size: clamp(48px, 16vw, 76px); }
  .eh-mat { width: min(220px, 62vw); }
  .eh-inner { padding: 36px 20px 72px; }
  .eh h1 { font-size: clamp(42px, 12vw, 56px); }
  .plan { padding: 28px 22px 26px; }
  .closing { padding: 72px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .listen-pill, .btn-play, .btn-save, .product, .perk-card,
  .plan-cta, .eh-cta, .closing-link, .elite-tease-cta {
    transition: none;
  }
}
