/* ============================================================
   THE ADULTS CORNER — CherryDTV Podcast Theme
   Brand-true: Cherry Red #FF1616 · Soft Pink #FF9BAD · White · Blush
   Type: Pacifico (logo) · Anton (display) · DM Sans (everything)
   Backgrounds: white / blush / red only. No box-shadows. No surface gradients
   except the 6px rainbow strip.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Pacifico&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,900;1,9..40,400;1,9..40,500&display=swap');

:root {
  --red: #FF1616;
  --soft: #FF9BAD;
  --deep: #CC1212;
  --blush: #FFF5F7;
  --blush-strong: #FFE7EC;
  --ink: #1A1A1A;
  --muted: #777777;
  --white: #FFFFFF;
  --rainbow: linear-gradient(90deg, #FF1616, #FF9BAD, #FF1616);

  --anton: 'Anton', Impact, sans-serif;
  --script: 'Pacifico', cursive;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --pad-x: clamp(24px, 6vw, 96px);
  --maxw: 1280px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.tac-wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ---------- Rainbow strip ---------- */
.rainbow { height: 6px; background: var(--rainbow); }
.rainbow--thin { height: 5px; }

/* ---------- Kicker / eyebrow ---------- */
.eye {
  font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--red); font-family: var(--sans); margin-bottom: 12px;
}
.eye--muted { color: var(--muted); }
.eye--soft { color: var(--soft); }
.eye--onred { color: rgba(255,255,255,0.75); }

/* ---------- Display headings ---------- */
.big {
  font-family: var(--anton); text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 0.9; color: var(--ink); font-weight: 400;
}
.big .accent { color: var(--red); }
.big--onred { color: var(--white); }
.big--onred .accent { color: var(--ink); }

/* ---------- Wordmark ---------- */
.wordmark { font-family: var(--script); color: var(--red); line-height: 0.93; }
.logo-block .wordmark,
body[data-logo="Block"] .wordmark {
  font-family: var(--anton); text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.88;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px 28px; border-radius: 999px; font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; background: var(--red); color: var(--white);
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn--sm { padding: 9px 20px; font-size: 11px; }
.btn--lg { padding: 15px 34px; font-size: 13px; }
.btn--ink { background: var(--ink); }
.btn--white { background: #fff; color: var(--red); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,0.2); }
.btn--ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.28); }

