:root {
  --bg-cream: #FFF5E6;
  --taupe: #6F8F6A;
  --mustard: #E3C57F;
  --yellow: #FFD166;
  --gold: #E7B84E;
  --sage-tint: #F1F5F0;
  --sage: #9CAF88;
  --white: #ffffff;
  --header-footer: #FAF1E6;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  --radius: 18px;
  --accent-brown: #C7A98B;        /* main soft brown */
  --accent-brown-soft: #E9D8C8;   /* very light background version */
  --accent-brown-border: rgba(199, 169, 139, 0.35);
  --font-body: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-quote: "Merriweather", Georgia, serif;
  --font-title: "Playfair Display", Georgia, serif;
  --font-cta: "Poppins", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--taupe);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

/* =========================
   GLOBAL UTILITIES
   ========================= */

.section {
  padding: 4.25rem 0;
}

.centered {
  text-align: center;
}

.max {
  max-width: 720px;
  margin-inline: auto;
}

.muted {
  opacity: 0.85;
}

.fineprint {
  margin-top: 0.65rem;
  font-size: 0.98rem;
  opacity: 0.9;
}

.hl {
  color: var(--mustard);
  font-weight: 700;
}

.soft-divider {
  width: min(680px, 100%);
  height: 2px;
  border-radius: 999px;
  background: rgba(227, 197, 127, 0.75);
  margin: 2rem auto 1.75rem;
}

.page-head {
  padding-bottom: 1.75rem;
  margin-bottom: 1.25rem;
}

.page-head.centered {
  text-align: center;
}

.page-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--taupe);
  margin: 0 0 0.65rem;
}

.page-accent {
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.95;
  margin-inline: auto;
}

.page-subline {
  margin: 0.75rem auto 0;
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 62ch;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 0.75rem;
  color: var(--taupe);
}

.section-body {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.mini-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--taupe);
  margin: 0 0 0.75rem;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-cta);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.95rem 1.15rem;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--yellow);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-sage {
  background: var(--yellow);
  color: var(--white);
}

.btn-sage:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.btn-sage:active {
  transform: translateY(0);
}

/* =========================
   NAVBAR
   ========================= */
.navbar {

  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 197, 127, 0.25);
}

.navbar--stacked {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1.25rem;
}

.brand-stack {
  grid-column: 2;
  justify-self: center;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;

  text-decoration: none;
  color: var(--taupe);
  text-align: center;
}

/* Make it feel like a logo, not just text */
.brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

/* Optional subtle accent line (VERY nice touch) */
.brand-name::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: 6px auto 0;
  background: var(--mustard);
  border-radius: 999px;
  opacity: 0.7;
}

.company-logo {
  height: 200px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  grid-column: 1 / -1;
  justify-self: center;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  margin: 0.65rem 0 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--taupe);
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    opacity 0.15s ease,
    border-color 0.15s ease;
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(227, 197, 127, 0.22);
  border-color: rgba(227, 197, 127, 0.28);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: rgba(255, 209, 102, 0.35);
  border-color: rgba(255, 209, 102, 0.4);
  opacity: 1;
}

.nav-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.22);
}

.menu-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  border: 1px solid rgba(139, 107, 94, 0.2);
  background: rgba(255, 245, 230, 0.85);
  color: var(--taupe);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.menu-toggle:hover {
  background: rgba(255, 245, 230, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  margin-top: 3rem;
  background: rgba(250, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 197, 127, 0.25);
  padding: 3.5rem 0 1.25rem;
}

.footer-inner {
  max-width: 820px;
  text-align: center;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--taupe);
}

.footer-message {
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.8;
}

.footer-contact {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 107, 94, 0.08);
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 1rem;
  color: var(--taupe);
}

.footer-text {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 107, 94, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--taupe);
  opacity: 0.85;
}

/* =========================
   HERO / HOME
   ========================= */

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("photos/doulas.png");
  background-size: contain; /* important upgrade */
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: none; /* remove blur */
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(255, 253, 249, 0.65) 0%,
    rgba(255, 253, 249, 0.35) 40%,
    rgba(255, 253, 249, 0.05) 70%,
    rgba(255, 253, 249, 0) 100%
  );
}

.hero-content {
  position: relative;
  padding: 3.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* REMOVE centered override */
.hero-text,
.hero-text--centered {
  grid-column: auto;
  justify-self: start;
  text-align: left;
  max-width: 520px;

  padding: 2rem;
  border-radius: 20px;

  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.12);
}

.hero-quote {
  margin: 0 0 1.25rem;
  font-family: var(--font-quote);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  color: var(--taupe);
}

.hero-subline {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--taupe);
  line-height: 1.7;
}

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

  .hero-text {
    justify-self: center;
    text-align: center;
    max-width: 640px;
  }
}

.mission-centered {
  max-width: 980px;
}

.services-overview {
  background: rgba(255, 245, 230, 0.55);
  border-top: 1px solid rgba(139, 107, 94, 0.08);
  border-bottom: 1px solid rgba(139, 107, 94, 0.08);
}

.closing-inner {
  text-align: center;
}

.centered-btn {
  margin-top: 0.75rem;
}

.soft-close {
  margin-top: 1.25rem;
  font-family: var(--font-title);
  font-weight: 600;
  opacity: 0.9;
}

/* Home images */
.home-support-image {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-photo {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.home-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(0.95) contrast(0.98);
  background: var(--bg-cream);
}

.home-photo--wide img {
  max-width: 650px;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

.home-photo--tall img {
  max-width: 600px;
  margin: 0 auto;
}

/* Home testimonial */
.home-testimonial .testimonial-card {
  background: rgba(255, 245, 230, 0.7);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.75rem;
  align-items: center;
}

.testimonial-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.testimonial-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--bg-cream);
}

