/* ================================================================
   Divine Birth Midwifery Centre — v4 Complete Revamp
   Design language: warm editorial · human · refined · trustworthy
   Inspired by the care and warmth of the real clinic photos.
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Palette — plum ground, teal accent.
     The dark blocks are no longer cold charcoal: they are a deep,
     warm plum that belongs to the brand. Teal does the sharp work. */

  /* Text — warm near-black, never blue-black */
  --ink:         #2a1f27;
  --ink-mid:     #5a4b55;
  --ink-soft:    #8a7a84;

  /* Light grounds */
  --cream:       #faf8f5;
  --warm:        #f4efec;
  --warm-mid:    #e9dfe1;
  --white:       #ffffff;
  --line:        rgba(62,31,51,0.12);
  --line-warm:   rgba(62,31,51,0.07);

  /* PLUM — the ground. Carries the heavy blocks. */
  --plum:        #3e1f33;
  --plum-deep:   #2c1524;
  --plum-mid:    #5a2e4a;
  --plum-light:  #f7eef4;

  /* TEAL — the accent. Buttons, links, active states. */
  --teal:        #0f7a6e;
  --teal-bright: #3fbfae;   /* for use ON plum, where it must pop */
  --teal-dark:   #0b5c53;
  --teal-light:  #e6f4f1;

  /* Gold — a whisper, for stars and celebration only */
  --gold:        #c8963a;
  --gold-light:  #fdf5e8;

  /* --- Compatibility aliases (existing rules reference these) --- */
  --rose:        var(--teal);        /* accent slot -> teal */
  --rose-light:  var(--teal-light);
  --rose-dark:   var(--teal-dark);
  --sage:        var(--plum);        /* secondary slot -> plum */
  --sage-light:  var(--plum-light);
  --sage-dark:   var(--plum-deep);

  /* Type */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  /* Sizes */
  --nav-h:  64px;
  --max:    1160px;
  --gutter: 48px;

  /* Shadows — plum-tinted, warm */
  --s1: 0 1px 3px rgba(62,31,51,0.06), 0 1px 2px rgba(62,31,51,0.04);
  --s2: 0 4px 16px rgba(62,31,51,0.08), 0 2px 4px rgba(62,31,51,0.04);
  --s3: 0 12px 40px rgba(62,31,51,0.11), 0 4px 8px rgba(62,31,51,0.05);
  --s4: 0 24px 64px rgba(62,31,51,0.14), 0 8px 16px rgba(62,31,51,0.06);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── BASE TYPE ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
p { color: var(--ink-mid); line-height: 1.75; }
a { color: var(--sage); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--sage-dark); }
img { display: block; max-width: 100%; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── REVEAL ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── EYEBROW LABEL ──────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px;
}
.eyebrow-sage { color: var(--sage); }

/* ── RULE ──────────────────────────────────────────────────── */
.rule { width: 36px; height: 2px; background: currentColor; }

