:root {
  color-scheme: dark;
  --background: #11100e;
  --surface: #1c1915;
  --text: #f7f2e8;
  --muted: #bdb5a7;
  --accent: #c9973f;
  --border: #393229;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

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

.site-header,
.site-footer {
  padding: 1.25rem;
  border-color: var(--border);
}

.site-header {
  border-bottom: 1px solid var(--border);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

.site-title {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, 1000px);
  margin-inline: auto;
  padding-block: 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 3rem;
  align-items: center;
}

.cover-art {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin-block: 0.25rem 1rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}

.intro {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1.15rem;
}

.feed-link {
  display: inline-block;
  margin-top: 1rem;
}

.episodes {
  margin-top: 4rem;
}

.episode-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.episode-card h3 {
  margin-top: 0;
}

audio {
  width: 100%;
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .cover-art {
    max-width: 400px;
  }
}
