/* ---------- Brand tokens ---------- */
:root {
  --pink: #E85A78;
  --pink-soft: #F5C8C8;
  --pink-wash: #FCEEEF;
  --cream: #FAF7F2;
  --paper: #FFFFFF;
  --ink: #2A2A2A;
  --ink-soft: #5C5C5C;
  --navy: #1B2A5E;
  --navy-soft: #2C3E72;
  --gold: #C9A961;
  --serif: 'Playfair Display', Georgia, serif;
  --serif-alt: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header / Nav ---------- */
.top-banner {
  background: var(--pink);
  color: #fff;
  text-align: center;
  letter-spacing: .35em;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 16px;
  text-transform: uppercase;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,90,120,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--serif-alt);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-brand span { color: var(--pink); }
.brand-mark {
  width: 46px;
  height: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: rotate(-6deg);
}
.jelly-accent {
  position: absolute;
  object-fit: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}
.jelly-hero {
  top: -40px;
  right: -60px;
  width: 380px;
  height: auto;
  transform: rotate(-12deg);
  opacity: .92;
  z-index: 1;
}
.jelly-divider {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 28px;
  transform: rotate(-6deg);
  mix-blend-mode: multiply;
  opacity: .95;
}
@media (max-width: 960px) {
  .jelly-hero { width: 240px; right: -40px; top: -30px; }
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--pink);
  border-color: var(--pink);
  opacity: 1;
}
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(1100px 600px at 80% 20%, rgba(245,200,200,.45), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(252,238,239,.8), transparent 60%),
    var(--paper);
}
.hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(232,90,120,.08);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .85;
  text-align: center;
  user-select: none;
  white-space: nowrap;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
  padding: 6px 0;
  border-top: 1.5px solid var(--pink);
  border-bottom: 1.5px solid var(--pink);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}
.hero-lede {
  font-family: var(--serif-alt);
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 520px;
}
.cta {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 16px 34px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  transition: all .2s ease;
}
.cta:hover { background: transparent; color: var(--pink); opacity: 1; }
.cta.outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.cta.outline:hover { background: var(--pink); color: #fff; }
.cta.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.cta.dark:hover { background: transparent; color: var(--navy); }

.hero-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(232,90,120,.45), 0 4px 12px rgba(0,0,0,.06);
  transform: rotate(.6deg);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,.92);
  color: var(--pink);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---------- Section base ---------- */
section { padding: 96px 0; }
.eyebrow {
  display: block;
  text-align: center;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 18px;
}
.section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--pink); font-weight: 400; }
.section-sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--ink-soft);
  font-family: var(--serif-alt);
  font-size: 20px;
  line-height: 1.55;
}

/* ---------- Manifesto strip ---------- */
.manifesto {
  background: var(--paper);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid rgba(232,90,120,.12);
  border-bottom: 1px solid rgba(232,90,120,.12);
}
.manifesto-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 24px;
}
.manifesto-quote::before, .manifesto-quote::after { color: var(--pink); }
.manifesto-sig {
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: var(--pink-wash);
  box-shadow: 0 30px 80px -30px rgba(232,90,120,.4), 0 4px 12px rgba(0,0,0,.06);
  aspect-ratio: 4/5;
  position: relative;
}
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text {
  display: grid;
  gap: 44px;
}
.about-block h3 {
  font-size: 14px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--pink);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 18px;
}
.about-block .lede {
  font-family: var(--serif-alt);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.4;
}
.about-block p { color: var(--ink-soft); font-size: 16px; margin-bottom: 1em; }

