/* =========================================================
   Violet Hour Media — main.css
   Single shared stylesheet for the entire site.
   All pages link to this file.

   TO EDIT: Find the section comment (e.g. "── NAV ──") and
   change what you need. The color variables at the top
   control the whole palette.
   ========================================================= */

/* Cross-document view transitions — cover art morphs between catalog and show pages */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.22s; animation-timing-function: ease; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html, body { overflow-x: hidden; }

:root {
  --ink:        #141210;
  --dark:       #1C1E28;
  --dark-mid:   #23252F;
  --violet:     #66596C;
  --violet-dim: rgba(102,89,108,0.18);
  --lavender:   #9991A4;
  --bone:       #E8E0D0;
  --parchment:  #C8A882;  /* Fear Archive elements only */
  --white:      #FFFFFF;
  --light:      #E5E1E6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(20, 18, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--violet-dim);
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 7.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 500;
  margin-top: 3px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-contact a {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 0.14em;
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .nav-contact a:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
}


/* ─────────────────────────────────────────
   MOBILE NAV — hamburger + overlay menu
───────────────────────────────────────── */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  z-index: 210;
}
.nav-menu-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
/* Animate to × when menu is open */
.nav.menu-open .nav-menu-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.menu-open .nav-menu-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav-menu-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO — asymmetric split
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

/* Left: cover art panel */
.hero-art-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px 56px;
  background: linear-gradient(135deg, #1A1520 0%, #0E0B14 100%);
}
.hero-art-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--violet-dim) 30%, var(--violet-dim) 70%, transparent);
}

/* The cover art "object" with hard shadow */
.hero-cover-object {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.hero-cover-shadow {
  position: absolute;
  inset: 0;
  transform: translate(18px, 20px) rotate(1.5deg);
  background: rgba(0,0,0,0.55);
  border-radius: 4px;
  filter: blur(4px);
}
.hero-cover-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: #1A1228;
  box-shadow: 0 0 0 1px rgba(102,89,108,0.25);
}
.hero-cover-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image placeholder — used when real cover art isn't available yet */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.img-placeholder-label {
  background: rgba(102,89,108,0.55);
  border: 1px dashed rgba(153,145,164,0.5);
  color: rgba(229,225,230,0.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 3px;
  text-align: center;
  line-height: 1.5;
}

/* Right: headline + CTA panel */
.hero-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 80px 64px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0.85;
}
.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--parchment);
  opacity: 0.5;
}

/* Signature headline: solid bone first line + hollow outline second line */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-headline .line-bone {
  display: block;
  color: var(--bone);
}
.hero-headline .line-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--violet);
  font-style: italic;
}

.hero-desc {
  font-size: 15px;
  color: var(--lavender);
  max-width: 400px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-listen-box {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  background: var(--parchment);
  padding: 16px 28px;
  border-radius: 2px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.hero-listen-box:hover { background: #B89870; }
.hero-listen-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-listen-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.hero-listen-box.is-open .hero-listen-arrow { transform: rotate(90deg); }
.hero-listen-embed { margin-top: 4px; }
.hero-listen-embed iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: none;
  border-radius: 4px;
}
.hero-listen-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  align-self: flex-start;
}
.hero-listen-platforms {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Hero platform icons (sit to the right of the listen button) ── */
.hero-platform-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-platform-icon {
  display: flex;
  align-items: center;
  color: rgba(153, 145, 164, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-platform-icon:hover { color: var(--white); }

/* ── Hero nav links below the listen box ── */
.hero-nav-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-nav-link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(153, 145, 164, 0.7);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(153, 145, 164, 0.2);
  transition: color 0.2s, border-color 0.2s;
}
.hero-nav-link:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.3); }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bone);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-solid:hover { background: #F0E8D8; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(153,145,164,0.8);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(153,145,164,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }

.hero-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.platform-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.45);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(153,145,164,0.15);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.platform-tag:hover { color: var(--lavender); border-color: rgba(153,145,164,0.35); }
.platform-tag:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
  opacity: 0.3;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.3);
}
.hero-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(153,145,164,0.3));
}


/* ─────────────────────────────────────────
   DUAL FEATURE — Fear Archive + In Another Room
───────────────────────────────────────── */
.dual-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--violet-dim);
}

.dual-panel {
  padding: 72px 56px;
  position: relative;
}
.dual-panel:first-child {
  border-right: 1px solid var(--violet-dim);
  background: var(--dark-mid);
}
.dual-panel:last-child {
  background: var(--dark);
}

.dual-panel-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-active  { color: var(--parchment); }
.eyebrow-catalog { color: var(--lavender); opacity: 0.55; }
.dual-panel-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  flex-shrink: 0;
}
.dual-panel:first-child .dual-panel-eyebrow::before { background: var(--parchment); opacity: 0.5; }
.dual-panel:last-child  .dual-panel-eyebrow::before { background: var(--lavender);  opacity: 0.3; }

