/* Beloved Daughter — exact design CSS, reused from the reference site and
   scoped under .bdw so it never collides with the Kadence theme. */
/* ============================================================
   BELOVED DAUGHTER — Elizabeth Falemaka
   Shared stylesheet for Home / About / Letter Subscription
   ============================================================ */

:root {
  /* Palette — light pink + white + rose-red theme.
     White is the canvas, light pink is the soft fill, and a warm
     rose-red carries every call-to-action and accent. Variable
     names are kept from the original so the whole site re-skins
     from this one block. */
  /* Palette tuned to the brand cover art: coral-red + soft rose-pink + white.
     Backgrounds use the warm rose/coral trio; the magenta logo pink stays
     reserved for text accents & CTAs (it's the logo's "Daughter" mark). */
  /* Palette locked to the "Strength of a Mother" cover art:
     a dominant warm coral-RED, a soft bubblegum PINK band, and WHITE.
     Red carries every CTA/feature; pink is the soft section fill and
     the script/accent "logo pink"; white is the canvas. One bright red
     only (per brief), no magenta. */
  --cream:        #FFF4F8;   /* lightest pink wash */
  --cream-soft:   #FFFFFF;   /* white canvas */
  --blush:        #F8C5DC;   /* soft pink section background (cover band) */
  --blush-deep:   #F0A6C6;   /* deeper pink — borders / richer fill */
  --beige:        #E0483A;   /* primary CTA — cover coral red */
  --beige-dark:   #C0271F;   /* deeper red — hover */
  --tan:          #EC6AA6;   /* script accent — logo pink */
  --ink:          #3E2128;   /* headings — deep maroon */
  --ink-soft:     #6B4750;   /* body copy */
  --mute:         #9C7A82;   /* muted labels */
  --gold:         #FF3B42;   /* the one bright red accent */
  --pink:         #EC6AA6;   /* logo pink emphasis (diamonds, "our mission") */
  --coral:        #E0483A;   /* cover red — feature section background */
  --coral-dark:   #C0271F;   /* darker coral — hover */
  --deep-red:     #B81E1E;   /* footer / last-block — deep red */
  --rule:         rgba(62, 33, 40, 0.12);

  /* Fonts — three families so headlines, accents and copy each
     read distinctly (matches the "different font variations" brief). */
  --f-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-script:  "Lily Script", "Lily Script One", "Pinyon Script", "Allura", cursive;
  --f-hand:    "Sail", "Caveat", cursive;
  --f-body:    "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.bdw, .bdw * { box-sizing: border-box; }

.bdw {
  margin: 0;
  padding: 0;
  background: var(--cream-soft);
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ─── Typography helpers ────────────────────────────────────── */

.display {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--tan);
  line-height: 1;
}

.hand {
  font-family: var(--f-hand);
  font-weight: 400;
  color: var(--tan);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
}

.lead {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 1.35rem;
  line-height: 1.55;
}

/* ─── Layout ────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
}

.bdw section { padding: 110px 0; }

/* ─── Nav ───────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 246, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img { height: 84px; width: auto; }

@media (max-width: 720px) {
  .nav-brand img { height: 60px; }
}

.nav-brand-text {
  display: none;  /* logo speaks for itself */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--beige);
  transition: all .25s ease;
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--beige-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-current { color: var(--beige-dark); }
.nav-links a.is-current::after { width: 100%; }

.nav-cta {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  background: var(--beige);
  padding: 13px 24px;
  transition: background .2s;
}

.nav-cta:hover { background: var(--beige-dark); }

/* WordPress-menu variant: render wp_nav_menu's <ul> like the custom links. */
.nav-links .bd-wpmenu {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links .bd-wpmenu li { margin: 0; padding: 0; list-style: none; }
.nav-links .bd-wpmenu a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color .2s;
}
.nav-links .bd-wpmenu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--beige);
  transition: all .25s ease;
  transform: translateX(-50%);
}
.nav-links .bd-wpmenu a:hover,
.nav-links .bd-wpmenu .current-menu-item > a,
.nav-links .bd-wpmenu .current_page_item > a { color: var(--beige-dark); }
.nav-links .bd-wpmenu a:hover::after,
.nav-links .bd-wpmenu .current-menu-item > a::after,
.nav-links .bd-wpmenu .current_page_item > a::after { width: 100%; }

/* ─── Button ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  background: var(--beige);
  padding: 18px 32px;
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.btn:hover { background: var(--beige-dark); transform: translateY(-1px); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--beige-dark);
  border: 1px solid var(--beige);
  font-weight: 700;
}
.btn-ghost:hover { background: var(--beige); color: #fff; }

.btn .arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ─── Decorative bits ───────────────────────────────────────── */

.ink-splash {
  position: absolute;
  width: 110px;
  height: 110px;
  opacity: 0.55;
  pointer-events: none;
}

.thin-rule {
  width: 60px;
  height: 1px;
  background: var(--beige);
  display: inline-block;
}

/* Circular badge text */
.badge-circle {
  width: 130px;
  height: 130px;
  position: relative;
  display: inline-block;
}
.badge-circle svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.badge-circle .badge-dot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--tan);
  font-size: 18px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Soft photo card with cream border */
