/* ============================================================
   So, Who is She? — design tokens
   Palette pulled from the show's cover art:
   deep violet field, near-black silhouette, marker-yellow accent.
   ============================================================ */
:root{
  --violet-deep:   #241541;   /* page background, near-black-violet */
  --violet-bright: #7C5CFC;   /* brand violet, close to cover art */
  --violet-mid:    #4B32A0;   /* secondary panels */
  --ink:           #100A1C;   /* near-black for cards, footer, silhouettes */
  --paper:         #F4F0FF;   /* light lavender-white for light sections */
  --cream:         #EDE7FB;   /* body text on dark */
  --yellow:        #FFCC33;   /* signature accent, marker scrawl, links */
  --yellow-dim:    #C99A1E;
  --line:          rgba(237,231,251,0.16);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-marker:  'Permanent Marker', cursive;
  --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1120px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--violet-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: var(--yellow); text-decoration: none; }
a:hover{ text-decoration: underline; }
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: #fff;
}
p{ margin: 0 0 1em; }
.wrap{ max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- skip link ---------- */
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--yellow); color:var(--ink);
  padding:10px 16px; z-index:100; font-weight:600;
}
.skip-link:focus{ left: 16px; top: 16px; }

/* ---------- site header ---------- */
.site-header{
  border-bottom: 1px solid var(--line);
  background: var(--violet-deep);
  position: sticky; top:0; z-index: 20;
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; padding-bottom:16px; gap:16px; flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family: var(--font-display);
  color:#fff; font-size: 1.35rem; text-transform:uppercase;
}
.brand:hover{ text-decoration:none; opacity:0.9; }
.brand img{ width:40px; height:40px; border-radius:50%; }
.brand .marker{
  display:block; font-family: var(--font-marker); text-transform:none;
  color: var(--yellow); font-size: 0.62rem; letter-spacing:0.02em; margin-top:-2px;
}
nav.primary-nav ul{
  list-style:none; display:flex; gap:28px; margin:0; padding:0;
}
nav.primary-nav a{
  color: var(--cream); font-weight:600; font-size:0.95rem;
  text-transform:uppercase; letter-spacing:0.04em;
}
nav.primary-nav a:hover{ color: var(--yellow); text-decoration:none; }
nav.primary-nav a[aria-current="page"]{ color: var(--yellow); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:700; font-size:0.95rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor:pointer;
}
.btn:hover{ text-decoration:none; }
.btn-primary{ background: var(--yellow); color: var(--ink); }
.btn-primary:hover{ background:#fff; }
.btn-outline{ background:transparent; color:#fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover{ border-color:#fff; background:rgba(255,255,255,0.08); }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  background: radial-gradient(120% 140% at 78% 12%, var(--violet-bright) 0%, var(--violet-deep) 62%);
  padding: 72px 0 64px;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}
.hero .wrap{
  display:grid; grid-template-columns: 1.15fr 0.85fr; gap:48px; align-items:center;
}
.hero .eyebrow{
  font-family: var(--font-marker); color: var(--yellow); font-size:1.15rem;
  display:inline-block; transform: rotate(-3deg); margin-bottom:10px;
}
.hero h1{
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 0.28em;
}
.hero h1 .accent{ color: var(--yellow); }
.hero .lede{ font-size:1.15rem; color: var(--cream); max-width: 46ch; margin-bottom: 1.6em; }
.hero-art{ position:relative; min-width:0; }
.hero-art img{
  width:100%;
  height:auto;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-badge{
  position:absolute; bottom:-18px; left:-18px;
  background: var(--ink); border:2px solid var(--yellow);
  color:#fff; font-family: var(--font-display); text-transform:uppercase;
  font-size:0.78rem; padding:10px 16px; border-radius:10px; line-height:1.3;
  transform: rotate(-4deg);
}
.hero-badge b{ color: var(--yellow); display:block; font-size:1rem; }

@media (max-width: 860px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; max-width:340px; margin:0 auto; }
}

/* ---------- section basics ---------- */
section{ padding: 64px 0; }
.section-alt{ background: var(--ink); }
.section-head{ max-width: 62ch; margin-bottom: 36px; }
.section-head .kicker{
  font-family: var(--font-marker); color: var(--yellow); font-size:1rem;
  display:inline-block; transform: rotate(-2deg); margin-bottom:6px;
}
.section-head h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p{ color: var(--cream); opacity:0.9; }

/* ---------- mission / about grid ---------- */
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:start; }
.about-grid .stat{
  background: rgba(255,255,255,0.04); border:1px solid var(--line);
  border-radius:14px; padding:20px; margin-bottom:14px;
}
.about-grid .stat .num{ font-family: var(--font-display); color: var(--yellow); font-size:2rem; display:block; }
.about-grid .stat .label{ font-size:0.85rem; color: var(--cream); opacity:0.85; text-transform:uppercase; letter-spacing:0.03em; }
@media (max-width:800px){ .about-grid{ grid-template-columns:1fr; } }

