/* ============================================================
   Custom Circumcision — Shared Design System
   Soft sky-blue · warm terracotta · buttery yellow
   ONE complete stylesheet — styles every class used across
   index / about / faq / testimonials / contact.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Sky blues */
  --sky-100: #eef7fd;
  --sky-200: #cfe6f7;
  --sky-300: #a9cfeb;
  --sky-band: #dcefff;

  /* Terracotta / clay (headings) */
  --clay: #b07d6a;
  --clay-deep: #a8755f;
  --clay-soft: #c9a193;

  /* Buttery yellow (CTAs, dots) */
  --butter: #fbe38a;
  --butter-deep: #f7d96b;
  --butter-soft: #fef3cf;

  /* Text + links */
  --slate: #4a5560;
  --slate-soft: #6b7785;
  --navy: #2f6db0;
  --navy-deep: #255a93;

  /* Neutrals */
  --white: #ffffff;
  --cream: #fffaf3;
  --ink: #34404a;

  /* Cool / muted (hospital side, neutral surfaces) */
  --cool-100: #eef3f7;
  --cool-200: #dde6ee;
  --cool-ink: #5b6672;

  /* Effects */
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(47, 109, 176, 0.08);
  --shadow: 0 14px 34px rgba(47, 109, 176, 0.12);
  --shadow-lg: 0 24px 60px rgba(47, 109, 176, 0.16);
  --shadow-warm: 0 18px 44px rgba(176, 125, 106, 0.18);

  --maxw: 1140px;
  --gutter: 22px;

  --font-head: "Baloo 2", "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", "Quicksand", system-ui, sans-serif;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--clay-deep);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 820px; }

.section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }

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

/* ---------- Section bands ---------- */
/* Generic band wrapper + its colour variants. Default band has
   comfortable vertical padding so even pages that only set a colour
   modifier get proper spacing. */
.band { position: relative; padding: clamp(56px, 8vw, 92px) 0; }

.band--white { background: var(--white); }
.band--soft  { background: var(--sky-100); }
.band--sky   { background: var(--sky-200); }
.band--blue  { background: #eaf4fc; }
.band--cta {
  background:
    radial-gradient(680px 320px at 12% 120%, rgba(251, 227, 138, 0.4), transparent 60%),
    linear-gradient(165deg, var(--sky-300) 0%, var(--sky-200) 100%);
}

/* Legacy colour helpers (kept) */
.band-sky { background: var(--sky-200); }
.band-sky-soft { background: var(--sky-100); }
.band-cream { background: var(--cream); }
.band-white { background: var(--white); }
.band-butter { background: var(--butter-soft); }

/* ---------- Eyebrow + heading cluster ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
/* Auto dot for plain eyebrows. Suppressed when the markup already
   provides its own dot/icon (.eyebrow__dot or an inline <svg>). */
.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--butter-deep);
  box-shadow: 0 0 0 5px var(--butter-soft);
  flex: none;
}
.eyebrow:has(.eyebrow__dot)::before,
.eyebrow:has(svg)::before { content: none; }

/* Explicit little dot used inside some eyebrows */
.eyebrow__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--butter-deep);
  box-shadow: 0 0 0 5px var(--butter-soft);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--slate-soft); font-size: 1.08rem; }
.section-head__sub { color: var(--slate-soft); font-size: 1.08rem; }

/* Section title — used as <h2 class="section-title"> on interior pages */
.section-title { color: var(--clay-deep); }

/* Little sun/dot accents */
.dot-accent {
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--butter-deep), var(--butter));
  margin: 16px auto 0;
}
/* Heading-adjacent dot label */
.heading-dot { display: inline-flex; align-items: center; gap: 10px; }
.heading-dot::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 0 5px rgba(251, 227, 138, 0.3);
  flex: none;
}

/* Floating decorative dots (hero + cta bands) */
.dot {
  position: absolute;
  border-radius: 50%;
  background: var(--butter);
  opacity: 0.85;
  pointer-events: none;
}
.dot--1 { width: 18px; height: 18px; top: 54px; right: 30%; }
.dot--2 { width: 11px; height: 11px; top: 120px; right: 24%; background: var(--butter-deep); }
.dot--3 { width: 26px; height: 26px; bottom: 60px; left: 6%; opacity: 0.6; }
.dot--4 { width: 14px; height: 14px; bottom: 130px; left: 18%; background: var(--butter-deep); opacity: 0.7; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  text-align: center;
}