.dual-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.dual-art {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 6px 8px 24px rgba(0,0,0,0.5);
}
.dual-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dual-art-fa  { background: linear-gradient(145deg, #2A1F35 0%, #1A1228 50%, #0E0A18 100%); }
.dual-art-iar { background: linear-gradient(145deg, #5C1010 0%, #3A0808 50%, #1A0404 100%); }
.dual-art-vh {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  z-index: 1;
}

.dual-info { min-width: 0; }

.dual-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}
.dual-title em { font-style: italic; color: var(--lavender); font-weight: 400; }

.dual-desc {
  font-size: 13px;
  color: var(--lavender);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Latest episode row */
.latest-ep {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 12px 14px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}
.latest-ep-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  transition: transform 0.2s, color 0.2s;
}
.latest-ep[aria-expanded="true"] .latest-ep-chevron { transform: rotate(90deg); color: rgba(255,255,255,0.5); }
.latest-ep:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  border: none;
  pointer-events: none;
}
.latest-ep:hover .play-btn { background: #F0E8D8; transform: scale(1.06); }
.latest-ep-embed { margin: -12px 0 20px; }
.latest-ep-embed iframe { display: block; width: 100%; aspect-ratio: 16/9; height: auto; border: none; border-radius: 4px; }
.ep-label {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 2px;
}
.ep-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dual-trailer {
  margin: 10px 0 4px;
}
.dual-trailer .ep-label {
  margin-bottom: 6px;
}
.dual-trailer iframe {
  display: block;
  border-radius: 4px;
}
.dual-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dual-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.dual-btn-parchment {
  background: var(--parchment);
  color: var(--ink);
  border: 1px solid var(--parchment);
}
.dual-btn-parchment:hover { background: #D4B892; border-color: #D4B892; }
.dual-btn-ghost {
  color: var(--lavender);
  border: 1px solid rgba(153,145,164,0.2);
}
.dual-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

/* Credibility badge (In Another Room panel) */
.iar-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--lavender);
  opacity: 0.6;
  margin-bottom: 16px;
  font-weight: 400;
}
.iar-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.5;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   CATALOG STRIP
───────────────────────────────────────── */
.catalog {
  padding: 80px 56px;
  background: var(--ink);
  border-top: 1px solid var(--violet-dim);
}
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}
.catalog-hed {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.45;
}
.catalog-viewall {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.5;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(153,145,164,0.2);
  padding-bottom: 2px;
  transition: opacity 0.2s, border-color 0.2s;
}
.catalog-viewall:hover { opacity: 0.85; border-color: rgba(153,145,164,0.45); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.show-card { cursor: pointer; }

.show-card-art {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
@media (hover: hover) {
  .show-card-art { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .show-card:hover .show-card-art {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  }
}
.show-card-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.show-card-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0;
  z-index: 1;
}
@media (hover: hover) {
  .show-card-art::after { transition: opacity 0.3s; }
  .show-card:hover .show-card-art::after { opacity: 1; }
}

/* Per-show fallback gradient backgrounds */
.art-iar   { background: linear-gradient(145deg, #6B1010 0%, #2A0606 100%); }
.art-btd   { background: linear-gradient(145deg, #0E1830 0%, #060E1C 100%); }
.art-tes   { background: linear-gradient(145deg, #14301A 0%, #081A0C 100%); }
.art-gloom { background: linear-gradient(145deg, #2C1840 0%, #140C20 100%); }
.art-rrh   { background: linear-gradient(145deg, #3A1808 0%, #1C0C04 100%); }
.art-hollow{ background: linear-gradient(145deg, #081828 0%, #040C14 100%); }
.art-lnie  { background: linear-gradient(145deg, #281C08 0%, #140E04 100%); }
.art-unsound { background: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%); border: 1px solid rgba(153,145,164,0.12); }

.show-card-vh {
  position: absolute;
  bottom: 7px;
  right: 9px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 9px;
  color: rgba(255,255,255,0.18);
  font-weight: 700;
  z-index: 2;
}

/* Listen button overlay — desktop hover only */
.show-card-hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px;
  display: flex;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) {
  .show-card-hover { transition: opacity 0.3s; pointer-events: auto; }
  .show-card:hover .show-card-hover { opacity: 1; }
}
.show-listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--bone);
  padding: 5px 7px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s;
}
.show-listen-btn:hover { background: var(--white); }
.dual-show-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--lavender);
  opacity: 0.45;
  text-decoration: none;
  transition: opacity 0.2s;
}
.dual-show-link:hover { opacity: 0.75; }

.show-card-title {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
  line-height: 1.3;
}
.show-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.show-card-title a:hover { color: var(--white); }

.show-card-genre {
  font-size: 10px;
  color: var(--lavender);
  opacity: 0.45;
}

/* Featured card (In Another Room — first in strip) */
.show-card-featured .show-card-art {
  border: 1px solid rgba(200,168,130,0.2);
}
.show-card-featured .show-card-title {
  color: rgba(255,255,255,0.9);
}


/* ─────────────────────────────────────────
   ABOUT — CASSIE
───────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  border-top: 1px solid var(--violet-dim);
}
.about-photo-col {
  position: relative;
  background: linear-gradient(160deg, #1E1828 0%, #131018 100%);
  min-height: 560px;
  overflow: hidden;
}

/* Real headshot — full-bleed portrait */
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient fade at bottom of photo */
.about-photo-col::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20,18,16,0.7) 0%, transparent 100%);
  pointer-events: none;
}

.about-text-col {
  padding: 72px 64px;
  background: var(--dark-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.45;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--lavender);
  opacity: 0.3;
  flex-shrink: 0;
}
.about-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--lavender);
  opacity: 0.65;
  margin-bottom: 32px;
}
.about-body {
  font-size: 15px;
  color: var(--lavender);
  line-height: 1.8;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0.85;
}
.credentials {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--violet-dim);
  margin-bottom: 36px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--violet-dim);
  font-size: 13px;
  color: rgba(153,145,164,0.65);
  font-weight: 400;
}
.cred-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.6;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   PRODUCTION CREDENTIAL STRIP
───────────────────────────────────────── */
.cred-strip {
  background: var(--dark-mid);
  border-top: 1px solid var(--violet-dim);
  border-bottom: 1px solid var(--violet-dim);
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
}
.cred-strip-item {
  font-size: 10.5px;
  color: rgba(153,145,164,0.45);
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 4px 28px;
  position: relative;
  white-space: nowrap;
}
.cred-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--violet);
  opacity: 0.25;
}
.cred-strip-item strong {
  color: rgba(153,145,164,0.7);
  font-weight: 600;
}


/* ─────────────────────────────────────────
   PRESS
───────────────────────────────────────── */
.press {
  padding: 80px 56px;
  background: var(--ink);
  border-top: 1px solid var(--violet-dim);
}
.press-inner-label {
  text-align: center;
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.3;
  font-weight: 700;
  margin-bottom: 48px;
}
.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--violet-dim);
  border: 1px solid var(--violet-dim);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}
