/* ============================================================
   THE NEW PARIS PODCAST — Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg:           #070d1c;
  --bg-2:         #0c1528;
  --bg-3:         #111f38;
  --bg-4:         #182846;

  --gold:         #e8ba1c;
  --gold-light:   #f5ce40;
  --gold-dark:    #b89010;
  --gold-glow:    rgba(232, 186, 28, 0.10);
  --gold-border:  rgba(232, 186, 28, 0.22);

  --red:          #c8907a;
  --red-light:    #dca888;
  --red-dark:     #a07060;
  --red-glow:     rgba(200, 144, 122, 0.10);
  --red-border:   rgba(200, 144, 122, 0.28);

  --white:        #f0eeeb;
  --white-dim:    rgba(240, 238, 235, 0.70);
  --gray:         #8a91a8;
  --gray-dark:    #7a82a0;
  --line:         rgba(180, 200, 255, 0.08);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:        70px;
  --max-w:        1200px;
  --section:      clamp(72px, 11vw, 120px);
  --r:            14px;
  --r-sm:         8px;
  --r-lg:         24px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
}
h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}
p { color: var(--white-dim); }

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Gradient Text ---- */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ---- Section ---- */
.section { padding: var(--section) 0; }
.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header p { margin-top: 16px; font-size: 17px; max-width: 520px; }

/* ---- Divider ---- */
.divider {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  margin: 18px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #09100a;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 186, 28, 0.35);
}
.btn-secondary {
  border: 1px solid var(--red-border);
  color: var(--red-light);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--red-glow);
  border-color: var(--red);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--gray);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg, .btn svg { flex-shrink: 0; transition: transform 0.2s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(7, 13, 28, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 42px;
  width: 42px;
  border-radius: var(--r-sm);
  object-fit: cover;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta { padding: 10px 22px !important; font-size: 13px !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: 999;
  padding: calc(var(--nav-h) + 48px) 40px 40px;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-subscribe {
  margin-top: 16px;
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  align-items: flex-start;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(232, 186, 28, 0.09) 0%, transparent 48%),
    radial-gradient(ellipse at 90% 15%, rgba(212, 46, 35, 0.08) 0%, transparent 44%),
    radial-gradient(ellipse at 50% 105%, rgba(232, 186, 28, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 46, 35, 0.04) 0%, transparent 36%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: calc(var(--section) * 0.5) 0 var(--section);
  width: 100%;
}
.hero-content { max-width: 680px; }
.hero-label { margin-bottom: 20px; }
.hero h1 { margin-bottom: 28px; }
.hero-desc {
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-platforms {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-platforms > p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.hero-platforms-logos { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.platform-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  color: var(--gray);
  transition: all 0.2s;
}
.platform-badge:hover { border-color: var(--gold-border); color: var(--white); }

/* Cover art */
.hero-art {
  position: relative;
  width: clamp(330px, 39vw, 540px);
  flex-shrink: 0;
}
.hero-art-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(232, 186, 28, 0.14) 0%, rgba(212, 46, 35, 0.06) 45%, transparent 68%);
  z-index: -1;
}
.hero-art-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-img img { width: 100%; height: 100%; object-fit: cover; }
.art-placeholder {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
  padding: 24px;
}

/* ============================================================
   EPISODE CARDS
   ============================================================ */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.episode-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.episode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(232, 186, 28, 0.06) 0%, rgba(212, 46, 35, 0.04) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.episode-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px var(--gold-border);
}
.episode-card:hover::before { opacity: 1; }
.episode-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.episode-card h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
}
.episode-meta { display: flex; gap: 14px; align-items: center; }
.episode-meta span { font-size: 12px; color: var(--gray-dark); }
.episode-meta span + span::before { content: '·'; margin-right: 14px; }
.episode-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.episode-guest { font-size: 13px; color: var(--gray); }
.episode-guest strong { color: var(--white-dim); font-weight: 400; }

/* ============================================================
   LISTEN / PLAYER SECTION
   ============================================================ */
.player-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.player-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.player-info h2 { margin: 12px 0 16px; }
.player-info > p { margin-bottom: 32px; font-size: 17px; }
.player-platforms {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.platform-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--gray);
  transition: all 0.22s var(--ease);
}
.platform-link:hover { border-color: var(--gold-border); color: var(--white); background: var(--bg-4); }
.player-embed-wrapper { border-radius: var(--r); overflow: hidden; }