/* ================================================================
   ANNOUNCEMENT STRIP
================================================================ */
.announce {
  background: var(--plum);
  padding: 10px 0;
  text-align: center;
}
.announce-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.announce span {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.announce strong { color: rgba(255,255,255,0.88); font-weight: 500; }
.announce-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.announce-cta {
  font-size: 12px; font-weight: 500; color: var(--gold) !important;
  letter-spacing: 0.03em; border-bottom: 1px solid rgba(200,150,58,0.35);
  transition: border-color 0.2s;
}
.announce-cta:hover { border-color: var(--gold); }

/* ================================================================
   NAV
================================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.lifted {
  background: rgba(250,248,245,0.98);
  box-shadow: var(--s2);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c0505f 0%, #9b3e4b 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(192,80,95,0.3);
  flex-shrink: 0;
}
.nav-logo-badge svg { width: 20px; height: 20px; }
.nav-logo-name {
  font-family: var(--serif); font-size: 16px; font-weight: 500;
  color: var(--ink); line-height: 1.1; letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.09em; text-transform: uppercase;
  display: block;
}

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; height: var(--nav-h);
}
.nav-links li { height: 100%; display: flex; align-items: center; }
.nav-links a {
  display: flex; align-items: center; height: 100%;
  padding: 0 16px; font-size: 13.5px; font-weight: 500;
  color: var(--ink-mid); border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--warm-mid); }
.nav-links a.active { color: var(--rose); border-bottom-color: var(--rose); }

.nav-cta {
  margin-left: 12px; flex-shrink: 0;
  padding: 9px 20px;
  background: var(--rose); color: white !important;
  font-size: 13px !important; font-weight: 600 !important;
  border-radius: var(--r-sm); border-bottom: none !important;
  box-shadow: 0 2px 10px rgba(192,80,95,0.28);
  transition: background 0.18s, box-shadow 0.18s !important;
}
.nav-cta:hover {
  background: var(--rose-dark) !important;
  box-shadow: 0 4px 16px rgba(192,80,95,0.36) !important;
}

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 4.5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 21px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: transform 0.28s, opacity 0.28s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); z-index: 190;
  border-top: 1px solid var(--line);
  padding: 20px var(--gutter) 32px;
  flex-direction: column;
  box-shadow: var(--s3);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--line-warm);
  font-size: 16px; color: var(--ink); font-weight: 400;
}
.nav-drawer a:last-child { border: none; }
.nav-drawer .nav-cta {
  margin: 20px 0 0 0; display: block; text-align: center;
  padding: 13px; border-radius: var(--r-sm);
}

/* ================================================================
   HERO — Cinematic full-height with editorial text
================================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 600px; max-height: 960px;
  overflow: hidden;
  background: var(--plum-deep);
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
  transition: transform 8s ease-out;
}
.hero-slide.active img { transform: scale(1.04); }

/* Gradient — rich, bottom-heavy */
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(16,24,32,0.92) 0%,
      rgba(16,24,32,0.70) 25%,
      rgba(16,24,32,0.28) 55%,
      rgba(16,24,32,0.06) 80%,
      transparent 100%
    ),
    linear-gradient(to right,
      rgba(16,24,32,0.30) 0%,
      transparent 60%
    );
}

/* Content — left-aligned, bottom */
.hero-body {
  position: absolute; z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 0 0 72px;
}
.hero-body .wrap {}

/* Floating tag */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-tag span {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Headline */
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400; color: #fff;
  line-height: 1.08; letter-spacing: -0.02em;
  max-width: 780px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: rgba(255,255,255,0.82); }

.hero-sub {
  font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 560px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* CTA row */
.hero-ctas {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.btn-hero-primary {
  padding: 13px 28px;
  background: var(--rose); color: white;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  border-radius: var(--r-sm); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(192,80,95,0.4);
  transition: background 0.18s, transform 0.14s, box-shadow 0.18s;
  text-decoration: none; display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--rose-dark); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(192,80,95,0.5); color: white;
}
.btn-hero-ghost {
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.88);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.18s, border-color 0.18s;
  text-decoration: none; display: inline-block;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 3;
  height: 2px; background: rgba(255,255,255,0.12); width: 100%;
}
.hero-progress-bar {
  height: 100%; background: var(--rose);
  width: 0%; transition: width 5.5s linear;
}

/* Slide counter */
.hero-counter {
  position: absolute; bottom: 24px; right: 44px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.hero-counter-dots { display: flex; gap: 6px; }
.hero-counter-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer; padding: 0; transition: all 0.25s;
}
.hero-counter-dot.active {
  background: white; width: 20px; border-radius: 3px;
}

/* ================================================================
   METRICS STRIP — warm cream, icon + number + label
================================================================ */
.metrics {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.metrics-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 14px;
}
.metric:last-child { border-right: none; }
.metric-icon {
  width: 40px; height: 40px; flex-shrink: 0; margin-top: 2px;
  background: var(--rose-light); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
}
.metric-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.metric-value {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--ink); line-height: 1; margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.metric-label { font-size: 12px; color: var(--ink-soft); font-weight: 400; line-height: 1.4; }

/* ================================================================
   INTRO — asymmetric editorial split
================================================================ */
.intro {
  padding: 100px 0;
  background: var(--cream);
}
.intro-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 96px; align-items: center;
}
.intro-text {}
.intro-text .eyebrow { color: var(--rose); }
.intro-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400; margin: 8px 0 24px;
  line-height: 1.12;
}
.intro-body { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.intro-body:last-of-type { margin-bottom: 32px; }

/* Quote pull */
.intro-pull {
  border-left: 3px solid var(--rose);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--rose-light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.intro-pull p {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--rose-dark); line-height: 1.5;
}

.intro-photo {
  position: relative;
}
.intro-photo-main {
  border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--s4);
}
.intro-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
/* Floating badge on photo */
.intro-photo-badge {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--s3);
  display: flex; align-items: center; gap: 12px;
}
.badge-star { color: #f5c842; font-size: 13px; letter-spacing: 2px; }
.badge-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.badge-text span   { font-size: 11px; color: var(--ink-soft); }

/* ================================================================
   SERVICES — bento-style grid
================================================================ */
.services {
  padding: 100px 0;
  background: var(--warm);
}
.section-head { margin-bottom: 56px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400; margin-top: 8px;
  line-height: 1.12;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--s1);
  transition: transform 0.32s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.32s ease;
}
.bento-card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: var(--s4);
}