.testimonial-quote {
  margin: 0 0 0.75rem;
  font-family: var(--font-quote);
  color: var(--taupe);
  line-height: 1.75;
  font-size: 1.05rem;
}

.testimonial-name {
  margin: 0;
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--sage);
}

/* =========================
   ABOUT
   ========================= */

.about {
  background: var(--bg-cream);
}

.about-wrap {
  max-width: 980px;
  margin-inline: auto;
}

.about-head {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.about-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 0.8rem;
}

.about-accent {
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.95;
  margin: 0 auto;
}

.about-opening {
  text-align: center;
  padding: 1rem 0 2.5rem;
}

.about-lead {
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0 auto 1.25rem;
  max-width: 70ch;
}

.about-paragraph {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.85;
  font-size: 1.05rem;
  margin: 0.9rem auto 0;
  max-width: 75ch;
}

.about-pillars {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.2rem;
  max-width: 720px;
  display: grid;
  gap: 0.75rem;
}

.about-pillars li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(235, 242, 236, 0.55);
  border: 1px solid rgba(156, 175, 136, 0.2);
  text-align: left;
}

.pillar-k {
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--sage);
}

.pillar-v {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.7;
}

.about-family {
  margin: 2.5rem 0 2.75rem;
}

.about-subtitle {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0 0 1.15rem;
  text-align: center;
}

.family-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.35);
}

.family-photo img {
  width: 100%;
  height: clamp(320px, 44vh, 520px);
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(0.96);
}

.family-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.14) 100%),
    rgba(139, 107, 94, 0.12);
  pointer-events: none;
}

.family-copy {
  text-align: center;
  max-width: 80ch;
  margin: 1.25rem auto 0;
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.85;
  font-size: 1.05rem;
}

.family-copy p {
  margin: 0 0 1rem;
}

.family-emphasis {
  font-family: var(--font-title);
  font-weight: 700;
  margin-top: 0.25rem;
}

.about-values {
  margin: 2.75rem 0 0;
}

.soft-divider--about {
  width: min(820px, 100%);
  height: 2px;
  border-radius: 999px;
  background: rgba(227, 197, 127, 0.6);
  margin: 1.25rem auto 1.75rem;
}

.about-close {
  margin: 3rem 0 1rem;
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 245, 230, 0.55);
  border: 1px solid rgba(139, 107, 94, 0.08);
}

.about-close-lead {
  margin: 0 auto 1.15rem;
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 70ch;
}

/* =========================
   MEET THE DOULAS
   ========================= */

.doulas {
  background: var(--bg-cream);
}

.doula-card {
  padding: 2.5rem 0;
}

.doula-card + .doula-card {
  border-top: 1px solid rgba(139, 107, 94, 0.1);
}

.doula-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.25rem;
  align-items: center;
}

.doula-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.35);
  position: relative;
}

.doula-photo img {
  width: 100%;
  height: clamp(340px, 44vh, 520px);
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.98);
}

.doula-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 230, 0.1);
  pointer-events: none;
}

.doula-text {
  background: rgba(255, 245, 230, 0.7);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.doula-name {
  margin: 0 0 0.9rem;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.doula-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.95;
}

.doula-bio {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.8;
  font-size: 1.02rem;
}

.doula-bio p {
  margin: 0 0 1rem;
}

.doula-bio p:last-child {
  margin-bottom: 0;
}

.doula-card--reverse .doula-grid {
  grid-template-columns: 1.15fr 1fr;
}

.doula-card--reverse .doula-photo {
  grid-column: 2;
  grid-row: 1;
}

.doula-card--reverse .doula-text {
  grid-column: 1;
  grid-row: 1;
}

.soft-divider--doulas {
  width: min(820px, 100%);
  height: 2px;
  border-radius: 999px;
  background: rgba(227, 197, 127, 0.75);
  margin: 2.25rem auto;
}

.doulas-close {
  background: rgba(255, 245, 230, 0.55);
  border-top: 1px solid rgba(139, 107, 94, 0.08);
}

.doulas-close-inner {
  padding-top: 0.25rem;
}

/* =========================
   BIRTH
   ========================= */

.birth {
  background: var(--bg-cream);
}

.birth-card {
  background: rgba(255, 245, 230, 0.7);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 2rem 2.1rem;
  margin: 1.75rem 0;
}

.birth-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.birth-accent {
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.95;
  margin: 0 0 1.35rem;
}

.birth-intro {
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.35rem;
}

.birth-breakdown {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.35rem;
}

.bd-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(235, 242, 236, 0.55);
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.bd-label {
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--sage);
}

.bd-body {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
}

.birth-note {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  margin: 0 0 1.35rem;
}

.birth-includes-title {
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--taupe);
  margin: 0 0 0.75rem;
  padding-top: 1.1rem;
  border-top: 2px solid rgba(227, 197, 127, 0.55);
}

.birth-includes {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  color: var(--taupe);
  line-height: 1.8;
}

.birth-includes li {
  margin-bottom: 0.55rem;
}

.birth-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 245, 230, 0.85);
  border: 1px solid rgba(139, 107, 94, 0.12);
  margin: 0 0 1.1rem;
}

.price-label,
.price-value {
  font-family: var(--font-cta);
  color: var(--taupe);
}

.price-label {
  font-weight: 600;
}

.price-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.birth-cta {
  margin-top: 0.25rem;
}

.birth-close {
  margin: 3rem 0 1rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 245, 230, 0.92);
  border: 1px solid rgba(139, 107, 94, 0.1);
}

.birth-close-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin: 0 0 0.9rem;
}

.birth-close-text {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  max-width: 70ch;
  margin: 0 auto 1.25rem;
}

/* Birth images + testimonial */
.birth-photo {
  margin: 2rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
  width: 100%;
}

.birth-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(0.95) contrast(0.98);
}

.birth-photo--wide img {
  max-width: 900px;
  margin: 0 auto;
}

