/* ============================================================
   NAARI HOSPITAL — DESIGN SYSTEM
   "Cells of Care" — a honeycomb-derived visual language
   Display: Fraunces · Body: Figtree
   ============================================================ */

:root {
  /* Brand core (sampled from logo hexagon) */
  --rose: #B67C73;
  --rose-d: #9A5F55;
  --rosewood: #7C453C;
  --rosewood-d: #4A2823;
  --plum: #986B7E;
  --plum-d: #7C5265;
  --honey: #BE8D3E;
  --honey-d: #9C7230;

  /* Surfaces (rose-tinted, never generic beige) */
  --porcelain: #FBF6F3;
  --white: #FFFFFF;
  --blush: #F5E7E2;
  --blush-soft: #F8EFEB;

  /* Text (warm-tinted hierarchy) */
  --ink: #2B1B17;
  --t2: #5C4740;
  --t3: #8C736B;
  --t4: #C2ACA5;

  /* Lines & shadows (rose-tinted) */
  --border: rgba(124, 69, 60, 0.14);
  --border-s: rgba(43, 27, 23, 0.07);
  --shadow-s: 0 2px 16px rgba(124, 69, 60, 0.07);
  --shadow-m: 0 10px 40px rgba(124, 69, 60, 0.12);
  --shadow-l: 0 24px 64px rgba(124, 69, 60, 0.16);

  /* Accent slots — overridden by .theme-* wrappers */
  --accent: var(--rose);
  --accent-d: var(--rose-d);
  --accent-deep: var(--rosewood);
  --accent-tint: rgba(182, 124, 115, 0.1);
  --accent-tint-s: rgba(182, 124, 115, 0.06);

  /* Shape */
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --hex: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.35, 0.62, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type */
  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Figtree', system-ui, -apple-system, sans-serif;

  --nav-h: 76px;
  --strip-h: 40px;
}

/* Specialty theming */
.theme-rose  { --accent: var(--rose);  --accent-d: var(--rose-d);  --accent-deep: var(--rosewood); --accent-tint: rgba(182,124,115,.1);  --accent-tint-s: rgba(182,124,115,.06); }
.theme-plum  { --accent: var(--plum);  --accent-d: var(--plum-d);  --accent-deep: #63404F;         --accent-tint: rgba(152,107,126,.11); --accent-tint-s: rgba(152,107,126,.06); }
.theme-honey { --accent: var(--honey); --accent-d: var(--honey-d); --accent-deep: #7E5B26;         --accent-tint: rgba(190,141,62,.12);  --accent-tint-s: rgba(190,141,62,.07); }
.theme-sage  { --accent: #7E9A86;      --accent-d: #5E7D6A;        --accent-deep: #47614F;         --accent-tint: rgba(126,154,134,.13); --accent-tint-s: rgba(126,154,134,.07); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--t2);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
/* Decorative hexes may bleed past their panels — never let them widen the page */
main { overflow-x: clip; }
/* height:auto is REQUIRED here. Every <img> carries intrinsic width/height
   attributes (for zero CLS); without this, any rule that sets width but not
   height lets the raw height attribute through and the image stretches.
   Specificity keeps the deliberate crops (.portrait-crop, .doc-thumb,
   .hex-panel-main) working, since those set height explicitly. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); }
strong { font-weight: 600; color: var(--ink); }
::selection { background: rgba(182, 124, 115, 0.25); }
:focus-visible { outline: 2px solid var(--rosewood); outline-offset: 3px; border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; }
.section-tight { padding: 84px 0; }
.bg-white { background: var(--white); }
.bg-blush { background: linear-gradient(180deg, var(--blush-soft), var(--porcelain)); }

/* Honeycomb textures (drawn, tileable) */
.hex-texture-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='72'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.09'%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(20,36)'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(20,-36)'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(-20,36)'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(-20,-36)'/%3E%3C/g%3E%3C/svg%3E");
}
.hex-texture-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='72'%3E%3Cg fill='none' stroke='%237C453C' stroke-opacity='0.06'%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(20,36)'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(20,-36)'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(-20,36)'/%3E%3Cpath d='M20 0l20 12v24L20 48 0 36V12z' transform='translate(-20,-36)'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Type components ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent-d);
}
.eyebrow::before {
  content: ''; width: 8px; height: 9px; flex: none;
  clip-path: var(--hex); background: var(--accent);
}
.eyebrow-center { justify-content: center; width: 100%; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.12; letter-spacing: -0.005em;
  margin-top: 18px;
}
.section-title em, .page-title em, .hero-title em, .cta-title em, .story-line em {
  font-style: italic; font-weight: 500; color: var(--accent-d);
}
.section-sub { margin-top: 18px; font-size: 1.05rem; font-weight: 300; color: var(--t3); max-width: 580px; }
.section-head.centered .section-sub { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.12rem; font-weight: 300; line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease,
              background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform 0.25s var(--ease-spring); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 6px 22px rgba(124, 69, 60, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124, 69, 60, 0.38); }
.btn-outline { border: 1.5px solid rgba(124, 69, 60, 0.32); color: var(--rosewood); }
.btn-outline:hover { background: var(--rosewood); border-color: var(--rosewood); color: #fff; transform: translateY(-2px); }
.btn-glass {
  background: rgba(255, 255, 255, 0.12); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--rosewood); box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600; color: var(--accent-d);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-spring); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Hex primitives ---------- */
.hexchip {
  width: 50px; height: 58px; flex: none;
  clip-path: var(--hex);
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-tint), var(--accent-tint-s));
  color: var(--accent-d);
}
.hexchip svg { width: 24px; height: 24px; }
.hexchip-solid { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; }
.hexchip-lg { width: 64px; height: 74px; }
.hexchip-lg svg { width: 30px; height: 30px; }

