/* ============================================================
   I AM PAIGE LUNA - SITE STYLES
   Jamie Sea aesthetic: massive serif headlines, two-column
   layouts, generous breathing room.
   Palette: hot pink / baby blue / ocean light / warm neutrals
   ============================================================ */

:root {
  --pink: #E0358F;
  --pink-dark: #C22677;
  --pink-soft: #FBE4F0;
  --blue: #A9D6EA;
  --blue-soft: #E4F3FA;
  --ocean: #F4F9FB;
  --cream: #FAF6EF;
  --ink: #2C2926;
  --gray: #6E675F;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ocean);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.08; }

a { color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---------------- NAVBAR ---------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 249, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 41, 38, 0.06);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-wordmark-img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.nav-links a.active { color: var(--pink); border-bottom-color: var(--pink); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 210;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(44, 41, 38, 0.35);
}

.nav-overlay.open { display: block; }

/* ---------------- HERO (HOME) ---------------- */

.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #F7FBFD 0%, var(--ocean) 45%, #EAF4F9 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding: 4rem 0 5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.hero h1 .pink { color: var(--pink); }

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--gray);
  margin-bottom: 1.8rem;
}

.hero-copy {
  max-width: 520px;
  color: var(--gray);
  margin-bottom: 2.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 40px 80px rgba(44, 41, 38, 0.18);
}

.hero-photo::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 2.2rem;
  left: -2.2rem;
  right: 2.2rem;
  bottom: -2.2rem;
  background: var(--blue-soft);
  border-radius: 6px;
}

/* Hero with full-bleed moonlit water photo background (home page) */

.hero--water {
  background: #0B1420;
}

.hero--water .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero--water .hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.35);
  z-index: 1;
}

.hero--water .container,
.hero--water .hero-inner {
  position: relative;
  z-index: 2;
}

.hero--water .hero-inner {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero--water .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero--water .hero h1,
.hero--water .hero-sub,
.hero--water .hero-copy {
  color: #F6F3EC;
}

.hero--water .hero h1 .pink { color: #FF7FBE; }

/* Hero signature logo (replaces the I AM PAIGE LUNA text) */
.hero-logo-title {
  margin-bottom: 1.4rem;
  line-height: 0;
}

.hero-logo-title img {
  display: block;
  width: min(560px, 82vw);
  height: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

.hero--water .text-link { color: #F6F3EC; }
.hero--water .text-link:hover { color: #FF7FBE; }

/* About Paige hero: full-bleed editorial portrait with text overlaid bottom-left */
.hero--about {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  background: #0B1420;
  overflow: hidden;
}
.hero--about .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero--about .hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 9, 16, 0.94) 0%,
    rgba(5, 9, 16, 0.72) 28%,
    rgba(5, 9, 16, 0.32) 58%,
    rgba(5, 9, 16, 0.12) 80%,
    rgba(5, 9, 16, 0.28) 100%
  );
}
.hero--about .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 5.5rem;
}
.hero--about .hero-text {
  max-width: 660px;
}
.hero--about .hero-eyebrow {
  color: #FF7FBE;
}
.hero--about h1,
.hero--about .hero-sub {
  color: #F6F3EC;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero--about .hero-copy {
  color: rgba(246, 243, 236, 0.88);
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero--about .text-link { color: #F6F3EC; }
.hero--about .text-link:hover { color: #FF7FBE; }
@media (max-width: 768px) {
  .hero--about {
    min-height: 78vh;
  }
  .hero--about .container {
    padding-bottom: 3.5rem;
  }
  .hero--about .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------- BUTTONS ---------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

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

.btn-disabled {
  background: transparent;
  color: var(--muted, #777);
  border: 1px solid var(--muted, #777);
  cursor: default;
  opacity: 0.7;
}
.btn-disabled:hover { transform: none; }

.show-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto 0;
}

.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); }

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }

.btn-blue { background: var(--blue); color: var(--ink); }
.btn-blue:hover { background: #8FC8E0; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--pink-dark); }

.text-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 0.3rem;
  transition: color 0.2s;
}

.text-link:hover { color: var(--pink); }

/* ---------------- SECTIONS ---------------- */

.section { padding: 7rem 0; }

.section-cream { background: var(--cream); }
.section-blue { background: var(--blue-soft); }
.section-ocean { background: var(--ocean); }
.section-white { background: var(--white); }

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.4rem;
}

.section h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 2rem;
  color: var(--ink);
}

.section h2 .pink { color: var(--pink); }

.body-copy {
  color: var(--gray);
  max-width: 560px;
}

.body-copy p + p { margin-top: 1.4rem; }

.accent-bar {
  width: 72px;
  height: 6px;
  border-radius: 3px;
  background: var(--pink);
  margin: 0 0 2.4rem;
}

.accent-bar.blue { background: var(--blue); }

/* Two-column split layout */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(44, 41, 38, 0.14);
}