.birth-photo--couple img {
  max-width: 350px;
  margin: 0 auto;
}


/* Birth images + testimonial */
.birth-photo-couple {
  margin: 2rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-cream);
  width: 100%;
}

.birth-testimonial {
  padding: 2rem 0;
}

.birth-testimonial-card {
  background: rgba(255, 245, 230, 0.7);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.birth-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}

.birth-testimonial-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.birth-testimonial-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.birth-testimonial-quote {
  margin: 0 0 0.75rem;
  font-family: var(--font-quote);
  color: var(--taupe);
  line-height: 1.75;
  font-size: 1.05rem;
}

.birth-testimonial-name {
  margin: 0;
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--sage);
}

/* =========================
   POSTPARTUM
   ========================= */

.postpartum {
  background: var(--bg-cream);
}

.pp-head {
  text-align: center;
  padding-bottom: 2.5rem;
}

.pp-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 0.8rem;
}

.pp-accent {
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.95;
  margin: 0 auto 1rem;
}

.pp-subline {
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 70ch;
}

.pp-intro {
  max-width: 78ch;
  margin: 0 auto 2rem;
  text-align: center;
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.8;
  font-size: 1.05rem;
}

.pp-intro p {
  margin: 0 0 1rem;
}

.pp-intro p:last-child {
  margin-bottom: 0;
}

.pp-card {
  background: rgba(255, 245, 230, 0.7);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 2rem 2.1rem;
  margin: 2rem 0;
}

.pp-card-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.pp-card-accent {
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.95;
  margin: 0 0 1.35rem;
}

.pp-card-intro {
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.35rem;
}

.pp-breakdown {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.35rem;
}

.pp-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(235, 242, 236, 0.55);
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.pp-label {
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--sage);
}

.pp-body {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
}

.pp-note {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  margin: 0 0 1.35rem;
}

.pp-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.15rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(255, 245, 230, 0.85);
  border: 1px solid rgba(139, 107, 94, 0.12);
}

.pp-k {
  display: block;
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--taupe);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.pp-v {
  display: block;
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.6;
}

.pp-invest {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(227, 197, 127, 0.55);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.pp-invest-k,
.pp-invest-v {
  font-family: var(--font-cta);
  color: var(--taupe);
}

.pp-invest-k {
  font-weight: 600;
}

.pp-invest-v {
  font-weight: 700;
}

.pp-image {
  margin: 2.25rem auto;
  max-width: 980px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.35);
}

.pp-image img {
  width: 100%;
  height: clamp(260px, 38vh, 420px);
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.98);
}

.pp-close {
  margin: 3rem 0 1rem;
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 245, 230, 0.92);
  border: 1px solid rgba(139, 107, 94, 0.1);
}

.pp-close-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin: 0 0 0.9rem;
}

.pp-close-text {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  max-width: 65ch;
  margin: 0 auto 1.25rem;
}

.pp-flex {
  margin: 0.85rem 0 0;
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 0.98rem;
  opacity: 0.9;
}

/* =========================
   CONTACT
   ========================= */

.contact {
  background: var(--bg-cream);
}

.contact-head {
  text-align: center;
  padding-bottom: 2.5rem;
}

.contact-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 0.8rem;
}

.contact-intro {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 75ch;
  margin: 0.75rem auto 0;
}

.contact-form-wrap {
  margin: 0 auto 2.25rem;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-subtitle {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--taupe);
  text-align: center;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  margin: 0 0 1.6rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--taupe);
}

.optional {
  opacity: 0.75;
  font-size: 0.95em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  color: var(--taupe);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(227, 197, 127, 0.45);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 209, 102, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.22);
  background: rgba(255, 255, 255, 0.98);
}

.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

.form-actions .btn {
  padding: 1rem 1.35rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.contact-flex {
  margin: 0.85rem 0 0;
  font-family: var(--font-body);
  color: var(--taupe);
  font-size: 0.98rem;
  opacity: 0.9;
}

.contact-area {
  text-align: center;
  margin-top: 2.25rem;
}

.contact-area-text {
  margin: 0 auto;
  max-width: 80ch;
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
}

.contact-close {
  text-align: center;
  margin: 2.5rem auto 0;
  font-family: var(--font-body);
  color: var(--taupe);
  opacity: 0.9;
  max-width: 70ch;
}

/* =========================
   WORKSHOPS
   ========================= */

.workshops {
  background: var(--bg-cream);
}

.workshops .container {
  width: min(1400px, calc(100% - 2rem));
}

.ws-head {
  text-align: center;
  padding-bottom: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.ws-title {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--taupe);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 1rem;
}

.ws-subtitle {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 auto 1.25rem;
  max-width: 70ch;
}

.ws-intro-title {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--taupe);
  margin: 0 0 0.75rem;
}

.ws-intro {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 78ch;
}

.ws-feature {
  margin: 2.25rem 0;
}

.ws-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ws-photo {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.ws-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(0.95) contrast(0.98);
}

.ws-card {
  background: rgba(255, 245, 230, 0.7);
  border: 1px solid rgba(139, 107, 94, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 2rem 2.1rem;
  margin: 2.25rem 0;
}

.ws-feature .ws-card {
  margin: 0;
}

.ws-card-title {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--taupe);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.ws-card-intro {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 0 1.35rem;
}

.ws-breakdown {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.35rem;
}

.ws-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(235, 242, 236, 0.55);
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.ws-label {
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--sage);
}

.ws-body {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
}

.ws-note {
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  margin: 0 0 1.35rem;
}

.ws-includes-title {
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--taupe);
  margin: 0 0 0.75rem;
}

.ws-includes {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  color: var(--taupe);
  line-height: 1.8;
}

.ws-includes li {
  margin-bottom: 0.55rem;
}