/* ============================================================
   HOST PREVIEW
   ============================================================ */
.host-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}
.host-photo { width: clamp(240px, 28vw, 360px); flex-shrink: 0; }
.host-photo-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  background: linear-gradient(160deg, var(--bg-4), var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.host-photo-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { font-size: 14px; color: var(--gray-dark); text-align: center; padding: 24px; line-height: 1.6; }
.host-content .label { margin-bottom: 14px; }
.host-content h2 { margin-bottom: 24px; }
.host-content p { font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.host-socials { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--red-border); color: var(--red-light); background: var(--red-glow); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(212, 46, 35, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(232, 186, 28, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(212, 46, 35, 0.05) 0%, transparent 40%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-banner .divider { margin-left: auto; margin-right: auto; }
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner p { font-size: 18px; max-width: 460px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RECENT EPISODES CARDS (homepage)
   ============================================================ */
.recent-ep-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.recent-ep-header h2 { margin-bottom: 0; }
.recent-ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recent-ep-loading {
  color: var(--gray);
  font-size: 15px;
  grid-column: 1 / -1;
}
.recent-ep-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.recent-ep-card:hover { border-color: var(--gold-border); }
.recent-ep-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-3);
  overflow: hidden;
}
.recent-ep-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recent-ep-img-ph {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
}
.recent-ep-play {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.recent-ep-play svg { fill: var(--bg); }
.recent-ep-play:hover { transform: scale(1.08); background: var(--gold-light); }
.recent-ep-play.playing { background: var(--white); }
.recent-ep-play.playing:hover { background: var(--white); }
.recent-ep-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.recent-ep-date {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.recent-ep-title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
}
.recent-ep-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   AUDIO PLAYER BAR
   ============================================================ */
.ap-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.ap-bar.ap-visible { transform: translateY(0); }
.ap-art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.ap-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ap-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ap-progress {
  height: 4px;
  background: var(--bg-3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.ap-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.25s linear;
}
.ap-time {
  font-size: 11px;
  color: var(--gray);
}
.ap-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.ap-toggle:hover { background: var(--gold-light); }
.ap-toggle svg { fill: var(--bg); }
.ap-icon-pause { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  padding: 72px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-logo-link {
  display: inline-block;
}
.footer-logo-img {
  width: 72px;
  height: 72px;
  border-radius: var(--r-sm);
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 240px; color: var(--gray); line-height: 1.75; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: var(--gray); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--gray-dark); }
.footer-socials { display: flex; gap: 10px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 22vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 30px;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(232, 186, 28, 0.08) 0%, transparent 48%),
    radial-gradient(ellipse at 80% 0%, rgba(212, 46, 35, 0.07) 0%, transparent 44%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(44px, 7vw, 84px); }

/* ============================================================
   ABOUT PAGE — Mission & Format Sections
   ============================================================ */
.alt-bg { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-grid h2 { margin-bottom: 24px; }
.mission-grid p { font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.format-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.format-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
}
.format-card .label { margin-bottom: 12px; }
.format-card h3 { font-size: 22px; margin-bottom: 10px; }
.format-card p { font-size: 15px; }

/* ============================================================
   EPISODES ARCHIVE PAGE
   ============================================================ */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  flex: 1;
}
.search-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: var(--gray-dark); }
.search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.filter-select {
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray);
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--gold); }

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.episode-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--bg-3);
  transition: background 0.2s;
  cursor: pointer;
}
.episode-row:hover { background: var(--bg-4); }
.episode-row-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--white-dim);
  line-height: 1;
}
.episode-row-body { min-width: 0; }
.episode-row-title { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 6px; line-height: 1.25; }
.episode-row-meta { font-size: 13px; color: var(--gray); display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.meta-item { color: var(--gray); }
.meta-dot { color: var(--gray-dark); margin: 0 2px; }
.meta-guest { color: var(--white-dim); font-weight: 500; }
.episode-row-action { flex-shrink: 0; }
.ep-listen-btn { padding: 10px 20px !important; font-size: 13px !important; gap: 8px !important; }

/* Episode tags */
.episode-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.ep-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--gray);
}