/* Hexagonal frame (portraits / feature art) */
.hexframe { position: relative; width: 230px; }
.hexframe::before {
  content: ''; position: absolute; inset: 0;
  transform: translate(12px, 12px);
  clip-path: var(--hex);
  background: var(--accent-tint);
}
.hexframe-inner {
  position: relative; clip-path: var(--hex);
  aspect-ratio: 1 / 1.155; width: 100%;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(150deg, var(--blush), #fff 70%);
}
.hexframe-inner img { width: 100%; height: 100%; object-fit: cover; }
/* Portrait images with a baked-in name plate at the bottom: overshoot the
   frame height and pin to the top so the plate stays outside the clip */
.hexframe-inner img.crop-plate, .hex-panel-main img.crop-plate, .scatter-hex img.crop-plate {
  width: 100%; height: 132%; object-fit: cover; object-position: top center;
  align-self: start; justify-self: center;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
}
.utility-strip {
  background: var(--rosewood-d); color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem; overflow: hidden;
  max-height: var(--strip-h);
  transition: max-height 0.35s var(--ease-out);
}
.utility-inner {
  height: var(--strip-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.utility-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.utility-item svg { width: 13px; height: 13px; opacity: 0.7; flex: none; }
.utility-item a:hover { color: #fff; }
.utility-right { display: flex; gap: 22px; }

.main-nav {
  background: rgba(251, 246, 243, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; color: var(--t2);
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(124, 69, 60, 0.07); color: var(--rosewood); }
.nav-links a[aria-current="page"] { background: rgba(124, 69, 60, 0.09); color: var(--rosewood); font-weight: 600; }
.nav-cta { flex: none; }
.nav-cta .btn { padding: 12px 24px; font-size: 0.86rem; }

.site-header.scrolled .utility-strip { max-height: 0; }
.site-header.scrolled .main-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border-s);
  box-shadow: 0 8px 32px rgba(124, 69, 60, 0.08);
}

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink); margin: 2.5px 0; transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 290;
  background: rgba(43, 27, 23, 0.4);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 300;
  width: min(370px, 88vw);
  background: linear-gradient(165deg, #FDFAF8, var(--blush-soft));
  box-shadow: -24px 0 64px rgba(43, 27, 23, 0.18);
  transform: translateX(105%);
  transition: transform 0.42s var(--ease-out);
  display: flex; flex-direction: column;
  padding: 28px 34px 34px;
  overflow-y: auto;
}
.drawer-open .drawer-scrim { opacity: 1; pointer-events: auto; }
.drawer-open .mobile-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer-head img { height: 40px; width: auto; }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(124, 69, 60, 0.08); color: var(--rosewood); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
  padding: 13px 0; border-bottom: 1px solid var(--border-s);
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transform: translateX(18px);
}
.drawer-links a svg { width: 17px; height: 17px; color: var(--t4); }
.drawer-links a[aria-current="page"] { color: var(--rose-d); font-style: italic; }
.drawer-open .drawer-links a {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.45s var(--ease-spring);
}
.drawer-open .drawer-links a:nth-child(1) { transition-delay: 0.08s; }
.drawer-open .drawer-links a:nth-child(2) { transition-delay: 0.13s; }
.drawer-open .drawer-links a:nth-child(3) { transition-delay: 0.18s; }
.drawer-open .drawer-links a:nth-child(4) { transition-delay: 0.23s; }
.drawer-open .drawer-links a:nth-child(5) { transition-delay: 0.28s; }
.drawer-open .drawer-links a:nth-child(6) { transition-delay: 0.33s; }
.drawer-open .drawer-links a:nth-child(7) { transition-delay: 0.38s; }
.drawer-foot { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.drawer-foot .btn { width: 100%; }
.drawer-tel { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 600; color: var(--rosewood); justify-content: center; }
.drawer-tel svg { width: 15px; height: 15px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--strip-h) + var(--nav-h) + 72px) 0 0;
  background:
    radial-gradient(720px 480px at 88% 12%, rgba(182, 124, 115, 0.14), transparent 60%),
    radial-gradient(560px 420px at 4% 92%, rgba(190, 141, 62, 0.1), transparent 55%),
    linear-gradient(168deg, #FDF9F7, #FAF2EE 55%, #F7EBE5);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(124, 69, 60, 0.12);
  box-shadow: var(--shadow-s);
  font-size: 0.8rem; font-weight: 500; color: var(--t2);
}
.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); flex: none; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--rose); opacity: 0.7;
  animation: ping 2.6s var(--ease-out) infinite;
}
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.8; } 80%, 100% { transform: scale(1.5); opacity: 0; } }
.hero-title {
  margin-top: 26px;
  font-size: clamp(2.7rem, 5.4vw, 4.5rem);
  line-height: 1.06; letter-spacing: -0.012em;
}
.hero-sub { margin-top: 24px; font-size: 1.1rem; font-weight: 300; line-height: 1.75; color: var(--t2); max-width: 520px; }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
/* Hero panel — dark rosewood editorial card */
.hero-panel {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); padding: 52px 46px;
  background: linear-gradient(150deg, #33201B, #5C3129 55%, #8A4F45);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-l);
}
.hero-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px 300px at 85% 8%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-panel-tag {
  display: inline-block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #EFC9A6;
  border: 1px solid rgba(239, 201, 166, 0.4); border-radius: 999px; padding: 7px 14px;
}
.hero-panel-mark { font-family: var(--serif); font-size: 4.6rem; line-height: 1; color: #fff; margin-top: 26px; }
.hero-panel-mark small {
  display: block; font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-top: 12px;
}
.hero-panel-div { height: 1px; background: rgba(255, 255, 255, 0.16); margin: 30px 0; }
.hero-panel-stats { display: flex; gap: 44px; position: relative; }
.hero-panel-stats b { display: block; font-family: var(--serif); font-weight: 600; font-size: 2.4rem; color: #fff; line-height: 1; }
.hero-panel-stats b i { font-style: normal; font-size: 1.3rem; }
.hero-panel-stats span { font-size: 0.74rem; color: rgba(255, 255, 255, 0.6); display: block; margin-top: 8px; }
.hero-panel-foot { margin-top: 26px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); position: relative; }

/* Team photo frame */
.team-photo {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-m);
  background: var(--blush-soft);
}
.team-photo img { width: 100%; display: block; }
.team-photo.wide img { max-height: 580px; object-fit: cover; object-position: center 22%; }