/* ---------- Book drop section ---------- */
.book-section {
  background:
    radial-gradient(800px 500px at 20% 30%, rgba(201,169,97,.18), transparent 60%),
    radial-gradient(1000px 600px at 100% 100%, rgba(27,42,94,.12), transparent 60%),
    #0F1A3D;
  color: #F2EEDF;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: "Silent to Spoken";
  position: absolute;
  top: 30px;
  left: -10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(201,169,97,.06);
  white-space: nowrap;
  pointer-events: none;
}
.book-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.book-cover {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 40px 90px -20px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,169,97,.4);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.book-cover:hover { transform: rotate(0); }
.book-cover img { aspect-ratio: 1/1; object-fit: cover; }
.book-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
}
.book-eyebrow {
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
}
.book-section h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-family: var(--serif);
  color: #F2EEDF;
  margin-bottom: 14px;
}
.book-section h2 em { color: var(--gold); font-weight: 400; }
.book-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(242,238,223,.85);
  margin-bottom: 28px;
}
.book-meta {
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
}
.book-meta span { color: rgba(242,238,223,.6); margin: 0 10px; }
.book-section p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(242,238,223,.85);
  max-width: 540px;
  margin-bottom: 36px;
}
.book-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cta.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.cta.gold:hover { background: transparent; color: var(--gold); }
.cta.ghost-light {
  background: transparent;
  color: #F2EEDF;
  border-color: rgba(242,238,223,.5);
}
.cta.ghost-light:hover { background: #F2EEDF; color: var(--navy); border-color: #F2EEDF; }

/* ---------- Episodes / showcase ---------- */
.showcase { background: var(--paper); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.ep-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 32px 28px;
  border: 1px solid rgba(232,90,120,.1);
  transition: all .25s ease;
}
.ep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(232,90,120,.3);
  border-color: var(--pink-soft);
}
.ep-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink);
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.ep-card h4 {
  font-size: 22px;
  margin-bottom: 14px;
}
.ep-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }
.ep-tag {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.center { text-align: center; }

.spotify-embed {
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.25);
  border-radius: 12px;
  overflow: hidden;
}
.spotify-embed iframe { display: block; }

/* ---------- Backstage Conversations blog ---------- */
.blog {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(252,238,239,.6), transparent 60%),
    var(--cream);
}
.coming-soon {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
}
.backstage-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}
.backstage-intro p { margin-bottom: 1.25em; }
.backstage-intro em { color: var(--pink); font-style: italic; }
.backstage-invite {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 20px;
  text-align: center;
  margin-top: 8px !important;
}
.email-signup {
  max-width: 540px;
  margin: 0 auto 64px;
  display: flex;
  gap: 10px;
  background: var(--paper);
  border: 1px solid rgba(232,90,120,.2);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 14px 40px -25px rgba(232,90,120,.4);
}
.email-signup input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.email-signup input::placeholder { color: var(--ink-soft); }
.email-signup .cta { padding: 14px 26px; font-size: 11px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.blog-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}
.blog-filter label {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.blog-filter select {
  appearance: none;
  -webkit-appearance: none;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23E85A78' d='M6 8 0 0h12z'/></svg>")
    no-repeat right 16px center,
    var(--paper);
  border: 1px solid rgba(232,90,120,.3);
  border-radius: 999px;
  padding: 12px 44px 12px 22px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  min-width: 260px;
  transition: all .2s ease;
}
.blog-filter select:hover, .blog-filter select:focus {
  border-color: var(--pink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232,90,120,.15);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  transition: all .25s ease;
  box-shadow: 0 14px 40px -25px rgba(0,0,0,.18);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -25px rgba(232,90,120,.35);
}
.blog-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--pink-wash); }
.blog-photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px 22px 26px; text-align: center; }
.blog-date {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.blog-card h4 {
  font-size: 15px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 60px;
}
.blog-read {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
  border-bottom: 1.5px solid var(--pink);
  padding-bottom: 2px;
  display: inline-block;
}
.blog-read.soon {
  color: var(--ink-soft);
  border-bottom-style: dashed;
  border-bottom-color: rgba(92,92,92,.45);
  cursor: default;
  font-weight: 500;
}

/* Status badges (Coming Soon / In Progress) for upcoming posts */
.blog-status {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.status-coming {
  background: var(--pink);
  color: #fff;
}
.status-progress {
  background: rgba(232,90,120,.10);
  color: var(--pink);
  border: 1px solid rgba(232,90,120,.32);
}
.blog-card.upcoming { transition: all .25s ease; }
.blog-card.upcoming:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -25px rgba(232,90,120,.32);
}

/* Blog page header (full archive page) */
.blog-page-header {
  background:
    radial-gradient(1100px 600px at 80% 20%, rgba(245,200,200,.45), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(252,238,239,.8), transparent 60%),
    var(--paper);
  padding: 90px 0 60px;
  text-align: center;
}
.blog-page-header h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-family: var(--serif);
  margin-bottom: 14px;
}
.blog-page-header h1 em { color: var(--pink); font-style: italic; font-weight: 400; }
.blog-page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--serif-alt);
  font-size: 20px;
  line-height: 1.55;
}
.back-home {
  display: inline-block;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .email-signup {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
  }
  .email-signup input { padding: 14px 16px; }
  .email-signup .cta { width: 100%; text-align: center; padding: 14px 22px; }
  .blog-filter { flex-direction: column; gap: 10px; }
  .blog-filter select { min-width: 280px; }
}
@media (max-width: 540px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Apply / CTA banner ---------- */
.apply {
  background: var(--paper);
  padding: 100px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  background: radial-gradient(800px 400px at 50% 100%, rgba(252,238,239,.9), transparent 70%);
  pointer-events: none;
}
.apply-inner { position: relative; }
.apply-photo {
  width: 220px;
  height: 220px;
  margin: 0 auto 36px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(232,90,120,.5);
  border: 4px solid var(--paper);
}
.apply-photo img { width: 100%; height: 100%; object-fit: cover; }
.apply h2 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto 18px;
}
.apply h2 em { font-style: italic; color: var(--pink); }
.apply p {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-family: var(--serif-alt);
  font-size: 19px;
}