.press-quote {
  background: var(--dark-mid);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.press-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1;
  color: var(--violet);
  opacity: 0.4;
  font-weight: 700;
  margin-bottom: -8px;
}
.press-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(232,224,208,0.75);
  line-height: 1.6;
  font-weight: 400;
  flex: 1;
}
.press-quote-source {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-weight: 700;
  margin-top: 8px;
}
.press-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.press-name {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.65);
  font-weight: 600;
}
.press-name.press-serif { font-family: 'Playfair Display', serif; }
.press-name.press-sans  { font-family: 'Inter', sans-serif; }
.cred-strip-eyebrow {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.3;
  font-weight: 700;
  padding-top: 28px;
}


/* ─────────────────────────────────────────
   STUDIO SOCIAL ROW (homepage)
───────────────────────────────────────── */
.studio-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  border-top: 1px solid var(--violet-dim);
}
.studio-social-label {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.35;
  font-weight: 700;
}
.studio-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(153,145,164,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.studio-social-link:hover { color: var(--bone); }

/* ─────────────────────────────────────────
   EMAIL SIGNUP
───────────────────────────────────────── */
.signup {
  padding: 88px 56px;
  background: var(--violet);
  border-top: 1px solid rgba(102,89,108,0.4);
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.signup-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.signup-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.55);
  font-weight: 700;
  margin-bottom: 16px;
}
.signup-hed {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.15;
  margin-bottom: 14px;
}
.signup-hed em { font-style: italic; font-weight: 400; color: rgba(232,224,208,0.7); }
.signup-sub {
  font-size: 14px;
  color: rgba(232,224,208,0.65);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}
.signup-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto 14px;
}
.signup-input {
  flex: 1;
  background: rgba(20,18,16,0.3);
  border: 1px solid rgba(232,224,208,0.2);
  border-right: none;
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 2px 0 0 2px;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}
.signup-input::placeholder { color: rgba(232,224,208,0.3); }
.signup-input:focus { background: rgba(20,18,16,0.45); border-color: rgba(232,224,208,0.45); }
.signup-btn {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.signup-btn:hover { background: #0A0908; }
.signup-note {
  font-size: 10.5px;
  color: rgba(232,224,208,0.35);
  letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 60px 56px 36px;
  border-top: 1px solid var(--violet-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--violet-dim);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 3px;
}
.footer-brand-media {
  font-size: 7.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-tagline {
  font-size: 12.5px;
  color: var(--lavender);
  opacity: 0.4;
  line-height: 1.65;
  font-weight: 300;
  max-width: 200px;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 18px;
}
.footer-social-link {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.35);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--lavender); }
.footer-col-label {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.3;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col-links a {
  font-size: 13px;
  color: rgba(153,145,164,0.45);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--lavender); }
.footer-col-links .coming-soon {
  font-size: 13px;
  color: rgba(153,145,164,0.2);
  font-weight: 400;
  cursor: default;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 10.5px;
  color: rgba(153,145,164,0.25);
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  font-size: 10.5px;
  color: rgba(153,145,164,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(153,145,164,0.55); }


/* ─────────────────────────────────────────
   SHOW PAGES — individual scripted series
───────────────────────────────────────── */

/* Compact hero — same 2-column split as homepage but not full-screen */
.show-hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
/* Reuses: .hero-art-panel, .hero-cover-object, .hero-cover-shadow,
           .hero-cover-img, .hero-text-panel, .hero-eyebrow,
           .hero-eyebrow-line, .hero-headline, .line-bone, .line-outline,
           .hero-desc, .btn-solid, .btn-outline, .platform-tag */

/* Scale the outline tagline down on show pages — it's a descriptor phrase,
   not a title, and runs too wide at the homepage headline size. */
.show-hero .line-outline {
  font-size: clamp(22px, 2.6vw, 36px);
  margin-top: 4px;
}

/* Featured credential strip — the one thing each show has that nothing else has */
.show-credential-strip {
  background: rgba(102,89,108,0.07);
  border-bottom: 1px solid var(--violet-dim);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.show-credential-item {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.55;
  font-weight: 500;
  white-space: nowrap;
}
.show-credential-item strong {
  color: var(--bone);
  opacity: 1;
  font-weight: 600;
}
.show-credential-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.3;
  flex-shrink: 0;
}

/* Breadcrumb — back to catalog */
.show-breadcrumb {
  padding: 76px 56px 0;
  background: var(--ink);
}
.show-breadcrumb a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.35);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.show-breadcrumb a:hover { color: var(--lavender); }
.show-breadcrumb a:first-child::before { content: '← '; }
.show-breadcrumb span { color: rgba(153,145,164,0.2); margin: 0 6px; }

/* ── Trailer player — minimal audio bar between credential strip and show body ── */
.trailer-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 56px;
  height: 60px;
  background: var(--ink);
  border-bottom: 1px solid rgba(102,89,108,0.15);
}
.tp-play {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(153,145,164,0.35);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s;
}
.tp-play:hover { border-color: var(--lavender); background: rgba(153,145,164,0.1); }
.tp-icon-pause { display: none; }
.tp-play.is-playing .tp-icon-play { display: none; }
.tp-play.is-playing .tp-icon-pause { display: block; }
.tp-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.tp-label {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.55;
  user-select: none;
}
.tp-scrubber {
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(153,145,164,0.18);
  border-radius: 2px;
  cursor: pointer;
  accent-color: var(--lavender);
  outline: none;
}
.tp-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bone);
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(232,224,208,0);
  transition: box-shadow 0.15s;
}
.tp-scrubber:hover::-webkit-slider-thumb { box-shadow: 0 0 0 3px rgba(232,224,208,0.15); }
.tp-scrubber::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bone);
  border: none;
  cursor: pointer;
}
.tp-time {
  flex-shrink: 0;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  color: var(--lavender);
  opacity: 0.45;
  min-width: 72px;
  text-align: right;
}

