:root {
  --ink: #141414;
  --muted: #5e625c;
  --paper: #f7f3eb;
  --panel: #fffaf1;
  --line: rgba(20, 20, 20, 0.16);
  --acid: #b4f04d;
  --coral: #f46d56;
  --cyan: #7ed7df;
  --deep: #253132;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 42%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=2200&q=82")
      center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 96px;
}

.kicker,
.label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--acid);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2.1vw, 1.46rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 720;
}

.button.primary {
  color: #111;
  background: var(--acid);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.intro-band {
  background: var(--ink);
  color: #fff;
}

.intro-grid {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  padding: 34px 0;
}

.intro-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.content-section,
.about-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.episode-list {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.episode-card,
.track-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.episode-card.featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--deep);
  color: #fff;
}

.episode-card h3,
.track-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.28rem, 2.2vw, 1.86rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.episode-card p:not(.label),
.track-grid p,
.about-section p {
  color: var(--muted);
}

.episode-card.featured p:not(.label) {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid var(--acid);
  color: var(--acid);
  font-weight: 760;
}

.essays {
  border-top: 1px solid var(--line);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.track-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 88px);
  border-top: 1px solid var(--line);
}

.about-section > p {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

  .nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%),
      url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=82")
        center / cover;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .intro-grid,
  .episode-list,
  .track-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .episode-card,
  .track-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    flex-direction: column;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 4rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