/* ---- Episodes page toolbar ---- */
.ep-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ep-tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ep-filter-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ep-filter-btn:hover { border-color: var(--gold-border); color: var(--white); }
.ep-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.ep-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  min-width: 220px;
  transition: border-color 0.2s;
}
.ep-search-wrap:focus-within { border-color: var(--gold-border); }
.ep-search-wrap svg { color: var(--gray); flex-shrink: 0; }
.ep-search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  width: 100%;
}
.ep-search-input::placeholder { color: var(--gray); }

/* ---- Episode list items ---- */
.ep-list { display: flex; flex-direction: column; }
.ep-list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.ep-list-item:first-child { border-top: 1px solid var(--line); }
.ep-list-thumb {
  width: 140px;
  height: 140px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}
.ep-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-list-thumb-ph { width: 100%; height: 100%; background: var(--bg-3); }
.ep-list-body { display: flex; flex-direction: column; gap: 8px; }
.ep-list-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ep-list-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.ep-list-metainfo { font-size: 13px; color: var(--gray); }
.ep-dot { color: var(--gray-dark); }
.ep-list-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.ep-list-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}
.ep-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.ep-list-guest { font-size: 14px; color: var(--white-dim); }
.ep-list-guest strong { color: var(--white); font-weight: 500; }

/* Toolbar (legacy) */
.episodes-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.episodes-count {
  font-size: 12px;
  color: var(--gray-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Loading state */
.episodes-loading {
  padding: 52px 28px;
  text-align: center;
  font-size: 15px;
  color: var(--gray);
}
.episodes-loading a { color: var(--gold); text-decoration: underline; }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray-dark); font-size: 16px; display: none; }
.episode-row.hidden { display: none; }

/* ============================================================
   SPONSORSHIPS PAGE
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: var(--section);
}
.stat-card { background: var(--bg-3); padding: 36px 24px; text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--gray); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: var(--section);
}
.tier-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 30px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(232, 186, 28, 0.08) 0%, rgba(212, 46, 35, 0.04) 40%, var(--bg-3) 70%);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0804;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}
.tier-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.tier-price {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.tier-price sup { font-size: 22px; vertical-align: super; }
.tier-price .tier-per { font-size: 16px; color: var(--gray); font-weight: 400; }
.tier-period { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white-dim);
}
.tier-feature::before { content: '✦'; color: var(--gold); font-size: 9px; margin-top: 4px; flex-shrink: 0; }

/* ============================================================
   CONTACT / SPONSORSHIP FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.contact-detail { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-detail a { font-size: 15px; color: var(--gray); transition: color 0.2s; display: flex; align-items: center; gap: 10px; }
.contact-detail a:hover { color: var(--red-light); }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.form-input,
.form-select,
.form-textarea {
  padding: 15px 18px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-dark); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 186, 28, 0.08); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; color: var(--gray); }
.form-select option { background: var(--bg-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .episodes-grid    { grid-template-columns: repeat(2, 1fr); }
  .recent-ep-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .host-inner       { gap: 48px; }
  .host-photo       { width: 260px; }
  .tier-grid        { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .player-layout    { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 52px; }
  .mission-grid     { grid-template-columns: 1fr; gap: 40px; }
  .format-cards     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-platforms { justify-content: center; }
  .hero-platforms-logos { justify-content: center; }
  .hero-art { width: 270px; margin: 0 auto; order: -1; }
  .episodes-grid { grid-template-columns: 1fr; }
  .recent-ep-grid { grid-template-columns: 1fr; }
  .recent-ep-header { align-items: flex-start; flex-direction: column; }
  .ap-bar { padding: 10px 16px; gap: 12px; }
  .ap-art { width: 40px; height: 40px; }
  .host-inner { grid-template-columns: 1fr; text-align: center; }
  .host-photo { width: 200px; margin: 0 auto; }
  .host-socials { justify-content: center; }
  .divider { margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .player-platforms { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .episode-row { grid-template-columns: 48px 1fr; }
  .episode-row-action { display: none; }
  .ep-list-item { grid-template-columns: 100px 1fr; gap: 16px; }
  .ep-list-thumb { width: 100px; height: 100px; }
  .ep-toolbar { flex-direction: column; align-items: flex-start; }
  .ep-search-wrap { width: 100%; }
  .page-hero { min-height: 18vh; padding-bottom: 22px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