/* Show body — main content below hero */
.show-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 56px 96px;
}
.show-section {
  border-top: 1px solid var(--violet-dim);
  padding-top: 52px;
  margin-top: 52px;
}
.show-section:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.show-section-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.35;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.show-section-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--lavender);
  opacity: 0.3;
  flex-shrink: 0;
}

/* Description */
.show-desc-body {
  font-size: 16px;
  color: var(--lavender);
  line-height: 1.85;
  font-weight: 300;
  opacity: 0.85;
  max-width: 680px;
}
.show-desc-body p + p { margin-top: 18px; }
.show-desc-body em { font-style: italic; }
.show-desc-body strong { color: var(--bone); font-weight: 500; }

/* Content note (trigger warning equivalent) */
.show-content-note {
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid var(--violet-dim);
  border-radius: 3px;
  background: rgba(102,89,108,0.07);
  font-size: 12.5px;
  color: var(--lavender);
  opacity: 0.6;
  line-height: 1.6;
  font-weight: 300;
  max-width: 560px;
}

/* Cast credits strip */
.show-cast-strip {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--violet-dim);
  padding-top: 20px;
}
.show-cast-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--lavender);
  opacity: 0.75;
}
.show-cast-name { color: var(--bone); font-weight: 500; }
.show-cast-role { opacity: 0.6; }

/* ── Show pages: crew divider in cast strip ── */
.show-cast-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 0 2px;
}
/* ── Show pages: collapsible full cast ── */
.show-cast-more { margin-top: 14px; }
.show-cast-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: 500 10.5px/1 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.show-cast-toggle:hover { opacity: 1; }
.show-cast-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.show-cast-toggle[aria-expanded="true"] .show-cast-chevron { transform: rotate(90deg); }
.show-cast-extended { margin-top: 4px; }
.show-cast-strip--more { margin-top: 0; border-top: none; padding-top: 8px; }

/* Episode list */
.ep-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ep-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(102,89,108,0.12);
}
.ep-item:first-child { border-top: 1px solid rgba(102,89,108,0.12); }
/* Clickable ep-items (episode embeds) */
.ep-item.ep-clickable {
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
  grid-template-columns: 48px 1fr 20px;
}
.ep-item.ep-clickable::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  align-self: center;
  justify-self: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75 4.5L11.25 9L6.75 13.5' stroke='%239991A4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
  opacity: 0.5;
}
.ep-item.ep-open::after { transform: rotate(90deg); opacity: 0.8; }
.ep-item.ep-clickable:hover { background: rgba(102,89,108,0.08); }
.ep-item.ep-clickable:hover .ep-num { opacity: 1; }
.ep-item.ep-clickable:hover .ep-title { color: var(--bone); }
.ep-embed {
  grid-column: 1 / -1;
  margin: 8px 0 4px;
}
.ep-embed iframe {
  width: 100%;
  height: 152px;
  border-radius: 4px;
  display: block;
}
.ep-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--lavender);
  opacity: 0.75;
  padding-top: 3px;
  font-style: italic;
  transition: opacity 0.15s;
}
.ep-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(232,224,208,0.8);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ep-desc {
  font-size: 13px;
  color: var(--lavender);
  opacity: 0.55;
  line-height: 1.6;
  font-weight: 300;
}
.ep-season-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.55;
  font-weight: 700;
  padding: 24px 0 12px;
  grid-column: 1 / -1;
}
.ep-item:first-child .ep-season-label { padding-top: 0; }

/* Production credits */
.show-credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 48px;
}
.show-credit { display: flex; flex-direction: column; gap: 4px; }
.show-credit-label {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.35;
  font-weight: 700;
}
.show-credit-value {
  font-size: 14px;
  color: rgba(153,145,164,0.7);
  font-weight: 400;
  line-height: 1.5;
}
.show-credit-value em { font-style: italic; color: rgba(153,145,164,0.5); font-size: 13px; }
.show-credential-item a, .show-credit-value a { color: inherit; text-decoration: underline; text-decoration-color: rgba(153,145,164,0.3); text-underline-offset: 2px; }
.show-credential-item a:hover, .show-credit-value a:hover { text-decoration-color: currentColor; }

