/* EverNurture Midwifery Collective. Tokens from BRAND-GUIDELINES.md (AGY, 17 Sep 2026).
   Six sampled colours only. Every text pair below is checked in the guidelines' contrast table. */
:root {
  --plum: #333333;      /* Ink: all routine text, borders, primary button */
  --mauve: #9F7A9C;     /* Logo mauve: linework, dotted rules, large display text only */
  --pink: #E39AAD;      /* Logo pink: small non-text accents */
  --heather: #BE9BBC;   /* Brochure mauve: bands and alternating cards */
  --petal: #F8D1D6;     /* Brochure blush: alternating cards and quiet surfaces */
  --linen: #FFFFFF;     /* Paper: page surface */
  --lilac: #F8D1D6;     /* Quiet panels use Brochure blush */
  --slate: #333333;     /* Secondary text is Ink; no extra greys */
  --white: #FFFFFF;
  --field: #333333;     /* Form borders */
  --error: #333333;     /* Errors are Ink plus an icon and text, never a new red */
  --plum-deep: #333333;

  --font-head: "Bodoni Moda", Didot, "Bodoni MT", "Century Schoolbook", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script: "Allura", "Brush Script MT", cursive;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 4px;
  --radius-btn: 6px;
  --dots: 1.5px dotted var(--heather);
  --gutter: 24px;
  --section: clamp(56px, 2.2vw + 48px, 96px);
  --header-h: 88px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; background: var(--linen); color: var(--plum);
  font: 400 0.9375rem/1.6 var(--font-body); font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
@media (min-width: 768px) { body { font-size: 1rem; } }
img, svg { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: var(--plum); text-decoration-color: var(--mauve); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--plum); text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--plum); outline-offset: 2px; }
main:focus { outline: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; font-optical-sizing: auto; color: var(--plum); margin: 0 0 0.55em; text-wrap: balance; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.0625rem; line-height: 1.4; letter-spacing: 0.01em; color: var(--plum); margin: 0 0 0.55em; }
h1 { font-weight: 600; font-size: clamp(1.875rem, 1.49rem + 1.6vw, 2.75rem); line-height: 1.15; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.5rem, 1.36rem + 0.57vw, 2rem); line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-weight: 600; font-size: clamp(1.25rem, 1.18rem + 0.29vw, 1.5rem); line-height: 1.3; letter-spacing: 0; }
.tone { color: var(--mauve); }  /* Dual-tone headings: h1/h2 only (large text) */
.lead { font-size: clamp(1.0625rem, 1.02rem + 0.19vw, 1.1875rem); line-height: 1.55; }
.eyebrow {
  display: block; margin: 0 0 14px; color: var(--slate);
  font: 700 0.6875rem/1.4 var(--font-body); letter-spacing: 0.15em; text-transform: uppercase;
}
@media (min-width: 768px) { .eyebrow { font-size: 0.8125rem; letter-spacing: 0.18em; } }
/* Allura accent: at most one short phrase per page, never for names, contacts or controls. */
.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; line-height: 1.2; font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem); }
.muted { color: var(--slate); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -120px; z-index: 100; padding: 12px 18px; background: var(--plum); color: var(--white); border-radius: var(--radius); }
.skip-link:focus { top: 12px; }
.icon { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- Layout ---------- */
.container { width: calc(100% - var(--gutter) * 2); max-width: 1392px; margin-inline: auto; }
.section { padding-block: var(--section); }
/* Alternating sections: Paper between dotted rules, so blush stays a highlight rather than a wash. */
.section--lilac { background: var(--white); border-block: var(--dots); }
.section--petal { background: var(--petal); }
.section-head { margin-bottom: clamp(28px, 2.5vw, 44px); }
.section-head--split { display: grid; gap: 12px 48px; align-items: end; }
@media (min-width: 960px) { .section-head--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.rule { height: 0; border: 0; border-top: var(--dots); margin: 0; }
.split { display: grid; gap: clamp(32px, 4vw, 72px); align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--wide-copy { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}
.cols-2 { display: grid; gap: 32px 48px; }
@media (min-width: 768px) { .cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* Brochure detail: a vertical dotted rule between paired columns */
@media (min-width: 960px) { .cols-2--ruled > * + * { border-left: var(--dots); padding-left: 48px; } }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.25em; }
.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: var(--mauve); }
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 14px 28px; border-radius: var(--radius-btn); border: 1px solid transparent;
  font: 600 0.9375rem/1.2 var(--font-body); letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  transition: transform 180ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--plum); color: var(--white); border-color: var(--plum); }