/* Centered stacked layout (About Paige) */

.stacked-block {
  text-align: center;
}

.accent-bar--center {
  margin-left: auto;
  margin-right: auto;
}

.stacked-photo {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.stacked-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(44, 41, 38, 0.14);
}

.body-copy--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stacked-cta {
  margin-top: 2.4rem;
}

/* ---------------- PODCAST SHOWCASE (HOME) ---------------- */

.showcase {
  position: relative;
  background: var(--ocean);
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 100%);
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 4rem;
  box-shadow: 0 30px 70px rgba(44, 41, 38, 0.1);
}

.showcase-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 1.6rem;
}

.showcase-media {
  position: relative;
}

.showcase-media > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.showcase-phone {
  position: absolute;
  right: -1.5rem;
  bottom: -3rem;
  width: 38%;
  max-width: 190px;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(-7deg);
}

/* ---------------- FINAL CALLOUT ---------------- */

.callout {
  position: relative;
  padding: 9rem 0;
  background: linear-gradient(150deg, var(--pink) 0%, var(--pink-dark) 100%);
  text-align: center;
  color: var(--white);
}

.callout .container { max-width: 900px; }

.callout h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  color: var(--white);
  margin-bottom: 2.6rem;
}

.callout .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 2.6rem;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------------- BOOK PAGE ---------------- */

.book-hero {
  padding: calc(var(--nav-h) + 6rem) 0 7rem;
  background: linear-gradient(150deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  text-align: center;
}

.book-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--white);
  margin-bottom: 1.4rem;
}

.book-hero .book-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 1rem;
}

.book-hero .book-by {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.4rem;
}

.book-hero .hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.6rem;
}

.book-hero .book-timeline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  margin-bottom: 2.6rem;
}

.definition {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--pink);
  margin: 2.4rem 0;
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.dimension {
  background: var(--white);
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-top: 5px solid var(--pink);
  border-radius: 8px;
  padding: 2rem 1.4rem;
  text-align: center;
}

.dimension:nth-child(even) { border-top-color: var(--blue); }

.dimension h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.dimension p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.pie-section {
  background: linear-gradient(150deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
}

.pie-section h2 { color: var(--white); }
.pie-section .body-copy { color: rgba(255, 255, 255, 0.92); max-width: 760px; }
.pie-section .body-copy .pink-line { color: #FFD3EA; font-weight: 600; }

/* ---------------- QUOTE CARDS (Things to Know) ---------------- */
.quote-cards-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.quote-cards-title {
  text-align: center;
  margin-top: 1.2rem;
}
.quote-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
  text-align: left;
}
.quote-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.2rem 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(44, 41, 38, 0.07);
  border: 1px solid rgba(224, 53, 143, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote-card--pink { background: var(--pink-soft); }
.quote-card:nth-child(odd) { transform: rotate(-1.2deg); }
.quote-card:nth-child(even) { transform: rotate(1deg); }
.quote-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 41, 38, 0.13);
}
.quote-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--pink);
  display: block;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote-card figcaption {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-top: auto;
}
@media (max-width: 768px) {
  .quote-cards { grid-template-columns: 1fr; gap: 1.3rem; }
  .quote-card:nth-child(odd),
  .quote-card:nth-child(even) { transform: none; }
}

/* ---------------- SHOW PAGE ---------------- */

.show-hero {
  padding: calc(var(--nav-h) + 6rem) 0 6.5rem;
  background: linear-gradient(160deg, var(--blue-soft) 0%, var(--ocean) 100%);
  text-align: center;
}

.show-hero h1 {
  font-size: clamp(3rem, 8.5vw, 7rem);
  color: var(--pink);
  margin-bottom: 2rem;
}

.show-hero .show-desc {
  max-width: 780px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
}