/* ---------- Other sites ---------- */
.other-sites {
  background: var(--cream);
  padding: 90px 0;
  text-align: center;
}
.other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.other-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 6px;
  border: 1px solid rgba(232,90,120,.12);
  transition: all .25s ease;
}
.other-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -25px rgba(232,90,120,.35);
}
.other-card .label {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.other-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.other-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.other-link {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
  border-bottom: 1.5px solid var(--pink);
  padding-bottom: 3px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 70px 0 36px;
  text-align: center;
}
footer .brand {
  font-family: var(--serif-alt);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
footer .brand span { color: var(--pink); }
footer .brand img {
  width: 56px;
  height: auto;
  transform: rotate(-6deg);
  mix-blend-mode: screen;
}
footer .tagline {
  font-family: var(--serif-alt);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.7);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}
.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  transition: all .2s ease;
}
.socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
  opacity: 1;
}
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.copy {
  font-size: 12px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(232,90,120,.12);
  }
  .hero { padding: 60px 0 80px; }
  .hero-grid, .about-layout, .book-grid, .other-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .hero-eyebrow, .eyebrow, .book-eyebrow { font-size: 10px; }
  .nav-inner { padding: 16px 20px; }
  .top-banner { font-size: 11px; letter-spacing: .25em; }
}

/* ---------- Contact form ---------- */
.contact-form .form-row { margin-bottom: 22px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input {
  width: 100%;
  border: 1px solid rgba(232,90,120,.3);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,90,120,.15);
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ---------- Modal (Get Notified, etc.) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 61, 0.7);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-card {
  position: relative;
  background: var(--paper);
  border-radius: 14px;
  padding: 56px 36px 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
  text-align: center;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  font-size: 30px;
  cursor: pointer;
  color: var(--ink-soft);
  line-height: 1;
  transition: color .2s ease;
}
.modal-close:hover { color: var(--pink); }
.modal-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin-bottom: 12px;
}
.modal-card h3 em { color: var(--pink); font-style: italic; font-weight: 400; }
.modal-card .modal-lede {
  color: var(--ink-soft);
  font-family: var(--serif-alt);
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.modal-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-card input[type="email"] {
  border: 1px solid rgba(232,90,120,.3);
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.modal-card input[type="email"]:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,90,120,.15);
}
.modal-card button[type="submit"] { width: 100%; cursor: pointer; }

/* ---------- Thank you page ---------- */
.thank-you-hero {
  background:
    radial-gradient(1100px 600px at 80% 20%, rgba(245,200,200,.45), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(252,238,239,.8), transparent 60%),
    var(--paper);
  padding: 120px 0 100px;
  text-align: center;
}
.thank-you-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 22px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-hero h1 em {
  font-family: var(--serif-alt);
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}
.thank-you-hero p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-family: var(--serif-alt);
  font-size: 22px;
  line-height: 1.5;
}
.thank-you-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