.photo-card {
  background: #fff;
  padding: 10px;
  border: 1px solid var(--blush-deep);
  box-shadow: 0 20px 40px -28px rgba(42, 33, 29, 0.35);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Footer ────────────────────────────────────────────────── */

/* Footer = the unified "last block": deep red, centered logo, Instagram,
   and the key page links. Same on every page. */
/* Soft pink footer (was deep red) — dark logo + red accents read cleanly. */
.footer {
  background: linear-gradient(180deg, var(--blush-deep) 0%, var(--blush) 100%);
  color: var(--ink);
  padding: 72px 0 48px;
  margin-top: 0;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.footer-logo img {
  height: 92px;
  width: auto;
  /* Original dark logo art sits well on the pink panel — no inversion. */
  filter: none;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(192, 39, 31, 0.45);
  color: var(--beige-dark);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-ig:hover { background: var(--beige); color: #fff; border-color: var(--beige); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 38px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-links a {
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.footer-links a:hover { color: var(--beige-dark); border-bottom-color: var(--beige); }

.footer-copy {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute);
}

/* ─── Marquee ───────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  background: var(--blush);
  border-top: 1px solid var(--blush-deep);
  border-bottom: 1px solid var(--blush-deep);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Responsive ────────────────────────────────────────────── */

@media (max-width: 960px) {
  section { padding: 72px 0; }
  .container, .nav-inner { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-base { flex-direction: column; gap: 16px; }
}


/* ===== home page styles ===== */
/* ─── Home-only styles ──────────────────────────────────────── */

  /* The recurring "mixed-font" emphasis used inside headings. */
  .em-script { font-family: var(--f-script); color: var(--tan); font-style: normal; font-weight: 400; }
  .em-italic { font-style: italic; color: var(--beige-dark); font-weight: 400; font-family: var(--f-display); }
  .em-gold   { font-style: italic; color: var(--gold); font-family: var(--f-display); font-weight: 400; }
  .em-pink   { font-style: italic; color: var(--pink); font-family: var(--f-display); font-weight: 400; }
  .em-hand   { font-family: var(--f-hand); color: var(--ink); font-style: normal; }

  /* Calligraphy / script accents read sentence-case (first letter only),
     as typed — never forced to ALL CAPS. */
  .bdw .script,
  .bdw .hero-script,
  .bdw .em-script,
  .bdw [class$="-script"],
  .bdw [class$="-ribbon"],
  .bdw .freebie-art .title,
  .bdw .series-card .name em,
  .bdw .j-series-card .tagline,
  .bdw .story-copy .label,
  .bdw .ab-hero-sig,
  .bdw .mission .ornament,
  .bdw .final-photo-cap,
  .bdw .ab-final-cap { text-transform: none; letter-spacing: 0.01em; }

  /* HERO ─────────────────────────────── */
  .hero {
    position: relative;
    padding: 50px 0 110px;
    /* White canvas with the faintest pink wash so the pink headline pops. */
    background:
      radial-gradient(circle at 88% 12%, rgba(244, 154, 182, 0.10), transparent 45%),
      radial-gradient(circle at 6% 80%, rgba(252, 231, 236, 0.45), transparent 50%),
      #FFFFFF;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-script {
    font-family: var(--f-script);
    font-size: 30px;
    color: var(--tan);
    margin: 0 0 10px;
    line-height: 1;
  }
  .hero-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(30px, 3.2vw, 46px);
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: 0.005em;
    text-transform: none;   /* sentence case — softer, less shouty */
    margin: 0 0 24px;
  }
  .hero-subtitle {
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.35;
    color: var(--ink);
    text-transform: lowercase;
    letter-spacing: 0.04em;
    max-width: 520px;
    margin: -10px 0 28px;
  }
  .hero-subtitle em { font-style: italic; color: inherit; font-weight: inherit; }
  .hero-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 500px;
    margin: 0 0 36px;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-collage {
    position: relative;
    height: 620px;
  }
  .hero-collage .photo-card { position: absolute; }
  .hero-photo-1 {
    width: 320px;
    height: 430px;
    top: 0;
    right: 20px;
    transform: rotate(2.5deg);
    z-index: 2;
  }
  .hero-photo-2 {
    width: 260px;
    height: 320px;
    bottom: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 3;
  }
  .hero-photo-3 {
    width: 170px;
    height: 220px;
    top: 60px;
    left: 30px;
    transform: rotate(4deg);
    z-index: 1;
  }
  .hero-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    z-index: 4;
  }
  .hero-splash {
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--f-script);
    font-size: 56px;
    color: rgba(217, 164, 39, 0.18);
    transform: rotate(-12deg);
    pointer-events: none;
  }

  /* FREEBIE ────────────────────────── */
  .freebie {
    background: var(--blush);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .freebie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .freebie-art {
    aspect-ratio: 4 / 5;
    background: var(--cream-soft);
    padding: 36px;
    border: 1px solid var(--blush-deep);
    box-shadow: 0 30px 50px -30px rgba(42, 33, 29, 0.4);
    position: relative;
    transform: rotate(-2deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .freebie-art .stamp {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 70px;
    height: 84px;
    background: var(--blush);
    border: 1px dashed var(--beige);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 6px;
    transform: rotate(5deg);
  }
  .freebie-art .stamp .h {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
  }
  .freebie-art .stamp .l {
    font-size: 7px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mute);
    text-align: center;
    line-height: 1.3;
  }
  .freebie-art .label {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 18px;
  }
  .freebie-art .title {
    font-family: var(--f-script);
    font-size: 46px;
    color: var(--tan);
    line-height: 0.95;
    margin-bottom: 14px;
  }
  .freebie-art .sub {
    font-family: var(--f-body);
    font-style: normal;
    font-size: 19px;
    font-weight: 700;
    color: var(--beige-dark);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
  }
  .freebie-art .seal {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gold);
    margin: 0 auto;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--f-script);
    font-size: 50px;
    line-height: 1;
    box-shadow: 0 8px 20px -8px rgba(217, 164, 39, 0.6);
  }
  .freebie-copy .script {
    font-size: 28px;
    margin-bottom: 4px;
  }
  .freebie-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .freebie-copy p {
    color: var(--ink-soft);
    margin: 0 0 16px;
    max-width: 460px;
  }
  .freebie-copy .start {
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    margin: 24px 0 36px;
    padding-left: 16px;
    border-left: 2px solid var(--gold);
  }
  .freebie-copy .start .q { font-family: var(--f-script); color: var(--tan); font-size: 32px; font-style: normal; }

  /* HOW IT WORKS (was "What it is") ─── */
  .whatitis {
    background: var(--blush);
    padding: 110px 0;
  }
  .whatitis-inner { max-width: 1180px; margin: 0 auto; }
  /* Text on the left, room for the "how it works" image on the right. */
  .whatitis-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
  }
  .whatitis .script { font-size: 28px; color: var(--tan); margin: 0 0 6px; }
  .whatitis h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .whatitis p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 18px;
    max-width: 560px;
  }
  .whatitis-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream-soft);
    border: 1px solid var(--blush-deep);
    box-shadow: 0 30px 50px -30px rgba(42,33,29,0.4);
  }
  .whatitis-photo img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 960px) {
    .whatitis-grid, .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* JOURNEY DESCRIPTION ──────────── */
  .journey { background: var(--cream-soft); }
  .journey-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .journey-copy .script { font-size: 28px; margin-bottom: 4px; }
  .journey-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .journey-copy p {
    color: var(--ink-soft);
    margin: 0 0 20px;
    max-width: 480px;
  }
  .journey-copy h3 {
    font-family: var(--f-display);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    margin: 32px 0 16px;
  }
  .journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .journey-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 11px 0;
    color: var(--ink);
    font-size: 17px;
  }
  .journey-list li .d {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    margin-top: 10px;
    transform: rotate(45deg);
    background: var(--pink);   /* logo pink, smaller diamond */
  }

  .journey-photos { position: relative; height: 600px; }
  .journey-photos .photo-card { position: absolute; }
  .journey-p1 {
    width: 360px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .journey-p2 {
    width: 230px;
    height: 290px;
    bottom: 0;
    left: 20px;
    transform: rotate(-2deg);
    z-index: 3;
  }
  .journey-p3 {
    width: 180px;
    height: 230px;
    top: 80px;
    left: 0;
    transform: rotate(3deg);
    z-index: 1;
  }

  /* SERIES ──────────────────────────── */
  .series {
    background:
      linear-gradient(180deg, var(--cream-soft) 0%, var(--blush) 100%);
    padding: 120px 0;
  }
  .series-head {
    text-align: center;
    margin-bottom: 70px;
  }
  .series-head .script { font-size: 28px; }
  .series-head h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 auto 14px;
    max-width: 820px;
  }
  .series-head p { max-width: 580px; margin: 0 auto; color: var(--ink-soft); }

  .series-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .series-card {
    background: var(--cream-soft);
    border: 1px solid var(--blush-deep);
    padding: 10px 10px 32px;
    transition: transform .25s ease;
  }
  .series-card:hover { transform: translateY(-6px); }
  .series-art {
    aspect-ratio: 3 / 4;
    background: var(--blush);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .series-art img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .series-art .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--cream-soft);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 6px 10px;
  }
  .series-card .num {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    margin: 0 22px 6px;
  }
  .series-card .name {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 36px;
    color: var(--ink);
    margin: 0 22px 6px;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .series-card .name em {
    font-family: var(--f-script);
    font-size: 19px;
    color: var(--tan);
    display: block;
    font-style: normal;
    line-height: 1.1;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .series-card .tag {
    margin: 14px 22px 0;
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
  }

  /* MEET ELIZABETH ──────────────────── */
  .meet {
    background: var(--cream-soft);
    padding: 130px 0;
  }
  .meet-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .meet-photos { position: relative; height: 600px; }
  .meet-photos .photo-card { position: absolute; }
  .meet-p1 {
    width: 100%;
    max-width: 380px;
    height: 520px;
    top: 0;
    right: 20px;
    z-index: 2;
  }
  .meet-p2 {
    width: 200px;
    height: 240px;
    bottom: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 3;
  }
  .meet-script {
    position: absolute;
    bottom: 60px;
    right: -10px;
    font-family: var(--f-script);
    font-size: 70px;
    color: rgba(217, 164, 39, 0.16);
    transform: rotate(-8deg);
    pointer-events: none;
    z-index: 1;
  }
  .meet-copy .script { font-size: 28px; margin-bottom: 4px; }
  .meet-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .meet-copy p { color: var(--ink-soft); margin: 0 0 20px; max-width: 460px; }
  .meet-copy .more { margin-top: 16px; }

  /* MISSION ─────────────────────────── */
  .mission {
    background:
      linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
    padding: 140px 0;
    text-align: center;
    position: relative;
  }
  .mission .script {
    font-size: 30px;
    color: var(--pink);          /* "our mission" — logo pink */
    margin: 0 0 4px;
  }
  .mission h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 1.05;
    color: var(--ink);
    margin: 0 auto 28px;
    max-width: 760px;
    letter-spacing: -0.01em;
  }
  /* Mission emphasis ("deeply loved", "God") — one single bright red. */
  .mission h2 .em-italic,
  .mission h2 em { color: var(--gold); font-style: italic; }
  .mission p {
    font-family: var(--f-body);
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 18px;
  }
  /* Optional image sits beside / under the mission copy. */
  .mission-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
  }
  .mission-grid .mission-copy { text-align: left; }
  .mission-grid h2,
  .mission-grid p { margin-left: 0; margin-right: 0; }
  .mission-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 30px 50px -30px rgba(42,33,29,0.4);
  }
  .mission-photo img { width: 100%; height: 100%; object-fit: cover; }
  .mission .ornament {
    font-family: var(--f-script);
    color: var(--gold);
    font-size: 40px;
    line-height: 0.4;
    margin: 36px 0 8px;
  }

  /* GIFT ────────────────────────────── */
  /* Soft rose-pink section (deeper rose from the cover) with dark copy. */
  .gift { background: var(--blush-deep); padding: 130px 0; }
  .gift-copy .script { color: var(--beige-dark); }
  .gift-copy h2 { color: var(--ink); }
  .gift-copy > p { color: var(--ink); }
  .gift-recipients li { color: var(--ink); }
  .gift-recipients li::before { color: var(--beige-dark); }
  .gift .gift-close { color: var(--ink); }
  .gift .btn { background: var(--coral); color: #fff; }
  .gift .btn:hover { background: var(--coral-dark); color: #fff; }
  .gift-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
  }
  .gift-photos { position: relative; height: 580px; }
  .gift-photos .photo-card { position: absolute; }
  .gift-p1 {
    width: 360px;
    height: 460px;
    top: 0;
    left: 30px;
    z-index: 2;
    transform: rotate(-2deg);
  }
  .gift-p2 {
    width: 220px;
    height: 280px;
    bottom: 0;
    right: 0;
    transform: rotate(3deg);
    z-index: 3;
  }
  .gift-ribbon {
    position: absolute;
    top: 12px;
    right: 30px;
    font-family: var(--f-script);
    font-size: 60px;
    color: rgba(217, 164, 39, 0.16);
    transform: rotate(8deg);
    pointer-events: none;
  }
  .gift-copy .script { font-size: 28px; margin-bottom: 4px; }
  .gift-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .gift-copy p { color: var(--ink-soft); margin: 0 0 18px; max-width: 460px; }
  .gift-recipients {
    list-style: none;
    padding: 0;
    margin: 24px 0 36px;
  }
  .gift-recipients li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: var(--ink);
    font-size: 16px;
  }
  .gift-recipients li::before {
    content: "♥";
    color: var(--pink);
    font-size: 18px;
  }
  .gift-close {
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 32px;
    max-width: 460px;
  }

  /* FINAL CTA ───────────────────────── */
  /* Soft pink section (was solid red) — calmer, matches the mission/about. */
  .final {
    background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
    color: var(--ink-soft);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.45), transparent 42%),
      radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.30), transparent 46%);
  }
  /* Red button on the pink panel. */
  .final .btn { background: var(--beige); color: #fff; }
  .final .btn:hover { background: var(--beige-dark); color: #fff; }
  .final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .final .script {
    font-size: 30px;
    color: var(--pink);          /* logo-pink accent line */
    margin: 0 0 4px;
  }
  .final h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.05;
    color: var(--ink);
    margin: 0 0 26px;
  }
  .final h2 em { font-style: italic; color: var(--beige-dark); font-family: var(--f-display); }
  .final h2 em.alone,
  .final h2 .alone { color: var(--gold); font-style: italic; font-family: var(--f-display); }
  .final p { font-family: var(--f-body); font-style: normal; font-weight: 500; color: var(--ink-soft); max-width: 460px; margin: 0 0 36px; font-size: 18px; line-height: 1.6; }
  .final-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.6);
  }
  .final-photo img { width: 100%; height: 100%; object-fit: cover; }
  .final-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(184,30,30,0.15);
  }
  .final-photo-cap {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
    font-family: var(--f-script);
    font-size: 36px;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }

  @media (max-width: 960px) {
    .hero-grid, .freebie-grid, .journey-grid, .meet-grid, .gift-grid, .final-grid {
      grid-template-columns: 1fr; gap: 56px;
    }
    .hero-collage, .journey-photos, .meet-photos, .gift-photos { height: 460px; }
    .series-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .series-grid { grid-template-columns: 1fr; }
  }

