:root {
  --coral: #ff7a5c;
  --coral-dark: #d95036;
  --ink: #131313;
  --ink-2: #27221f;
  --cream: #fff5eb;
  --cream-2: #f8eadc;
  --blue: #4b52ff;
  --teal: #147c73;
  --white: #ffffff;
  --muted: #6e655d;
  --line: rgba(19, 19, 19, 0.12);
  --shadow: 0 18px 50px rgba(19, 19, 19, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.container.narrow {
  width: min(calc(100% - 40px), 820px);
}

.section-band {
  padding: 84px 0;
}

.dark-band {
  color: var(--white);
  background: var(--ink);
}

.cream-band {
  background: var(--cream);
}

.coral-band {
  background: var(--coral);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(calc(100% - 28px), 1220px);
  height: 70px;
  margin: 14px auto -84px;
  padding: 0 14px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.74);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(19, 19, 19, 0.18);
}

.site-header.is-scrolled {
  background: rgba(19, 19, 19, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  min-height: 78vh;
  padding-top: 150px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coral-band .eyebrow {
  color: rgba(19, 19, 19, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 14px;
  color: #ffe0d4;
  font-size: 1.36rem;
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.hero-actions,
.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button,
.episode-play,
.mini-player {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.episode-play:hover,
.mini-player:hover {
  transform: translateY(-1px);
}

.button.primary,
.episode-play {
  background: var(--coral);
  color: var(--ink);
}

.button.primary:hover,
.episode-play:hover {
  background: #ff927a;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark,
.mini-player {
  background: var(--ink);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 16px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats dt {
  font-size: 1.22rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.hero-art {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
}

.cover-art {
  width: min(100%, 430px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.audio-card {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: min(86%, 340px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.audio-card span {
  display: block;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audio-card strong {
  display: block;
  margin: 6px 0 14px;
  line-height: 1.25;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.platform-grid a {
  min-height: 56px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(19, 19, 19, 0.06);
}

.platform-grid a:nth-child(3n) {
  border-color: rgba(75, 82, 255, 0.26);
}

.platform-grid a:hover {
  border-color: var(--coral);
}

.episode-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.search-box {
  width: min(100%, 520px);
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.search-box input,
.guest-form input,
.guest-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 19, 19, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.search-box input:focus,
.guest-form input:focus,
.guest-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(75, 82, 255, 0.12);
}

.episode-count {
  color: var(--muted);
  font-weight: 800;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.episode-card,
.team-card,
.guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(19, 19, 19, 0.06);
}

.episode-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease, box-shadow 180ms ease;
}

.episode-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.episode-card:hover {
  box-shadow: 0 18px 40px rgba(19, 19, 19, 0.12);
}

.episode-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream-2);
}

.episode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.episode-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.episode-guest {
  margin-bottom: 10px;
  color: var(--teal);
  font-weight: 800;
}

.episode-body > p:not(.episode-guest) {
  color: var(--muted);
  font-size: 0.94rem;
}

.episode-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}

.episode-links a {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
}

.episode-play {
  min-height: 40px;
  padding: 10px 14px;
  border: 0;
  font-size: 0.9rem;
}

.load-error {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.about-grid,
.suggest-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.about p,
.contact p,
.suggest p,
.prose-panel p,
.guest-hero p {
  color: inherit;
  opacity: 0.78;
  font-size: 1.04rem;
}

.team-list,
.contact-links {
  display: grid;
  gap: 12px;
}

.team-card {
  padding: 18px;
}

.team-card span,
.guide-card span {
  display: block;
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.12rem;
}

.guest-form {
  padding: 22px;
  border: 1px solid rgba(19, 19, 19, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.guest-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-links a {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 800;
}

.contact-links a:first-child {
  color: var(--coral);
}

.site-footer {
  padding: 28px 0;
  background: var(--ink-2);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.player-dialog {
  width: min(calc(100% - 28px), 760px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.player-dialog::backdrop {
  background: rgba(19, 19, 19, 0.68);
}

.player-dialog iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.dialog-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
}

.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.guest-hero {
  padding-top: 160px;
  padding-bottom: 76px;
}

.guest-hero h1 {
  font-size: 3.4rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-card,
.prose-panel {
  padding: 22px;
}

.guide-card h2 {
  margin: 10px 0;
  font-size: 1.24rem;
}

.guide-card p {
  color: var(--muted);
}

.prose-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.prose-panel a:not(.button) {
  color: var(--blue);
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .episode-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section-band {
    padding: 64px 0;
  }

  .site-header {
    height: 64px;
    top: 8px;
    margin-top: 8px;
    margin-bottom: -72px;
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav:not(.static-nav) {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 8px;
    border-radius: 18px;
    background: rgba(19, 19, 19, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .static-nav {
    gap: 2px;
  }

  .static-nav a {
    padding: 8px 9px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

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

  h1,
  .guest-hero h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-art {
    min-height: auto;
  }

  .cover-art {
    width: min(100%, 360px);
  }

  .audio-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    min-width: 0;
  }

  .section-heading.compact,
  .episode-tools,
  .footer-grid {
    align-items: start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .container.narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    width: min(calc(100% - 18px), 1220px);
    padding-left: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 156px;
  }

  .hero-actions,
  .episode-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .episode-play,
  .mini-player {
    width: 100%;
  }

  .hero-stats,
  .episode-grid,
  .guide-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  h1,
  .guest-hero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lead {
    font-size: 1.16rem;
  }

  .episode-links {
    align-items: stretch;
    flex-direction: column;
  }

  .episode-links a {
    text-align: center;
  }

  .player-dialog iframe {
    height: 280px;
  }

  .dialog-close {
    top: 8px;
    right: 8px;
  }
}

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

  .episode-card {
    transform: none;
    opacity: 1;
  }
}