.btn--secondary { background: var(--white); color: var(--plum); border-color: var(--plum); }
.btn--light { background: var(--white); color: var(--plum); border-color: var(--plum); }
.btn[disabled], .btn[aria-busy="true"] { background: var(--white); color: var(--plum); border-color: var(--heather); cursor: not-allowed; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
  .btn--secondary:hover, .btn--light:hover { border-width: 2px; padding: 13px 27px; }
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 479px) { .btn-row > .btn { width: 100%; } }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; border-bottom: 1.5px dotted var(--mauve); padding-block: 4px; }
.text-link .icon { width: 1em; height: 1em; transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .text-link:hover { border-bottom-style: solid; } .text-link:hover .icon { transform: translateX(3px); } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: var(--dots); }
@supports (backdrop-filter: blur(1px)) { .site-header { background: rgb(255 255 255 / 0.92); backdrop-filter: saturate(1.1) blur(12px); } }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
/* Brand: family icon beside the name, the same in the sticky header */
.brand { display: flex; align-items: center; gap: 16px; flex: none; padding-block: 12px; text-decoration: none; }
.brand-icon img { height: 64px; width: auto; }
.brand-name img { width: 220px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 20px; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link { display: block; padding: 10px 12px; color: var(--plum); text-decoration: none; font-weight: 600; font-size: 0.9375rem; border-bottom: 1.5px solid transparent; }
.nav-link[aria-current] { border-bottom-color: var(--mauve); }
@media (hover: hover) and (pointer: fine) { .nav-link:hover { border-bottom: 1.5px dotted var(--mauve); } }
.nav-toggle { display: none; }

@media (max-width: 1299px) {
  :root { --header-h: 72px; }
  .brand { gap: 12px; }
  .brand-icon img { height: 48px; }
  .brand-name img { width: 170px; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
    background: transparent; border: 1.5px solid var(--mauve); border-radius: var(--radius); color: var(--plum); font: 600 0.9375rem var(--font-body); cursor: pointer;
  }
  .nav-toggle-label { display: inline-flex; align-items: center; gap: 8px; }
  .nav-toggle [data-close], .nav-toggle[aria-expanded="true"] [data-open] { display: none; }
  .nav-toggle[aria-expanded="true"] [data-close] { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 16px;
    padding: 8px var(--gutter) 24px; background: var(--white); border-bottom: var(--dots);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 200ms;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list li + li { border-top: var(--dots); }
  .nav-link { padding: 14px 4px; font-size: 1rem; border-bottom: 0; }
  .nav-link[aria-current] { color: var(--plum); box-shadow: inset 3px 0 0 var(--mauve); padding-left: 14px; }
  .nav-cta { width: 100%; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs ol { display: flex; flex-wrap: wrap; gap: 4px 0; list-style: none; margin-block: 0; padding: 14px 0; font-size: 0.875rem; }
.crumbs li { display: flex; align-items: center; }
.crumbs li + li::before { content: ""; width: 14px; margin-inline: 10px; border-top: var(--dots); }
.crumbs a { color: var(--slate); text-decoration: none; padding-block: 4px; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current] { font-weight: 600; }

/* ---------- Heroes ---------- */
/* Home: copy beside the four-midwife illustration on a petal field */
.hero { padding-block: clamp(32px, 3vw, 64px) var(--section); }
.hero-grid { display: grid; gap: clamp(32px, 4vw, 64px); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); } }

.hero-art { margin: 0; position: relative; background: var(--petal); border-radius: var(--radius); padding: clamp(20px, 3vw, 44px); }
.hero-art::after { content: ""; position: absolute; inset: 12px; border: var(--dots); border-color: var(--white); border-radius: 2px; pointer-events: none; }
.hero-art img { width: 100%; }

/* Inner pages: the brochure's heather band */
.band { background: var(--heather); padding-block: clamp(40px, 3vw, 64px); }
.band h1, .band .eyebrow, .band .lead, .band .tone { color: var(--plum); }
.band .eyebrow a { color: var(--plum); }
.band-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 960px) { .band-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }

.band-media { position: relative; }
.band-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.band-media::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1.5px dotted var(--plum); border-radius: var(--radius); z-index: 0; }
.band-media picture { position: relative; z-index: 1; }
@media (max-width: 959px) { .band-media { max-width: 560px; margin-right: 14px; } }

