:root {
  --hot-pink: #f02f9b;
  --bubblegum: #ff8fc7;
  --powder: #ffe3f1;
  --blush: #fff4f8;
  --cream: #fffaf1;
  --ink: #1d171b;
  --muted: #6a5862;
  --gold: #c99531;
  --sage: #aeb8a6;
  --line: rgba(29, 23, 27, 0.12);
  --shadow: 0 24px 70px rgba(211, 47, 134, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--hot-pink);
  color: white;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 244, 248, 0.84);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(117, 62, 88, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(240, 47, 155, 0.24);
  border-radius: 50%;
  background: white;
  color: var(--hot-pink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(240, 47, 155, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(29, 23, 27, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-block: 4px;
}

.site-nav a:hover {
  border-color: var(--hot-pink);
}

.hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 88px clamp(18px, 4vw, 56px) 52px;
  background:
    linear-gradient(90deg, rgba(255, 244, 248, 0.97) 0%, rgba(255, 244, 248, 0.88) 39%, rgba(255, 244, 248, 0.2) 72%),
    url("assets/hero-girls-gone-jai.jpg") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  width: min(590px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--hot-pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(46px, 7vw, 92px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 58px);
}

.hero-line {
  margin-bottom: 12px;
  color: var(--hot-pink);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

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

.button,
.platforms a,
.all-episodes {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.platforms a:hover,
.all-episodes:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(240, 47, 155, 0.18);
}

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

.button.primary .icon {
  --youtube-play: var(--ink);
}

.button.secondary,
.platforms a,
.all-episodes {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(52px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

.intro {
  background:
    radial-gradient(circle at 8% 20%, rgba(240, 47, 155, 0.11), transparent 28%),
    var(--cream);
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.episodes {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 227, 241, 0.76), rgba(255, 250, 241, 0.82)),
    repeating-linear-gradient(90deg, rgba(29, 23, 27, 0.03) 0 1px, transparent 1px 96px);
}

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

.heading-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.all-episodes {
  color: var(--hot-pink);
}

.carousel-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--hot-pink);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(240, 47, 155, 0.18);
}

.episode-carousel {
  position: relative;
}

.episode-carousel .carousel-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(29, 23, 27, 0.16);
}

.episode-carousel .carousel-button:hover {
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.episode-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 58px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bubblegum) rgba(255, 255, 255, 0.7);
}

.episode-card {
  flex: 0 0 clamp(280px, 30vw, 390px);
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.episode-thumb {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--powder);
  isolation: isolate;
}

.episode-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(29, 23, 27, 0.02) 0%, rgba(29, 23, 27, 0.12) 45%, rgba(29, 23, 27, 0.72) 100%);
  pointer-events: none;
}

.episode-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.episode-thumb span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(29, 23, 27, 0.72);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.episode-thumb h3 {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  margin: 0;
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 0.98;
  text-shadow: 0 2px 18px rgba(29, 23, 27, 0.42);
}

.episode-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.episode-meta {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.host-list h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.06;
}

.episode-body p:not(.episode-meta),
.host-list p,
.contact p {
  color: var(--muted);
}

.episode-links {
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
}

.episode-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--hot-pink);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.episode-links a:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.hosts {
  background: var(--blush);
}

.host-list {
  display: grid;
  gap: 16px;
}

.host-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: white;
}

.host-initial {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--powder);
  color: var(--hot-pink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  font-weight: 900;
}

.listen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 5vw, 62px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: white;
}

.listen .section-kicker {
  color: var(--bubblegum);
}

.listen h2 {
  max-width: 780px;
}

.platforms {
  justify-content: flex-end;
}

.platforms a {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.platforms .icon {
  width: 23px;
  height: 23px;
  color: var(--bubblegum);
}

.contact {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(rgba(255, 244, 248, 0.8), rgba(255, 244, 248, 0.8)),
    url("assets/hero-girls-gone-jai.jpg") center / cover fixed;
}

.contact-panel {
  width: min(820px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-panel h2 {
  margin-bottom: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-footer span {
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 78svh;
    background:
      linear-gradient(180deg, rgba(255, 244, 248, 0.97) 0%, rgba(255, 244, 248, 0.9) 48%, rgba(255, 244, 248, 0.42) 100%),
      url("assets/hero-girls-gone-jai.jpg") center bottom / cover no-repeat;
  }

  .section-grid,
  .listen {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .all-episodes {
    margin-top: 22px;
  }

  .heading-actions {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .platforms {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .episode-card {
    flex-basis: min(86vw, 360px);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 88px 16px 48px;
  }

  .button,
  .platforms a,
  .all-episodes {
    width: 100%;
  }

  .carousel-button {
    width: 42px;
    height: 42px;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }

  .episode-grid {
    padding-inline: 48px;
  }

  .section-grid,
  .episodes,
  .listen,
  .contact {
    padding-inline: 16px;
  }

  .host-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 16px;
  }
}