/* Grid positions */
.bento-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.bento-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.bento-card:nth-child(4) { grid-column: 1 / 5; grid-row: 3; }
.bento-card:nth-child(5) { grid-column: 5 / 9; grid-row: 3; }
.bento-card:nth-child(6) { grid-column: 9 / 13; grid-row: 3; }
.bento-card:nth-child(7) { grid-column: 1 / 7; grid-row: 4; }
.bento-card:nth-child(8) { grid-column: 7 / 13; grid-row: 4; }

.bento-img {
  width: 100%; flex-shrink: 0;
  overflow: hidden;
}
.bento-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.55s ease;
}
.bento-card:hover .bento-img img { transform: scale(1.06); }

/* Tall card image */
.bento-card:nth-child(1) .bento-img { height: 55%; }
/* Short card images */
.bento-card:nth-child(2) .bento-img,
.bento-card:nth-child(3) .bento-img { height: 52%; }
.bento-card:nth-child(4) .bento-img,
.bento-card:nth-child(5) .bento-img,
.bento-card:nth-child(6) .bento-img { height: 48%; }
.bento-card:nth-child(7) .bento-img,
.bento-card:nth-child(8) .bento-img { height: 50%; }

.bento-body {
  padding: 20px 22px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.bento-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sage-light); color: var(--sage-dark);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 100px; margin-bottom: 10px;
  align-self: flex-start;
}
.bento-chip.rose { background: var(--rose-light); color: var(--rose-dark); }
.bento-chip.gold { background: var(--gold-light); color: var(--gold); }

.bento-h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--ink); margin-bottom: 8px; line-height: 1.2;
}
/* Bigger headline on large card */
.bento-card:nth-child(1) .bento-h3 { font-size: 22px; }

.bento-p {
  font-size: 13px; line-height: 1.65; color: var(--ink-soft);
  flex: 1;
}

/* ================================================================
   CARE PILLARS — 3-up values with icon
================================================================ */
.pillars {
  padding: 100px 0;
  background: var(--plum);
}
.pillars .section-title { color: white; }
.pillars-eyebrow { color: rgba(255,255,255,0.5) !important; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg); overflow: hidden;
  margin-top: 52px;
}
.pillar {
  background: rgba(255,255,255,0.03);
  padding: 44px 36px;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.06); }
.pillar-num {
  font-family: var(--serif); font-size: 64px; font-weight: 400;
  color: rgba(255,255,255,0.06); line-height: 1;
  margin-bottom: -16px;
}
.pillar-rule { width: 28px; height: 1px; background: var(--rose); margin: 20px 0 18px; }
.pillar-h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: rgba(255,255,255,0.9); margin-bottom: 14px;
}
.pillar-p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ================================================================
   ABOUT — portrait + rich text, alternating bg
================================================================ */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-portrait {
  position: relative;
}
.about-portrait-img {
  border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--s4);
}
.about-portrait-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
/* Caption card */
.about-portrait-cap {
  position: absolute; bottom: -16px; right: -20px;
  background: var(--rose);
  border-radius: var(--r-md);
  padding: 20px 24px; max-width: 200px;
  box-shadow: var(--s3);
}
.about-portrait-cap p {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: rgba(255,255,255,0.92); line-height: 1.4;
}

.about-text h2 { font-size: clamp(28px, 3vw, 44px); margin-top: 8px; margin-bottom: 20px; }
.about-text p { font-size: 15px; margin-bottom: 14px; }

/* Checklist */
.check-list {
  list-style: none; margin: 24px 0 32px;
  display: flex; flex-direction: column;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line-warm);
  font-size: 15px; color: var(--ink-mid);
}
.check-list li:first-child { border-top: 1px solid var(--line-warm); }
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: var(--sage-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--sage); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ================================================================
   GALLERY — editorial mosaic
================================================================ */
.gallery {
  padding: 100px 0;
  background: var(--warm);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1 / 3; border-radius: var(--r-xl); }