/* Portrait cards — doctors' photos are never hex-clipped */
.portrait-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-m);
  background: var(--blush-soft);
}
.portrait-card img { width: 100%; display: block; }
/* Cropped variant: hides the name plate baked into the bottom of the file */
.portrait-crop {
  position: relative; overflow: hidden; aspect-ratio: 1 / 1;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-s); background: var(--blush-soft);
}
.portrait-crop img { width: 100%; height: 132%; object-fit: cover; object-position: top center; display: block; }
.portrait-caption {
  display: flex; gap: 12px; align-items: center; margin-top: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 13px 17px; box-shadow: var(--shadow-s); text-align: left;
}
.portrait-caption svg { width: 20px; height: 20px; color: var(--accent-d); flex: none; }
.portrait-caption b { display: block; font-size: 0.92rem; color: var(--ink); line-height: 1.3; }
.portrait-caption span { font-size: 0.76rem; color: var(--t3); }

/* Services marquee */
.svc-marquee {
  margin-top: 84px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 18px 0;
}
/* Track gap matches the gap inside each item, so every separator hexagon sits
   exactly midway between the two service names it divides */
.svc-track { display: flex; gap: 26px; width: max-content; animation: svcScroll 30s linear infinite; }
.svc-marquee:hover .svc-track { animation-play-state: paused; }
.svc-track span {
  display: inline-flex; align-items: center; gap: 26px; line-height: 1;
  font-family: var(--serif); font-size: 1.22rem; color: var(--t2); white-space: nowrap;
}
/* Nudge up: the line box carries descender space below the baseline, so true
   centring reads low against the cap height of the serif */
.svc-track span::after {
  content: ''; width: 11px; height: 13px; flex: none;
  clip-path: var(--hex); background: var(--rose); opacity: 0.6;
  transform: translateY(-0.1em);
}
@keyframes svcScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hive-float { animation: hiveFloat 9s ease-in-out infinite alternate; }
.hive-float-slow { animation: hiveFloat 13s ease-in-out infinite alternate; animation-delay: -4s; }
@keyframes hiveFloat { from { transform: translateY(0); } to { transform: translateY(-12px); } }
/* Load choreography */
.hero .rise { opacity: 0; animation: fadeUp 0.85s var(--ease-out) forwards; }
.hero .rise-1 { animation-delay: 0.2s; }
.hero .rise-2 { animation-delay: 0.38s; }
.hero .rise-3 { animation-delay: 0.55s; }
.hero .rise-4 { animation-delay: 0.72s; }
.hero .rise-5 { animation-delay: 0.95s; }
.hero-panel.rise { animation-delay: 0.5s; animation-duration: 1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--strip-h) + var(--nav-h) + 64px) 0 76px;
  background:
    radial-gradient(640px 420px at 90% 0%, var(--accent-tint), transparent 62%),
    linear-gradient(168deg, #FDF9F7, #F9F0EC 60%, #F7EBE5);
}
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--t3); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--rosewood); }
.breadcrumb .sep { color: var(--t4); }
.breadcrumb .current { color: var(--accent-d); font-weight: 500; }
.page-title { font-size: clamp(2.5rem, 5vw, 4.1rem); line-height: 1.07; letter-spacing: -0.01em; }
.page-lead { margin-top: 22px; font-size: 1.1rem; font-weight: 300; line-height: 1.75; color: var(--t2); max-width: 560px; }
.page-hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero-aside { position: relative; display: flex; justify-content: center; }