/* Buttery pill with navy text + folded ribbon corner */
.btn--primary {
  background: linear-gradient(180deg, var(--butter) 0%, var(--butter-deep) 100%);
  color: var(--navy-deep);
  box-shadow: 0 12px 26px rgba(247, 217, 107, 0.5);
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent rgba(255, 255, 255, 0.55) transparent transparent;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(247, 217, 107, 0.6);
  color: var(--navy-deep);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 109, 176, 0.32);
}
.btn--navy:hover { transform: translateY(-3px); background: var(--navy-deep); color: #fff; }

/* Ghost — soft white pill, used as .btn--ghost */
.btn--ghost {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--sky-300);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--navy); color: var(--navy-deep); }

/* Secondary — alias of ghost (used on the home page) */
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--sky-300);
}
.btn--secondary:hover { transform: translateY(-3px); border-color: var(--navy); color: var(--navy-deep); }

.btn--lg { padding: 18px 38px; font-size: 1.1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* Generic action-button rows used across pages */
.hero-actions,
.hero__actions,
.cta-card__actions,
.cta-band__actions,
.cta-panel__actions,
.hero-home__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(169, 207, 235, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 78px;
}

/* Holds the links + cta cluster; on desktop it just lays them in a row */
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--clay-deep);
  line-height: 1.1;
}
.brand:hover { color: var(--clay); }
.brand__mark { flex: none; }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--slate);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: var(--sky-100); color: var(--clay-deep); }
.nav-links a.is-active { background: var(--sky-200); color: var(--clay-deep); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 12px 20px; font-size: 0.96rem; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--navy-deep); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--sky-300);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Wave dividers ---------- */
/* Works three ways used across the pages:
   1) <div class="wave wave--bottom"><svg>…</svg></div>
   2) <svg class="wave wave--bottom">…</svg>
   3) <svg class="wave-divider">…</svg>                         */
.wave,
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(42px, 6vw, 84px);
  margin: 0;
  line-height: 0;
}
.wave svg { display: block; width: 100%; height: 100%; }
svg.wave { height: clamp(42px, 6vw, 84px); }

/* Place dividers flush to the band edges */
.wave--bottom,
.wave--down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
}
.wave--top {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 2;
}
/* When a wave is a plain in-flow block (testimonials uses it between
   sections), let it sit naturally if it isn't inside a positioned band. */
.wave--down { position: relative; bottom: auto; }
.wave--flip svg { transform: scaleY(-1); }

/* Sections that contain absolutely-positioned waves need room + context */
.hero,
.band,
.section,
.cta-band { position: relative; }

/* ---------- Home hero ---------- */
.hero-home {
  position: relative;
  background: linear-gradient(180deg, #eaf4fc 0%, var(--sky-200) 100%);
  overflow: hidden;
}
.hero-home__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 96px;
}
.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.hero-home h1 {
  color: var(--clay-deep);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 18px 0 10px;
}
.hero-home__tag {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--clay);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  margin: 0 0 14px;
}
.hero-home__sub {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 30em;
  margin: 0 0 26px;
}
.hero-home__copy { position: relative; z-index: 1; }
.hero-home__media { position: relative; z-index: 1; }
.hero-home__img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero-home__badge {
  position: absolute;
  left: -14px;
  bottom: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-home__badge strong {
  display: block;
  font-family: var(--font-head);
  color: var(--clay-deep);
  font-size: 1.5rem;
  line-height: 1;
}
.hero-home__badge span { color: var(--slate); font-size: 0.85rem; }

/* ---------- Generic / interior hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(251, 227, 138, 0.5), transparent 60%),
    linear-gradient(180deg, var(--sky-200) 0%, var(--sky-100) 100%);
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}
/* Page-level hero variants (about / faq / testimonials / contact) */
.hero--page { padding-bottom: clamp(56px, 8vw, 96px); }
.hero--compact { padding: clamp(44px, 6vw, 72px) 0 clamp(48px, 7vw, 80px); }
.about-hero { padding-bottom: clamp(56px, 8vw, 96px); }

.hero__inner { max-width: 760px; position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.hero__eyebrow { color: var(--navy); }
.hero h1 { color: var(--clay-deep); margin-bottom: 0.35em; }
.hero__lead,
.lead {
  font-size: 1.18rem;
  color: var(--slate);
  max-width: 62ch;
  margin-bottom: 1.6em;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  background: var(--sky-300);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Floating trust chip on hero image */
.hero__chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--clay-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__chip small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--slate-soft);
  font-size: 0.78rem;
}

/* Trust strip under hero */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.trust-strip li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--slate);
  font-size: 0.98rem;
}
.trust-strip svg { color: var(--clay); flex: none; }