/* Show page pull quote */
.show-pullquote {
  margin-top: 32px;
  padding: 28px 32px;
  border-left: 2px solid var(--violet);
  background: rgba(102,89,108,0.05);
}
.show-pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic;
  color: var(--bone);
  line-height: 1.6;
  opacity: 0.85;
}
.show-pullquote cite {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-style: normal;
  font-weight: 600;
}

/* Full podcast embed */
.show-embed-section {
  background: var(--ink);
  border-top: 1px solid var(--violet-dim);
  padding: 56px;
}
.show-embed-inner {
  max-width: 860px;
  margin: 0 auto;
}
.show-embed-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.3;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.show-embed-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--lavender);
  opacity: 0.3;
  flex-shrink: 0;
}
.show-embed-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--violet-dim);
  background: var(--dark-mid);
}
.show-embed-frame iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

/* Platform links in show body */
.show-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.show-platform-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  background: var(--bone);
  color: var(--ink);
}
.show-platform-btn:hover { background: #F0E8D8; }
.show-platform-btn-ghost {
  background: transparent;
  color: var(--lavender);
  border: 1px solid rgba(153,145,164,0.2);
}
.show-platform-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }


/* ─────────────────────────────────────────
   INNER HERO — compact, interior pages
───────────────────────────────────────── */
.inner-hero {
  padding: 160px 56px 72px;
  background: var(--ink);
  border-bottom: 1px solid var(--violet-dim);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(102,89,108,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.inner-hero-inner {
  max-width: 760px;
  position: relative;
}
.inner-hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inner-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--lavender);
  opacity: 0.3;
  flex-shrink: 0;
}
.inner-hero-hed {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.inner-hero-hed .line-bone  { display: block; color: var(--bone); }
.inner-hero-hed .line-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--violet);
  font-style: italic;
}
.inner-hero-sub {
  font-size: 15px;
  color: var(--lavender);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 520px;
}


/* ─────────────────────────────────────────
   CATALOG GRID
───────────────────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 64px 88px;
  background: var(--dark);
}

.cg-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cg-card-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--dark-mid);
}
.cg-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cg-card:hover .cg-card-art img { transform: scale(1.04); }
.cg-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.9) 0%, rgba(20,18,16,0.4) 55%, rgba(20,18,16,0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cg-card:hover .cg-card-hover { opacity: 1; }
.cg-card-logline {
  font-size: 12px;
  line-height: 1.55;
  color: var(--bone);
  margin: 0;
}
.cg-card-meta { padding: 12px 0 0; }
.cg-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 5px;
  line-height: 1.2;
}
.cg-card-genres {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.65;
}
@media (hover: none) { .cg-card-hover { display: none; } }

/* Dead placeholder so old cpcard selector chain doesn't match anything */
.cpcard {
  background: var(--dark-mid);
  border: 1px solid var(--violet-dim);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.cpcard:hover { border-color: rgba(102,89,108,0.45); }
.cpcard.expanded { border-color: rgba(102,89,108,0.55); }

/* Clickable header row */
.cpcard-trigger {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  -webkit-appearance: none;
}
.cpcard-trigger:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* Left: cover art */
.cpcard-art {
  width: 128px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.cpcard-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Middle: show info */
.cpcard-info {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.cpcard-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.cpcard-tag {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-weight: 600;
}
.cpcard-tag-sep {
  color: var(--lavender);
  opacity: 0.2;
  font-size: 8.5px;
}
.cpcard-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.2;
}
.cpcard-logline {
  font-size: 13.5px;
  color: var(--lavender);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.7;
}
.cpcard-eps {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.3;
  font-weight: 600;
  margin-top: 4px;
}

/* Right: expand/collapse toggle */
.cpcard-chevron {
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-left: 1px solid var(--violet-dim);
}
.cpcard-chevron svg {
  color: var(--lavender);
  opacity: 0.3;
  transition: transform 0.3s ease, opacity 0.2s;
}
.cpcard.expanded .cpcard-chevron svg {
  transform: rotate(180deg);
  opacity: 0.6;
}

/* Expandable body */
.cpcard-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 0px solid var(--violet-dim);
}
.cpcard.expanded .cpcard-body {
  max-height: 420px;
  border-top-width: 1px;
}
.cpcard-body-inner {
  padding: 28px 32px 28px 156px; /* align with text column */
}
.cpcard-embed {
  margin-bottom: 20px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--violet-dim);
  background: var(--ink);
}
.cpcard-embed iframe {
  display: block;
  width: 100%;
  height: 232px;
  border: none;
}
.cpcard-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cpcard-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  background: var(--bone);
  color: var(--ink);
}
.cpcard-listen-btn:hover { background: #F0E8D8; }
.cpcard-listen-btn-ghost {
  background: transparent;
  color: var(--lavender);
  border: 1px solid rgba(153,145,164,0.2);
}
.cpcard-listen-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.cpcard-details-link {
  margin-left: auto;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(153,145,164,0.4);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(153,145,164,0.15);
  padding-bottom: 1px;
  white-space: nowrap;
}
.cpcard-details-link:hover { color: var(--lavender); border-color: rgba(153,145,164,0.35); }

/* Unsound — archival, no embed (styled as normal, body contains info + link) */
.cpcard-archival-label {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.5;
  font-weight: 700;
  border: 1px solid rgba(153,145,164,0.2);
  padding: 3px 8px;
  border-radius: 2px;
  align-self: flex-start;
  pointer-events: none;
}


/* ─────────────────────────────────────────
   FEAR ARCHIVE PAGE
───────────────────────────────────────── */

/* Info strip below hero */
.fa-info-strip {
  display: flex;
  align-items: stretch;
  background: var(--dark-mid);
  border-top: 1px solid var(--violet-dim);
  border-bottom: 1px solid var(--violet-dim);
  overflow: hidden;
}
.fa-info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 32px;
  border-right: 1px solid var(--violet-dim);
}
.fa-info-item:last-child { border-right: none; }
.fa-info-label {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.35;
  font-weight: 700;
}
.fa-info-value {
  font-size: 13px;
  color: rgba(153,145,164,0.65);
  font-weight: 400;
}

