/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --midnight: #0a0c10;
  --navy: #12182a;
  --marine: #1e2e50;
  --marine-mid: #253862;
  --scarlet: #b01c1c;
  --scarlet-bright: #d4291c;
  --scarlet-dim: #7a1212;
  --offwhite: #e8e0cc;
  --offwhite-dim: #b8b0a0;
  --offwhite-muted: #6a6258;
  --text-body: #c8bfaa;
  --border: rgba(232,224,204,0.1);
  --border-accent: rgba(176,28,28,0.4);
  --gold: #d4a820;
}

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--offwhite);
  font-family: 'Taviraj', Georgia, serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.45;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, border-bottom 0.4s;
}

nav.scrolled {
  background: rgba(10,12,16,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Taviraj', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--offwhite-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover, .nav-links a.active { color: var(--offwhite); }

.nav-cta {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--scarlet);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover { background: var(--scarlet-bright); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: rgba(10,12,16,0.98);
  border-bottom: 1px solid var(--border-accent);
  padding: 24px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Taviraj', serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--offwhite-dim);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

/* ── PAGE VISIBILITY ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('assets/hero-bg-desktop.jpg');
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  #hero {
    background-image: url('assets/hero-bg-mobile.jpg');
    background-position: top center;
  }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,12,16,0.55) 0%, rgba(10,12,16,0.75) 50%, rgba(10,12,16,0.97) 100%);
  pointer-events: none;
}

.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--midnight));
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  inset: 24px;
  pointer-events: none;
}

.frame-line { position: absolute; background: var(--scarlet); opacity: 0.45; }
.frame-top    { top: 0; left: 36px; right: 36px; height: 1px; }
.frame-bottom { bottom: 0; left: 36px; right: 36px; height: 1px; }
.frame-left   { left: 0; top: 36px; bottom: 36px; width: 1px; }
.frame-right  { right: 0; top: 36px; bottom: 36px; width: 1px; }

.frame-corner { position: absolute; width: 18px; height: 18px; border-color: var(--scarlet); border-style: solid; opacity: 0.8; }
.fc-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.fc-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.fc-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.fc-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  animation: riseIn 2s cubic-bezier(0.16,1,0.3,1) forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: clamp(100px, 18vw, 160px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.7));
}

.hero-eyebrow {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--scarlet-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 8.5vw, 108px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--offwhite);
}

.hero-title strong {
  font-weight: 700;
  font-style: italic;
  color: var(--scarlet-bright);
  display: block;
}

.hero-tagline {
  font-family: 'Taviraj', serif;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 300;
  font-style: italic;
  color: var(--offwhite-muted);
  letter-spacing: 0.06em;
  margin-top: 16px;
  margin-bottom: 44px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  font-family: 'Taviraj', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--scarlet);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--scarlet-bright); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(176,28,28,0.3); }

.btn-ghost {
  font-family: 'Taviraj', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 36px;
  background: transparent;
  color: var(--offwhite-dim);
  border: 1px solid rgba(232,224,204,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--offwhite-dim); color: var(--offwhite); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.8s;
}

@keyframes fadeIn { to { opacity: 0.4; } }

.scroll-hint span {
  font-family: 'Taviraj', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--offwhite-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--scarlet-dim), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── STATS ── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--scarlet-bright);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--offwhite-muted);
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  margin: 64px auto;
  max-width: 960px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(176,28,28,0.35), transparent);
}

.divider-emblem {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--scarlet);
  opacity: 0.65;
}

/* ── SECTION BASE ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.section-label {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--scarlet-bright);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--offwhite);
  margin-bottom: 22px;
}

.section-heading em { font-style: italic; font-weight: 600; color: var(--scarlet-bright); }

.section-body {
  font-family: 'Taviraj', serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

/* ── MISSION + FEATURES ── */
.mission-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.features-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--navy);
  border-left: 2px solid var(--scarlet);
  transition: background 0.2s;
}

.feature-item:hover { background: var(--marine); }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: rgba(176,28,28,0.35);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.feature-text-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 6px;
}

.feature-text-desc {
  font-family: 'Taviraj', serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

/* Preview globe card */
.preview-card {
  position: sticky;
  top: 100px;
  background: var(--navy);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 1;
  overflow: hidden;
}

.preview-card-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,46,80,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,46,80,0.4) 1px, transparent 1px);
  background-size: 32px 32px;
}

.preview-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.preview-globe-wrap { position: relative; width: 140px; height: 140px; }
#mini-globe { width: 100%; height: 100%; border-radius: 50%; }

