:root {
  --bg: #17151A;
  --card: #211E25;
  --cream: #F7F1E6;
  --orange: #FF5B39;
  --yellow: #FFCD3C;
  --muted: #8F889C;
  --muted-2: #D8D2E4;
  --muted-3: #C9C2D6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.accent-orange { color: var(--orange); }
.accent-yellow { color: var(--yellow); }
.muted { color: var(--muted); font-size: 13px; }
.muted-2 { color: var(--muted-2); }
.dark { color: var(--bg); }

/* Typography */
.display {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 74px);
  text-wrap: balance;
}
.display.md { font-size: clamp(26px, 3.4vw, 36px); margin: 0; }
.display.sm { font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; }
.display.xs { font-size: 20px; margin: 0; }
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 520px;
  margin: 0 0 28px;
}
.body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-2);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-yellow { background: rgba(255, 205, 60, 0.14); color: var(--yellow); }
.eyebrow-orange { background: rgba(255, 91, 57, 0.14); color: var(--orange); }
.eyebrow-dark { background: var(--bg); color: var(--yellow); font-weight: 800; }

.wrap { max-width: 1240px; margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(23, 21, 26, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  color: var(--bg);
  font-size: 20px;
  transform: rotate(-6deg);
}
.brand-name {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 1.1;
  color: var(--cream);
  text-align: left;
}

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-link {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: rgba(255, 255, 255, 0.07); }
.nav-link.active { color: var(--bg); background: var(--orange); }

.social { display: flex; align-items: center; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.social-ig:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); }
.social-tt:hover { background: var(--yellow); border-color: var(--yellow); color: var(--bg); }
.site-footer .social-btn:hover { background: rgba(255, 255, 255, 0.1); }

/* Pages */
.page { padding-bottom: 40px; }
.page-narrow {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px) 90px;
}

/* Hero */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 90px) clamp(20px, 4vw, 48px) 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.listen-row { display: flex; gap: 12px; flex-wrap: wrap; }
.listen-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 12px;
  color: var(--bg);
  transition: transform 0.15s;
}
.listen-btn:hover { transform: translateY(-2px); }
.listen-apple, .listen-spotify { background: var(--cream); }
.brand-logo { display: block; flex-shrink: 0; }

.hero-art { position: relative; }
.blob {
  position: absolute;
  inset: -24px -10px auto auto;
  width: 80%;
  height: 88%;
  background: var(--yellow);
  border-radius: 52% 48% 44% 56% / 48% 44% 56% 52%;
  animation: floaty 7s ease-in-out infinite;
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 28px;
  border: 5px solid var(--bg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--bg);
  border: 2px solid var(--orange);
  color: var(--cream);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 14px;
  z-index: 2;
  animation: wiggle 5s ease-in-out infinite;
}

/* Intro card (About) */
.intro-card {
  background: var(--card);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
}
.about-intro { margin: 28px 0; }
.about-intro .display.sm { margin: 0 0 14px; }
.tag {
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tag-orange { background: rgba(255, 91, 57, 0.14); color: var(--orange); }
.tag-yellow { background: rgba(255, 205, 60, 0.14); color: var(--yellow); }

/* Episodes */
.episodes-wrap { padding: 0 clamp(20px, 4vw, 48px) 90px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 10px;
}
.link-yellow { color: var(--yellow); font-weight: 700; text-decoration: none; font-size: 14px; }
.link-yellow:hover { text-decoration: underline; }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.episode-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.15s, transform 0.15s;
}
.episode-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.episode-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.episode-num { font-family: 'Anton', sans-serif; color: var(--orange); font-size: 13px; }
.episode-date { color: var(--muted); font-size: 12px; }
.episode-title { font-size: 17px; line-height: 1.35; margin: 0 0 16px; font-weight: 700; }
.episode-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.15s;
}
.episode-listen:hover { opacity: 0.75; }

/* About */
.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.host-card { background: var(--card); border-radius: 22px; padding: 32px; }
.host-card .display.sm { margin: 18px 0 12px; }
.host-card .tag { display: inline-block; padding: 8px 14px; font-size: 12px; }

/* Break banner */
.break-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 48px) 0;
}
.break-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--yellow);
  color: var(--bg);
  border-radius: 16px;
  transform: rotate(-0.6deg);
  box-shadow: 0 10px 30px rgba(255, 205, 60, 0.18);
}
.break-banner p { margin: 0; font-size: 14.5px; line-height: 1.5; font-weight: 600; }
.break-banner strong { font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: 0.3px; text-transform: uppercase; margin-right: 4px; }
.break-emoji { font-size: 26px; animation: wiggle 4s ease-in-out infinite; flex-shrink: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-credit { font-size: 12px; color: var(--muted); }
.footer-credit a { color: var(--yellow); font-weight: 700; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* Listen modal */
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 9, 12, 0.72);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.15s ease;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 40px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  animation: popIn 0.18s ease;
}
.modal .eyebrow { margin-bottom: 14px; }
.modal .display.sm { margin: 0 0 6px; }
.modal-ep { color: var(--muted-2); font-size: 14px; line-height: 1.5; margin: 0 0 24px; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; }
.modal-actions .listen-btn { justify-content: center; padding: 15px; font-size: 15px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.16); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 56px; }
  .intro-card { grid-template-columns: 1fr; }
  .site-header { flex-wrap: wrap; }
}