/* ---------- Corner bracket motif ---------- */
.bracketed { position: relative; }
body[data-brackets="false"] .bracketed::before,
body[data-brackets="false"] .bracketed::after { display: none; }
.bracketed::before, .bracketed::after {
  content: ''; position: absolute; width: 16px; height: 16px; border-color: var(--red); border-style: solid; pointer-events: none;
}
.bracketed::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.bracketed::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.bracketed--soft::before, .bracketed--soft::after { border-color: var(--soft); }
.bracketed--white::before, .bracketed--white::after { border-color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 0.5px solid transparent; transition: border-color 0.2s; }
.site-header.scrolled { border-bottom-color: rgba(0,0,0,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand-lockup { display: flex; flex-direction: column; align-items: flex-start; }
.brand-name { font-family: var(--script); font-size: 26px; color: var(--red); line-height: 1; }
body[data-logo="Block"] .brand-name { font-family: var(--anton); text-transform: uppercase; font-size: 22px; letter-spacing: 0.01em; }
.brand-sub { font-size: 8px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-top: 3px; }

.nav-desktop { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-desktop a {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); padding: 4px 0; position: relative; transition: color 0.15s;
}
.nav-desktop a:hover, .nav-desktop a.nav-current { color: var(--red); }
.nav-desktop a.nav-current::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--red); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: all 0.2s; }
.nav-mobile { display: none; flex-direction: column; border-top: 0.5px solid rgba(0,0,0,0.08); background: var(--white); padding: 8px var(--pad-x) 22px; }
.nav-mobile a { font-size: 15px; font-weight: 700; color: var(--ink); padding: 14px 0; border-bottom: 0.5px solid rgba(0,0,0,0.06); }
.nav-mobile a:last-of-type { border-bottom: none; }
body.nav-open .nav-mobile { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 55% 45%; min-height: 74vh; max-height: 860px; }
.hero-left { padding: clamp(40px,6vw,88px) var(--pad-x); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero-ghost { position: absolute; bottom: -24px; right: -40px; font-family: var(--anton); font-size: clamp(110px,16vw,210px); line-height: 0.85; color: rgba(0,0,0,0.035); user-select: none; pointer-events: none; }
.hero-wordmark { font-size: clamp(50px,8vw,104px); margin-bottom: 26px; position: relative; }
.hero-tagline {
  font-family: var(--anton); font-size: clamp(13px,1.4vw,18px); letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink); line-height: 1.35; max-width: 480px; border-left: 5px solid var(--soft); padding-left: 20px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-sign { font-family: var(--script); font-size: 22px; color: var(--muted); }
.hero-photo { position: relative; overflow: hidden; min-height: 380px; background: var(--blush); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .tint { position: absolute; inset: 0; background: var(--red); opacity: 0.16; mix-blend-mode: multiply; }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(255,22,22,0.92), transparent); padding: 28px 36px; display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--anton); font-size: 28px; color: #fff; line-height: 1; }
.hero-stats .lbl { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 700; margin-top: 2px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { overflow: hidden; padding: 13px 0; background: var(--red); border-top: 0.5px solid rgba(0,0,0,0.06); border-bottom: 0.5px solid rgba(0,0,0,0.06); }
.ticker-track { display: flex; width: max-content; animation: tac-scroll 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span.item { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: #fff; padding: 0 18px; white-space: nowrap; }
.ticker span.dot { font-size: 10px; color: #fff; opacity: 0.5; }
@keyframes tac-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px var(--pad-x); }
.section--blush { background: var(--blush); }
.section--red { background: var(--red); }
.section--white { background: var(--white); }
.lede { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 620px; margin-top: 24px; }

/* Statement */
.statement .big { font-size: clamp(36px,6vw,82px); margin-bottom: 8px; }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3px; height: 420px; }
.photo-strip .cell { position: relative; overflow: hidden; background: var(--blush); }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip .tint { position: absolute; inset: 0; background: var(--red); opacity: 0.18; mix-blend-mode: multiply; }

/* Seasons split */
.seasons { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.season { padding: clamp(44px,6vw,72px) var(--pad-x); display: flex; flex-direction: column; justify-content: center; }
.season--1 { background: var(--blush); border-right: 3px solid var(--red); }
.season--2 { background: var(--red); position: relative; overflow: hidden; }
.season--2 .ghost2 { position: absolute; bottom: -90px; right: -30px; font-family: var(--anton); font-size: 440px; color: rgba(0,0,0,0.08); line-height: 1; user-select: none; pointer-events: none; }
.season h3 { font-family: var(--anton); font-size: clamp(36px,5vw,60px); text-transform: uppercase; line-height: 0.9; margin-bottom: 6px; color: var(--ink); font-weight: 400; }
.season--2 h3 { color: var(--soft); position: relative; z-index: 1; }
.season .script { font-family: var(--script); font-size: clamp(28px,4vw,48px); color: var(--red); line-height: 1.1; margin-bottom: 20px; }
.season p { font-size: 15px; line-height: 1.75; max-width: 340px; margin-bottom: 26px; color: var(--muted); position: relative; z-index: 1; }
.season--2 p { color: rgba(255,255,255,0.85); }

/* ============================================================
   EPISODES — list + cards (from Ghost posts)
   ============================================================ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; }
.section-head .big { font-size: clamp(40px,6vw,72px); }

.ep-row { display: grid; grid-template-columns: 92px 46px 1fr auto; align-items: center; gap: 16px; padding: 20px 14px; border-bottom: 1px solid rgba(0,0,0,0.08); border-radius: 4px; transition: background 0.15s; }
.ep-row:hover { background: rgba(255,22,22,0.04); }
.ep-row .epnum { font-family: var(--anton); font-size: 50px; line-height: 1; color: rgba(0,0,0,0.07); transition: color 0.15s; }
.ep-row:hover .epnum { color: rgba(255,22,22,0.2); }
.ep-row .play { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(0,0,0,0.18); color: #aaa; font-size: 12px; transition: all 0.15s; }
.ep-row:hover .play { background: var(--red); border-color: var(--red); color: #fff; }
.ep-row .cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 5px; }
.ep-row .title { font-family: var(--sans); font-style: italic; font-size: 17px; color: var(--ink); font-weight: 500; line-height: 1.25; }
.ep-row .meta { font-size: 12px; color: var(--muted); }

.ep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.ep-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,0.1); display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s; }
.ep-card:hover { transform: translateY(-4px); border-color: var(--red); }
.ep-card .art { position: relative; aspect-ratio: 16/10; background: var(--red); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ep-card .art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ep-card .art .num { position: absolute; right: -14px; bottom: -44px; font-family: var(--anton); font-size: 170px; color: rgba(0,0,0,0.12); line-height: 1; }
.ep-card .art .badge { position: absolute; top: 14px; left: 14px; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.22); border-radius: 999px; padding: 5px 12px; }
.ep-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ep-card .cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.ep-card .title { font-family: var(--sans); font-style: italic; font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.25; margin-bottom: 10px; }
.ep-card .excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.ep-card .foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 0.5px solid rgba(0,0,0,0.08); }
.ep-card .foot .g { font-size: 12px; color: var(--muted); }
.ep-card .foot .d { font-size: 11px; font-weight: 700; color: var(--ink); }

/* Filter bar */
.filter-bar { position: sticky; top: 74px; z-index: 50; background: var(--white); border-bottom: 0.5px solid rgba(0,0,0,0.1); padding: 16px var(--pad-x); display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.filter-bar .label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.chip { padding: 8px 18px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(0,0,0,0.15); background: transparent; color: var(--muted); transition: all 0.15s; }
.chip.active, .chip:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ============================================================
   HOST teaser
   ============================================================ */
.host { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.host-photo { position: relative; overflow: hidden; min-height: 360px; background: var(--blush); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-text { background: var(--red); padding: clamp(44px,6vw,80px) var(--pad-x); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.host-text .ghosttac { position: absolute; bottom: -80px; right: -30px; font-family: var(--anton); font-size: 360px; color: rgba(0,0,0,0.07); line-height: 1; pointer-events: none; }
.host-text .name { font-family: var(--script); font-size: clamp(52px,8vw,96px); line-height: 0.9; color: #fff; margin-bottom: 24px; position: relative; z-index: 1; }
.host-text p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 26px; max-width: 440px; position: relative; z-index: 1; }
.host-text blockquote { font-family: var(--sans); font-style: italic; font-size: 20px; color: #fff; line-height: 1.5; border-left: 4px solid var(--soft); padding-left: 20px; margin-bottom: 30px; position: relative; z-index: 1; }

/* ============================================================
   CLOSER / subscribe
   ============================================================ */
.closer { background: var(--red); padding: 80px var(--pad-x); text-align: center; display: flex; flex-direction: column; align-items: center; }
.closer .wordmark { color: #fff; font-size: clamp(48px,7vw,92px); margin-bottom: 22px; }
.closer .sub { font-family: var(--anton); font-size: clamp(14px,1.8vw,22px); letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 40px; }
.subscribe-form { display: flex; max-width: 420px; width: 100%; }
.subscribe-form input { flex: 1; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-right: none; border-radius: 999px 0 0 999px; padding: 14px 22px; font-family: var(--sans); font-size: 14px; color: #fff; outline: none; }
.subscribe-form input::placeholder { color: rgba(255,255,255,0.6); }
.subscribe-form button { background: var(--ink); color: #fff; border: none; padding: 14px 26px; border-radius: 0 999px 999px 0; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.closer .socials { display: flex; gap: 24px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.closer .socials a { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.06em; }
.closer .socials a:hover { color: #fff; }

/* ============================================================
   POST (episode) page
   ============================================================ */
.post-head { background: var(--red); position: relative; overflow: hidden; }
.post-head-grid { display: grid; grid-template-columns: 1fr 0.85fr; min-height: 440px; }
.post-head-text { padding: clamp(40px,5vw,72px) var(--pad-x); display: flex; flex-direction: column; justify-content: center; }
.post-back { color: #fff; opacity: 0.85; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; }
.post-tags { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.post-tags .s { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); background: #fff; border-radius: 999px; padding: 6px 14px; }
.post-tags .c { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.post-title { font-family: var(--sans); font-style: italic; font-size: clamp(28px,3.6vw,48px); color: #fff; font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 20px; }
.post-excerpt { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 520px; margin-bottom: 24px; }
.post-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.7); }
.post-head-art { position: relative; overflow: hidden; min-height: 300px; background: var(--deep); }
.post-head-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-head-art .num { position: absolute; right: -10px; bottom: -60px; font-family: var(--anton); font-size: 260px; color: rgba(255,255,255,0.18); line-height: 1; pointer-events: none; }

.post-player { background: var(--blush); padding: 28px var(--pad-x); }
.post-player .platforms { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }

.post-body { background: var(--white); padding: 64px var(--pad-x); }
.post-content { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--ink); }
.post-content h2 { font-family: var(--anton); text-transform: uppercase; font-size: 30px; letter-spacing: 0.02em; margin: 2.2em 0 0.6em; color: var(--ink); font-weight: 400; }
.post-content h3 { font-family: var(--sans); font-style: italic; font-size: 22px; font-weight: 600; margin: 1.8em 0 0.5em; }
.post-content p { margin-bottom: 1.3em; }
.post-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { margin: 0 0 1.3em 1.4em; }
.post-content li { margin-bottom: 0.5em; }
.post-content blockquote { font-family: var(--sans); font-style: italic; font-size: 21px; line-height: 1.5; border-left: 3px solid var(--red); padding-left: 20px; margin: 1.6em 0; color: var(--ink); }
.post-content img { border-radius: 10px; margin: 1.6em 0; }
.post-content figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
/* Ghost audio card */
.post-content .kg-audio-card { background: var(--blush); border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; margin: 1.6em 0; }

/* ---------- Koenig editor cards (required) ---------- */
.post-content .kg-card { margin-top: 1.6em; margin-bottom: 1.6em; }
.post-content .kg-width-wide {
  position: relative;
  width: min(1080px, 92vw);
  margin-left: 50%;
  transform: translateX(-50%);
}
.post-content .kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.post-content .kg-width-full img { width: 100%; border-radius: 0; }
.post-content .kg-image { display: block; margin-left: auto; margin-right: auto; }
.post-content .kg-width-wide .kg-image,
.post-content .kg-width-full .kg-image { width: 100%; }

/* Galleries */
.post-content .kg-gallery-container { display: flex; flex-direction: column; gap: 10px; max-width: 100%; }
.post-content .kg-gallery-row { display: flex; gap: 10px; }
.post-content .kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; margin: 0; border-radius: 8px; }

/* Bookmark card */
.post-content .kg-bookmark-card { width: 100%; margin: 1.6em 0; }
.post-content .kg-bookmark-container { display: flex; min-height: 148px; border: 1px solid rgba(0,0,0,0.1); border-radius: 12px; overflow: hidden; color: var(--ink); text-decoration: none; }
.post-content .kg-bookmark-content { flex: 1 1 auto; padding: 20px; order: 1; }
.post-content .kg-bookmark-title { font-weight: 700; }
.post-content .kg-bookmark-description { color: var(--muted); font-size: 14px; margin-top: 6px; }
.post-content .kg-bookmark-thumbnail { position: relative; flex: 0 0 33%; }
.post-content .kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; margin: 0; }

/* Embed + button + callout */
.post-content .kg-embed-card { display: flex; flex-direction: column; align-items: center; width: 100%; }
.post-content .kg-button-card { display: flex; }
.post-content .kg-button-card.kg-align-center { justify-content: center; }
.post-content .kg-callout-card { display: flex; gap: 12px; padding: 18px 22px; border-radius: 10px; background: var(--blush); border-left: 3px solid var(--red); margin: 1.6em 0; }

/* ============================================================
   PAGES (About / Advertise / Listen) — branded wrappers
   ============================================================ */
.page-hero { background: var(--red); position: relative; overflow: hidden; padding: clamp(48px,7vw,100px) var(--pad-x); }
.page-hero .ghost-x { position: absolute; bottom: -120px; right: -40px; font-family: var(--anton); font-size: 460px; color: rgba(0,0,0,0.08); line-height: 1; pointer-events: none; }
.page-hero .big { font-size: clamp(44px,7vw,96px); }
.page-content { max-width: 820px; margin: 0 auto; padding: clamp(48px,6vw,80px) var(--pad-x); font-size: 17px; line-height: 1.8; color: var(--ink); }
.page-content h2 { font-family: var(--anton); text-transform: uppercase; font-size: 28px; margin: 2em 0 0.5em; font-weight: 400; }
.page-content p { margin-bottom: 1.2em; color: var(--muted); }
.page-content a { color: var(--red); text-decoration: underline; }

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { border-radius: 14px; padding: 34px 28px; min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end; }
.stat-card .n { font-family: var(--anton); font-size: clamp(32px,3.6vw,54px); color: #fff; line-height: 1; }
.stat-card .l { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-top: 10px; }

/* Tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid rgba(0,0,0,0.12); position: relative; display: flex; flex-direction: column; }
.tier.pop { background: var(--ink); transform: translateY(-8px); border: none; }
.tier .tname { font-family: var(--anton); font-size: 44px; text-transform: uppercase; color: var(--red); line-height: 1; margin-bottom: 20px; }
.tier.pop .tname { color: var(--soft); }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.5; }
.tier.pop li { color: rgba(255,255,255,0.92); }
.tier li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.tier .pop-badge { position: absolute; top: 20px; right: 20px; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); background: #fff; border-radius: 999px; padding: 5px 12px; }

/* Platforms */
.platforms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; width: 100%; max-width: 760px; margin: 0 auto; }
.platform { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 24px; border-radius: 12px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); transition: all 0.15s; }
.platform:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.platform .pl-l { display: flex; align-items: center; gap: 14px; }
.platform .dot { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.3); }
.platform .pn { font-size: 15px; font-weight: 700; color: #fff; }
.platform .pnote { font-size: 11px; color: rgba(255,255,255,0.8); }
.platform .arr { color: rgba(255,255,255,0.7); font-size: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #F4EDE0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 28px; }
.footer-grid .wordmark { color: #fff; font-size: 34px; }
.footer-blurb { font-size: 14px; color: rgba(244,237,224,0.6); line-height: 1.7; max-width: 320px; margin-top: 14px; }
.footer-chips { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.footer-chips a { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,237,224,0.55); border: 1px solid rgba(244,237,224,0.18); border-radius: 999px; padding: 6px 14px; transition: all 0.15s; }
.footer-chips a:hover { color: var(--soft); border-color: var(--soft); }
.footer-col h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--soft); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav .nav-item { font-size: 14px; color: rgba(244,237,224,0.75); transition: color 0.15s; }
.footer-nav .nav-item:hover { color: var(--soft); }
.footer-col a { font-size: 14px; color: rgba(244,237,224,0.75); transition: color 0.15s; }
.footer-col a:hover { color: var(--soft); }
.footer-bottom { padding: 22px 0 40px; border-top: 1px solid rgba(244,237,224,0.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(244,237,224,0.5); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; align-items: center; gap: 14px; padding: 40px var(--pad-x) 72px; }
.pagination a, .pagination .page-number { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 22px; border-radius: 999px; }
.pagination a { background: var(--red); color: #fff; }
.pagination .page-number { color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .seasons, .host, .post-head-grid { grid-template-columns: 1fr; max-height: none; }
  .hero-photo, .host-photo, .post-head-art { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-strip .cell { min-height: 200px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ep-row { grid-template-columns: 64px 40px 1fr; }
  .ep-row .meta { display: none; }
  .hide-sm { display: none !important; }
}