.gallery-item:nth-child(2) { grid-column: 5 / 9;  grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 5 / 8;  grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 8 / 13; grid-row: 2; border-radius: var(--r-xl); }

/* ================================================================
   TESTIMONIALS — card carousel style
================================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--s1);
  border: 1px solid var(--line-warm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 22px;
  font-family: var(--serif); font-size: 72px; font-weight: 700;
  color: var(--rose-light); line-height: 1;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--s3); }
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star { color: #f5c842; font-size: 14px; }
.review-text {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink);
  line-height: 1.68; margin-bottom: 22px; position: relative; z-index: 1;
}
.review-author { font-size: 12px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }
.review-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage-light); border-radius: 100px;
  padding: 5px 12px; margin-top: 36px;
  font-size: 12px; color: var(--sage-dark); font-weight: 500;
}

/* ================================================================
   BOOKING — clean two-column form
================================================================ */
.booking {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 72px; align-items: start;
}

/* Calendar */
.cal-panel {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line-warm);
}
.cal-month-label {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
}
.cal-nav-btns { display: flex; gap: 4px; }
.cal-nav-btns button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  cursor: pointer; font-size: 15px; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.cal-nav-btns button:hover { border-color: var(--rose); color: var(--rose); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow  {
  text-align: center; font-size: 11px; font-weight: 600;
  color: var(--ink-soft); letter-spacing: 0.05em;
  text-transform: uppercase; padding: 4px 0 10px;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; border-radius: 50%; cursor: pointer;
  color: var(--ink); transition: background 0.12s, color 0.12s;
  position: relative;
}
.cal-day.other     { color: rgba(22,32,42,0.2); cursor: default; }
.cal-day.today     { font-weight: 700; color: var(--rose); }
.cal-day.today::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%); width: 3px; height: 3px;
  border-radius: 50%; background: var(--rose);
}
.cal-day.available:hover { background: var(--rose-light); color: var(--rose); }
.cal-day.selected  { background: var(--rose); color: white; font-weight: 600; }
.cal-day.selected::after { background: rgba(255,255,255,0.5); }
.cal-day.past, .cal-day.unavailable { color: rgba(22,32,42,0.15); cursor: not-allowed; }

.time-wrap { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-warm); }
.time-label {
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.slot {
  padding: 9px; text-align: center; font-size: 13px; font-weight: 500;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; color: var(--ink-mid); background: var(--white);
  transition: all 0.14s;
}
.slot:hover    { border-color: var(--rose); color: var(--rose); background: var(--rose-light); }
.slot.selected { background: var(--rose); border-color: var(--rose); color: white; }

/* Booking form */
.booking-form-wrap {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--line);
}
.booking-summary {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  padding: 14px 18px; margin-bottom: 22px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 14px; color: var(--sage-dark); line-height: 1.55; display: none;
}
.booking-summary.active { display: block; }
.booking-summary strong { font-weight: 600; display: block; font-size: 14px; margin-bottom: 2px; }

.form-title {
  font-family: var(--serif); font-size: 22px;
  color: var(--ink); margin-bottom: 22px;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-label {
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.form-input {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 11px 14px;
  font-size: 15px; font-family: var(--sans);
  color: var(--ink); outline: none; resize: none;
  transition: border-color 0.15s, box-shadow 0.15s; appearance: none;
}
.form-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192,80,95,0.10);
}
.form-input.textarea { height: 90px; }
.form-btn {
  width: 100%; padding: 13px;
  background: var(--rose); color: white;
  border: none; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; font-family: var(--sans);
  cursor: pointer; margin-top: 6px;
  transition: background 0.18s, transform 0.12s;
  box-shadow: 0 2px 12px rgba(192,80,95,0.28);
}
.form-btn:hover:not(:disabled) { background: var(--rose-dark); transform: translateY(-1px); }
.form-btn:active { transform: scale(0.98); }
.form-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-note a { color: var(--rose); }

/* ================================================================
   CONTACT
================================================================ */
.contact {
  padding: 100px 0;
  background: var(--warm);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 72px; align-items: start;
}
/* Contact details as stacked rows */
.contact-rows { margin-bottom: 28px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line-warm);
}
.contact-row:first-child { border-top: 1px solid var(--line-warm); }
.contact-row-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
}
.contact-row-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-row-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.contact-row-val { font-size: 14px; color: var(--ink); line-height: 1.5; }
.contact-row-val a { color: var(--ink); }
.contact-row-val a:hover { color: var(--rose); }

