:root {
  --navy: #0d1b4b;
  --navy-light: #1a2d6b;
  --gold: #f5c518;
  --white: #ffffff;
  --muted: #d9dce5;
  --dark: #081333;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--gold);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 30px;
}

h3 {
  color: var(--gold);
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}

.section {
  padding: 90px 0;
}

/* HERO */
.hero {
  text-align: center;
  padding: 70px 20px 90px;
  background: radial-gradient(
    circle at center,
    rgba(245,197,24,0.10),
    transparent 45%
  );
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
}

.logo {
  width: min(220px, 50vw);
  margin-bottom: 25px;
}

.tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 750px;
  margin: 0 auto 40px;
}

/* BUTTONS */
.listen-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.spotify {
  background: #2ebd59;
  color: white;
}

.apple {
  background: #949a9f;
  color: white;
}

.youtube {
  background: #ff0000;
  color: white;
}

.amazon {
  background: #ff7f00;
  color: white;
}

.gold {
  background: var(--gold);
  color: var(--navy);
}

/* ABOUT */
.about {
  background: var(--navy-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.family-photo {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* SECTION */
.section-line {
  width: 120px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 25px;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 40px;
}

/* EPISODES */
.episodes {
  background: var(--navy);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.episode-card {
  background: var(--navy-light);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.25s ease;
}

.episode-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.episode-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.episode-content {
  padding: 25px;
}

.episode-guest {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.episode-content h3 {
  font-size: 1.5rem;
  margin: 8px 0 12px;
}

.episode-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.small-button {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* FOLLOW */
.follow {
  text-align: center;
  background: var(--navy-light);
}

.follow .section-line {
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  padding: 70px 0 30px;
  text-align: center;
  background: var(--dark);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(245,197,24,0.2);
  color: #8e96ad;
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .episode-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .logo {
    width: min(180px, 50vw);
  }
}