/* ---------- "Dear Parents" letter block ---------- */
.letter {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border: 1px solid rgba(176, 125, 106, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4.5vw, 52px);
  box-shadow: var(--shadow-sm);
}
.letter h2 {
  color: var(--clay-deep);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  margin: 14px 0 8px;
}
.letter__greet {
  font-family: var(--font-head);
  color: var(--clay);
  font-size: 1.5rem;
  margin: 22px 0 16px;
}
.letter p { color: var(--slate); font-size: 1.12rem; line-height: 1.75; margin: 0 0 18px; }
.letter__sign {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--clay);
  font-size: 1.15rem;
  margin-top: 6px;
}

/* ---------- The Signature Comparison ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  position: relative;
  overflow: visible;
}
.compare-card h3 { font-size: clamp(1.3rem, 2.6vw, 1.5rem); margin: 0 0 4px; }
.compare-card .compare-sub { font-size: 0.92rem; margin: 0 0 22px; opacity: 0.85; }
.compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-card li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.compare-card li svg { flex: none; margin-top: 2px; }

/* Cool / muted hospital side */
.compare-card--hospital {
  background: var(--cool-100);
  color: var(--cool-ink);
  border: 1px solid var(--cool-200);
}
.compare-card--hospital h3 { color: var(--cool-ink); }

/* Warm highlighted holistic hero side */
.compare-card--holistic {
  background: linear-gradient(165deg, #fff8e6 0%, #fdf0c9 100%);
  color: var(--slate);
  border: 2px solid var(--butter);
  box-shadow: var(--shadow-warm);
  transform: translateY(-6px);
}
.compare-card--holistic h3 { color: var(--clay-deep); }
.compare-card--holistic::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(251, 227, 138, 0.55), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.compare-card__flag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--butter);
  color: #7a5a18;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px rgba(176, 125, 106, 0.25);
}

/* ---------- Feature / icon cards (home) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(169, 207, 235, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--sky-200);
  color: var(--navy);
  margin-bottom: 16px;
}
/* Alternate warm icon tint (matches the page's nth-child intent) */
.feature-card:nth-child(2) .feature-card__icon,
.feature-card:nth-child(4) .feature-card__icon,
.feature-card:nth-child(6) .feature-card__icon {
  background: var(--butter-soft);
  color: var(--clay);
}
.feature-card--accent .feature-card__icon { background: var(--butter-soft); color: var(--clay-deep); }
.feature-card h3 { color: var(--clay-deep); font-size: 1.22rem; margin: 0 0 8px; }
.feature-card p { color: var(--slate); margin-bottom: 0; font-size: 1rem; line-height: 1.6; }

/* ---------- Value cards (about) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(169, 207, 235, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--sky-200);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--navy);
}
.value-card h3 { color: var(--clay); margin: 0 0 0.5rem; }
.value-card p { margin: 0; color: var(--slate); }

/* ---------- About split (text + figure) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.about-split img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.about-figure { position: relative; margin: 0; }
/* The about page reuses .dot-accent as a round decorative blob behind
   the image; override the pill look in that context. */
.about-figure .dot-accent {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--butter);
  top: -22px;
  left: -22px;
  margin: 0;
  z-index: 0;
}

/* ---------- Feature list (about) ---------- */
.feature-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--slate); }
.feature-list .fdot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--butter);
  margin-top: 6px;
  box-shadow: 0 0 0 5px rgba(251, 227, 138, 0.3);
}
.feature-list b { color: var(--clay); }