.map-frame { border-radius: var(--r-lg); overflow: hidden; height: 290px; border: 1px solid var(--line); box-shadow: var(--s2); margin-bottom: 10px; }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.map-note { font-size: 12px; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }
.map-note svg { width: 12px; height: 12px; fill: var(--rose); }

/* Inquiry form */
.inquiry-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--s2);
}

/* ================================================================
   DOWNLOADS
================================================================ */
.downloads {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.downloads-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 44px;
}
.dl-card {
  background: var(--cream);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.22s;
  text-decoration: none; color: inherit;
}
.dl-card:hover {
  border-color: var(--rose); box-shadow: var(--s3);
  transform: translateY(-3px);
}
.dl-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--rose-light); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; color: var(--rose);
}
.dl-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dl-body h3 { font-family: var(--serif); font-size: 18px; color: var(--ink); margin-bottom: 5px; }
.dl-body p  { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 10px; }
.dl-cta { font-size: 12px; font-weight: 600; color: var(--rose); letter-spacing: 0.05em; text-transform: uppercase; display: flex; align-items: center; gap: 4px; }
.dl-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ================================================================
   WHATSAPP FAB
================================================================ */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wa-fab svg { width: 26px; height: 26px; fill: white; }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--plum-deep);
  color: white;
}
.footer-top {
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-top .wrap {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 20px;
  color: white; margin-bottom: 6px;
}
.footer-brand-tag { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom .wrap {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-rating { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 5px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3),
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .bento-card:nth-child(1) { grid-column: 1 / 7; }
  .bento-card:nth-child(2) { grid-column: 7 / 13; }
  .bento-card:nth-child(3) { grid-column: 1 / 7; grid-row: 2; }
  .bento-card:nth-child(4) { grid-column: 7 / 13; grid-row: 2; }
  .bento-card:nth-child(5) { grid-column: 1 / 5; grid-row: 3; }
  .bento-card:nth-child(6) { grid-column: 5 / 9; grid-row: 3; }
  .bento-card:nth-child(7) { grid-column: 9 / 13; grid-row: 3; }
  .bento-card:nth-child(8) { grid-column: 1 / 13; grid-row: 4; flex-direction: row; }
  .bento-card:nth-child(8) .bento-img { width: 40%; height: auto; }
  .bento-card:nth-child(1) .bento-img,
  .bento-card:nth-child(2) .bento-img,
  .bento-card:nth-child(3) .bento-img,
  .bento-card:nth-child(4) .bento-img { height: 44%; }
  .pillars-grid    { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; gap: 44px; }
  .about-portrait-img { aspect-ratio: 16/9; }
  .about-portrait-cap { bottom: -12px; right: 16px; }
  .gallery-mosaic  { grid-template-rows: repeat(2, 200px); }
  .reviews-grid    { grid-template-columns: 1fr; gap: 14px; }
  .booking-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
  .downloads-grid  { grid-template-columns: 1fr; }
  .footer-top .wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --nav-h: 58px; }

  .announce { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero { height: 90vh; min-height: 580px; max-height: none; }
  .hero-h1 { font-size: clamp(34px, 8vw, 52px); }
  .hero-sub { font-size: 15px; }
  .hero-body { padding: 0 0 60px; }
  .hero-counter { right: 20px; bottom: 18px; }

  /* Metrics */
  .metrics-inner { grid-template-columns: 1fr 1fr; }

  /* Intro */
  .intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .intro-photo-main { aspect-ratio: 4/3; }
  .intro-photo-badge { display: none; }

  /* Bento → single column */
  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: auto !important; grid-row: auto !important; }
  .bento-card:nth-child(8) { flex-direction: column; }
  .bento-card:nth-child(8) .bento-img { width: 100%; }
  .bento-card .bento-img { height: 220px !important; }

  /* Gallery */
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1; border-radius: var(--r-md); }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3; border-radius: var(--r-md); }

  /* Footer */
  .footer-top .wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .wrap { flex-direction: column; gap: 8px; text-align: center; }
  .footer-brand-desc { max-width: 100%; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }

  section, .intro, .services, .pillars, .about,
  .gallery, .testimonials, .booking, .contact, .downloads {
    padding: 64px 0;
  }

  .wa-fab { bottom: 16px; right: 16px; width: 46px; height: 46px; }
  .wa-fab svg { width: 23px; height: 23px; }
}

