:root {
  --ink: #0b0b0b;
  --charcoal: #151515;
  --soft-black: #1f1c19;
  --paper: #f6f2ec;
  --panel: #fffdf8;
  --muted: #79716a;
  --line: rgba(16, 16, 16, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #caa45d;
  --copper: #a85f3d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  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;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

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

.brand-logo {
  width: 106px;
  height: 42px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
  padding: 5px 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 80px) 72px;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.6rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
}

.button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

section {
  padding: 84px clamp(20px, 6vw, 80px);
}

.band {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.listen {
  background: var(--ink);
  color: var(--white);
}

.listen-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.listen-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 300px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 26px;
}

.show-logo {
  width: 100%;
  max-width: 300px;
  justify-self: end;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.audio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 560px);
  gap: 32px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(135deg, #1b1b1b, #101010);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid rgba(202, 164, 93, 0.45);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.audio-panel p,
.episode-card p,
.about-copy p,
.footer p {
  color: var(--muted);
}

.audio-panel p {
  color: rgba(255, 255, 255, 0.68);
}

audio {
  width: 100%;
  min-height: 42px;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.episode-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.06);
}

.episode-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.episode-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 950;
}

.about-layout,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 4vw, 38px);
  font-size: 1.1rem;
}

.clips {
  background: var(--charcoal);
  color: var(--white);
}

.clip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.clip-item {
  min-height: 124px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--white);
  background: #202020;
  font-weight: 900;
}

.clip-item:nth-child(2) {
  background: #2a231e;
}

.clip-item:nth-child(3) {
  background: #181f20;
}

.clip-item:nth-child(4) {
  background: #28200f;
}

.contact {
  background: var(--panel);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-link {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.social-link:hover {
  border-color: rgba(202, 164, 93, 0.7);
}

.social-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.social-link strong {
  color: var(--ink);
  font-size: 1rem;
}

.social-link.email {
  grid-column: 1 / -1;
  background: var(--ink);
}

.social-link.email span,
.social-link.email strong {
  color: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 80px);
  background: var(--ink);
  color: var(--white);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 156px;
  }

  .audio-panel,
  .listen-header,
  .episode-grid,
  .about-layout,
  .clip-list,
  .contact,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .show-logo {
    max-width: 240px;
    justify-self: start;
  }

  .episode-card {
    min-height: auto;
  }

  .episode-topline {
    margin-bottom: 28px;
  }

  .about-copy {
    border-left: 0;
    padding-left: 0;
  }

  .social-link.email {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
  }

  .nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .brand-logo {
    width: 96px;
    height: 38px;
  }

  h1 {
    font-size: 3.5rem;
  }

  section {
    padding-block: 60px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .footer {
    display: block;
  }
}