/* Scatter hero (floating hex cluster — pediatrics) */
.scatter-stage { position: relative; height: 460px; }
.scatter-hex { position: absolute; clip-path: var(--hex); display: grid; place-items: center; text-align: center; }
.sc-main { width: 200px; height: 231px; left: 22%; top: 6%; background: linear-gradient(150deg, var(--rosewood), var(--rose) 62%, #D6A79E); }
.sc-main svg { width: 56%; }
.sc-blush { width: 104px; height: 120px; right: 7%; top: 0; background: var(--blush); }
.sc-soft { width: 78px; height: 90px; left: 5%; bottom: 24%; background: rgba(182, 124, 115, 0.3); }
.sc-badge { width: 124px; height: 143px; right: 15%; bottom: 6%; background: #fff; border: 1px solid var(--border); }
.sc-badge b { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--rosewood); display: block; line-height: 1; }
.sc-badge span { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); display: block; margin-top: 5px; }
.scatter-stage .drift-hex svg { display: block; }

/* Centered page-hero variant (gynecology) */
.page-hero.centered { text-align: center; }
.page-hero.centered .breadcrumb { justify-content: center; }
.page-hero.centered .page-title { max-width: 760px; margin-left: auto; margin-right: auto; }
.page-hero.centered .page-lead { margin: 22px auto 0; }
.page-hero.centered .page-hero-ctas { justify-content: center; }
.hero-trustline {
  margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: center;
  font-size: 0.88rem; color: var(--t2);
}
.hero-trustline span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trustline svg { width: 15px; height: 15px; color: var(--accent-d); flex: none; }
.hero-corner { position: absolute; pointer-events: none; }

/* "Your doctors" strip (bottom of specialty pages) */
.doc-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr)); gap: 24px; }
.doc-strip-card {
  display: flex; align-items: center; gap: 30px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 30px 38px;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease, border-color 0.28s ease;
}
.doc-strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: rgba(124, 69, 60, 0.24); }
.doc-thumb { width: 148px; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; flex: none; background: var(--blush-soft); }
.doc-thumb img { width: 100%; height: 132%; object-fit: cover; object-position: top center; display: block; }
.doc-strip-card b { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--ink); display: block; line-height: 1.2; }
.doc-strip-card p { font-size: 1rem; font-weight: 300; color: var(--t3); margin-top: 8px; max-width: 480px; }
.doc-strip-card .link-arrow { margin-left: auto; flex: none; font-size: 1rem; }
.doc-strip-card .link-arrow .lbl { display: inline; }
@media (max-width: 640px) {
  .doc-strip-card { flex-wrap: wrap; padding: 24px 24px; gap: 20px; }
  .doc-thumb { width: 108px; }
  .doc-strip-card b { font-size: 1.35rem; }
  .doc-strip-card .link-arrow { margin-left: 128px; }
}

/* Decorative drifting outline hexes for heroes */
.drift-hex { position: absolute; pointer-events: none; opacity: 0.5; }
.drift-hex svg { display: block; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform 0.32s var(--ease-spring), box-shadow 0.32s ease, border-color 0.32s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: rgba(124, 69, 60, 0.26); }
.card h3 { font-size: 1.4rem; margin: 20px 0 10px; }
.card p { font-size: 0.95rem; font-weight: 300; color: var(--t3); }

/* Specialty feature cards (home) */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spec-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 38px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.32s var(--ease-spring), box-shadow 0.32s ease, border-color 0.32s ease;
}
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}
.spec-card::after {
  content: ''; position: absolute; right: -44px; top: -52px;
  width: 130px; height: 150px; clip-path: var(--hex);
  background: var(--accent-tint-s);
  transition: transform 0.4s var(--ease-out);
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: rgba(124, 69, 60, 0.24); }
.spec-card:hover::after { transform: scale(1.18) rotate(8deg); }
.spec-card h3 { font-size: 1.6rem; margin: 24px 0 12px; }
.spec-card > p { font-size: 0.95rem; font-weight: 300; color: var(--t3); margin-bottom: 20px; }
.spec-list { margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
.spec-list li { display: flex; align-items: baseline; gap: 10px; font-size: 0.9rem; color: var(--t2); }
.spec-list li::before {
  content: ''; width: 6px; height: 7px; flex: none;
  clip-path: var(--hex); background: var(--accent); transform: translateY(-1px);
}
.spec-card .link-arrow { margin-top: auto; }

/* Flush grid ("table" of cells with internal hairlines) */
.flush-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; background: var(--white);
}
.flush-cell { padding: 36px 30px; border-right: 1px solid var(--border-s); transition: background-color 0.25s ease; }
.flush-cell:nth-child(4n) { border-right: none; }
.flush-cell:nth-child(n+5) { border-top: 1px solid var(--border-s); }
.flush-cell:hover { background: var(--accent-tint-s); }
.flush-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.flush-grid.cols-3 .flush-cell { border-right: 1px solid var(--border-s); border-top: none; }
.flush-grid.cols-3 .flush-cell:nth-child(3n) { border-right: none; }
.flush-grid.cols-3 .flush-cell:nth-child(n+4) { border-top: 1px solid var(--border-s); }
.flush-cell h3 { font-size: 1.22rem; margin: 18px 0 8px; }
.flush-cell p { font-size: 0.88rem; font-weight: 300; color: var(--t3); }