.show-artwork {
  max-width: 860px;
  margin: 3.5rem auto 0;
}

.show-artwork img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 35px 70px rgba(44, 41, 38, 0.2);
}

.episode-slot {
  background: var(--white);
  border: 2px dashed rgba(224, 53, 143, 0.4);
  border-radius: 12px;
  padding: 4.5rem 2.5rem;
  text-align: center;
}

.episode-slot h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.episode-slot p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 2.2rem;
}

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

.episode-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(44, 41, 38, 0.1);
  transition: transform 0.2s;
}

.episode-card:hover { transform: translateY(-4px); }

.episode-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.episode-card .episode-body { padding: 1.6rem 1.6rem 2rem; }

.episode-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

.episode-card p { font-size: 0.92rem; color: var(--gray); }

.episode-empty {
  border: 2px dashed rgba(44, 41, 38, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------------- EMAIL SIGNUP ---------------- */

.signup {
  padding: 6.5rem 0;
  text-align: center;
}

.signup-pink { background: var(--pink-soft); }

/* ---------------- SHOW PAGE IMAGE LAYOUTS ---------------- */

.episode-layout {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.episode-layout .episode-slot { flex: 1; }

.episode-phone {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
}

.episode-phone img {
  width: 100%;
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 30px 45px rgba(44, 41, 38, 0.28));
}

.show-photo-section { padding: 5rem 0; }

.show-photo-band {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(44, 41, 38, 0.18);
}

.show-photo-band img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 768px) {
  .episode-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .episode-phone { flex: 0 0 auto; }

  .show-photo-section { padding: 3rem 0; }
}
.signup-blue { background: var(--blue-soft); }

.signup h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
}

.signup .signup-copy {
  max-width: 640px;
  margin: 0 auto 2.6rem;
  color: var(--gray);
}

.signup-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  flex: 1 1 300px;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 1.05rem 1.5rem;
  border: 2px solid rgba(44, 41, 38, 0.15);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.signup-form input[type="email"]:focus { border-color: var(--pink); }

.form-status { margin-top: 1.4rem; font-weight: 600; }
.form-status.success { color: #1B7A4B; }
.form-status.error { color: #C0392B; }

.callout .form-status.success,
.callout .form-status.error { color: var(--white); }

/* ---------------- FOOTER ---------------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 4.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--pink); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------- FADE-IN ---------------- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---------------- LEGAL PAGES ---------------- */

.legal-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--ocean);
}

.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

.legal-body { padding: 3rem 0 6rem; }

.legal-body .body-copy { max-width: 760px; }

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .showcase-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-media { order: -1; }

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

  .episode-grid { grid-template-columns: 1fr 1fr; }

  .showcase-phone { display: none; }

  .section { padding: 5rem 0; }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 50px rgba(44, 41, 38, 0.15);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { font-size: 0.95rem; }

  .container { padding: 0 1.5rem; }

  .nav-inner { padding: 0 1.5rem; }

  .hero { min-height: 0; }

  .hero--about { min-height: 78vh; }

  .hero-inner { padding: 3.5rem 0 4rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .hero--water .hero-actions { align-items: center; }

  .episode-grid { grid-template-columns: 1fr; }

  .dimensions-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .signup-form { flex-direction: column; }

  .signup-form input[type="email"] { flex: 1 1 auto; }

  .footer-inner { flex-direction: column; text-align: center; }

  .footer-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .dimensions-grid { grid-template-columns: 1fr; }

  .showcase-card { padding: 2.2rem 1.5rem; }
}

/* ---------------- EXPLORE CARDS (HOMEPAGE) ---------------- */

.explore-head { max-width: 820px; margin-bottom: 3rem; }

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.explore-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  padding: 2.4rem 2rem 2.2rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(44, 41, 38, 0.08);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.explore-card:hover,
.explore-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(44, 41, 38, 0.14);
  border-color: var(--pink);
}

.explore-card--pink { background: var(--pink-soft); }

.explore-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.explore-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.explore-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1.6rem;
}

.explore-badge {
  align-self: flex-start;
  background: var(--pink);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}

.explore-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.explore-arrow { transition: transform 0.25s ease; }

.explore-card:hover .explore-arrow { transform: translateX(6px); }

@media (max-width: 980px) {
  .explore-grid { grid-template-columns: 1fr; }
}
