:root {
  --ink: #0e0e0e;
  --ink-soft: #3d3a36;
  --muted: #7a756c;
  --paper: #faf8f4;
  --paper-soft: #f1eee7;
  --line: rgba(14, 14, 14, 0.1);
  --line-strong: rgba(14, 14, 14, 0.22);
  --brand-yellow: #d4a92a;
  --brand-yellow-deep: #b8901a;
  --shadow: 0 18px 50px rgba(20, 16, 10, 0.1);
  --shadow-soft: 0 8px 24px rgba(20, 16, 10, 0.06);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Helvetica Neue", sans-serif;
  --space: clamp(1.25rem, 3.5vw, 2.75rem);
  --header-h: 4.25rem;
  --ticker-h: 2.15rem;
  --max: 74rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  background:
    radial-gradient(120% 80% at 50% -10%, #fffdf8 0%, transparent 55%),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(14, 14, 14, 0.18);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(14, 14, 14, 0.35);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 14, 14, 0.25) transparent;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--brand-yellow);
}

.ticker {
  overflow: hidden;
  height: var(--ticker-h);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  width: max-content;
  height: 100%;
  padding-inline: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
}

.ticker-track span[aria-hidden="true"] {
  color: var(--brand-yellow);
  opacity: 0.9;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 0.85rem var(--space);
  background: rgba(250, 248, 244, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
}

.site-header .brand {
  grid-column: 2;
}

.site-header .header-actions {
  grid-column: 3;
}

.site-header .menu-toggle {
  grid-column: 1;
}

.menu-toggle {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--ink);
}

.brand {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.8vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.55rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 14, 14, 0.18);
}

.btn-dark:hover {
  background: #000;
}

.btn-light {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-light:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.site-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: var(--space);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 15rem;
  padding: 0.7rem;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-menu[hidden] {
  display: none;
}

.site-menu a {
  padding: 0.75rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-menu a:hover {
  background: var(--paper-soft);
}

.hero {
  position: relative;
  isolation: isolate;
  height: calc(100svh - var(--header-h) - var(--ticker-h));
  max-height: 56rem;
  background: #ebe7df;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  opacity: 0;
  transform: scale(1.05);
  filter: saturate(0.92) contrast(1.02);
  animation: hero-in 1.4s var(--ease) 0.05s forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(14, 14, 14, 0.08) 0%,
      transparent 28%,
      transparent 58%,
      rgba(14, 14, 14, 0.18) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.latest {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2.25rem);
  bottom: clamp(1.35rem, 3vw, 2.25rem);
  z-index: 2;
  width: min(calc(100% - 2.4rem), 24rem);
  padding: 1.05rem 1.1rem 1.1rem;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-decoration: none;
  color: var(--ink);
  opacity: 0;
  transform: translateY(0.9rem);
  animation: rise 1s var(--ease) 0.4s forwards;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.latest:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(20, 16, 10, 0.14);
}

.latest:hover .latest-title {
  color: var(--brand-yellow-deep);
}

.latest-label {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.latest-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
}

.latest-thumb {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.55rem;
  background: #ddd;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.latest-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.34rem 0 0.34rem 0.55rem;
  border-color: transparent transparent transparent var(--ink);
  transform: translate(-50%, -50%);
}

.latest-copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.latest-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  transition: color 0.25s var(--ease);
}

.latest-show {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-inner {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

.section-inner.narrow {
  width: min(100% - 2 * var(--space), 40rem);
  text-align: center;
}

.hosts {
  background: var(--paper);
}

.about {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section-note {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.host-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1.25rem 0.75rem;
}

.host-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 0.6rem 0.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    transform 0.55s var(--ease),
    opacity 0.55s var(--ease);
}

.host-card.is-visible {
  opacity: 1;
  transform: none;
}

.host-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.host-avatar {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-soft);
  box-shadow:
    0 0 0 1px rgba(14, 14, 14, 0.06),
    0 12px 28px rgba(20, 16, 10, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.host-card:hover .host-avatar {
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(14, 14, 14, 0.08),
    0 16px 36px rgba(20, 16, 10, 0.14);
}

.host-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.host-handle {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.about-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.about-body {
  display: grid;
  gap: 1.15rem;
  text-align: left;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.about-body p {
  margin: 0;
}

.about-lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.episodes {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2,
.listen h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.section-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--muted);
}

.section-link:hover {
  color: var(--ink);
}

.episode-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.episode {
  opacity: 0;
  transform: translateY(0.7rem);
  border-bottom: 1px solid var(--line-strong);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.episode.is-visible {
  opacity: 1;
  transform: none;
}

.episode-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: center;
  padding: 1.25rem 0.15rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}

.episode-link:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateX(6px);
}

.episode-placeholder {
  pointer-events: none;
  opacity: 0.55;
}

.episode-thumb {
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 0.45rem;
  background: #ddd;
}

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

.episode-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.episode-meta {
  display: flex;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.episode-title {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.faqs {
  background: #efebe3;
  border-top: 1px solid var(--line);
}

.faqs-title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0.1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.3vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq[open] .faq-icon::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-answer {
  padding: 0 2.5rem 1.5rem 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 0.15em;
}

.listen {
  background: var(--paper);
}

.listen-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.75rem, 6vw, 4.25rem);
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--space) clamp(2.25rem, 4vw, 3rem);
  background: #d8d1c2;
  color: var(--ink);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.footer-brand-small {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
}

.footer-brand-large {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.footer-bar {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: start;
}

.footer-social a {
  display: inline-flex;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}

.footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-copy {
  margin: 0;
  justify-self: end;
  text-align: right;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.85;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .footer-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-social,
  .footer-copy {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }

  .header-actions .btn-light {
    display: none;
  }

  .hero {
    height: calc(100svh - var(--header-h) - var(--ticker-h));
    max-height: none;
  }

  .latest {
    left: 1rem;
    bottom: 1.15rem;
    width: calc(100% - 2rem);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .episode-thumb {
    width: 4.1rem;
    height: 4.1rem;
  }

  .host-avatar {
    width: 4.6rem;
    height: 4.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .latest,
  .episode,
  .host-card,
  .reveal,
  .ticker-track {
    animation: none !important;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker-track {
    justify-content: center;
    width: 100%;
  }
}