/* Stats band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); overflow: hidden; }
.stat-cell { padding: 40px 28px; text-align: center; border-right: 1px solid var(--border-s); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-weight: 600; font-size: 2.9rem; line-height: 1; color: var(--rosewood); }
.stat-num sub, .stat-num span { font-size: 1.4rem; }
.stat-lbl { margin-top: 12px; font-size: 0.82rem; color: var(--t3); }

/* ---------- Dark band (brand story / CTA) ---------- */
.dark-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #3B211C, #6B3A31 55%, var(--rose-d));
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--r-xl);
}
.dark-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(560px 380px at 84% 20%, rgba(255, 255, 255, 0.1), transparent 55%);
  pointer-events: none;
}
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band .eyebrow { color: #E9C9B8; }
.dark-band .eyebrow::before { background: #E9C9B8; }
.dark-band .section-title em, .dark-band .cta-title em { color: #EFC9A6; }

.cta-band { padding: 84px 64px; text-align: center; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-top: 18px; }
.cta-sub { margin-top: 18px; font-weight: 300; color: rgba(255, 255, 255, 0.75); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-note { margin-top: 26px; font-size: 0.84rem; color: rgba(255, 255, 255, 0.6); }
.cta-note a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; text-underline-offset: 3px; }
.cta-note a:hover { color: #fff; }

/* Brand story band (નારી) */
.story-band { padding: 92px 72px; }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.story-mark {
  font-family: var(--serif); font-size: clamp(5rem, 9vw, 8rem); line-height: 1;
  color: rgba(255, 255, 255, 0.94);
}
.story-mark small { display: block; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-top: 18px; }
.story-line { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.4; color: rgba(255, 255, 255, 0.92); }
.story-line em { color: #EFC9A6; }
.story-body { margin-top: 22px; font-weight: 300; color: rgba(255, 255, 255, 0.72); }

/* ---------- Doctors ---------- */
.doctor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.doctor-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.doctor-grid.cols-3 .doctor-card {
  grid-template-columns: 1fr; text-align: center;
  justify-items: center; padding: 36px 28px; gap: 24px;
}
.doctor-grid.cols-3 .hexframe { width: 168px; }
.doctor-grid.cols-3 .doctor-tags { justify-content: center; }
.doctor-card {
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 40px 38px;
  transition: transform 0.32s var(--ease-spring), box-shadow 0.32s ease, border-color 0.32s ease;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: rgba(124, 69, 60, 0.24); }
.doctor-card .hexframe { width: 190px; }
.doctor-initials { font-family: var(--serif); font-weight: 500; font-size: 2.6rem; color: var(--rosewood); }
.doctor-name { font-size: 1.55rem; }
.doctor-quals { margin-top: 6px; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em; color: var(--rose-d); text-transform: uppercase; }
.doctor-role { margin-top: 12px; font-size: 0.93rem; font-weight: 300; color: var(--t3); }
.doctor-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.doctor-tags span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t2); background: var(--blush-soft); border: 1px solid var(--border-s);
  padding: 6px 12px; border-radius: 999px;
}

/* Doctor page — full profile */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.profile .hexframe { width: 300px; margin: 0 auto; }
.profile-quote {
  margin-top: 44px; position: relative;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 30px 26px; font-family: var(--serif); font-style: italic;
  font-size: 1.08rem; line-height: 1.6; color: var(--t2);
}
.profile-quote::before {
  content: '\201C'; position: absolute; top: -8px; left: 22px;
  font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--rose); opacity: 0.5;
}
.profile-quote cite { display: block; margin-top: 14px; font-family: var(--sans); font-style: normal; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-d); }
.profile h2 { font-size: 2.1rem; }
.profile-body { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; font-weight: 300; line-height: 1.8; }
.cred-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.cred-list li { display: flex; gap: 14px; align-items: flex-start; }
.cred-list .hexchip { width: 38px; height: 44px; }
.cred-list .hexchip svg { width: 18px; height: 18px; }
.cred-list b { display: block; font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.cred-list span { font-size: 0.86rem; font-weight: 300; color: var(--t3); }

/* ---------- Feature rows (alternating) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-row + .feature-row { margin-top: 96px; }
.feature-row.flip .feature-art { order: 2; }
.feature-art { position: relative; display: flex; justify-content: center; }
.feature-body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 18px; }
.feature-body > p { margin-top: 16px; font-weight: 300; line-height: 1.8; }
.feature-points { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
/* Text flows inline; the hex bullet is positioned, not a flex item.
   (As a flex row, a leading <b> became its own column and the rest of
   the sentence a second one — which broke every dark "what we treat" card.) */
.feature-points li { position: relative; padding-left: 19px; font-size: 0.96rem; line-height: 1.62; }
.feature-points li::before {
  content: ''; position: absolute; left: 0; top: 0.58em;
  width: 7px; height: 8px;
  clip-path: var(--hex); background: var(--accent);
}
.feature-points b { font-weight: 600; color: var(--ink); }

/* On a dark band, the bold lead-in inherited var(--ink) — near-black on a
   dark rosewood gradient, roughly 1.6:1 contrast. Scoped tightly to
   .feature-points so bold text inside the white cards that sit alongside
   dark bands is left alone. */
.dark-band .feature-points li { color: rgba(255, 255, 255, 0.86); }
.dark-band .feature-points b,
.dark-band .feature-points strong,
.dark-band .story-body strong,
.dark-band .cta-sub strong { color: #fff; }
.dark-band .feature-points li::before { background: #EFC9A6; }

/* Large hex art panel (feature illustrations) */
.hex-panel { position: relative; width: min(430px, 100%); }
.hex-panel-main {
  clip-path: var(--hex); aspect-ratio: 1/1.155;
  background: linear-gradient(150deg, var(--accent-deep), var(--accent) 68%, #E3BCB2);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.hex-panel-main img { width: 100%; height: 100%; object-fit: cover; }
.hex-panel-main .cell-art { width: 54%; }
.hex-panel-badge {
  position: absolute; right: -6px; bottom: 8px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9); border-radius: var(--r);
  box-shadow: var(--shadow-m);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
}
.hex-panel-badge svg { width: 20px; height: 20px; color: var(--accent-d); flex: none; }
.hex-panel-badge b { display: block; font-size: 0.9rem; color: var(--ink); line-height: 1.3; }
.hex-panel-badge span { font-size: 0.76rem; color: var(--t3); }
.hex-panel .drift-hex { z-index: -1; }

/* Journey steps (a true sequence) */
.journey { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); overflow: hidden; }
.journey-step { counter-increment: step; padding: 34px 26px; border-right: 1px solid var(--border-s); position: relative; transition: background-color 0.25s ease; }
.journey-step:last-child { border-right: none; }
.journey-step:hover { background: var(--accent-tint-s); }
.journey-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--accent);
  display: block;
}
.journey-step h3 { font-size: 1.12rem; margin: 14px 0 8px; font-family: var(--sans); font-weight: 600; }
.journey-step p { font-size: 0.85rem; font-weight: 300; color: var(--t3); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 0 28px; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: rgba(124, 69, 60, 0.28); box-shadow: var(--shadow-s); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-family: var(--serif); font-size: 1.14rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 27px; height: 31px; flex: none; clip-path: var(--hex);
  background: var(--accent-tint); display: grid; place-items: center;
  transition: transform 0.3s var(--ease-out), background-color 0.25s ease;
}
.faq-chevron svg { width: 13px; height: 13px; color: var(--accent-d); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--accent); }
.faq-item[open] .faq-chevron svg { color: #fff; }
.faq-body { padding: 0 0 24px; font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--t3); max-width: 640px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 26px; align-items: start; }
.info-stack { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 28px;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-s); }
.info-card h3 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; }
.info-card p { margin-top: 6px; font-size: 0.92rem; font-weight: 300; color: var(--t3); line-height: 1.6; }
.info-card a { color: var(--rosewood); font-weight: 500; }
.info-card a:hover { text-decoration: underline; text-underline-offset: 3px; }