/* Signature moment: hero copy settles in once, on first view */
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise 260ms var(--ease-out) both; }
  .reveal:nth-child(2) { animation-delay: 50ms; }
  .reveal:nth-child(3) { animation-delay: 100ms; }
  .reveal:nth-child(4) { animation-delay: 150ms; }
}
@media (prefers-reduced-motion: reduce) { .reveal { animation: fade 200ms linear both; } }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Support list (visible icon markers, dotted separators) ---------- */
.support-list { display: grid; list-style: none; margin: 0; padding: 0; column-gap: 48px; }
@media (min-width: 768px) { .support-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.support-list--spaced { margin-top: 24px; }
.support-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: var(--dots); }
.support-marker { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border: 1px solid var(--plum); border-radius: var(--radius); color: var(--mauve); background: var(--white); }
.support-marker .icon { width: 22px; height: 22px; }
.support-list strong { display: block; font-weight: 700; }

/* ---------- Midwife cards ---------- */
.midwife-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .midwife-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.midwife { display: flex; flex-direction: column; gap: 20px; padding: clamp(20px, 2.4vw, 32px); border: 1px solid var(--plum); border-radius: var(--radius); background: var(--petal); }
/* Brochure alternation, set per midwife so it holds on every page: Suzie and Rebecca mauve, Nohelia and Elisa blush. */
.midwife--heather { background: var(--heather); }
.midwife--petal { background: var(--petal); }
/* Monogram panel: same 3:4 box as a portrait, Paper with an Ink letter (12.63:1) so it reads as finished, not missing. */
.midwife-monogram {
  display: grid; place-items: center; margin: 0; aspect-ratio: 3 / 4;
  background: var(--white); border: 1px solid var(--plum); border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 500; font-size: 2.25rem; line-height: 1; color: var(--plum);
}
.midwife-head { display: flex; gap: 20px; align-items: center; }
.midwife-photo { flex: none; width: clamp(104px, 9vw, 132px); }
.midwife-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; border-radius: var(--radius); border: 1px solid var(--plum); }
.midwife-name { margin: 0; font-size: clamp(1.75rem, 1.5rem + 0.9vw, 2.25rem); color: var(--plum); }
.midwife-biz { margin: 4px 0 10px; font: 700 0.75rem/1.4 var(--font-body); letter-spacing: 0.15em; text-transform: uppercase; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--white); color: var(--plum); border-radius: 2px; font: 700 0.6875rem/1.4 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; }
.badge .icon { width: 14px; height: 14px; }
.midwife-contact { display: grid; gap: 6px; list-style: none; margin: 0; padding: 16px 0 0; border-top: 1.5px dotted var(--plum); }
.midwife-contact a { display: flex; align-items: center; gap: 10px; min-height: 40px; text-decoration: none; overflow-wrap: anywhere; }
.midwife-contact a:hover span { text-decoration: underline; }
.midwife-contact .icon { width: 18px; height: 18px; }
.midwife-call { font-weight: 700; font-size: 1.0625rem; }
.midwife .btn { align-self: flex-start; }
.midwife-summary { margin: 0; }

/* Compact roll-call (home page) */
.roll { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; border-top: var(--dots); }
@media (min-width: 768px) { .roll { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; } }
@media (min-width: 1180px) { .roll { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 48px; } .roll li + li::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: -24px; border-left: var(--dots); } }
.roll li { position: relative; padding: 20px 0; border-bottom: var(--dots); }
@media (min-width: 1180px) { .roll li { border-bottom: 0; } }
.roll-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; line-height: 1.3; }
.roll .midwife-biz { margin: 2px 0 8px; }
.roll a { font-weight: 600; }

/* ---------- Medicare callout ---------- */
.fee-callout { display: grid; gap: 20px 40px; align-items: center; padding: clamp(24px, 3vw, 40px); background: var(--petal); border: 2px solid var(--plum); border-radius: var(--radius); }
@media (min-width: 960px) { .fee-callout { grid-template-columns: auto minmax(0, 1fr) auto; } }
.fee-figure { font-family: var(--font-head); font-size: clamp(2.5rem, 2rem + 1.6vw, 3.5rem); line-height: 1; letter-spacing: -0.02em; margin: 0; }
.fee-figure small { display: block; margin-top: 8px; font: 700 0.75rem/1.4 var(--font-body); letter-spacing: 0.15em; text-transform: uppercase; }
.fee-callout .fee-note { font-size: 0.9375rem; color: var(--slate); margin-top: 6px; }