.ws-invest {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(227, 197, 127, 0.55);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.ws-invest-k,
.ws-invest-v {
  font-family: var(--font-cta);
  color: var(--taupe);
}

.ws-invest-k {
  font-weight: 600;
}

.ws-invest-v {
  font-weight: 700;
}

.ws-btn {
  margin-top: 1.15rem;
  margin-bottom: 4.75rem;
}

.ws-btn--last {
  margin-bottom: 5rem;
}

.ws-close {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 245, 230, 0.92);
  border: 1px solid rgba(139, 107, 94, 0.1);
  margin: 0 0 1rem;
}

.ws-close-text {
  margin: 0 auto 1.25rem;
  font-family: var(--font-body);
  color: var(--taupe);
  line-height: 1.75;
  max-width: 65ch;
  font-size: 1.05rem;
}

.ws-close-cta {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-cta);
  font-weight: 600;
  color: var(--taupe);
  padding: 0.65rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(227, 197, 127, 0.55);
  background: rgba(255, 245, 230, 0.65);
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ws-close-cta:hover {
  background: rgba(255, 245, 230, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .navbar--stacked {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.75rem 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem;
    margin: 0;
    border-radius: 18px;
    background: rgba(255, 245, 230, 0.96);
    border: 1px solid rgba(139, 107, 94, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    overflow: visible;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 1rem;
  }

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

  .hero-grid,
  .section-grid,
  .doula-grid,
  .contact-form,
  .pp-meta,
  .bd-row,
  .pp-row,
  .ws-row,
  .testimonial-grid,
  .birth-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .hero-text--centered {
    grid-column: auto;
    justify-self: center;
    text-align: center;
    max-width: 760px;
  }

  .photo-collage {
    min-height: 320px;
  }

  .about-pillars li {
    grid-template-columns: 1fr;
  }

  .doula-photo img {
    height: 320px;
  }

  .doula-text,
  .birth-card,
  .pp-card,
  .ws-card,
  .contact-form-wrap,
  .home-testimonial .testimonial-card,
  .birth-testimonial-card {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .soft-divider--doulas {
    margin: 1.75rem auto;
  }

  .pp-image img {
    height: auto;
  }

  .ws-btn {
    margin-bottom: 4.25rem;
  }

  .ws-btn--last {
    margin-bottom: 4.5rem;
  }

  .home-photo--tall img,
  .home-photo--wide img,
  .testimonial-photo img,
  .birth-photo img,
  .birth-testimonial-photo img {
    height: auto;
    object-position: center;
  }
}

.cpr-page {
  padding: 3rem 0 5rem;
}

.cpr-hero {
  text-align: center;
  padding: 2rem 0 3rem;
  max-width: 850px;
  margin: 0 auto;
}

.cpr-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green, #9CAF88);
  margin-bottom: 0.75rem;
}

.cpr-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--warm-taupe, #8B6B5E);
  margin-bottom: 1rem;
}

.cpr-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--warm-taupe, #8B6B5E);
  max-width: 760px;
  margin: 0 auto 1rem;
}

.cpr-intro {
  font-size: 1.05rem;
  color: var(--warm-taupe, #8B6B5E);
  margin-bottom: 1.5rem;
}

.cpr-price-box {
  margin-bottom: 1.5rem;
}

.cpr-price {
  display: inline-block;
  background: #fffaf2;
  border: 1px solid rgba(139, 107, 94, 0.15);
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  color: var(--warm-taupe, #8B6B5E);
}

.cpr-section {
  margin-bottom: 2rem;
}

.cpr-card {
  background: #fffdf9;
  border: 1px solid rgba(139, 107, 94, 0.12);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(139, 107, 94, 0.06);
}

.cpr-card-highlight {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f5ee 100%);
}

.cpr-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--warm-taupe, #8B6B5E);
  margin-bottom: 1rem;
}