.quick-card { padding: 34px 32px; border-radius: var(--r-lg); }
.quick-card h3 { font-size: 1.5rem; }
.quick-card p { margin-top: 10px; font-size: 0.92rem; font-weight: 300; color: rgba(255, 255, 255, 0.75); }
.quick-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.quick-actions a {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r); padding: 15px 18px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.25s ease, transform 0.25s var(--ease-spring);
}
.quick-actions a:hover { background: rgba(255, 255, 255, 0.2); transform: translateX(4px); }
.quick-actions svg { width: 19px; height: 19px; flex: none; }
.quick-actions b { display: block; font-size: 0.92rem; color: #fff; }
.quick-actions span { font-size: 0.76rem; color: rgba(255, 255, 255, 0.65); }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px 42px; box-shadow: var(--shadow-s); }
.form-card h2 { font-size: 1.9rem; }
.form-card > p { margin-top: 10px; font-size: 0.94rem; font-weight: 300; color: var(--t3); }
.form-grid { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--t2); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--porcelain); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 13px 16px; width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%237C453C' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose-d); background: #fff;
  box-shadow: 0 0 0 4px rgba(182, 124, 115, 0.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--t4); }
.form-foot { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--t3); font-weight: 300; }
.form-status { margin-top: 18px; font-size: 0.9rem; padding: 14px 18px; border-radius: 12px; display: none; }
.form-status.show { display: block; }
.form-status.info { background: rgba(190, 141, 62, 0.12); border: 1px solid rgba(190, 141, 62, 0.3); color: #7E5B26; }

.map-frame {
  border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-m); background: var(--blush-soft);
}
.map-frame iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- Footer (warm & light — deliberately not black) ---------- */
.site-footer {
  margin-top: 24px;
  background: linear-gradient(180deg, var(--porcelain), var(--blush-soft) 45%, var(--blush));
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.footer-tagline {
  padding: 72px 0 56px; border-bottom: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.footer-tagline h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.18; max-width: 640px; }
.footer-tagline h2 em { font-style: italic; font-weight: 500; color: var(--rose-d); }
.footer-grid { padding: 60px 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { height: 46px; width: auto; }
.footer-brand p { margin-top: 18px; font-size: 0.9rem; font-weight: 300; color: var(--t3); max-width: 300px; }
.footer-col h3 { font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rosewood); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--t2); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col a:hover { color: var(--rosewood); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; color: var(--t2); }
.footer-contact svg { width: 15px; height: 15px; color: var(--rose-d); flex: none; margin-top: 4px; }
.footer-contact a:hover { color: var(--rosewood); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 26px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 0.8rem; color: var(--t3);
}
.footer-bottom a:hover { color: var(--rosewood); }
.footer-hexes { position: absolute; right: -60px; bottom: -80px; width: 380px; height: 300px; opacity: 0.45; pointer-events: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s ease, transform 0.75s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }
.reveal-d4 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  /* Team photo on mobile/tablet: same wide image as desktop, complete and
     uncropped, inside its rounded bordered frame */
  .team-photo.wide img { max-height: none; height: auto; width: 100%; object-fit: contain; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-panel { max-width: 560px; margin: 0 auto; }
  .spec-grid { grid-template-columns: 1fr; }
  .flush-grid, .flush-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .flush-grid .flush-cell:nth-child(2n), .flush-grid.cols-3 .flush-cell:nth-child(2n) { border-right: none; }
  .flush-grid .flush-cell:nth-child(2n+1), .flush-grid.cols-3 .flush-cell:nth-child(2n+1) { border-right: 1px solid var(--border-s); }
  .flush-grid .flush-cell:nth-child(n+3), .flush-grid.cols-3 .flush-cell:nth-child(n+3) { border-top: 1px solid var(--border-s); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border-s); }
  .journey { grid-template-columns: 1fr; }
  .journey-step { border-right: none; border-bottom: 1px solid var(--border-s); }
  .journey-step:last-child { border-bottom: none; }
  .doctor-grid, .doctor-grid.cols-3 { grid-template-columns: 1fr; }
  .feature-row, .profile, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .scatter-stage { max-width: 560px; margin: 0 auto; }
  .feature-row.flip .feature-art { order: 0; }
  .feature-row + .feature-row { margin-top: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-tight { padding: 60px 0; }
  .utility-right .utility-item:nth-child(2) { display: none; }
  .hero { padding-bottom: 0; }
  .scatter-stage { height: 360px; }
  .sc-main { width: 150px; height: 173px; }
  .sc-blush { width: 78px; height: 90px; }
  .sc-soft { width: 60px; height: 69px; }
  .sc-badge { width: 100px; height: 115px; }
  .hero-panel { padding: 38px 28px; }
  .hero-panel-mark { font-size: 3.4rem; }
  .hero-panel-stats { gap: 26px; }
  .hero-panel-stats b { font-size: 1.9rem; }
  .svc-marquee { margin-top: 60px; }
  .svc-track, .svc-track span { gap: 20px; }
  .svc-track span { font-size: 1.05rem; }
  .flush-grid, .flush-grid.cols-3, .stat-band { grid-template-columns: 1fr; }
  .flush-grid .flush-cell, .flush-grid.cols-3 .flush-cell { border-right: none !important; }
  .flush-grid .flush-cell:nth-child(n+2), .flush-grid.cols-3 .flush-cell:nth-child(n+2) { border-top: 1px solid var(--border-s); }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border-s); }
  .stat-cell:last-child { border-bottom: none; }
  .doctor-card { grid-template-columns: 1fr; text-align: center; }
  .doctor-card .hexframe { margin: 0 auto; }
  .doctor-tags { justify-content: center; }
  .cta-band { padding: 64px 26px; }
  .story-band { padding: 64px 26px; }
  .form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .map-frame iframe { height: 340px; }
  .profile .hexframe { width: 240px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero .rise { opacity: 1; animation: none; }
}