/* ---------- Pillars (approach) ---------- */
.pillars { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; }
@media (min-width: 960px) { .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 64px; } .pillars li { position: relative; padding-block: 8px; } .pillars li + li::before { content: ""; position: absolute; top: 0; bottom: 0; left: -32px; border-left: var(--dots); } }
@media (max-width: 959px) { .pillars li { padding: 20px 0; } .pillars li + li { border-top: var(--dots); } }
.pillars .icon { width: 28px; height: 28px; color: var(--mauve); margin-bottom: 14px; }
.pillars h3 { margin-bottom: 8px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; counter-reset: step; }
@media (min-width: 960px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 64px; } .steps li { position: relative; } .steps li + li::after { content: ""; position: absolute; top: 0; bottom: 0; left: -32px; border-left: var(--dots); } }
@media (max-width: 959px) { .steps li { padding: 20px 0; } .steps li + li { border-top: var(--dots); } }
.steps li { counter-increment: step; }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; margin-bottom: 10px; font: 400 1.75rem/1 var(--font-head); color: var(--mauve); }

/* ---------- Checklist with visible markers ---------- */
.checks { list-style: none; margin: 0 0 1em; padding: 0; display: grid; gap: 10px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks .icon { width: 20px; height: 20px; margin-top: 3px; color: var(--mauve); }
@media (min-width: 768px) { .checks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; } }

/* ---------- Photo panel ---------- */
.photo-panel img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 960px) { .photo-panel img { aspect-ratio: 4 / 5; } }

/* ---------- Note ---------- */
.note { display: flex; gap: 12px; padding: 16px 18px; background: var(--lilac); border-left: 3px solid var(--mauve); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9375rem; }
.note .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--plum); }

/* ---------- FAQ ---------- */
.faq-group + .faq-group { margin-top: clamp(40px, 4vw, 64px); }
.faq-list { border-top: var(--dots); }
.faq-item { border-bottom: var(--dots); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 48px; padding: 16px 0; cursor: pointer; list-style: none; font: 600 clamp(1.0625rem, 1.02rem + 0.19vw, 1.125rem)/1.4 var(--font-body); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border: 1px solid var(--plum); border-radius: var(--radius); color: var(--plum); transition: transform 180ms var(--ease-out); }
.faq-toggle .icon { width: 18px; height: 18px; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--petal); }
.faq-answer { padding: 0 0 22px; }
.faq-item:not([open]) .faq-answer { display: none; }
.faq-answer ul { padding-left: 1.25em; margin: 0 0 1em; }
.faq-answer li::marker { color: var(--mauve); }

/* ---------- Closing call to action ---------- */
.closer { background: var(--plum); color: var(--white); padding-block: clamp(48px, 4vw, 80px); }
.closer h2, .closer .eyebrow { color: var(--white); }
.closer-grid { display: grid; gap: 24px 48px; align-items: center; }
@media (min-width: 960px) { .closer-grid { grid-template-columns: minmax(0, 1fr) auto; } }
/* On the Ink band the secondary button stays a white surface with Ink text (12.63:1). */
.closer .btn--secondary { background: var(--white); color: var(--plum); border-color: var(--white); }
.closer .btn-row { margin-top: 0; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--plum); border-radius: var(--radius); padding: clamp(20px, 3vw, 40px); }
.form-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .field--full { grid-column: 1 / -1; } }
.field label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.875rem; }
.field .req { color: var(--plum); }
.field .hint { font-weight: 400; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 14px; background: var(--white); color: var(--plum);
  border: 1px solid var(--field); border-radius: var(--radius); font: 400 1rem/1.5 var(--font-body);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--plum); outline-offset: 2px; }
.field [aria-invalid="true"] { border-width: 2px; border-color: var(--error); }
.field-error { display: flex; gap: 6px; align-items: center; margin-top: 6px; color: var(--error); font-size: 0.875rem; font-weight: 600; }
.field-error:empty { display: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: flex; gap: 10px; padding: 14px 16px; margin-bottom: 20px; border-radius: var(--radius); font-weight: 600; }
.form-status--ok { background: var(--petal); border: 1px solid var(--plum); }
.form-status--error { background: var(--petal); color: var(--plum); border: 1px solid var(--plum); }
.form-small { font-size: 0.875rem; color: var(--slate); }

/* ---------- Legal ---------- */
.legal-grid { display: grid; gap: 32px 72px; }
@media (min-width: 960px) { .legal-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); } .legal-aside { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; } }
.updated { display: inline-block; padding: 6px 12px; background: var(--petal); border-radius: 2px; font-size: 0.875rem; font-weight: 600; }