.globe-halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(176,28,28,0.3);
  animation: halo 3s ease-in-out infinite;
}
.globe-halo-1 { inset: -10px; }
.globe-halo-2 { inset: -22px; border-color: rgba(176,28,28,0.15); animation-delay: 1s; }
@keyframes halo { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.04); } }

.preview-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--offwhite);
  text-transform: uppercase;
}

.preview-sub {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--offwhite-muted);
  text-transform: uppercase;
}

.preview-btn {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--scarlet);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.preview-btn:hover { background: var(--scarlet-bright); }

/* ── EPISODE SECTION ── */
.episode-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}

.episode-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ep-meta {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--scarlet-bright);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ep-loading { font-style: italic; color: var(--offwhite-muted); letter-spacing: 0.1em; }

.ep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--offwhite);
  margin-bottom: 16px;
}

.ep-desc {
  font-family: 'Taviraj', serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.listen-links { display: flex; gap: 20px; flex-wrap: wrap; }

.listen-link {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--offwhite-dim);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(176,28,28,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.listen-link:hover { color: var(--offwhite); border-color: var(--scarlet-bright); }

/* Player */
.player {
  background: rgba(10,12,16,0.7);
  border: 1px solid var(--border-accent);
  padding: 22px;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--scarlet);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.play-btn:hover { background: var(--scarlet-bright); transform: scale(1.06); }

.play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--offwhite);
  margin-left: 3px;
}

.player-meta { flex: 1; min-width: 0; }
.player-ep { font-family: 'Taviraj', serif; font-size: 10px; letter-spacing: 0.2em; color: var(--scarlet-bright); text-transform: uppercase; }
.player-show { font-family: 'Taviraj', serif; font-size: 12px; color: var(--offwhite-dim); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.progress-track { height: 2px; background: rgba(232,224,204,0.1); position: relative; cursor: pointer; }
.progress-fill { width: 0%; height: 100%; background: var(--scarlet); transition: width 0.1s; }
.progress-thumb {
  position: absolute; left: 0%; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--scarlet-bright); border-radius: 50%;
  transition: left 0.1s;
}

.player-time {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: 'Taviraj', serif;
  font-size: 11px;
  color: var(--offwhite-muted);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 32px;
  display: flex;
  gap: 48px;
  align-items: start;
  flex-wrap: wrap;
}

.footer-logo img { height: 64px; width: auto; opacity: 0.85; }

.footer-links-col { display: flex; flex-direction: column; gap: 12px; padding-left: 48px; }
.footer-col-label {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--scarlet-bright);
  margin-bottom: 4px;
}

.footer-link {
  font-family: 'Taviraj', serif;
  font-size: 13px;
  color: var(--offwhite-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--offwhite); }

.footer-social { display: flex; gap: 14px; align-items: center; }

.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(176,28,28,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.social-icon:hover { border-color: var(--scarlet); background: rgba(176,28,28,0.1); }

.social-icon svg { width: 16px; height: 16px; fill: var(--offwhite-dim); transition: fill 0.2s; }
.social-icon:hover svg { fill: var(--offwhite); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  color: var(--offwhite-muted);
  opacity: 0.65;
  line-height: 1.6;
}

.footer-copy {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  color: var(--offwhite-muted);
  opacity: 0.5;
}

.footer-copy a { color: inherit; text-decoration: underline; }

/* ── TRANSITION ── */
#transition {
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#transition.active { opacity: 1; pointer-events: all; }
#globe-canvas { border-radius: 50%; }

.transition-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--scarlet-bright);
  text-transform: uppercase;
  margin-top: 32px;
  animation: textPulse 1.8s ease-in-out infinite;
}

@keyframes textPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── INNER PAGES ── */
.page-hero {
  padding: 140px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.page-hero-label {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--scarlet-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  color: var(--offwhite);
  line-height: 1.05;
}

.page-hero-title em { font-style: italic; font-weight: 600; color: var(--scarlet-bright); }

.page-hero-sub {
  font-family: 'Taviraj', serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--offwhite-muted);
  margin-top: 16px;
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}

.about-body {
  font-family: 'Taviraj', serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

.about-body p + p { margin-top: 18px; }

.about-aside {
  background: var(--navy);
  border: 1px solid var(--border-accent);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-aside-logo { width: 100px; height: auto; }

.about-aside-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--offwhite);
  text-align: center;
  line-height: 1.4;
}

.about-aside-attr {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--offwhite-muted);
  text-transform: uppercase;
}

/* Episodes page */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(176,28,28,0.15);
  border: 1px solid rgba(176,28,28,0.15);
  margin-bottom: 40px;
}

.episode-card {
  background: var(--midnight);
  padding: 28px 24px;
  transition: background 0.2s;
  cursor: pointer;
}