.cpr-card p,
.cpr-card li,
.cpr-card blockquote {
  color: var(--warm-taupe, #8B6B5E);
  line-height: 1.8;
}

.cpr-thoughts {
  margin: 1.25rem 0;
  padding: 1.25rem;
  background: #fff8ef;
  border-left: 4px solid var(--soft-mustard, #E3C57F);
  border-radius: 14px;
}

.cpr-thoughts p {
  margin: 0 0 0.6rem;
  font-style: italic;
}

.cpr-thoughts p:last-child {
  margin-bottom: 0;
}

.cpr-list,
.cpr-checklist {
  margin: 1rem 0 1.25rem 1.25rem;
  padding: 0;
}

.cpr-list li,
.cpr-checklist li {
  margin-bottom: 0.7rem;
}

.cpr-checklist {
  list-style: none;
  margin-left: 0;
}

.cpr-checklist li::before {
  content: "✔";
  color: var(--sage-green, #9CAF88);
  font-weight: 700;
  margin-right: 0.7rem;
}

.cpr-details p,
.cpr-final-offers p {
  margin: 0.4rem 0;
}

.cpr-testimonials {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cpr-quote {
  margin: 0;
  padding: 1.25rem 1.4rem;
  background: #fff8ef;
  border-radius: 18px;
  font-style: italic;
}

.cpr-final {
  margin: 2.5rem 0 2rem;
}

.cpr-final-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.cpr-faq {
  display: grid;
  gap: 1.25rem;
}

.cpr-faq-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--warm-taupe, #8B6B5E);
  margin-bottom: 0.45rem;
}

.cpr-btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .cpr-card {
    padding: 1.5rem;
  }

  .cpr-section-title {
    font-size: 1.55rem;
  }

  .cpr-subtitle {
    font-size: 1.08rem;
  }
}


/* =========================================
   SITE-WIDE CPR-STYLE OVERRIDES
   Add at very end of stylesheet
   ========================================= */

/* --- shared soft card look across all pages --- */
.hero-text,
.hero-text--centered,
.home-testimonial .testimonial-card,
.doula-text,
.birth-card,
.birth-testimonial-card,
.pp-card,
.contact-form-wrap,
.ws-card,
.about-close,
.birth-close,
.pp-close,
.ws-close {
  background: #fffdf9;
  border: 1px solid rgba(156, 175, 136, 0.18);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.08);
}

/* --- unify all major headings --- */
.page-title,
.section-title,
.mini-title,
.about-title,
.about-subtitle,
.birth-title,
.birth-close-title,
.pp-title,
.pp-card-title,
.pp-close-title,
.contact-title,
.contact-subtitle,
.ws-title,
.ws-card-title,
.cpr-title,
.cpr-section-title,
.footer-title {
  color: var(--taupe);
  letter-spacing: -0.01em;
}

/* --- body text stays sage/taupe green, not brown --- */
.page-subline,
.section-body,
.about-lead,
.about-paragraph,
.family-copy,
.doula-bio,
.birth-intro,
.bd-body,
.birth-note,
.birth-close-text,
.birth-testimonial-quote,
.pp-subline,
.pp-intro,
.pp-card-intro,
.pp-body,
.pp-note,
.pp-v,
.pp-close-text,
.contact-intro,
.contact-area-text,
.contact-close,
.ws-subtitle,
.ws-intro,
.ws-card-intro,
.ws-body,
.ws-note,
.ws-close-text,
.hero-quote,
.hero-subline,
.testimonial-quote,
.footer-message,
.footer-text,
.cpr-subtitle,
.cpr-intro,
.cpr-card p,
.cpr-card li,
.cpr-card blockquote {
  color: var(--taupe);
}

/* --- labels / mini headings / structured text --- */
.pillar-k,
.doula-name,
.bd-label,
.pp-label,
.pp-k,
.ws-label,
.cpr-eyebrow,
.cpr-checklist li::before {
  color: var(--sage);
}

/* --- richer soft cream panels / quote boxes --- */
.about-pillars li,
.bd-row,
.pp-row,
.cpr-thoughts,
.cpr-quote {
  background: #fff8ef;
  border: 1px solid rgba(156, 175, 136, 0.14);
  border-radius: 16px;
}

/* preserve left highlight on cpr thought box */
.cpr-thoughts {
  border-left: 4px solid var(--mustard);
}

/* --- pricing / metadata bars get pill-card treatment --- */
.birth-price,
.pp-meta,
.pp-invest,
.ws-invest,
.cpr-price {
  background: #fffaf2;
  border: 1px solid rgba(156, 175, 136, 0.18);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(111, 143, 106, 0.06);
}

/* --- intro price pill on CPR page --- */
.cpr-price {
  color: var(--taupe);
}

/* --- more elegant section spacing --- */
.about-head,
.pp-head,
.contact-head,
.ws-head,
.cpr-hero {
  padding-bottom: 2rem;
}

.birth-card,
.pp-card,
.ws-card,
.contact-form-wrap,
.about-close,
.birth-close,
.pp-close,
.ws-close,
.cpr-card {
  padding: 2rem;
}

/* --- unify card titles / internal headings --- */
.birth-includes-title,
.ws-includes-title,
.footer-heading,
.cpr-faq-item h3 {
  color: var(--taupe);
}

/* --- soften form and interactive surfaces --- */
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(156, 175, 136, 0.22);
  background: #fffdf9;
  color: var(--taupe);
  border-radius: 14px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(156, 175, 136, 0.5);
  box-shadow: 0 0 0 4px rgba(156, 175, 136, 0.14);
  background: #ffffff;
}

/* --- image containers feel more consistent with new cards --- */
.home-photo,
.testimonial-photo,
.family-photo,
.doula-photo,
.birth-photo,
.birth-photo-couple,
.birth-testimonial-photo,
.pp-image,
.ws-photo {
  border-radius: 24px;
}

/* --- unify CTA spacing --- */
.birth-cta,
.ws-btn,
.cpr-btn,
.centered-btn {
  margin-top: 1rem;
}

/* keep old workshop buttons from having giant bottom whitespace */
.ws-btn,
.ws-btn--last {
  margin-bottom: 0;
}

/* --- subtle polish to nav and footer to match softer cards --- */
.navbar,
.site-footer {
  background: rgba(250, 241, 230, 0.94);
  border-color: rgba(156, 175, 136, 0.14);
}

.nav-links a:hover {
  background: rgba(156, 175, 136, 0.14);
  border-color: rgba(156, 175, 136, 0.18);
}

.nav-links a.active {
  background: rgba(227, 197, 127, 0.24);
  border-color: rgba(227, 197, 127, 0.3);
}

/* --- fix CPR page colors so they match your sage site palette --- */
.cpr-title,
.cpr-subtitle,
.cpr-intro,
.cpr-section-title,
.cpr-card p,
.cpr-card li,
.cpr-card blockquote,
.cpr-faq-item h3 {
  color: var(--taupe);
}

.cpr-eyebrow,
.cpr-checklist li::before {
  color: var(--sage);
}

.cpr-card {
  background: #fffdf9;
  border: 1px solid rgba(156, 175, 136, 0.18);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.08);
}