/* ---------- episode dossier cards ---------- */
.file-grid{ display:grid; gap:22px; }
.file-card{
  display:grid; grid-template-columns: 88px 1fr auto; gap:22px; align-items:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border:1px solid var(--line); border-radius:16px; padding:22px 24px;
  transition: border-color .15s ease, transform .15s ease;
}
.file-card:hover{ border-color: var(--yellow); transform: translateY(-2px); }
.file-card .file-num{
  font-family: var(--font-display); font-size:2.2rem; color: var(--violet-bright);
  text-align:center; line-height:1;
}
.file-card .file-num small{
  display:block; font-family: var(--font-body); font-size:0.6rem; letter-spacing:0.08em;
  color: var(--cream); opacity:0.6; text-transform:uppercase; margin-top:4px;
}
.file-card h3{ font-size:1.5rem; margin-bottom:6px; }
.file-card h3 a{ color:#fff; }
.file-card h3 a:hover{ color: var(--yellow); text-decoration:none; }
.file-card p{ color: var(--cream); opacity:0.85; margin-bottom:0; font-size:0.98rem; }
.file-meta{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.tag{
  font-size:0.72rem; text-transform:uppercase; letter-spacing:0.05em;
  border:1px solid var(--line); border-radius:999px; padding:4px 10px; color:var(--cream); opacity:0.85;
}
.file-cta{ white-space:nowrap; }
@media (max-width:700px){
  .file-card{ grid-template-columns: 60px 1fr; }
  .file-cta{ grid-column: 1 / -1; }
}

/* ---------- episode detail ---------- */
.ep-header{
  background: linear-gradient(160deg, var(--violet-mid), var(--violet-deep) 70%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
}
.ep-kicker{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-bottom:14px;
}
.ep-kicker .tag{ background: rgba(0,0,0,0.25); }
.ep-header h1{ font-size: clamp(2.2rem, 5vw, 3.4rem); }
.identity-stamp{
  display:inline-flex; align-items:center; gap:10px; margin-top:18px;
  background: var(--ink); border:2px solid var(--yellow); border-radius:10px;
  padding:12px 18px; transform: rotate(-1.5deg);
}
.identity-stamp .stamp-label{
  font-family: var(--font-display); font-size:0.7rem; letter-spacing:0.08em;
  color: var(--yellow); display:block;
}
.identity-stamp .stamp-name{ font-family: var(--font-display); font-size:1.15rem; color:#fff; text-transform:none; }
.identity-stamp.unconfirmed{ border-color: rgba(255,255,255,0.35); }
.identity-stamp.unconfirmed .stamp-label{ color: var(--cream); }

.spotify-embed{
  margin-top: 26px; max-width: 560px; border-radius: 12px; overflow:hidden;
}
.spotify-embed iframe{ border-radius:12px; display:block; }

.ep-body{ padding: 48px 0 24px; }
.ep-body-inner{ max-width: 70ch; }
.ep-body-inner p{ font-size:1.08rem; color: var(--cream); }

.sources{ background: var(--ink); padding: 40px 0 56px; }
.sources h2{ font-size:1.4rem; }
.sources ol{ padding-left: 1.2em; }
.sources li{ margin-bottom:10px; color: var(--cream); }
.sources li a{ font-weight:600; }
.sources .src-note{ color: var(--cream); opacity:0.6; font-size:0.85rem; }

.listen-band{
  background: var(--violet-bright); padding: 40px 0;
}
.listen-band .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.listen-band h2{ font-size:1.5rem; margin-bottom:4px; color:#fff; }
.listen-band p{ margin:0; color: #fff; opacity:0.9; }
.listen-band .btn-outline{ border-color: rgba(255,255,255,0.7); }

.ep-pagination{
  display:flex; justify-content:space-between; gap:20px; padding: 40px 0 64px; flex-wrap:wrap;
}
.ep-pagination a{
  display:block; max-width: 46%; color: var(--cream);
}
.ep-pagination .dir{ font-size:0.75rem; text-transform:uppercase; letter-spacing:0.06em; color: var(--yellow); display:block; margin-bottom:4px; }
.ep-pagination .next{ margin-left:auto; text-align:right; }
@media (max-width:600px){
  .ep-pagination a{ max-width:100%; }
}

/* ---------- host section ---------- */
.host-card{
  display:grid; grid-template-columns: 220px 1fr; gap:32px; align-items:center;
  background: rgba(255,255,255,0.04); border:1px solid var(--line);
  border-radius:18px; padding:32px;
}
.host-card img{ border-radius:14px; }
@media (max-width:700px){ .host-card{ grid-template-columns:1fr; text-align:center; } .host-card img{ max-width:180px; margin:0 auto; } }

/* ---------- footer ---------- */
.site-footer{
  background: var(--ink); border-top: 1px solid var(--line);
  padding: 40px 0 32px; margin-top: 0;
}
.site-footer .wrap{ display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }
.site-footer p{ margin:0; color: var(--cream); opacity:0.65; font-size:0.9rem; }
.footer-links{ display:flex; gap:20px; list-style:none; margin:0; padding:0; }
.footer-links a{ color: var(--cream); opacity:0.85; font-weight:600; font-size:0.9rem; }
.footer-links a:hover{ color: var(--yellow); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
}