/* ================================================================
   SERVICES v2 — photo-led cards + clinical service index
   Every photo used here is a real photograph taken at the centre.
   Services we cannot honestly illustrate are presented as a
   typographic index rather than with mismatched imagery.
================================================================ */
.svc-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s3);
  border-color: var(--rose);
}
.svc-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--warm);
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card-body .bento-h3 { margin: 2px 0 0; }
.svc-card-body .bento-p { flex: 1; margin: 0; }
.svc-link {
  align-self: flex-start;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.svc-link:hover { border-bottom-color: var(--rose); }

/* --- Clinical service index --- */
.svc-index {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 44px 40px;
}
.svc-index-head { max-width: 620px; margin-bottom: 32px; }
.svc-index-title { font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 8px; }
.svc-index-sub { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid var(--line-warm);
  padding-top: 34px;
}
.svc-item { display: flex; gap: 14px; align-items: flex-start; }
.svc-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--rose);
  background: var(--warm);
}
.svc-ico svg { width: 20px; height: 20px; }
.svc-item h4 { font-size: 16px; margin: 2px 0 4px; }
.svc-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.svc-index-cta {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.svc-index-cta:hover { border-bottom-color: var(--rose); }

@media (max-width: 900px) {
  .svc-featured { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .svc-list { grid-template-columns: repeat(2, 1fr); gap: 24px 28px; }
  .svc-index { padding: 32px 26px 30px; }
}
@media (max-width: 560px) {
  .svc-list { grid-template-columns: 1fr; }
  .svc-card-img { aspect-ratio: 4 / 3; }
}

/* ================================================================
   FAQ — accessible native <details> accordion
================================================================ */
.faq { padding: var(--sec-pad) 0; background: var(--warm); border-top: 1px solid var(--line); }
.faq-list {
  max-width: 860px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rose); }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item[open] summary { color: var(--rose); }
.faq-item p {
  margin: 0;
  padding: 0 48px 26px 0;
  color: var(--ink-mid);
  font-size: 15.5px;
  line-height: 1.75;
  animation: faqIn .28s ease both;
}
.faq-item p a { color: var(--rose); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; }
.faq-item p a:hover { border-bottom-color: var(--rose); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

.faq-foot {
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink-soft);
}
.faq-foot a { color: var(--rose); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; }
.faq-foot a:hover { border-bottom-color: var(--rose); }

@media (max-width: 560px) {
  .faq-item summary { padding-right: 34px; }
  .faq-item p { padding-right: 0; }
}

/* ================================================================
   PLUM BLOCK OVERRIDES
   On the plum grounds (announce bar, pillars band, footer) the
   standard teal is too dark to read. Swap to the bright teal so the
   accent still pops, and keep gold for celebratory marks only.
================================================================ */

/* --- Announce bar --- */
.announce { border-bottom: 1px solid rgba(255,255,255,0.10); }
.announce-inner { color: rgba(255,255,255,0.82); }
.announce strong { color: #fff; }
.announce-dot { background: rgba(255,255,255,0.32); }
.announce-cta { color: var(--teal-bright); }
.announce-cta:hover { color: #fff; }

/* --- Pillars band --- */
.pillars .section-title,
.pillars .pillar-h3 { color: #fff; }
.pillars .pillars-eyebrow { color: var(--teal-bright) !important; }
.pillar-num { color: var(--teal-bright); }
.pillar-rule { background: rgba(255,255,255,0.18); }
.pillar-p { color: rgba(255,255,255,0.72); }
.pillar { border-top-color: rgba(255,255,255,0.16); }

/* --- Footer --- */
footer { color: rgba(255,255,255,0.72); }
.footer-brand-name { color: #fff; }
.footer-brand-tag  { color: var(--teal-bright); }
.footer-brand-desc { color: rgba(255,255,255,0.60); }
.footer-col h4     { color: rgba(255,255,255,0.55); }
.footer-links a    { color: rgba(255,255,255,0.72); }
.footer-links a:hover { color: var(--teal-bright); }
.footer-top, .footer-bottom { border-color: rgba(255,255,255,0.12); }
.footer-bottom { color: rgba(255,255,255,0.45); }

/* --- Stars stay gold everywhere (celebration, not accent) --- */
.star, .badge-star { color: var(--gold); }

/* --- Primary buttons: solid teal, white label --- */
.nav-cta,
.form-btn,
.btn-hero-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.nav-cta:hover,
.form-btn:hover:not(:disabled),
.btn-hero-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