.cpr-card-highlight,
.cpr-final-card {
  background: linear-gradient(180deg, #fffdf9 0%, #f3f7f1 100%);
}

.cpr-price {
  border: 1px solid rgba(156, 175, 136, 0.22);
  box-shadow: 0 8px 22px rgba(111, 143, 106, 0.08);
}

/* --- mobile padding stays comfortable --- */
@media (max-width: 900px) {
  .hero-text,
  .hero-text--centered,
  .doula-text,
  .birth-card,
  .pp-card,
  .ws-card,
  .contact-form-wrap,
  .home-testimonial .testimonial-card,
  .birth-testimonial-card,
  .about-close,
  .birth-close,
  .pp-close,
  .ws-close,
  .cpr-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .home-photo,
  .testimonial-photo,
  .family-photo,
  .doula-photo,
  .birth-photo,
  .birth-photo-couple,
  .birth-testimonial-photo,
  .pp-image,
  .ws-photo {
    border-radius: 20px;
  }
}

/* =========================================
   NAVBAR + PAGE HEADER AESTHETIC REFINEMENT
   Add at very end of stylesheet
   ========================================= */

/* --- NAVBAR SHELL --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(156, 175, 136, 0.14);
  box-shadow: 0 8px 24px rgba(111, 143, 106, 0.06);
}

.navbar--stacked {
  padding: 1rem 1.25rem 0.85rem;
  gap: 0.5rem;
}

/* --- BRAND --- */
.brand-stack {
  color: var(--taupe);
  gap: 0.15rem;
}

.brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--taupe);
}

.brand-name::after {
  content: "";
  display: block;
  width: 56%;
  height: 2px;
  margin: 8px auto 0;
  background: linear-gradient(
    90deg,
    rgba(227, 197, 127, 0.2) 0%,
    rgba(227, 197, 127, 0.9) 50%,
    rgba(227, 197, 127, 0.2) 100%
  );
  border-radius: 999px;
  opacity: 0.9;
}

.company-logo {
  height: 180px;
  width: auto;
  border-radius: 12px;
}

/* --- NAV LINKS WRAPPER --- */
.nav-links {
  margin-top: 0.85rem;
  gap: 0.45rem;
}

/* --- NAV LINKS --- */
.nav-links a {
  color: var(--taupe);
  font-family: var(--font-cta);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.55);
  border: 1px solid rgba(156, 175, 136, 0.08);
  box-shadow: 0 4px 10px rgba(111, 143, 106, 0.03);
  opacity: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(241, 245, 240, 0.95);
  border-color: rgba(156, 175, 136, 0.2);
  box-shadow: 0 8px 18px rgba(111, 143, 106, 0.08);
  transform: translateY(-1px);
  color: var(--taupe);
}

.nav-links a.active {
  background: linear-gradient(180deg, #fffaf2 0%, #f3f7f1 100%);
  border-color: rgba(227, 197, 127, 0.35);
  box-shadow: 0 8px 18px rgba(111, 143, 106, 0.08);
  color: var(--taupe);
}

.nav-links a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(227, 197, 127, 0.18),
    0 8px 18px rgba(111, 143, 106, 0.08);
}

/* --- MOBILE TOGGLE --- */
.menu-toggle {
  border: 1px solid rgba(156, 175, 136, 0.14);
  background: rgba(255, 250, 242, 0.92);
  color: var(--taupe);
  border-radius: 14px;
  padding: 0.5rem 0.7rem;
  box-shadow: 0 8px 18px rgba(111, 143, 106, 0.06);
}

.menu-toggle:hover {
  background: rgba(243, 247, 241, 0.95);
  box-shadow: 0 10px 22px rgba(111, 143, 106, 0.08);
  transform: translateY(-1px);
}

/* --- MOBILE DROPDOWN PANEL --- */
@media (max-width: 900px) {
  .navbar {
    background: rgba(255, 253, 249, 0.94);
  }

  .navbar--stacked {
    padding: 0.85rem 1rem;
  }

  .nav-links {
    top: calc(100% + 0.7rem);
    padding: 0.85rem;
    gap: 0.45rem;
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid rgba(156, 175, 136, 0.14);
    box-shadow: 0 18px 40px rgba(111, 143, 106, 0.1);
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: rgba(255, 248, 239, 0.7);
  }

  .company-logo {
    height: 130px;
  }
}

/* =========================================
   PAGE HEADERS / TOP SECTIONS
   makes page intros feel more like CPR page
   ========================================= */

.page-head,
.about-head,
.pp-head,
.contact-head,
.ws-head {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

.page-title,
.about-title,
.pp-title,
.contact-title,
.ws-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
}

.page-subline,
.about-lead,
.pp-subline,
.contact-intro,
.ws-subtitle,
.ws-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.page-accent,
.about-accent,
.pp-accent {
  width: 82px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(227, 197, 127, 0.2) 0%,
    rgba(227, 197, 127, 0.95) 50%,
    rgba(227, 197, 127, 0.2) 100%
  );
  margin-top: 0.2rem;
}

/* workshop page had its own title rhythm; soften it */
.ws-subtitle {
  margin-bottom: 0.9rem;
}

.ws-intro-title {
  font-family: var(--font-cta);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}

/* =========================================
   NAVBAR + FOOTER COLOR MATCH
   ========================================= */

/* shared surface */
.navbar,
.site-footer {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* match borders */
.navbar {
  border-bottom: 1px solid rgba(156, 175, 136, 0.14);
}

.site-footer {
  border-top: 1px solid rgba(156, 175, 136, 0.14);
  border-bottom: none;
}

/* optional: unify softness */
.site-footer {
  box-shadow: 0 -8px 24px rgba(111, 143, 106, 0.05);
}

/* =========================================
   REMOVE GOLD → REPLACE WITH SOFT BROWN
   ========================================= */

/* --- dividers --- */
.soft-divider,
.soft-divider--about,
.soft-divider--doulas {
  background: var(--accent-brown);
  opacity: 0.7;
}

/* --- accent bars under titles --- */
.page-accent,
.about-accent,
.pp-accent,
.birth-accent,
.pp-card-accent {
  background: var(--accent-brown);
}

/* --- section divider lines --- */
.birth-includes-title,
.pp-invest,
.ws-invest {
  border-top: 2px solid var(--accent-brown-border);
}

/* --- cards that had mustard borders --- */
.cpr-thoughts {
  border-left: 4px solid var(--accent-brown);
}

/* --- nav brand underline --- */
.brand-name::after {
  background: linear-gradient(
    90deg,
    rgba(199, 169, 139, 0.2) 0%,
    rgba(199, 169, 139, 0.9) 50%,
    rgba(199, 169, 139, 0.2) 100%
  );
}

/* --- page header accent line --- */
.page-accent,
.about-accent,
.pp-accent {
  background: linear-gradient(
    90deg,
    rgba(199, 169, 139, 0.2) 0%,
    rgba(199, 169, 139, 0.95) 50%,
    rgba(199, 169, 139, 0.2) 100%
  );
}

/* --- nav hover / active (remove gold) --- */
.nav-links a:hover {
  background: rgba(199, 169, 139, 0.18);
  border-color: rgba(199, 169, 139, 0.25);
}

.nav-links a.active {
  background: rgba(199, 169, 139, 0.22);
  border-color: rgba(199, 169, 139, 0.3);
}

/* --- buttons (important) --- */
.btn-primary,
.btn-sage {
  background: var(--accent-brown);
  color: white;
}

.btn-primary:hover,
.btn-sage:hover {
  background: #b89674; /* slightly darker brown */
}

/* --- form focus states --- */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-brown);
  box-shadow: 0 0 0 4px rgba(199, 169, 139, 0.2);
}