/* Episode player section */
.fa-episodes {
  background: var(--ink);
  padding: 80px 56px;
  border-top: 1px solid var(--violet-dim);
}
.fa-episodes-inner {
  max-width: 860px;
  margin: 0 auto;
}
.fa-episodes-header {
  text-align: center;
  margin-bottom: 48px;
}
.fa-episodes-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 12px;
}
.fa-episodes-hed {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 12px;
}
.fa-episodes-sub {
  font-size: 14px;
  color: var(--lavender);
  opacity: 0.6;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}
.fa-embed-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--violet-dim);
  background: var(--dark-mid);
  margin-bottom: 40px;
}

/* Dead Air companion callout */
.fa-latest-ep-title {
  font-size: 13px;
  color: var(--lavender);
  opacity: 0.6;
  margin: -6px 0 14px;
  font-style: italic;
}
.dead-air-embed {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(102,89,108,0.18);
}
.dead-air-embed-label {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  margin-bottom: 12px;
}
.dead-air-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  border-radius: 4px;
}

.dead-air-callout {
  border: 1px solid var(--violet-dim);
  border-radius: 3px;
  padding: 28px 32px;
  background: var(--dark-mid);
}
.dead-air-eyebrow {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-weight: 700;
  margin-bottom: 14px;
}
.dead-air-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dead-air-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 8px;
}
.dead-air-desc {
  font-size: 13.5px;
  color: var(--lavender);
  opacity: 0.7;
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
}
.dead-air-links {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
  flex-wrap: wrap;
}
.dead-air-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  background: var(--parchment);
  color: var(--ink);
  border: 1px solid var(--parchment);
  white-space: nowrap;
}
.dead-air-btn:hover { background: #D4B892; border-color: #D4B892; }
.dead-air-btn-ghost {
  background: transparent;
  color: var(--lavender);
  border: 1px solid rgba(153,145,164,0.2);
}
.dead-air-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

/* About the show section */
.fa-about {
  background: var(--dark-mid);
  border-top: 1px solid var(--violet-dim);
  padding: 80px 56px;
}
.fa-about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.fa-about-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fa-about-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--lavender);
  opacity: 0.3;
  flex-shrink: 0;
}
.fa-about-hed {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.25;
  margin-bottom: 24px;
}
.fa-about-body {
  font-size: 15px;
  color: var(--lavender);
  opacity: 0.8;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 520px;
}
/* Social strip — below hero, above episodes */
.fa-social-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 56px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--violet-dim);
  flex-wrap: wrap;
}
.fa-social-strip-label {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.35;
  font-weight: 700;
  white-space: nowrap;
}
.fa-social-strip-links { display: flex; gap: 10px; flex-wrap: wrap; }
.fa-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(153,145,164,0.18);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(153,145,164,0.65);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.fa-social-pill:hover {
  color: var(--bone);
  border-color: rgba(153,145,164,0.4);
  background: rgba(255,255,255,0.04);
}
.fa-social-pill--tiktok {
  color: rgba(200,168,130,0.8);
  border-color: rgba(200,168,130,0.25);
}
.fa-social-pill--tiktok:hover {
  color: var(--parchment);
  border-color: rgba(200,168,130,0.5);
  background: rgba(200,168,130,0.06);
}
@media (max-width: 680px) {
  .fa-social-strip { padding: 12px 20px; gap: 12px; }
}

.fa-about-meta {
  border-top: 1px solid var(--violet-dim);
  padding-top: 28px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fa-meta-item { display: flex; flex-direction: column; gap: 6px; }
.fa-meta-label {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.4;
  font-weight: 700;
}
.fa-meta-socials { display: flex; flex-direction: column; gap: 6px; }
.fa-social-link {
  font-size: 13px;
  color: rgba(153,145,164,0.7);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.fa-social-link:hover { color: var(--bone); }
.fa-meta-studio-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(153,145,164,0.45);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(153,145,164,0.15);
  padding-bottom: 1px;
  align-self: flex-start;
}
.fa-meta-studio-link:hover { color: var(--lavender); border-color: rgba(153,145,164,0.35); }

/* Host cards */
.fa-hosts { display: flex; flex-direction: column; gap: 28px; }
.fa-host {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--violet-dim);
  border-radius: 3px;
}
.fa-host-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, #3A2E40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fa-host-initial {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(232,224,208,0.5);
  font-style: italic;
}
.fa-host-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 3px;
}
.fa-host-role {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.65;
  font-weight: 600;
  margin-bottom: 10px;
}
.fa-host-bio {
  font-size: 13px;
  color: var(--lavender);
  opacity: 0.65;
  line-height: 1.7;
  font-weight: 300;
}