/* ===== about page styles ===== */
/* mixed-font helpers (same as home) */
  .em-script { font-family: var(--f-script); color: var(--tan); font-style: normal; font-weight: 400; }
  .em-italic { font-style: italic; color: var(--beige-dark); font-weight: 400; font-family: var(--f-display); }
  .em-gold   { font-style: italic; color: var(--gold); font-family: var(--f-display); font-weight: 400; }

  /* HERO ─────────────────────────────── */
  .ab-hero {
    position: relative;
    padding: 60px 0 100px;
    /* Match the Home hero: white canvas with a faint pink wash. */
    background:
      radial-gradient(circle at 80% 20%, rgba(244, 154, 182, 0.10), transparent 45%),
      radial-gradient(circle at 6% 80%, rgba(252, 231, 236, 0.45), transparent 50%),
      #FFFFFF;
  }
  .ab-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .ab-hero-copy .eyebrow {
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .ab-hero-copy .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--beige);
  }
  .ab-hero-copy .script {
    font-size: 30px;
    color: var(--tan);
    margin: 0 0 4px;
  }
  .ab-hero-copy h1 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 24px;
  }
  /* "Hi, I'm Elizabeth…" lead — bold, upright body font (not italic). */
  .ab-hero-copy .lead {
    max-width: 460px;
    margin: 0;
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink);
  }
  .ab-hero-sig {
    margin-top: 36px;
    font-family: var(--f-script);
    color: var(--tan);
    font-size: 32px;
    line-height: 1;
  }

  .ab-hero-portrait {
    position: relative;
    height: 680px;
  }
  .ab-hero-portrait .photo-card {
    position: absolute;
    width: 100%;
    max-width: 440px;
    height: 600px;
    right: 0;
    top: 40px;
  }
  .ab-hero-badge {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 4;
  }
  .ab-script-deco {
    position: absolute;
    top: 10px;
    left: 0;
    font-family: var(--f-script);
    font-size: 90px;
    color: rgba(217, 164, 39, 0.16);
    transform: rotate(-12deg);
    pointer-events: none;
  }

  /* STORY BLOCK (alternating image + text) ── */
  .story-block {
    background: var(--cream-soft);
    padding: 110px 0;
  }
  /* Deterministic alternation via an editable tone class. The old
     :nth-of-type(even) rule never matched on Canvas — each section sits
     alone inside its own widget wrapper, so every story block came out white.
     The tone class is set per block (and editable in Elementor). */
  .story-block.story-tone-pink { background: var(--blush); }
  .story-block.story-tone-white { background: var(--cream-soft); }
  .story-block .container { max-width: 1180px; }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .story-block.flip .story-grid { grid-template-columns: 1.1fr 1fr; }
  .story-block.flip .story-photos { order: 2; }
  .story-block.flip .story-copy { order: 1; }

  .story-photos {
    position: relative;
    height: 560px;
  }
  .story-photos .photo-card {
    position: absolute;
    width: 100%;
    max-width: 460px;
    height: 540px;
    inset: 0;
    margin: auto;
  }
  .story-photos .photo-sub {
    width: 200px;
    height: 240px;
    bottom: -10px;
    right: -20px;
    transform: rotate(4deg);
    margin: 0;
    inset: auto -20px -10px auto;
    z-index: 2;
  }
  .story-photos .photo-script {
    position: absolute;
    top: 20px;
    left: -20px;
    font-family: var(--f-script);
    font-size: 70px;
    color: rgba(217, 164, 39, 0.18);
    transform: rotate(-10deg);
    z-index: 0;
  }

  .story-copy .label {
    font-family: var(--f-script);
    font-size: 28px;
    color: var(--tan);
    line-height: 1;
    margin: 0 0 6px;
  }
  .story-copy .number {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .story-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 24px;
    letter-spacing: -0.005em;
  }
  /* About fancy headings — emphasis in a darker shade of red. */
  .story-copy h2 .em-italic,
  .story-copy h2 em { color: var(--beige-dark); font-style: italic; font-family: var(--f-display); }
  .story-copy p {
    color: var(--ink-soft);
    margin: 0 0 18px;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.75;
  }
  .story-copy .emph {
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    line-height: 1.55;
    margin: 24px 0;
    padding-left: 0;
    border-left: 0;
    max-width: 500px;
  }
  .story-copy ul.heart {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    max-width: 500px;
  }
  .story-copy ul.heart li {
    padding: 12px 0;
    border-top: 0;
    color: var(--ink);
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
  }
  .story-copy ul.heart li:last-child { border-bottom: 0; }
  .story-copy ul.heart li::before {
    content: "♥";
    color: var(--pink);
    margin-right: 14px;
  }

  /* FINAL CTA  ─────────────────────────── */
  /* Soft logo-pink background (per brief). */
  .ab-final {
    background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
    color: var(--ink);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .ab-final-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .ab-final .script {
    font-size: 30px;
    color: var(--beige-dark);
    margin: 0 0 4px;
  }
  .ab-final h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.06;
    color: var(--ink);
    margin: 0 0 28px;
  }
  .ab-final h2 em { font-style: italic; color: var(--beige-dark); font-family: var(--f-display); }
  .ab-final h2 .gold { color: var(--gold); font-style: italic; font-family: var(--f-display); }
  .ab-final p { color: var(--ink-soft); max-width: 460px; margin: 0 0 36px; font-size: 17px; line-height: 1.7; }
  .ab-final-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(126, 19, 32, 0.18);
  }
  .ab-final-photo img { width: 100%; height: 100%; object-fit: cover; }
  /* Signature uses the same fancy display-italic font as "grateful". */
  .ab-final-cap {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    font-family: var(--f-display);
    font-style: italic;
    color: #fff;
    font-size: 26px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  }

  @media (max-width: 960px) {
    .ab-hero-grid, .story-grid, .ab-final-grid { grid-template-columns: 1fr !important; gap: 56px; }
    .story-block.flip .story-photos { order: initial; }
    .story-photos { height: 480px; }
    .story-photos .photo-card { max-width: 360px; height: 460px; }
    .ab-hero-portrait { height: 540px; }
    .ab-hero-portrait .photo-card { max-width: 340px; height: 460px; }
  }

