@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Nunito:wght@400;600;700&display=swap");

:root {
  --petal: #f4a8b8;
  --blush: #f8c4d4;
  --peach: #ffb89a;
  --marigold: #f5c842;
  --lilac: #c9a8e8;
  --sage: #9cb89a;
  --cream: #fff8f3;
  --ink: #3d2f35;
  --muted: #6b5560;
  --surface: rgba(255, 255, 255, 0.72);
  --border: rgba(61, 47, 53, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --container: min(1080px, calc(100% - 2rem));
  --header-h: 4.75rem;
  --gradient-bg: linear-gradient(
    145deg,
    var(--cream) 0%,
    #ffe8f0 28%,
    #fff4e6 55%,
    #f3ebff 82%,
    var(--cream) 100%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #b84d6a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 248, 243, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  animation: headerIn 0.7s ease both;
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: clamp(2.75rem, 6vw, 3.25rem);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(244, 168, 184, 0.35);
}

.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 10rem;
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font: 700 0.85rem var(--font-body);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.nav-link {
  color: var(--muted);
  font: 700 0.82rem var(--font-body);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--petal);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 243, 0.15) 0%,
    rgba(255, 232, 240, 0.55) 45%,
    rgba(255, 248, 243, 0.95) 88%,
    var(--cream) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0 3.5rem;
  text-align: center;
  animation: heroIn 0.9s ease 0.15s both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-mark {
  width: clamp(4rem, 12vw, 6rem);
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(201, 168, 232, 0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-subline {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.page-main {
  padding-bottom: 4rem;
}

.page-inner {
  padding-top: calc(var(--header-h) + 2rem);
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1,
.teaser-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.75rem;
}

.page-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42rem;
}

.teaser-eyebrow {
  font: 700 0.78rem var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b84d6a;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font: 700 0.92rem var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--petal), var(--peach));
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(244, 168, 184, 0.45);
}

.btn-soft {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(61, 47, 53, 0.06);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.text-link {
  font-weight: 700;
  color: #b84d6a;
}

.teaser {
  padding: 3.5rem 0;
}

.teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.teaser-reverse .teaser-inner {
  direction: rtl;
}

.teaser-reverse .teaser-copy,
.teaser-reverse .teaser-visual {
  direction: ltr;
}

.teaser-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.teaser-frame {
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(201, 168, 232, 0.25);
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.listen-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listen-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 200, 66, 0.2);
}

.listen-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.listen-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.host-card {
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(248, 196, 212, 0.35), rgba(201, 168, 232, 0.25));
  border-radius: 1.25rem;
  border: 1px solid var(--border);
}

.host-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.host-handle {
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.feature-art img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(244, 168, 184, 0.3);
}

.prose {
  font-size: 1.05rem;
}

.prose p {
  margin: 0 0 1rem;
}

.cta-panel {
  margin: 2rem 0 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
}

.cta-note,
.cross-link {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.coming-soon {
  text-align: center;
  padding: 2rem 0 3rem;
}

.coming-soon-art {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(245, 200, 66, 0.25);
}

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.episode-card {
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 6px 20px rgba(244, 168, 184, 0.12);
}

.episode-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.episode-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.episode-desc {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.episode-loading,
.episode-error {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.ad-slot {
  margin: 1.5rem 0;
}

.ad-placeholder {
  min-height: 90px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed var(--border);
  border-radius: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--muted);
  max-width: 22rem;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav strong {
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 248, 243, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .teaser-inner,
  .feature-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .teaser-reverse .teaser-inner {
    direction: ltr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