/* --- highlight text (if used) --- */
.hl {
  color: var(--accent-brown);
}

/* --- subtle panels that used yellow tint --- */
.birth-price,
.pp-meta,
.pp-invest,
.ws-invest,
.cpr-price {
  border: 1px solid var(--accent-brown-border);
}

/* --- optional: soften CTA links --- */
.ws-close-cta {
  border: 1px solid var(--accent-brown-border);
  background: rgba(233, 216, 200, 0.4);
}

.ws-close-cta:hover {
  background: rgba(233, 216, 200, 0.65);
}

/* =========================================
   RESTORE GOLD FOR BUTTONS ONLY
   ========================================= */

.btn-primary,
.btn-sage {
  background: var(--yellow); /* your gold */
  color: white;
  border: none;
  box-shadow: 0 6px 16px rgba(227, 197, 127, 0.35);
}

.btn-primary:hover,
.btn-sage:hover {
  background: #e7b84e; /* slightly deeper gold */
  box-shadow: 0 8px 20px rgba(227, 197, 127, 0.45);
  transform: translateY(-1px);
}

/* =========================================
   NAV LINKS — MATCH NAVBAR (REMOVE CLASH)
   ========================================= */

/* default state = almost invisible */
.nav-links a {
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  color: var(--taupe);
}

/* subtle hover (same color family as navbar) */
.nav-links a:hover {
  background: rgba(156, 175, 136, 0.12);
  border-color: rgba(156, 175, 136, 0.18);
  box-shadow: 0 6px 14px rgba(111, 143, 106, 0.06);
  transform: translateY(-1px);
}

/* active page */
.nav-links a.active {
  background: rgba(199, 169, 139, 0.18); /* your soft brown */
  border-color: rgba(199, 169, 139, 0.28);
  box-shadow: 0 6px 14px rgba(111, 143, 106, 0.08);
}

/* remove old pill look completely */
.nav-links a {
  padding: 0.6rem 0.9rem;
  border-radius: 10px; /* softer, less bubble-like */
}

/* =========================================
   HERO — CENTER TEXT + IMAGE TOGETHER
   ========================================= */

.hero {
  display: flex;
  justify-content: center; /* centers entire block */
}

/* contain the layout so it doesn't stretch full width */
.hero-grid {
  display: grid;
  grid-template-columns: 520px 520px;
  gap: 3rem;

  align-items: center;
  justify-content: center; /* centers the grid itself */

  max-width: 1100px; /* controls total width */
  margin: 0 auto;
}

/* text stays left */
.hero-text,
.hero-text--centered {
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

/* force image to behave like a proper column */
.hero-bg {
  position: relative;
  width: 100%;
  height: 520px;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .hero-text {
    text-align: center;
    justify-self: center;
  }

  .hero-bg {
    height: 420px;
  }
}

/* =========================================
   HERO FIX — TRUE SIDE-BY-SIDE
   text left, image right, same size as before
   ========================================= */

/* stop using the full-width floating background layer */
.hero-bg {
  display: none;
}

/* keep hero area clean */
.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  padding: 3.5rem 0;
}

/* true 2-column layout */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(420px, 520px);
  gap: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
}

/* text on the left */
.hero-text,
.hero-text--centered {
  grid-column: 1;
  justify-self: end;
  text-align: left;
  max-width: 520px;

  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.12);
  backdrop-filter: blur(6px);
}

/* image on the right */
.hero-spacer {
  grid-column: 2;
  justify-self: start;
  width: 100%;
  min-height: 520px;

  background-image: url("photos/doulas.png");
  border-radius: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* mobile */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 640px;
  }

  .hero-text,
  .hero-text--centered {
    grid-column: auto;
    justify-self: center;
    text-align: center;
    max-width: 640px;
  }

  .hero-spacer {
    grid-column: auto;
    justify-self: center;
    width: 100%;
    min-height: 420px;
  }
}

/* Single inline image */
.pp-inline-image {
  max-width: 700px;
  margin: 2.5rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.pp-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
}

/* Softer emotional tone near bottom */
.pp-inline-image--soft img {
  opacity: 0.95;
  filter: saturate(0.9);
}

/* =========================================
   HERO FINAL FIX — ONE ROW, TWO COLUMNS
   ========================================= */

.hero {
  min-height: auto;
  display: block;
  overflow: hidden;
  padding: 2.5rem 0 1.5rem;
}

.hero-content {
  padding: 0;
}

.hero-bg,
.hero-overlay {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(420px, 520px);
  grid-template-rows: auto;
  grid-auto-rows: auto;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
}