/* Patreon placeholder section */

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  /* Text above art in single-column stack (landscape phones, tablets) */
  .hero .hero-text-panel { order: 1; padding: 80px 40px 48px; }
  .hero .hero-art-panel { order: 2; padding: 40px 40px 60px; min-height: 0; }
  .hero-cover-object { max-width: 280px; }
  .hero-art-panel::after { display: none; }
  .dual-feature { grid-template-columns: 1fr; }
  .dual-panel:first-child { border-right: none; border-bottom: 1px solid var(--violet-dim); }
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-photo-col { min-height: 460px; }
  .about-photo-img { object-position: center 20%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav { padding: 20px 32px; }
  /* Fear Archive page */
  .fa-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .fa-info-strip { flex-wrap: wrap; }
  .fa-info-item { flex: 1 1 45%; }
  /* Catalog grid — tablet */
  .catalog-grid { grid-template-columns: repeat(3, 1fr); padding: 40px 32px 72px; gap: 28px 20px; }
  .inner-hero { padding: 140px 40px 56px; }
}

@media (max-width: 680px) {
  .nav { padding: 18px 24px; }
  .nav-menu-btn { display: flex; }
  .nav-links { display: none; }
  /* Full-screen overlay when menu is open */
  .nav.menu-open {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(20, 18, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom-color: transparent;
  }
  .nav.menu-open .nav-logo {
    position: absolute;
    top: 22px;
    left: 24px;
  }
  .nav.menu-open .nav-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0;
  }
  .nav.menu-open .nav-links a {
    font-size: 15px;
    letter-spacing: 0.12em;
    color: rgba(200, 195, 210, 0.85);
  }
  .nav.menu-open .nav-links .nav-contact a {
    font-size: 13px;
    padding: 12px 36px;
    border-color: rgba(255,255,255,0.3);
  }
  .hero-platform-icons { gap: 14px; }
  .hero-nav-row { gap: 16px; }
  .hero-listen-group { flex-direction: column; align-self: stretch; align-items: flex-start; }
  .hero-listen-platforms { gap: 20px; justify-content: center; align-self: stretch; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero-text-panel { order: 1; padding: 100px 24px 40px; }
  .hero-art-panel { order: 2; padding: 0 24px 60px; min-height: unset; }
  .hero-cover-object { max-width: 240px; margin: 0 auto; }
  .dual-panel { padding: 48px 24px; }
  .catalog { padding: 60px 24px; }
  .catalog-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .about-text-col { padding: 48px 24px; }
  .press { padding: 48px 24px; }
  .press-quotes { grid-template-columns: 1fr; }
  .press-logos-row { gap: 20px; }
  .press-name { font-size: 9px; letter-spacing: 0.1em; }
  .signup { padding: 64px 24px; }
  .signup-form { flex-direction: column; }
  .signup-input { border-right: 1px solid rgba(232,224,208,0.2); border-bottom: none; border-radius: 2px 2px 0 0; }
  .signup-btn { border-radius: 0 0 2px 2px; }
  footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  /* Fear Archive page */
  .fa-episodes { padding: 60px 24px; }
  .fa-about { padding: 60px 24px; }
  .fa-info-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--violet-dim); }
  .fa-info-item:last-child { border-bottom: none; }
  .dead-air-body { flex-direction: column; }
  .dead-air-links { align-self: flex-start; }
  /* Catalog grid — mobile */
  .inner-hero { padding: 120px 24px 48px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); padding: 28px 16px 64px; gap: 20px 12px; }
  .cg-card-title { font-size: 13px; }
  .cg-card-genres { font-size: 8px; }
  /* Show pages */
  .show-hero { grid-template-columns: 1fr; min-height: 0; }
  /* Art above text on mobile */
  .show-hero .hero-art-panel { order: 1; min-height: 36vh; padding: 72px 24px 36px; }
  .show-hero .hero-art-panel::after { display: none; }
  .show-hero .hero-text-panel { order: 2; padding: 36px 24px 56px; overflow: hidden; }
  /* Headline — scale down to prevent overflow */
  .show-hero .hero-headline { font-size: clamp(28px, 9vw, 44px); }
  /* Eyebrow — flex min-width: auto lets text exceed container; shrink font and
     shorten the decorative line to prevent overflow on long genre strings */
  .show-hero .hero-eyebrow { font-size: 7px; letter-spacing: 0.04em; gap: 6px; overflow: hidden; }
  .show-hero .hero-eyebrow .hero-eyebrow-line { width: 12px; flex-shrink: 0; }
  /* Stack listen buttons full-width */
  .show-hero .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .show-hero .btn-solid { justify-content: center; }
  .show-hero .btn-outline { text-align: center; justify-content: center; padding: 14px; border-bottom: none; border: 1px solid rgba(153,145,164,0.25); border-radius: 2px; }
  /* Closed badge (Unsound) — allow text to wrap, stay content-width */
  .show-closed-badge { max-width: 100%; white-space: normal; }
  /* Credential strip — convert to block layout to sidestep flex cross-axis sizing */
  .show-credential-strip { display: block !important; padding: 14px 20px !important; overflow: hidden; }
  .show-credential-item { display: block !important; white-space: normal !important; text-align: center !important; overflow-wrap: break-word !important; word-break: break-word !important; margin-bottom: 6px !important; }
  .show-credential-item:last-child { margin-bottom: 0 !important; }
  .show-credential-sep { display: none !important; }
  .show-body { padding: 48px 24px 72px; }
  .show-section { padding-top: 40px; margin-top: 40px; }
  .show-credits-grid { grid-template-columns: 1fr; gap: 16px; }
  .show-breadcrumb { padding: 68px 24px 0; }
  .trailer-player { padding: 0 20px; gap: 12px; }
  .tp-time { min-width: 56px; font-size: 9px; }
}