/* ---------- Trust card + stats (about) ---------- */
.trust-card {
  background: linear-gradient(180deg, var(--white) 0%, #f4faff 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(169, 207, 235, 0.5);
}
.trust-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1rem; }
.trust-list li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--slate); }
.trust-list .check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--butter);
  display: grid;
  place-items: center;
  color: var(--clay-deep);
  margin-top: 2px;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.stat {
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: 1.4rem 1rem;
  border: 1px solid rgba(169, 207, 235, 0.45);
  box-shadow: var(--shadow-sm);
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span { color: var(--slate); font-size: 0.95rem; }

/* Soft sky info note (about) */
.intro-note {
  background: var(--sky-200);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin-top: 1.8rem;
  color: #355a82;
  font-size: 1.05rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.intro-note svg { flex: 0 0 auto; color: var(--navy); margin-top: 2px; }
.intro-note b { color: var(--navy-deep); }

/* ---------- Testimonial teaser cards (home: .t-card) ---------- */
.t-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto 36px;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(169, 207, 235, 0.4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.t-card__stars { color: var(--butter-deep); margin-bottom: 14px; letter-spacing: 2px; }
.t-card p { color: var(--slate); font-size: 1.04rem; line-height: 1.65; margin: 0 0 18px; font-style: italic; }
.t-card__who { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--clay-deep); }
.t-card__who span { display: block; font-weight: 500; color: var(--slate-soft); font-size: 0.9rem; font-style: normal; }
.t-center { text-align: center; }

/* ---------- Full testimonial cards (testimonials page) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(169, 207, 235, 0.4);
  box-shadow: var(--shadow-sm);
}
.testimonial-card,
.tcard {
  position: relative;
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tcard__quote-mark {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--butter-deep);
  display: block;
  margin-bottom: 0.25rem;
}
.tcard__stars { display: flex; gap: 3px; margin-bottom: 0.4rem; }
.tcard__stars svg { width: 18px; height: 18px; }
.tcard__quote { margin: 0; border: 0; padding: 0; }
.tcard__quote p {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.tcard__meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.1rem; }
.tcard__avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-200);
  color: var(--clay-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.tcard__who { line-height: 1.25; }
.tcard__name { font-family: var(--font-head); font-weight: 800; color: var(--slate); }
.tcard__place { font-size: 0.88rem; color: var(--slate-soft); }

/* Legacy testimonial component (kept, harmless if unused) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

/* Sample-testimonials notice — small, soft, italic, VISIBLE */
.sample-note {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate-soft);
  background: var(--butter-soft);
  border: 1px solid rgba(247, 217, 107, 0.6);
  border-radius: var(--radius);
  padding: 14px 22px;
}
/* Hidden developer-only note (left as-is by the markup's aria-hidden) */
.dev-note { display: none; }

/* ---------- Trust / reassurance strip (testimonials) ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}
.trust-stat {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  border: 1px solid rgba(169, 207, 235, 0.45);
  box-shadow: var(--shadow-sm);
}
.trust-stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--clay-deep);
  line-height: 1.15;
  margin-bottom: 6px;
}
.trust-stat__label { display: block; color: var(--slate-soft); font-size: 0.95rem; }
.trust-note {
  text-align: center;
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--slate);
}

/* ---------- FAQ accordion (button-based, JS max-height) ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(169, 207, 235, 0.5);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item.is-open { border-color: var(--sky-200); box-shadow: var(--shadow); }
.faq-h { margin: 0; font-size: inherit; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--clay-deep);
}
.faq-q:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: -3px;
  border-radius: var(--radius);
}
.faq-q-text { flex: 1; }
.faq-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 0 5px rgba(251, 227, 138, 0.28);
  margin-top: 6px;
}
.faq-icon {
  flex: 0 0 auto;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-200);
  color: var(--navy);
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--butter);
  color: var(--clay-deep);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 22px 48px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-a-inner p { margin: 0 0 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-help {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  color: var(--slate);
}

/* ---------- CTA cards / bands ---------- */
/* Centered CTA card used on faq + testimonials pages */
.cta-card,
.cta-inner,
.cta-panel {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.cta-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4.5vw, 52px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(169, 207, 235, 0.4);
}
.cta-panel .dot-accent,
.cta-card .dot-accent { margin: 0 auto 16px; }
.cta-card__actions,
.cta-panel__actions { justify-content: center; margin-top: 1.6rem; }

/* "Share your story" CTA — slightly narrower centered block */
.share-note { max-width: 760px; }

/* Home closing CTA band (sky, with floating dots) */
.cta-band {
  background: linear-gradient(165deg, var(--sky-300) 0%, var(--sky-200) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--clay-deep); font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin: 0 0 12px; }
.cta-band p { color: #3c5160; font-size: 1.15rem; max-width: 36em; margin: 0 auto 28px; }
.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 24px;
}
.cta-band__phone svg { width: 30px; height: 30px; }
.cta-band__actions { justify-content: center; }

/* Terracotta CTA banner (legacy, kept) */
.cta-banner {
  background:
    radial-gradient(600px 300px at 15% 120%, rgba(251, 227, 138, 0.45), transparent 60%),
    linear-gradient(135deg, var(--clay) 0%, var(--clay-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.92); max-width: 52ch; margin-inline: auto; }

/* ---------- Generic page hero (interior pages, legacy) ---------- */
.page-hero {
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(251, 227, 138, 0.45), transparent 60%),
    linear-gradient(180deg, var(--sky-200), var(--sky-100));
  padding: clamp(48px, 7vw, 76px) 0 clamp(40px, 6vw, 56px);
  text-align: center;
}
.page-hero p { color: var(--slate); max-width: 60ch; margin-inline: auto; font-size: 1.1rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-card {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 34px) clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(169, 207, 235, 0.45);
}
.contact-card--info { background: linear-gradient(160deg, #f4fbff 0%, var(--white) 60%); }
.contact-card .dot-accent { margin: 0 0 14px; }

.contact-info__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--navy);
  text-decoration: none;
  line-height: 1.1;
}
.contact-info__phone svg { flex: 0 0 auto; color: var(--navy); }
.contact-info__phone:hover { color: var(--navy-deep); }

.contact-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.ci-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--clay-deep);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.ci-value { color: var(--slate); font-weight: 600; text-decoration: none; }
a.ci-value:hover { color: var(--navy); }

