:root {
  --ivory: #fbf5ec;
  --warm-white: #fffaf4;
  --forest: #293c27;
  --sage: #7f8b69;
  --moss: #485738;
  --gold: #b3833b;
  --clay: #a6673d;
  --ink: #1d241b;
  --muted: #66705d;
  --line: rgba(41, 60, 39, 0.16);
  --shadow: 0 24px 70px rgba(45, 37, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.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: 8px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid rgba(179, 131, 59, 0.18);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 170px;
  height: 68px;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 142px clamp(20px, 6vw, 88px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  width: min(780px, 100%);
  margin: 0 auto;
  padding-top: clamp(34px, 7vh, 74px);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--forest);
  line-height: 1.03;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.hero-copy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #35422f;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions,
.section-copy .button,
.connect-copy .button {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: rgba(255, 250, 244, 0.72);
  color: var(--forest);
}

.intro-band,
.hosts-section,
.episode-section,
.listen-section,
.connect-section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.intro-band {
  background:
    linear-gradient(135deg, rgba(127, 139, 105, 0.22), rgba(179, 131, 59, 0.08)),
    var(--ivory);
}

.intro-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.cover-wrap {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover-wrap img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

.section-copy p,
.episode-copy p,
.connect-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hosts-section,
.listen-section {
  background: var(--warm-white);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.host-grid,
.platform-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.host-card,
.platform-card,
.episode-stats > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.host-card {
  padding: clamp(24px, 4vw, 42px);
}

.host-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.host-initial {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.episode-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  background: var(--forest);
}

.episode-section h2,
.episode-section .section-kicker {
  color: var(--ivory);
}

.episode-section p {
  color: rgba(255, 250, 244, 0.78);
}

.episode-stats {
  margin: 0;
  display: grid;
  gap: 14px;
}

.episode-stats > div {
  padding: 22px;
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.18);
}

.episode-stats dt {
  color: rgba(255, 250, 244, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.episode-stats dd {
  margin: 4px 0 0;
  color: var(--warm-white);
  font-size: 1.55rem;
  font-family: Georgia, "Times New Roman", serif;
}

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-card {
  min-height: 166px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  color: var(--forest);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-card:hover,
.platform-card:focus-visible {
  border-color: rgba(179, 131, 59, 0.5);
  box-shadow: 0 18px 44px rgba(45, 37, 25, 0.11);
  transform: translateY(-4px);
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
}

.platform-icon.apple {
  background: #8b47d9;
}

.platform-icon.amazon {
  background: #1f2630;
}

.platform-icon.spotify {
  background: #1ed760;
  color: #102312;
}

.platform-icon.youtube {
  background: #e11d1d;
}

.platform-card strong,
.platform-card small {
  display: block;
}

.platform-card strong {
  margin-bottom: 3px;
  font-size: 1.04rem;
}

.platform-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(166, 103, 61, 0.16), rgba(127, 139, 105, 0.24)),
    var(--ivory);
}

.connect-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: #202a1f;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ivory);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    position: fixed;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .hero-content {
    padding-top: clamp(40px, 8vh, 92px);
  }

  .intro-layout,
  .episode-section,
  .connect-section {
    grid-template-columns: 1fr;
  }

  .cover-wrap {
    width: min(460px, 100%);
    margin: 0 auto;
  }

  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 138px;
    height: 54px;
  }

  .brand-mark img {
    width: 224px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 98px;
    padding-bottom: 44px;
  }

  .hero-content {
    padding-top: clamp(36px, 7vh, 72px);
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .host-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 138px;
  }
}