/* ===== the-journey page styles ===== */
.em-script { font-family: var(--f-script); color: var(--tan); font-style: normal; font-weight: 400; }
  .em-italic { font-style: italic; color: var(--beige-dark); font-weight: 400; font-family: var(--f-display); }
  .em-gold   { font-style: italic; color: var(--gold); font-family: var(--f-display); font-weight: 400; }

  /* HERO ─────────────────────────────── */
  .j-hero {
    padding: 50px 0 110px;
    /* Match the Home hero: white canvas with a faint pink wash. */
    background:
      radial-gradient(circle at 20% 30%, rgba(244, 154, 182, 0.10), transparent 45%),
      radial-gradient(circle at 90% 80%, rgba(252, 231, 236, 0.45), transparent 50%),
      #FFFFFF;
    position: relative;
  }
  .j-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .j-hero-copy .eyebrow {
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .j-hero-copy .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: var(--beige);
  }
  .j-hero-copy .script {
    font-size: 30px;
    color: var(--tan);
    margin: 0 0 4px;
  }
  .j-hero-copy h1 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 26px;
  }
  .j-hero-copy p { color: var(--ink-soft); margin: 0 0 18px; max-width: 500px; font-size: 17px; line-height: 1.75; }
  /* Price box — softer, branded card instead of a plain bordered rectangle. */
  .j-hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    padding: 20px 30px;
    background: linear-gradient(180deg, #fff 0%, var(--blush) 100%);
    border: 1px solid var(--blush-deep);
    border-radius: 14px;
    box-shadow: 0 20px 40px -28px rgba(126, 19, 32, 0.45);
    margin: 28px 0 32px;
  }
  .j-hero-price .label {
    font-family: var(--f-script);
    font-size: 28px;
    color: var(--tan);
    line-height: 1;
  }
  .j-hero-price .amount {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 600;
    font-size: 40px;
    color: var(--beige-dark);
    line-height: 1;
  }
  .j-hero-price .term {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--beige-dark);
  }
  .j-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .j-hero-art { position: relative; height: 640px; }
  .j-hero-art .photo-card { position: absolute; }
  .j-hero-p1 {
    width: 340px;
    height: 460px;
    top: 0;
    right: 0;
    transform: rotate(2deg);
    z-index: 2;
  }
  .j-hero-p2 {
    width: 250px;
    height: 320px;
    bottom: 20px;
    left: 0;
    transform: rotate(-3deg);
    z-index: 3;
  }
  .j-hero-p3 {
    width: 180px;
    height: 230px;
    top: 70px;
    left: 40px;
    transform: rotate(4deg);
    z-index: 1;
  }
  .j-hero-badge { position: absolute; bottom: 0; right: 30px; z-index: 4; }
  .j-hero-script {
    position: absolute;
    top: -10px;
    left: 0;
    font-family: var(--f-script);
    font-size: 70px;
    color: rgba(217, 164, 39, 0.16);
    transform: rotate(-12deg);
    pointer-events: none;
  }

  /* INSIDE EACH JOURNEY ──────────────── */
  .j-inside {
    /* Soft pink so it alternates with the white hero above (matches Home's
       white→pink section rhythm instead of two whites in a row). */
    background: var(--blush);
    padding: 130px 0;
  }
  .j-inside-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .j-inside-copy .script { font-size: 28px; margin-bottom: 4px; }
  .j-inside-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .j-inside-copy > p {
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 500px;
  }
  .j-inside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 0;
  }
  .j-inside-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 0;          /* no divider lines */
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 700;          /* bold so points pop */
    font-size: 16px;
  }
  .j-inside-list li .n {       /* solid love-heart bullet, logo pink */
    font-family: var(--f-body);
    font-style: normal;
    color: var(--pink);
    font-size: 18px;
    line-height: 1.3;
    width: 22px;
    flex-shrink: 0;
  }
  .j-inside-close {
    margin-top: 24px;
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    max-width: 500px;
  }

  .j-inside-art {
    position: relative;
    height: 600px;
  }
  .j-inside-art .photo-card { position: absolute; }
  .j-inside-p1 {
    width: 100%;
    max-width: 400px;
    height: 540px;
    right: 0;
    top: 0;
    transform: rotate(-2deg);
    z-index: 2;
  }
  .j-inside-p2 {
    width: 220px;
    height: 280px;
    bottom: 0;
    left: 20px;
    transform: rotate(3deg);
    z-index: 3;
  }

  /* SERIES ───────────────────────────── */
  .j-series {
    background:
      linear-gradient(180deg, var(--cream-soft) 0%, var(--blush) 100%);
    padding: 130px 0;
  }
  .j-series-head {
    text-align: center;
    margin-bottom: 70px;
  }
  .j-series-head .script { font-size: 28px; }
  .j-series-head h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 auto 14px;
    max-width: 760px;
  }
  .j-series-head p { max-width: 580px; margin: 0 auto; color: var(--ink-soft); }

  .j-series-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .j-series-card {
    background: var(--cream-soft);
    border: 1px solid var(--blush-deep);
    padding: 14px 14px 40px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
  }
  .j-series-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px -30px rgba(42, 33, 29, 0.35);
  }
  .j-series-art {
    aspect-ratio: 4 / 3;
    background: var(--blush);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .j-series-art img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .j-series-art .ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--cream-soft);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 7px 12px;
  }
  .j-series-art .seal {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--f-script);
    font-size: 32px;
    line-height: 1;
    box-shadow: 0 6px 16px -6px rgba(217, 164, 39, 0.7);
  }
  .j-series-card .name {
    margin: 0 28px 4px;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 40px;
    color: var(--beige-dark);     /* darker red */
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: none;          /* first letter only */
  }
  .j-series-card .tagline {        /* one-line, sentence-case subtitle */
    margin: 0 28px 18px;
    font-family: var(--f-script);
    font-size: 22px;
    color: var(--tan);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .j-series-card .blurb {
    margin: 0 28px 24px;
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
  }
  .j-series-card .more {
    margin: 0 28px;
    font-family: var(--f-body);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--beige-dark);
    border-bottom: 1px solid var(--beige);
    padding-bottom: 4px;
    display: inline-block;
  }
  .j-series-card .more:hover { color: var(--ink); }

  /* FOR THE WOMAN WHO ────────────────── */
  .j-for {
    background: var(--cream-soft);
    padding: 130px 0;
  }
  .j-for-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .j-for-copy .script { font-size: 28px; margin-bottom: 4px; }
  .j-for-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 36px;
  }
  .j-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .j-for-list li {
    padding: 12px 0;
    border-top: 0;                 /* no divider lines */
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 17px;
    font-weight: 700;              /* normal font, bold */
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .j-for-list li:last-child { border-bottom: 0; }
  .j-for-list li::before {
    content: "♥";                  /* solid love heart, logo pink */
    color: var(--pink);
    font-size: 18px;
    font-style: normal;
  }

  .j-for-art {
    position: relative;
    height: 580px;
  }
  .j-for-art .photo-card {
    position: absolute;
    width: 100%;
    max-width: 460px;
    height: 560px;
    right: 0;
    top: 0;
    transform: rotate(-1deg);
  }
  .j-for-art .photo-sub {
    width: 200px;
    height: 250px;
    bottom: -20px;
    left: -10px;
    transform: rotate(4deg);
    top: auto;
    z-index: 2;
  }

  /* GIFT ─────────────────────────────── */
  .j-gift {
    background:
      linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
    padding: 130px 0;
  }
  .j-gift-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
  }
  .j-gift-art {
    position: relative;
    height: 580px;
  }
  .j-gift-art .photo-card {
    position: absolute;
    width: 100%;
    max-width: 440px;
    height: 540px;
    left: 30px;
    top: 0;
    transform: rotate(-2deg);
  }
  .j-gift-art .photo-sub {
    width: 230px;
    height: 290px;
    bottom: 0;
    right: 0;
    transform: rotate(3deg);
    top: auto;
    left: auto;
    z-index: 2;
  }
  .j-gift-ribbon {
    position: absolute;
    top: 0;
    right: 40px;
    font-family: var(--f-script);
    font-size: 64px;
    color: rgba(217, 164, 39, 0.2);
    transform: rotate(8deg);
    pointer-events: none;
  }
  .j-gift-copy .script { font-size: 28px; margin-bottom: 4px; }
  .j-gift-copy h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .j-gift-copy > p {
    color: var(--ink-soft);
    margin: 0 0 18px;
    max-width: 480px;
  }
  .j-gift-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    max-width: 480px;
  }
  .j-gift-list li {
    padding: 10px 0;
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .j-gift-list li::before {
    content: "♥";              /* solid love heart, logo pink */
    color: var(--pink);
    font-size: 18px;
  }
  .j-gift-close {
    font-family: var(--f-body);
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 32px;
    max-width: 480px;
  }

  /* FINAL CTA ─────────────────────────── */
  .j-final {
    background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
    color: var(--ink-soft);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .j-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.45), transparent 42%),
      radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.30), transparent 46%);
  }
  .j-final .btn { background: var(--beige); color: #fff; }
  .j-final .btn:hover { background: var(--beige-dark); color: #fff; }
  .j-final-inner { position: relative; z-index: 1; }
  /* "One final invitation" uses the same display-italic font as the word
     "subscription" in the heading (not the cursive script face). */
  .j-final .script {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 24px;
    color: var(--gold);
    margin: 0 0 10px;
  }
  .j-final h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 54px);
    line-height: 1.05;
    color: var(--ink);
    margin: 0 auto 28px;
    max-width: 820px;
    letter-spacing: -0.01em;
  }
  .j-final h2 em { font-style: italic; color: var(--beige-dark); }
  .j-final h2 .gold { color: var(--gold); font-style: italic; }
  .j-final p {
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 18px;
    line-height: 1.7;
  }
  .j-final .ornament {
    font-family: var(--f-script);
    color: var(--gold);
    font-size: 48px;
    line-height: 0.5;
    margin: 36px 0 0;
  }

  @media (max-width: 960px) {
    .j-hero-grid, .j-inside-grid, .j-for-grid, .j-gift-grid {
      grid-template-columns: 1fr; gap: 56px;
    }
    .j-series-grid { grid-template-columns: 1fr; }
    .j-hero-art, .j-inside-art, .j-for-art, .j-gift-art { height: 480px; }
  }