/* LEFT: text card */
.hero-text,
.hero-text--centered {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  text-align: left;
  max-width: 520px;

  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.12);
  backdrop-filter: blur(6px);
}

/* RIGHT: image */
.hero-spacer {
  display: block;
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  align-self: center;

  width: 100%;
  height: 560px;

  background-image: url("photos/doulas.png");
  border-radius: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* mobile stack */
@media (max-width: 900px) {
  .hero {
    padding: 2rem 0 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-width: 640px;
    gap: 2rem;
  }

  .hero-text,
  .hero-text--centered {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    text-align: center;
    max-width: 640px;
  }

  .hero-spacer {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    height: 420px;
  }
}

/* Inline image (refined) */
.pp-inline-image {
  width: 100%;
  max-width: 720px; /* matches your card width better */
  margin: 2rem auto 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

/* KEY FIX: control height + crop nicely */
.pp-inline-image img {
  width: 100%;
  height: 320px;              /* 👈 controls tallness */
  object-fit: cover;          /* 👈 prevents stretching */
  object-position: center;    /* 👈 keeps faces centered */
  display: block;
  filter: saturate(0.95) contrast(0.98);
}

/* Slight variation for visual interest */
.pp-inline-image--soft img {
  height: 300px;
  opacity: 0.95;
  filter: saturate(0.9);
}

/* Mobile */
@media (max-width: 900px) {
  .pp-inline-image img {
    height: 240px;
  }
}

/* =========================================
   CONTACT TESTIMONIAL
   ========================================= */

.contact-testimonial {
  margin: 2.5rem 0 3rem;
}

.contact-testimonial-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* image */
.contact-testimonial-image {
  width: 100%;
  height: 320px;
  border-radius: 24px;

  background-image: url("photos/baby.JPG"); /* swap if needed */
  background-size: cover;
  background-position: center;

  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.1);
}

/* card */
.contact-testimonial-card {
  background: #fffdf9;
  border: 1px solid rgba(156, 175, 136, 0.18);
  border-radius: 24px;
  padding: 2rem;

  box-shadow: 0 10px 30px rgba(111, 143, 106, 0.08);
}

/* quote */
.contact-testimonial-quote {
  font-style: italic;
  line-height: 1.9;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}

/* name */
.contact-testimonial-name {
  font-weight: 600;
  color: var(--sage);
}

/* mobile */
@media (max-width: 900px) {
  .contact-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
  }

  .contact-testimonial-image {
    height: 260px;
  }

  .contact-testimonial-card {
    text-align: center;
  }
}

.pp-inline-image {
  width: 100%;
  max-width: 920px;
  margin: 2rem auto 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.pp-inline-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: saturate(0.95) contrast(0.98);
}

.pp-inline-image--soft img {
  height: 380px;
}

@media (max-width: 900px) {
  .pp-inline-image img {
    height: 280px;
  }

  .pp-inline-image--soft img {
    height: 260px;
  }
}

.pp-inline-image--soft img {
  height: 460px;              /* taller so it breathes */
  object-fit: cover;
  object-position: center 20%; /* shifts focus upward */
}

/* =========================
   2 IMAGE COLLAGE (ASYMMETRICAL)
   ========================= */

.birth-collage {
  display: grid;
  grid-template-columns: 2fr 1fr; /* left bigger */
  gap: 1rem;

  max-width: 980px;
  margin: 2rem auto;
}

/* shared styles */
.collage-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

/* left image */
.collage-left img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* right image (full height match) */
.collage-right img {
  width: 100%;
  height: 420px; /* 👈 matches left */
  object-fit: cover;
  object-position: center;
  display: block;
}

.collage-right img {
  object-position: center 30%;
}

@media (max-width: 900px) {
  .birth-collage {
    grid-template-columns: 1fr;
  }

  .collage-left img,
  .collage-right img {
    height: 300px;
  }
}

/* =========================
   HOME 2-PHOTO COLLAGE
   ========================= */

.home-collage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 420px;
}

.home-collage-main,
.home-collage-accent {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}

.home-collage-main {
  width: 72%;
}

.home-collage-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-collage-accent {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: 38%;
  border: 8px solid var(--bg-cream);
}

.home-collage-accent img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .home-collage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .home-collage-main,
  .home-collage-accent {
    position: static;
    width: 100%;
  }

  .home-collage-main img,
  .home-collage-accent img {
    height: 240px;
  }

  .home-collage-accent {
    border: none;
  }
}

/* =========================================
   HOME HERO FINAL ROUNDING FIX
   ========================================= */

.hero {
  max-width: 1120px;
  margin: 1.5rem auto 0;
  border-radius: 24px;
  overflow: hidden;
}

.hero-spacer {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--bg-cream);
}

/* =========================================
   MOBILE NAV FINAL FIX
   ========================================= */
@media (max-width: 900px) {
  .navbar--stacked {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    row-gap: 0.75rem;
  }

  .brand-stack {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    grid-column: 1;
  }
}

/* =========================================
   MEET THE DOULAS — MOBILE REVERSE CARD FIX
   ========================================= */
@media (max-width: 900px) {
  .doula-card--reverse .doula-grid {
    grid-template-columns: 1fr;
  }

  .doula-card--reverse .doula-photo {
    grid-column: 1;
    grid-row: 1;
  }

  .doula-card--reverse .doula-text {
    grid-column: 1;
    grid-row: 2;
  }
}

.form-status {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-family: var(--font-body);
  line-height: 1.6;
  border: 1px solid transparent;
}

.form-status--success {
  background: rgba(156, 175, 136, 0.12);
  border-color: rgba(156, 175, 136, 0.28);
  color: var(--taupe);
}

.form-status--error {
  background: rgba(199, 169, 139, 0.14);
  border-color: rgba(199, 169, 139, 0.30);
  color: var(--taupe);
}

.form-actions .btn:disabled {
  opacity: 0.75;
  cursor: wait;
}