/* ── FEAR ARCHIVE: Featured episode + audio strip ── */
.fa-featured-ep {
  margin-bottom: 48px;
}
.fa-featured-ep .fa-embed-wrap {
  margin-bottom: 0;
}
.fa-audio-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--violet-dim);
  margin-top: 1px;
}
.fa-audio-strip-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.5;
  font-weight: 600;
  flex-shrink: 0;
}
.fa-audio-link {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.6;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fa-audio-link:hover { opacity: 1; }
.fa-audio-divider {
  color: var(--lavender);
  opacity: 0.3;
}
.fa-all-eps-label {
  margin-top: 8px;
  margin-bottom: 16px;
}

/* ── FA page: collapsible episode sections ── */
.fa-episode-section { margin-bottom: 48px; }
.fa-embed-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.fa-embed-trigger-text { flex: 1; min-width: 0; }
.fa-embed-chevron {
  flex-shrink: 0;
  color: var(--lavender);
  opacity: 0.4;
  margin-top: 3px;
  transition: transform 0.25s, opacity 0.2s;
}
.fa-embed-trigger:hover .fa-embed-chevron { opacity: 0.85; }
.fa-embed-trigger[aria-expanded="true"] .fa-embed-chevron {
  transform: rotate(90deg);
  opacity: 0.85;
}
.fa-embed-body { margin-top: 20px; }
.fa-embed-trigger .fa-latest-ep-title { margin-bottom: 4px; }

/* ── Landscape phones: short viewport, reduce hero padding so CTA stays visible ── */
@media (max-height: 500px) {
  .hero .hero-text-panel { padding-top: 56px; padding-bottom: 28px; }
  .hero .hero-art-panel  { padding-top: 32px; padding-bottom: 32px; }
  .hero-headline { margin-bottom: 16px; }
  .hero-desc { margin-bottom: 24px; font-size: 13px; }
  .show-hero .hero-art-panel { padding-top: 56px; min-height: 30vh; }
  .show-hero .hero-text-panel { padding-top: 24px; padding-bottom: 28px; }
}

/* ── SHOW CARD: touch tap feedback ── */
@media (hover: none) {
  .show-card-art { transition: transform 0.18s ease, box-shadow 0.18s ease; }
  .show-card:active .show-card-art {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  }
}

/* ── TYPOGRAPHIC DIFFERENTIATION: Fear Archive vs. fiction catalog ──
   Fear Archive touchpoints use --parchment (#C8A882) as accent.
   Fiction show hero headlines use solid bone — no outline/stroke treatment.
   The .hero class wraps both the homepage hero (Fear Archive-focused) and
   the Fear Archive page itself. Fiction shows use .show-hero instead. */

/* Fear Archive hero: parchment tint on nav links */
.hero .hero-nav-link:hover { color: var(--parchment); border-bottom-color: rgba(200,168,130,0.4); }

/* Fear Archive: audio strip listen links — parchment */
.fa-audio-link { color: var(--parchment); }

/* Fiction show pages: outline headline line renders solid bone, italic — no stroke */
.show-hero .hero-headline .line-outline {
  color: var(--bone);
  -webkit-text-stroke: 0;
}

/* Unsound / archival shows: "closed" badge in place of listen buttons */
.show-closed-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.45;
  font-weight: 600;
  border: 1px solid rgba(153,145,164,0.15);
  padding: 10px 18px;
  border-radius: 2px;
  margin-top: 4px;
}

/* ── Catalog bottom sheet (mobile tap-to-listen) ── */
.catalog-sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 900;
  transition: background 0.3s;
}
.catalog-sheet-backdrop.is-open {
  display: block;
  background: rgba(0,0,0,0.72);
}
.catalog-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 901;
  background: var(--dark-mid);
  border-radius: 16px 16px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(100%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 48px rgba(0,0,0,0.65);
  outline: none;
}
.catalog-sheet.is-open {
  transform: translateY(0);
}
/* Elastic fill: same background extends below the sheet so no gap
   appears between the sheet bottom and screen edge when dragging up */
.catalog-sheet::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -400px;
  height: 400px;
  background: var(--dark-mid);
}
.catalog-sheet-handle {
  position: relative;
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 12px auto 0;
  touch-action: none; /* tell iOS we own this gesture; prevents pre-committed scroll */
  cursor: grab;
}
/* Expand the draggable hit area well beyond the 4px visual bar */
.catalog-sheet-handle::before {
  content: '';
  position: absolute;
  inset: -18px -72px;
}
.catalog-sheet-body {
  display: flex;
  gap: 18px;
  padding: 16px 20px 28px;
  align-items: flex-start;
}
.catalog-sheet-art {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  cursor: pointer;
}
.catalog-sheet-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-sheet-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.catalog-sheet-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.25;
  margin-bottom: 4px;
}
.catalog-sheet-genre {
  font-size: 10.5px;
  color: var(--lavender);
  opacity: 0.55;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.catalog-sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.catalog-sheet-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
  color: var(--ink);
  background: var(--bone);
}
.catalog-sheet-btn:active { opacity: 0.72; }
.catalog-sheet-link {
  font-size: 10.5px;
  color: var(--lavender);
  opacity: 0.45;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.catalog-sheet-link:active { opacity: 0.8; }
.catalog-sheet-unavailable {
  font-size: 12px;
  color: var(--bone);
  opacity: 0.7;
  margin-bottom: 12px;
  line-height: 1.5;
}