/* ---------- Blog (WordPress) ---------- */
.entry-content > *, .blog-intro { max-width: none; }
.entry-content blockquote { margin: 0 0 1em; padding-left: 24px; border-left: 3px solid var(--mauve); font-family: var(--font-head); font-weight: 500; font-style: italic; }
.blog-list { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; border-top: var(--dots); }
.blog-list li { padding: 24px 0; border-bottom: var(--dots); }
.blog-list h2 { font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); margin-bottom: 6px; }
.blog-list h2 a { text-decoration: none; }
.blog-list h2 a:hover { text-decoration: underline; }
.post-meta { font-size: 0.875rem; color: var(--slate); margin-bottom: 8px; }

.entry-content img { border-radius: var(--radius); }
.entry-content ul, .entry-content ol { padding-left: 1.25em; }
.entry-content li::marker { color: var(--mauve); }
.pagination { display: flex; gap: 8px; margin-top: 32px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 44px; min-height: 44px; border: 1px solid var(--plum); border-radius: var(--radius); text-decoration: none; }
.pagination .current { background: var(--plum); color: var(--white); border-color: var(--plum); }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); border-top: 2px solid var(--mauve); }
.footer-grid { display: grid; gap: 36px; padding-block: clamp(48px, 4vw, 72px); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1180px) {
  .footer-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.9fr); gap: 0; }
  .footer-grid > * { padding-inline: 32px; }
  .footer-grid > :first-child { padding-left: 0; }
  .footer-grid > :last-child { padding-right: 0; }
  .footer-grid > * + * { border-left: var(--dots); }
}
.footer-logo { display: block; width: min(320px, 100%); }
.footer-logo img { width: 100%; height: auto; }
.footer-note { margin: 0 0 20px; font-size: 0.9375rem; color: var(--slate); }
.footer-heading { margin: 0 0 14px; font: 700 0.75rem/1.4 var(--font-body); letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); }
.footer-links, .footer-midwives { list-style: none; margin: 0; padding: 0; }
.footer-links a { display: inline-block; padding: 6px 0; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-midwives li { display: grid; padding: 8px 0; }
.footer-midwives li + li { border-top: var(--dots); }
.footer-midwife-name { font-weight: 700; }
.footer-midwife-biz { font-size: 0.875rem; color: var(--slate); }
/* Footer only: name and practice on the left, phone on the right */
.site-footer .footer-midwives li { grid-template-columns: minmax(0, 1fr) auto; column-gap: 16px; align-items: center; }
.site-footer .footer-midwife-name, .site-footer .footer-midwife-biz { grid-column: 1; }
.site-footer .footer-midwife-call { grid-column: 2; grid-row: 1 / span 2; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; white-space: nowrap; }
.site-footer .footer-midwife-call .icon { width: 16px; height: 16px; color: var(--mauve); }
.footer-midwives a { justify-self: start; padding-block: 4px; font-size: 0.9375rem; }
.footer-enquiry { margin-top: 16px; }
.footer-base { border-top: var(--dots); font-size: 0.875rem; color: var(--slate); }
.footer-base-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 24px; padding-block: 18px; }
.footer-base a { color: var(--plum); font-weight: 600; }
.footer-base .sep { display: inline-block; width: 4px; height: 4px; margin: 0 10px 2px; border-radius: 50%; background: var(--heather); vertical-align: middle; }

/* ---------- Mobile booking bar ---------- */
.mobile-book { display: none; }
@media (max-width: 419px) { .brand-icon img { height: 40px; } .brand-name img { width: 148px; } .brand { gap: 10px; } }
@media (max-width: 767px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .mobile-book {
    position: fixed; z-index: 60; left: 16px; right: 16px; bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
    background: var(--plum); color: var(--white); border-radius: var(--radius); text-decoration: none; font-weight: 700;
    box-shadow: 0 8px 24px rgb(70 40 68 / 0.28); transition: transform 160ms var(--ease-out), opacity 200ms var(--ease-out);
  }
  .mobile-book:active { transform: scale(0.97); }
  .mobile-book.is-hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
}

/* ---------- Preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  .btn, .text-link .icon, .faq-toggle, .mobile-book, .site-nav { transition-property: opacity, background-color, color, border-color, visibility; }
  .btn:active, .mobile-book:active { transform: none; }
}
@media (prefers-reduced-transparency: reduce) { .site-header { background: var(--white); backdrop-filter: none; } }
@media (prefers-contrast: more) {
  :root { --dots: 1.5px solid var(--plum); }
  .band, .midwife, .hero-art { border: 1.5px solid var(--plum); }
  .muted, .eyebrow, .footer-note, .footer-base, .form-small { color: var(--plum); }
}
@media print { .site-header, .mobile-book, .closer, .crumbs { display: none; } }