.episode-card:hover { background: var(--navy); }

.ep-card-num {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--scarlet-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ep-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--offwhite);
  line-height: 1.25;
  margin-bottom: 10px;
}

.ep-card-desc {
  font-family: 'Taviraj', serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--offwhite-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.ep-card-date {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  color: var(--offwhite-muted);
}

.ep-card-duration {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  color: var(--offwhite-muted);
}

.episodes-loading {
  font-family: 'Taviraj', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--offwhite-muted);
  text-align: center;
  padding: 60px 0;
}

.ep-listen-all {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--offwhite-muted);
}

.form-input, .form-textarea, .form-select {
  font-family: 'Taviraj', serif;
  font-size: 15px;
  color: var(--offwhite);
  background: var(--navy);
  border: 1px solid rgba(176,28,28,0.25);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--scarlet);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-select option { background: var(--navy); }

.form-submit {
  font-family: 'Taviraj', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--scarlet);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--scarlet-bright); transform: translateY(-1px); }

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info-block {}

.contact-info-label {
  font-family: 'Taviraj', serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--scarlet-bright);
  margin-bottom: 10px;
  display: block;
}

.contact-info-text {
  font-family: 'Taviraj', serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

.contact-social { display: flex; gap: 12px; }

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.legal-effective {
  font-family: 'Taviraj', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--offwhite-muted);
  margin-bottom: 40px;
}

.legal-section { margin-bottom: 40px; }

.legal-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-accent);
}

.legal-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--offwhite-dim);
  margin-bottom: 10px;
  margin-top: 20px;
}

.legal-p {
  font-family: 'Taviraj', serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 14px;
}

.legal-ul {
  list-style: none;
  margin: 12px 0 16px 0;
}

.legal-ul li {
  font-family: 'Taviraj', serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  padding: 5px 0 5px 18px;
  position: relative;
}

.legal-ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--scarlet-dim);
}

/* Subscribe modal */
.subscribe-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,12,16,0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.subscribe-modal-bg.open { display: flex; }

.subscribe-modal {
  background: var(--navy);
  border: 1px solid var(--border-accent);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.subscribe-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--offwhite-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.subscribe-close:hover { color: var(--offwhite); }

.subscribe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.subscribe-sub {
  font-family: 'Taviraj', serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}

.subscribe-form { display: flex; flex-direction: column; gap: 14px; }

.subscribe-success {
  display: none;
  font-family: 'Taviraj', serif;
  font-size: 15px;
  color: var(--offwhite-dim);
  font-style: italic;
  text-align: center;
  padding: 20px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-frame { display: none; }

  .stats-bar { padding: 24px 20px; gap: 28px; }

  .section { padding: 0 20px 60px; }

  .mission-wrap { grid-template-columns: 1fr; }
  .preview-card { display: none; }

  .episode-inner { grid-template-columns: 1fr; gap: 36px; }
  .episode-section { padding: 48px 20px; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-col { padding-left: 0; }
  .footer-bottom { padding: 20px; }

  .page-hero { padding: 120px 20px 48px; }
  .page-content { padding: 0 20px 60px; }
  .legal-content { padding: 0 20px 60px; }

  .divider { padding: 0 20px; margin: 44px auto; }
}

@media (max-width: 480px) {
  .cta-row { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { text-align: center; width: 100%; }
  .episodes-grid { grid-template-columns: 1fr; }
}

/* ── LISTEN TABLE ── */
.listen-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(176,28,28,0.15);
  border: 1px solid rgba(176,28,28,0.2);
  margin-top: 24px;
}

.listen-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--midnight);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}

.listen-row:hover { background: var(--navy); }

.listen-icon { font-size: 16px; flex-shrink: 0; }

.listen-name {
  font-family: 'Taviraj', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--offwhite-dim);
  flex: 1;
  transition: color 0.2s;
}

.listen-row:hover .listen-name { color: var(--offwhite); }

.listen-status {
  font-family: 'Taviraj', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.listen-status.available {
  color: #5a9a6a;
  background: rgba(90,154,106,0.1);
  border: 1px solid rgba(90,154,106,0.2);
}

.listen-status.browse {
  color: var(--scarlet-bright);
  background: rgba(176,28,28,0.1);
  border: 1px solid rgba(176,28,28,0.2);
}

/* ── EPISODE IMAGE ── */
.ep-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border-accent);
  margin-bottom: 16px;
}

.ep-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.player-with-image {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Mobile subscribe button fix */
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .mobile-menu .nav-cta {
    display: block !important;
    text-align: center;
    margin-top: 8px;
    padding: 12px 24px;
  }
}
