/* PAGE HERO */
.page-hero {
  margin-top: 64px;
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 520px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(232,137,106,0.1) 1px, transparent 1px), linear-gradient(135deg, rgba(232,137,106,0.03) 25%, transparent 25%, transparent 50%, rgba(232,137,106,0.03) 50%, rgba(232,137,106,0.03) 75%, transparent 75%);
  background-size: 30px 30px, 40px 40px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem 5rem 3rem;
  position: relative; z-index: 1;
}
.hero-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem;
}
.hero-kicker::before { content: ''; display: block; width: 28px; height: 2px; background: var(--coral); flex-shrink: 0; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  color: var(--white); margin-bottom: 1.4rem;
  letter-spacing: -0.025em;
}
.hero-title em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 460px; margin-bottom: 2.5rem;
}
.jump-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.jump-pill {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.38rem 0.9rem; border-radius: 50px;
  transition: all 0.2s;
}
.jump-pill:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}

/* PODCAST SECTIONS - alternating layout */
.pod-section {
  padding: 6rem 2.5rem;
  position: relative; overflow: hidden;
}
.pod-section:nth-child(odd) { background: var(--cream); }
.pod-section:nth-child(even) { background: var(--blush); }
.pod-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(92,45,94,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.pod-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  gap: 5rem; align-items: center;
}
.pod-inner.img-left { grid-template-columns: 420px 1fr; }
.pod-inner.img-right { grid-template-columns: 1fr 420px; }
.pod-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.pod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 8px;
}
.pod-img-wrap.photo {
  padding: 0; aspect-ratio: 4/5;
}
.pod-img-wrap.photo img {
  object-fit: cover; object-position: center 15%;
  border-radius: 0;
}
.pod-num {
  font-family: var(--ff-display);
  font-size: 5rem; font-weight: 700;
  color: rgba(92,45,94,0.08); line-height: 1;
  margin-bottom: 0.3rem;
}
.pod-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}
.pod-label::before { content: ''; width: 20px; height: 2px; background: var(--coral); }
.pod-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--plum);
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.pod-tagline {
  font-family: var(--ff-display);
  font-style: italic; font-size: 1.05rem;
  color: var(--rose); margin-bottom: 1.2rem;
}
.pod-desc {
  color: var(--muted);
  font-size: 1.02rem; line-height: 1.75;
  margin-bottom: 1.5rem;
}
.pod-desc p { margin-bottom: 0.9rem; }
.pod-links {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 2rem;
}
.pod-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  transition: all 0.2s;
}
.pod-link.apple {
  background: rgba(92,45,94,0.08);
  color: var(--plum);
  border: 1px solid rgba(92,45,94,0.2);
}
.pod-link.apple:hover { background: var(--plum); color: var(--white); }
.pod-link.spotify {
  background: rgba(29,185,84,0.12);
  color: #1DB954;
  border: 1px solid rgba(29,185,84,0.25);
}
.pod-link.spotify:hover { background: rgba(29,185,84,0.2); }
.pod-link.youtube {
  background: rgba(255,0,0,0.1);
  color: #FF4444;
  border: 1px solid rgba(255,0,0,0.2);
}
.pod-link.youtube:hover { background: rgba(255,0,0,0.18); }
.pod-link.substack {
  background: rgba(255,102,0,0.1);
  color: #FF6600;
  border: 1px solid rgba(255,102,0,0.2);
}
.pod-link.substack:hover { background: rgba(255,102,0,0.18); }
.pod-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.65rem;
  border-radius: 50px; margin-bottom: 0.9rem;
}
.badge-flagship { background: rgba(232,137,106,0.15); color: var(--coral); border: 1px solid rgba(232,137,106,0.3); }
.badge-exclusive { background: rgba(196,136,154,0.15); color: var(--rose); border: 1px solid rgba(196,136,154,0.3); }
.badge-new { background: rgba(122,74,124,0.2); color: #C084FC; border: 1px solid rgba(122,74,124,0.3); }

/* DIVIDER STRIP */
.divider-strip {
  background: var(--plum);
  padding: 2.5rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.divider-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.divider-strip p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--white); max-width: 700px;
  margin: 0 auto; line-height: 1.5;
  position: relative; z-index: 1;
}
.divider-strip p em { color: var(--coral); font-style: normal; }

/* CTA */
.cta-strip {
  background: var(--coral); padding: 5rem 2.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 0.8rem; letter-spacing: -0.022em;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.06rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--coral); padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white { color: var(--white); border: 2px solid rgba(255,255,255,0.55); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; display: inline-block; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-right { height: 65vw; max-height: 440px; }
  .pod-inner.img-left, .pod-inner.img-right { grid-template-columns: 1fr; gap: 2.5rem; }
  .pod-img-wrap { max-width: 360px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   MOBILE WIDTH GUARD
   Keeps grid/flex content inside the viewport.
   ========================================================= */
.hero,
.hero-wrap,
.page-hero,
.page-wrap,
.hero-left,
.hero-right,
.hero-content,
.container {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 600px) {
  section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-left,
  .hero-content,
  .form-side {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title,
  .page-title,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-btns,
  .about-btns,
  .jump-links,
  .jump-pills,
  .pod-links {
    max-width: 100%;
  }
}
