:root {
  color-scheme: light;
  --ink: #1d1717;
  --muted: #5f5552;
  --paper: #fffaf4;
  --surface: #ffffff;
  --accent: #b83255;
  --accent-dark: #7e1f39;
  --line: #eaded5;
  --shadow: 0 18px 50px rgba(36, 24, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--line);
  background: var(--surface);
  color: var(--accent-dark);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - 142px);
  padding: 40px 0 64px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.lede {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.contact {
  margin: 1.25rem 0 0;
  font-weight: 700;
}

.cover {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 64px;
}

.info-band article {
  background: var(--surface);
  padding: 24px;
}

.info-band p,
.document p {
  margin: 0;
  color: var(--muted);
}

.document {
  max-width: 780px;
  padding: 56px 0 72px;
}

.document h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.document section {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.document section p + p {
  margin-top: 1rem;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 24px 16px 32px;
  text-align: center;
}

footer p {
  margin: 0;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.12s;
}

.cta-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 56px;
}

.platform-link {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.12s, color 0.12s;
}

.platform-link:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.recent-episodes {
  margin-bottom: 64px;
}

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

.section-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.episodes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 64px;
}

.episode-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--surface);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s;
}

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

.ep-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ep-films {
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.35;
}

.ep-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.5rem;
}

.page-hero {
  padding: 48px 0 40px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.page-hero p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-social a {
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }

  .cover {
    max-width: 460px;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .episodes-list {
    grid-template-columns: 1fr;
  }
}