/* ============================================================
   Beloved Daughter — mobile hardening + CSS-only hamburger.
   Appended so it overrides the reference @media blocks above.
   ============================================================ */

/* Never allow a rotated/oversized decorative element to cause sideways scroll. */
.bdw { overflow-x: hidden; }
.bdw section { overflow-x: clip; }

/* Hamburger toggle — hidden on desktop. */
.bdw .bd-nav-toggle { display: none; }
.bdw .bd-burger { display: none; }

@media (max-width: 960px) {
  .bdw .nav-inner { position: relative; flex-wrap: wrap; }

  .bdw .bd-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    order: 2;
  }
  .bdw .bd-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
  }

  /* Collapsed menu becomes a full-width dropdown, shown when toggled. */
  .bdw .nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--rule);
    padding: 8px 24px 20px;
    order: 4;
  }
  /* Open the menu via either the no-JS checkbox OR the JS `.is-open` class. */
  .bdw .bd-nav-toggle:checked ~ .nav-links,
  .bdw .nav.is-open .nav-links { display: flex; }
  .bdw .nav-links a { padding: 14px 0; }
  /* WordPress-menu variant stacks full-width in the mobile dropdown too. */
  .bdw .nav-links .bd-wpmenu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .bdw .nav-links .bd-wpmenu a { display: block; padding: 14px 0; }
  .bdw .nav-cta { order: 3; }

  /* Animate the burger into an X when open (either mechanism). */
  .bdw .bd-nav-toggle:checked ~ .bd-burger span:nth-child(1),
  .bdw .nav.is-open .bd-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .bdw .bd-nav-toggle:checked ~ .bd-burger span:nth-child(2),
  .bdw .nav.is-open .bd-burger span:nth-child(2) { opacity: 0; }
  .bdw .bd-nav-toggle:checked ~ .bd-burger span:nth-child(3),
  .bdw .nav.is-open .bd-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .bdw .bd-burger span { transition: transform .25s ease, opacity .2s ease; }

  /* Story cards: two per row on tablets instead of four cramped columns. */
  .bdw .series-grid,
  .bdw .j-series-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 767px) {
  /* Hide the big decorative script overlays that spill past the viewport. */
  .bdw .hero-splash,
  .bdw .meet-script,
  .bdw .gift-ribbon,
  .bdw .ab-script-deco,
  .bdw .photo-script,
  .bdw .j-hero-script,
  .bdw .j-gift-ribbon { display: none !important; }

  /* Turn the absolute photo collages into a clean vertical stack. */
  .bdw .hero-collage,
  .bdw .journey-photos,
  .bdw .meet-photos,
  .bdw .gift-photos,
  .bdw .j-hero-art,
  .bdw .j-inside-art,
  .bdw .j-for-art,
  .bdw .j-gift-art,
  .bdw .story-photos,
  .bdw .ab-hero-portrait { height: auto !important; min-height: 0 !important; }

  .bdw .photo-card {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 0 16px !important;
  }
  .bdw .photo-card img { height: auto !important; aspect-ratio: 4 / 5; }

  /* Badges flow inline instead of floating off-canvas. */
  .bdw .hero-badge,
  .bdw .j-hero-badge,
  .bdw .ab-hero-badge { position: relative !important; inset: auto !important; margin: 8px auto 0; }

  /* Card grids to a single column. */
  .bdw .series-grid,
  .bdw .j-series-grid { grid-template-columns: 1fr !important; }

  .bdw .container,
  .bdw .container-narrow { padding-left: 20px; padding-right: 20px; }

  .bdw .final-grid,
  .bdw .ab-final-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Mobile: show the decorative photo collages as a neat 2-up
   gallery (capped height) instead of full-screen stacked images.
   ============================================================ */
@media (max-width: 767px) {
  .bdw .hero-collage,
  .bdw .journey-photos,
  .bdw .meet-photos,
  .bdw .gift-photos,
  .bdw .j-hero-art,
  .bdw .j-inside-art,
  .bdw .j-for-art,
  .bdw .j-gift-art,
  .bdw .story-photos,
  .bdw .ab-hero-portrait {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: start !important;
  }
  .bdw .hero-collage .photo-card,
  .bdw .journey-photos .photo-card,
  .bdw .meet-photos .photo-card,
  .bdw .gift-photos .photo-card,
  .bdw .j-hero-art .photo-card,
  .bdw .j-inside-art .photo-card,
  .bdw .j-for-art .photo-card,
  .bdw .j-gift-art .photo-card,
  .bdw .story-photos .photo-card,
  .bdw .ab-hero-portrait .photo-card {
    margin: 0 !important;
  }
  .bdw .hero-collage .photo-card img,
  .bdw .journey-photos .photo-card img,
  .bdw .meet-photos .photo-card img,
  .bdw .gift-photos .photo-card img,
  .bdw .j-hero-art .photo-card img,
  .bdw .j-inside-art .photo-card img,
  .bdw .j-for-art .photo-card img,
  .bdw .j-gift-art .photo-card img,
  .bdw .story-photos .photo-card img,
  .bdw .ab-hero-portrait .photo-card img {
    height: 180px !important;
    width: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
  }
  /* If a collage has an odd photo out, let the first one span the full width. */
  .bdw .hero-collage .photo-card:first-child,
  .bdw .meet-photos .photo-card:first-child,
  .bdw .gift-photos .photo-card:first-child { grid-column: 1 / -1; }
  .bdw .hero-collage .photo-card:first-child img,
  .bdw .meet-photos .photo-card:first-child img,
  .bdw .gift-photos .photo-card:first-child img { height: 220px !important; }
}

/* ============================================================
   Mobile polish (≤767px): tighter section rhythm, full-width
   plain image panels, and calmer heading/accent sizes so every
   section reads cleanly on a phone. Applies to all 3 pages.
   ============================================================ */
@media (max-width: 767px) {
  /* One consistent, tighter vertical rhythm for every block. */
  .bdw section,
  .bdw .hero,
  .bdw .freebie,
  .bdw .whatitis,
  .bdw .mission,
  .bdw .meet,
  .bdw .gift,
  .bdw .final,
  .bdw .ab-final,
  .bdw .ab-hero,
  .bdw .story-block,
  .bdw .j-hero,
  .bdw .j-inside,
  .bdw .j-series,
  .bdw .j-for,
  .bdw .j-gift,
  .bdw .j-final { padding-top: 60px !important; padding-bottom: 60px !important; }

  /* Plain (non-photo-card) image panels go full width with a sane height. */
  .bdw .mission-photo,
  .bdw .whatitis-photo,
  .bdw .final-photo,
  .bdw .ab-final-photo {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    margin: 24px 0 0 !important;
  }
  .bdw .mission-photo img,
  .bdw .whatitis-photo img,
  .bdw .final-photo img,
  .bdw .ab-final-photo img { height: 100% !important; width: 100% !important; object-fit: cover !important; }

  /* Stacked grids: force a single column so the photo can never sit beside
     the copy on a phone — copy first, image full-width second. */
  .bdw .mission-grid,
  .bdw .whatitis-grid,
  .bdw .final-grid,
  .bdw .ab-final-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .bdw .mission-grid .mission-copy { order: 1; }
  .bdw .mission-grid .mission-photo { order: 2; }

  /* Centre the mission (it was a centred banner on desktop). */
  .bdw .mission-grid,
  .bdw .mission-grid .mission-copy { text-align: center; }
  .bdw .mission-photo { margin-left: auto !important; margin-right: auto !important; }

  /* Calmer accent + heading sizes so nothing shouts or awkwardly wraps. */
  .bdw .script,
  .bdw .hero-script,
  .bdw .mission .script,
  .bdw .meet-copy .script { font-size: 22px !important; }
  .bdw .hero-title,
  .bdw .mission h2,
  .bdw .final h2,
  .bdw .ab-final h2,
  .bdw .ab-hero-copy h1,
  .bdw .j-hero-copy h1 { font-size: 30px !important; line-height: 1.12 !important; }
  .bdw .freebie-copy h2,
  .bdw .whatitis h2,
  .bdw .journey-copy h2,
  .bdw .series-head h2,
  .bdw .meet-copy h2,
  .bdw .gift-copy h2,
  .bdw .story-copy h2,
  .bdw .j-inside-copy h2,
  .bdw .j-series-head h2,
  .bdw .j-for-copy h2,
  .bdw .j-gift-copy h2,
  .bdw .j-final h2 { font-size: 27px !important; line-height: 1.15 !important; }
}

/* ============================================================
   Contact page — intro section + Elementor Pro form, palette-matched.
   ============================================================ */
.bdw .bd-contact {
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 154, 182, 0.10), transparent 45%),
    radial-gradient(circle at 6% 80%, rgba(252, 231, 236, 0.45), transparent 50%),
    #FFFFFF;
  padding: 90px 0 40px;
  text-align: center;
}
.bdw .bd-contact-head { max-width: 720px; margin: 0 auto; }
.bdw .bd-contact .script { font-size: 30px; color: var(--tan); margin: 0 0 6px; }
.bdw .bd-contact h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 20px;
}
.bdw .bd-contact h1 .em-italic { color: var(--beige-dark); font-style: italic; }
.bdw .bd-contact .bd-contact-intro {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
}
.bdw .bd-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 15px;
  color: var(--ink);
}
.bdw .bd-contact-info a {
  color: var(--beige-dark);
  border-bottom: 1px solid var(--blush-deep);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.bdw .bd-contact-info a:hover { color: var(--ink); border-color: var(--beige); }

/* The Elementor Pro Form widget lives OUTSIDE .bdw, so these selectors are
   intentionally top-level (not scoped under .bdw). */
.bd-contact-form {
  max-width: 760px;
  margin: 0 auto 90px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--blush-deep);
  border-radius: 16px;
  box-shadow: 0 30px 60px -40px rgba(126, 19, 32, 0.35);
}
.bd-contact-form .elementor-field-group > label,
.bd-contact-form .elementor-field-label {
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.bd-contact-form .elementor-field-textual {
  background: #fff;
  border: 1px solid var(--blush-deep);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
}
.bd-contact-form .elementor-field-textual:focus {
  border-color: var(--beige);
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 72, 58, 0.12);
}
.bd-contact-form textarea.elementor-field-textual { min-height: 150px; }
.bd-contact-form .elementor-button {
  background: var(--beige);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  border: 0;
  border-radius: 0;
  padding: 16px 34px;
  transition: background .2s, transform .2s;
}
.bd-contact-form .elementor-button:hover {
  background: var(--beige-dark);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .bd-contact-form { padding: 24px; margin-bottom: 60px; }
}