.contact-reassure {
  margin-top: 26px;
  background: #fff8e1;
  border: 1px solid var(--butter);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.contact-reassure svg { flex: 0 0 auto; color: var(--clay); margin-top: 2px; }
.contact-reassure p { margin: 0; color: var(--slate); font-size: 0.98rem; }
.contact-reassure strong { color: var(--clay-deep); }

/* ---------- Forms ---------- */
/* Shared "field" block (legacy) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--clay-deep);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 2px solid var(--sky-200);
  border-radius: var(--radius-sm);
  background: var(--sky-100);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa6b2; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 109, 176, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.88rem; color: var(--slate-soft); margin-top: 6px; }

/* Contact form fields (.form-field) */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 7px;
  font-size: 0.97rem;
}
.form-field .req { color: var(--clay); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate);
  background: #f7fbff;
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aa6b2; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky-300);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(169, 207, 235, 0.35);
}
.form-field textarea { min-height: 110px; resize: vertical; }

.form-tagline {
  font-family: var(--font-head);
  color: var(--clay-deep);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 0 0 6px;
}
.form-intro { color: var(--slate); margin: 0 0 22px; }
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; margin-top: 4px; }

/* Success / error states (JS toggles .is-shown) */
.form-success {
  display: none;
  background: #eef9ef;
  border: 1px solid #bfe4c4;
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
}
.form-success.is-shown { display: block; }
.form-success h3 { font-family: var(--font-head); color: #4a8d5b; margin: 0 0 8px; font-size: 1.3rem; }
.form-success p { margin: 0; color: var(--slate); }
.fs-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d8f0db;
  color: #4a8d5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.form-error {
  display: none;
  margin-top: 14px;
  color: #b0573f;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.form-error.is-shown { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--sky-100), var(--sky-200));
  color: var(--slate);
  padding: clamp(48px, 6vw, 72px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
  margin-bottom: 36px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand { font-size: 1.3rem; }
.footer__line { color: var(--slate-soft); max-width: 38ch; }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--clay-deep);
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--slate); font-weight: 600; }
.footer-col a:hover { color: var(--navy-deep); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { color: var(--clay); flex: none; }
.footer-bottom {
  border-top: 1px solid rgba(47, 109, 176, 0.18);
  padding-top: 22px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-soft);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .feature-card:hover, .value-card:hover, .tcard:hover { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav: JS toggles .is-open on .nav, panel is .nav-wrap */
@media (max-width: 820px) {
  body { font-size: 17px; }
  .nav-toggle { display: flex; }

  .nav-wrap {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 86px;
    background: var(--white);
    border: 1px solid rgba(169, 207, 235, 0.6);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .nav.is-open .nav-wrap { opacity: 1; visibility: visible; transform: none; }

  .nav-wrap .nav-links {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .nav-links a { text-align: center; padding: 12px; font-size: 1.05rem; }

  .nav-wrap .nav-cta {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 6px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .nav-wrap .nav-cta .btn,
  .nav-wrap .nav-cta .nav-phone { width: 100%; justify-content: center; }

  /* Stack three-up grids earlier on tablets */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid--3 { grid-template-columns: 1fr 1fr; }
  .t-teaser { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-figure { order: -1; }
  .hero-home__inner { grid-template-columns: 1fr; padding: 40px 0 72px; text-align: center; }
  .hero-home__ctas { justify-content: center; }
  .hero-home__sub { margin-left: auto; margin-right: auto; }
  .compare { grid-template-columns: 1fr; }
  .compare-card--holistic { order: -1; transform: none; }
}

@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cards-grid--3 { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

@media (max-width: 560px) {
  .faq-a-inner { padding-left: 24px; }
  .faq-q { font-size: 1rem; padding: 18px 18px; }
}

@media (max-width: 480px) {
  .trust-row { grid-template-columns: 1fr; }
  .contact-card { padding: 26px 22px; }
}
