:root {
  --bg: #0a0a0a;
  --text: #fafafa;
  --muted: #888;
  --border: #222;
  --accent: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* Navigation */
nav {
  padding: 2rem 0;
  display: flex;
  gap: 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav a {
  color: var(--muted);
  transition: color 0.2s;
}

nav a:hover {
  color: var(--text);
  opacity: 1;
}

/* Hero / Cover */
.hero {
  padding: 4rem 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cover-art {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 400px;
}

/* Episodes Section */
.episodes-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 3rem;
}

.episode-list {
  list-style: none;
}

.episode-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: baseline;
}

.episode-item:first-child {
  border-top: 1px solid var(--border);
}

.episode-number {
  font-size: 0.875rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 3rem;
}

.episode-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.episode-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.episode-title:hover {
  opacity: 0.7;
}

.episode-desc {
  color: var(--muted);
  font-size: 0.9375rem;
}

.episode-date {
  color: var(--muted);
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Single Episode Page */
.episode-page {
  padding: 4rem 0;
  max-width: 720px;
}

.back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.back-link:hover {
  color: var(--text);
  opacity: 1;
}

.episode-header {
  margin-bottom: 3rem;
}

.episode-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.episode-header .episode-date {
  font-size: 1rem;
}

.episode-body p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* Listen On Section */
.listen-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

.listen-section h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.platform-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.platform-link:hover {
  border-color: var(--muted);
  background: rgba(255,255,255,0.03);
  opacity: 1;
}

.platform-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Show Notes */
.show-notes {
  margin-top: 3rem;
}

.show-notes h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.show-notes ul {
  list-style: none;
}

.show-notes li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.show-notes li:first-child {
  border-top: 1px solid var(--border);
}

/* About Page */
.about-page {
  padding: 4rem 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 6rem;
}

.about-hero .cover-art {
  width: 100%;
  max-width: 320px;
}

.about-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}

.host-section {
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: start;
}

.host-photo {
  width: 100%;
  border-radius: 8px;
}

.host-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.host-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .cover-art {
    max-width: 320px;
    margin: 0 auto;
  }

  .tagline {
    margin: 0 auto;
  }

  .episode-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .episode-number {
    order: 2;
  }

  .episode-date {
    order: 3;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero .cover-art {
    max-width: 240px;
  }

  .host-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .host-photo {
    max-width: 120px;
  }
}