/* ══════════════════════════════════════════════════════════════
   SEO / AEO components — added July 2026
   Trust bar, answer blocks, key-facts tables, review cards,
   long-form prose, and the expanded NAP footer.
   ══════════════════════════════════════════════════════════════ */

/* ---------- Utility strip additions ---------- */
.utility-rating svg { opacity: 1; color: var(--honey); }
.utility-rating b { font-weight: 700; color: #fff; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: center;
  gap: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-s);
}
.trust-cell { padding: 26px 24px; text-align: center; border-right: 1px solid var(--border-s); }
.trust-cell b {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 1.7rem; line-height: 1.05; color: var(--rosewood);
}
.trust-cell span { display: block; margin-top: 6px; font-size: 0.78rem; color: var(--t3); line-height: 1.4; }
.trust-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 8px; }
.trust-stars svg { width: 14px; height: 14px; color: var(--honey); }
.trust-link {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 26px 30px; font-size: 0.85rem; font-weight: 600; color: var(--rosewood);
  background: var(--accent-tint-s); align-self: stretch;
}
.trust-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.trust-link:hover svg { transform: translateX(4px); }

/* ---------- Answer block (featured-snippet / LLM extraction target) ---------- */
.answer-block {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--accent); border-radius: var(--r);
  padding: 30px 34px; box-shadow: var(--shadow-s);
  max-width: 900px; margin-inline: auto;
}
.answer-block h2 {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em; color: var(--rosewood); margin-bottom: 12px;
}
.answer-block p { font-size: 1.02rem; font-weight: 300; line-height: 1.72; color: var(--t2); }

/* ---------- Key facts table ---------- */
.keyfacts {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-s);
}
.kf-title {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--rosewood);
  padding: 22px 30px; background: var(--accent-tint-s);
  border-bottom: 1px solid var(--border-s);
}
.kf-list { display: flex; flex-direction: column; }
.kf-row { display: grid; grid-template-columns: 230px 1fr; gap: 24px; padding: 16px 30px; }
.kf-row + .kf-row { border-top: 1px solid var(--border-s); }
.kf-row:nth-child(even) { background: rgba(248, 239, 235, 0.42); }
.kf-row dt { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.kf-row dd { font-size: 0.93rem; font-weight: 300; line-height: 1.62; color: var(--t2); }
.kf-row dd a, .kf-row dt a { color: var(--rosewood); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Facts panel inside a hexagon ---------- */
.hex-panel-facts { padding: 18% 14%; }
.hex-panel-facts dl { width: 100%; display: flex; flex-direction: column; gap: 11px; color: #fff; }
.hex-panel-facts dt { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.72; }
.hex-panel-facts dd { font-size: 0.9rem; font-weight: 600; line-height: 1.35; margin-top: 2px; }

/* ---------- Review cards ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-s);
}
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 15px; height: 15px; color: var(--honey); }
.review-card figcaption { border-top: 1px solid var(--border-s); padding-top: 14px; }
.review-card figcaption b { display: block; font-size: 0.9rem; color: var(--ink); }
.review-card figcaption span { font-size: 0.76rem; color: var(--t3); }
.review-empty {
  max-width: 700px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px dashed rgba(124, 69, 60, 0.28);
  border-radius: var(--r-lg); padding: 44px 40px;
}
.review-empty p { font-weight: 300; line-height: 1.75; color: var(--t2); }
.review-empty p + p { margin-top: 14px; }
.review-empty .btn { margin-top: 26px; }

/* ---------- Rating card (reviews page hero) ---------- */
.rating-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 40px 44px; text-align: center; box-shadow: var(--shadow-m); width: min(340px, 100%);
}
.rating-big { font-family: var(--serif); font-weight: 600; font-size: 4.2rem; line-height: 1; color: var(--rosewood); }
.rating-big span { font-size: 1.5rem; color: var(--t4); }
.rating-stars { display: flex; justify-content: center; gap: 4px; margin: 16px 0 20px; }
.rating-stars svg { width: 20px; height: 20px; color: var(--honey); }
.rating-meta { font-size: 0.9rem; color: var(--t2); line-height: 1.6; }
.rating-src { margin-top: 16px; font-size: 0.72rem; color: var(--t3); border-top: 1px solid var(--border-s); padding-top: 14px; }

/* ---------- Long-form prose (articles, legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 500;
  line-height: 1.25; color: var(--ink); margin: 48px 0 16px;
}
.prose h3 {
  font-family: var(--sans); font-size: 1.12rem; font-weight: 700;
  color: var(--rosewood); margin: 32px 0 12px;
}
.prose p { font-size: 1.02rem; font-weight: 300; line-height: 1.8; color: var(--t2); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.prose li {
  position: relative; padding-left: 26px; font-size: 1rem;
  font-weight: 300; line-height: 1.72; color: var(--t2);
}
.prose li::before {
  content: ''; position: absolute; left: 4px; top: 0.62em;
  width: 7px; height: 8px; background: var(--accent); clip-path: var(--hex);
}
.prose ol { counter-reset: pitem; }
.prose ol li { counter-increment: pitem; }
.prose ol li::before {
  content: counter(pitem); background: none; clip-path: none;
  left: 0; top: 0; width: auto; height: auto;
  font-family: var(--serif); font-weight: 600; color: var(--accent-d); font-size: 0.95rem;
}
.prose a { color: var(--rosewood); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--rose-d); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose-meta { font-size: 0.8rem; color: var(--t3); letter-spacing: 0.04em; }
.prose-address { font-style: normal; font-size: 0.95rem; line-height: 1.9; color: var(--t2); margin: 20px 0; }
.prose-callout {
  background: var(--blush-soft); border: 1px solid var(--border);
  border-left: 4px solid var(--honey); border-radius: var(--r);
  padding: 28px 32px; margin: 32px 0;
}
.prose-callout p:last-child { margin-bottom: 0; }
.prose-callout-sm { padding: 20px 24px; }
.prose-callout-sm p { font-size: 0.94rem; line-height: 1.7; }

/* ---------- Article byline ---------- */
.byline {
  display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: baseline;
  padding: 16px 0 20px; border-bottom: 1px solid var(--border-s);
}
.byline-review { font-size: 0.92rem; color: var(--t2); }
.byline-review a { color: var(--rosewood); font-weight: 600; }
.byline-date { font-size: 0.8rem; color: var(--t3); }

/* ---------- Article tag ---------- */
.art-tag {
  align-self: flex-start; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-d);
  background: var(--accent-tint); border-radius: 100px; padding: 5px 13px; margin-bottom: 16px;
}
.spec-card h3 a { color: inherit; }
.spec-card h3 a:hover { color: var(--rosewood); }

/* ---------- Footer: 5 columns + full NAP ---------- */
.footer-grid { grid-template-columns: 1.35fr 0.85fr 0.95fr 0.85fr 1.25fr; gap: 40px; }
.footer-nap { font-style: normal; display: flex; flex-direction: column; gap: 9px; font-size: 0.88rem; color: var(--t2); line-height: 1.6; }
.footer-nap .nap-name { font-weight: 600; color: var(--ink); }
.footer-nap a { color: var(--t2); }
.footer-nap a:hover { color: var(--rosewood); }
.footer-hours {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-s);
  display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--t2);
}
.footer-hours b { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rosewood); margin-bottom: 4px; }
.footer-hours b svg { width: 14px; height: 14px; }
.footer-maplink {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 0.85rem; font-weight: 600; color: var(--rosewood);
}
.footer-maplink svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease-out); }
.footer-maplink:hover svg { transform: translateX(4px); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; }
.footer-legal a { color: var(--t3); }
.footer-legal a:hover { color: var(--rosewood); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-link { grid-column: 1 / -1; justify-content: center; padding: 20px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .utility-mail { display: none; }
  .kf-row { grid-template-columns: 190px 1fr; gap: 18px; }
}

@media (max-width: 720px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-cell { padding: 20px 14px; border-bottom: 1px solid var(--border-s); }
  .trust-cell b { font-size: 1.35rem; }
  .review-grid { grid-template-columns: 1fr; }
  .kf-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 20px; }
  .kf-title { padding: 18px 20px; }
  .answer-block { padding: 24px 22px; }
  .answer-block p { font-size: 0.98rem; }
  .prose h2 { font-size: 1.45rem; margin-top: 36px; }
  .rating-card { padding: 32px 28px; }
  .rating-big { font-size: 3.4rem; }
  .prose-callout { padding: 22px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .utility-rating { display: none; }
}

/* ---------- Review clamping (added July 2026) ----------
   Full review text stays in the DOM so Review schema always matches
   what is on the page; CSS clamps it to a few lines with a native
   ellipsis so cards stay compact. main.js reveals the "Read full
   review" button only on cards that are actually cut off. */
.review-title {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  color: var(--rosewood); line-height: 1.35;
}
.review-text {
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  line-height: 1.62; color: var(--t2); flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 7; line-clamp: 7; overflow: hidden;
}
.review-card-sm .review-text { -webkit-line-clamp: 5; line-clamp: 5; }
.review-text.is-open { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
.review-more {
  align-self: flex-start; background: none; border: none; padding: 0;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--rosewood); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.review-more:hover { color: var(--rose-d); }
.review-cta { margin-top: 34px; text-align: center; }
.review-cta p { font-size: 0.95rem; font-weight: 300; color: var(--t2); margin-bottom: 18px; }

/* ---------- "At a glance" card (doctor pages) ----------
   Replaces the hexagon photo panel, whose clip-path cut into the
   portrait and whose floating badge overlapped the name plate baked
   into the image file. */
.glance {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 32px 30px;
  box-shadow: var(--shadow-s); width: min(420px, 100%);
}
.glance h3 {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rosewood); margin-bottom: 22px;
}
.glance dl { display: flex; flex-direction: column; gap: 15px; }
.glance dt { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); }
.glance dd { font-size: 0.94rem; color: var(--ink); line-height: 1.55; margin-top: 4px; }

/* ---------- Credentials grid (two columns on wide screens) ---------- */
.cred-grid .cred-list {
  margin-top: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 48px;
}

@media (max-width: 720px) {
  .cred-grid .cred-list { grid-template-columns: 1fr; gap: 18px; }
  .glance { padding: 26px 24px; }
}

/* ---------- Enquiry form status ---------- */
.form-status.error { color: #8C2F22; }
