/* =================================================================
   Faith Hospital — Redesign
   Stylesheet: design tokens + components (header, hero, stats, footer)
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --teal:        #0E8C82;
  --teal-dark:   #0A6F66;
  --teal-bright: #17B3A3;
  --teal-050:    #EEF7F5;
  --teal-100:    #DBEFEC;

  /* Ink / text */
  --ink:   #15233B;
  --body:  #56657A;
  --muted: #8A98A6;

  /* Surfaces */
  --white:  #ffffff;
  --paper:  #F7FBFA;
  --border: #E3EEEB;

  /* Effects */
  --shadow-sm:   0 4px 14px rgba(21,35,59,.06);
  --shadow-md:   0 18px 40px -16px rgba(14,140,130,.30);
  --shadow-card: 0 26px 60px -22px rgba(21,35,59,.28);
  --ring:        0 0 0 4px rgba(14,140,130,.14);

  /* Geometry */
  --radius:    16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --container: 1200px;
  --gutter: 24px;
  --topbar-h: 44px;
  --nav-h: 82px;

  /* Type */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

::selection { background: var(--teal); color: #fff; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--btn-bg);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-3px); background: var(--teal-dark); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow-sm); }

.btn--white { background: #fff; color: var(--teal); box-shadow: var(--shadow-sm); }
.btn--white:hover { transform: translateY(-3px); color: var(--teal-dark); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn--outline-light:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); border-color: #fff; }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* =================================================================
   TOP BAR
   ================================================================= */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  height: var(--topbar-h);
}
.topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--teal-bright); }
.topbar a.topbar__item:hover { color: #fff; }
.topbar__divider { width: 1px; height: 16px; background: rgba(255,255,255,.18); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -16px rgba(21,35,59,.22); background: rgba(255,255,255,.96); }

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 62.5px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--teal); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 110;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -30px 0 60px -30px rgba(21,35,59,.4);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-menu__head img { height: 44px; }
.mobile-menu__close { font-size: 26px; line-height: 1; color: var(--muted); width: 40px; height: 40px; }
.mobile-menu a.m-link {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  padding: 13px 12px;
  border-radius: 12px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.m-link:hover, .mobile-menu a.m-link.is-active { background: var(--teal-050); color: var(--teal); }
.mobile-menu .btn { margin-top: 18px; width: 100%; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,35,59,.45);
  backdrop-filter: blur(2px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.overlay.is-open { opacity: 1; visibility: visible; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 80vh, 768px);
  padding: clamp(60px, 7vw, 96px) 0 clamp(80px, 9vw, 132px);
  overflow: hidden;
  background: var(--paper);
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform-origin: center center;
  will-change: transform;
}
/* Auto-fading hero slideshow (sits inside .hero__photo container) */
.hero__slides { overflow: hidden; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}
/* Left-to-right light wash so the copy stays readable over the photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.93) 24%,
      rgba(255,255,255,.66) 44%,
      rgba(255,255,255,.18) 62%,
      rgba(255,255,255,0) 78%),
    linear-gradient(0deg, rgba(20,30,50,.16) 0%, rgba(20,30,50,0) 26%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 600px; }

/* Hero copy */
.hero__title {
  font-size: clamp(33px, 4.4vw, 51px);
  line-height: 1.1;
  margin: 18px 0 20px;
  letter-spacing: -0.02em;
}
.hero__title .line { display: block; }
.hero__title .accent { color: var(--teal); position: relative; white-space: nowrap; }
.hero__lead {
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 30em;
  color: var(--body);
}
.hero__lead strong { color: var(--ink); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Floating emergency card — sits over the building photo */
.hero__float {
  position: absolute;
  z-index: 3;
  left: 57%;
  top: 55%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.85);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  max-width: 280px;
  will-change: transform;
}
.hero__float .pulse {
  position: relative;
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--teal);
  color: #fff;
}
.hero__float .pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  border: 2px solid var(--teal);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hero__float b { font-family: var(--font-head); color: var(--ink); font-size: 15px; display: block; }
.hero__float span { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

/* =================================================================
   STATS STRIP (teal band attached under hero)
   ================================================================= */
.stats {
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-bright) 130%);
  border-radius: var(--radius-lg);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.stats__wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
}
.stats__item {
  text-align: center;
  padding: 34px 18px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: "";
  position: absolute; left: 0; top: 28px; bottom: 28px;
  width: 1px;
  background: rgba(255,255,255,.22);
}
.stats__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stats__label { font-size: 14px; opacity: .9; margin-top: 8px; }

/* =================================================================
   SPECIALTIES (Advanced Care) + fade carousel
   ================================================================= */
.specialties {
  padding: clamp(64px, 8vw, 112px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}
.spec-layout {
  display: grid;
  grid-template-columns: 0.82fr 2.18fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.section-title { font-size: clamp(27px, 3.2vw, 40px); line-height: 1.12; margin: 14px 0 16px; }
.spec-intro p { color: var(--body); max-width: 34ch; margin-bottom: 26px; }

.spec-carousel { position: relative; }
.spec-stage { position: relative; }

/* No-JS / fallback: a responsive grid of every card */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.spec-carousel.is-enhanced .spec-grid { display: none; }

/* JS builds equal-width views, stacked for crossfade */
.spec-view { display: grid; gap: 22px; }
.spec-carousel.is-enhanced .spec-view { position: absolute; top: 0; left: 0; right: 0; }

/* Card */
.spec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 286px;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.spec-card:hover { transform: translateY(-6px); border-color: var(--teal); box-shadow: var(--shadow-card); }
.spec-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  color: var(--teal);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.spec-card:hover .spec-card__icon { background: var(--teal); color: #fff; border-color: var(--teal); }
.spec-card__icon svg { width: 30px; height: 30px; }
.spec-card h3 { font-size: 20px; }
.spec-card p { color: var(--body); font-size: 14.5px; flex: 1 0 auto; }
.spec-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--teal);
}
.spec-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.spec-card__link:hover svg { transform: translateX(4px); }

/* Carousel nav */
.spec-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.spec-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff; color: var(--ink);
  display: grid; place-items: center;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.spec-arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.spec-arrow svg { width: 20px; height: 20px; }
.spec-dots { display: flex; align-items: center; gap: 9px; }
.spec-dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--teal-100);
  transition: width .3s var(--ease), background-color .3s var(--ease);
}
.spec-dot.is-active { width: 26px; background: var(--teal); }

@media (max-width: 991px) {
  .spec-layout { grid-template-columns: 1fr; gap: 30px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .spec-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   WHY CHOOSE US — "Healthcare You Can Trust"
   ================================================================= */
.why {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0;
  background: linear-gradient(135deg, #EAF5F4 0%, #DBEDF1 52%, #E7F2F0 100%);
}
.why__pattern {
  position: absolute;
  left: -70px; top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 40vw, 560px); height: clamp(320px, 40vw, 560px);
  color: var(--teal);
  opacity: .05;
  z-index: 0;
  pointer-events: none;
}
.why__pattern svg { width: 100%; height: 100%; }

.why__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.why__text p { color: var(--body); max-width: 42ch; margin-bottom: 28px; }

.why-list { display: grid; gap: 15px; margin: 0 0 32px; }
.why-list li {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-head); font-weight: 500;
  color: var(--ink); font-size: 15.5px;
}
.why-list__ic {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 10px -3px rgba(14,140,130,.5);
}
.why-list__ic svg { width: 14px; height: 14px; }

.why__media { position: relative; }
.why__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 5 / 6;
  background: #fff;
  will-change: transform;
}
.why__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.why__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,35,59,0) 62%, rgba(21,35,59,.16) 100%);
}

.why__commit {
  position: absolute;
  left: -24px; bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  max-width: 290px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.8);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.why__commit-ic {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100);
}
.why__commit-ic svg { width: 24px; height: 24px; }
.why__commit b { display: block; font-family: var(--font-head); color: var(--ink); font-size: 15px; }
.why__commit span { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

@media (max-width: 880px) {
  .why__grid { grid-template-columns: 1fr; gap: 38px; }
  .why__media { max-width: 460px; }
  .why__photo { aspect-ratio: 4 / 3.6; }
  .why__commit { left: 14px; }
}
@media (max-width: 480px) {
  .why__commit { position: relative; left: auto; bottom: auto; margin: -34px auto 0; }
}

/* =================================================================
   PATIENT STORIES (testimonials)
   ================================================================= */
.stories { padding: clamp(64px, 8vw, 112px) 0; background: var(--white); }
.stories__head { margin-bottom: clamp(28px, 3.4vw, 46px); }
.stories__head .section-title { margin-top: 12px; }

.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.review:hover { transform: translateY(-6px); border-color: var(--teal-100); box-shadow: var(--shadow-card); }
.review__mark {
  position: absolute;
  top: -14px; right: 18px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 130px; line-height: 1;
  color: var(--teal);
  opacity: .07;
  pointer-events: none;
}
.review__stars { display: flex; gap: 3px; color: var(--teal); margin-bottom: 18px; }
.review__stars svg { width: 18px; height: 18px; }
.review__text {
  position: relative; z-index: 1;
  color: var(--body); font-size: 15px; line-height: 1.7;
  flex: 1; margin-bottom: 24px;
}
.review__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review__avatar {
  flex: 0 0 auto;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
  box-shadow: 0 6px 14px -4px rgba(14,140,130,.5);
}
.review__who b { display: block; font-family: var(--font-head); color: var(--ink); font-size: 15.5px; }
.review__who span { font-size: 13px; color: var(--muted); }

.stories__more { text-align: center; margin-top: clamp(30px, 3.5vw, 44px); }

@media (max-width: 980px) {
  .stories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .stories__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* =================================================================
   SHARED — centered section heading
   ================================================================= */
.section-head--center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-sub { color: var(--body); margin-top: 12px; font-size: 16px; }

/* =================================================================
   MEET OUR DOCTORS
   ================================================================= */
.docs { padding: clamp(64px, 8vw, 112px) 0; background: var(--white); }
.docs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(36px, 4vw, 56px); }
.doc {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.doc:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--teal-100); }
.doc__photo { position: relative; aspect-ratio: 4 / 4.2; overflow: hidden; background: linear-gradient(160deg, var(--teal-050), #dbeeeb); }
.doc__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.doc:hover .doc__photo img { transform: scale(1.05); }
.doc__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,35,59,0) 62%, rgba(21,35,59,.26) 100%); }
.doc__body { padding: 22px 22px 24px; text-align: center; }
.doc__body h3 { font-size: 19px; }
.doc__spec { display: block; color: var(--teal); font-family: var(--font-head); font-weight: 500; font-size: 14px; margin-top: 4px; }
.doc__social { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.doc__social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.doc__social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.doc__social svg { width: 16px; height: 16px; }

/* =================================================================
   RECENT ARTICLES
   ================================================================= */
.articles { padding: clamp(64px, 8vw, 112px) 0; background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(36px, 4vw, 56px); }
.post {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--teal-100); }
.post__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--teal-050); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__tag {
  position: absolute; left: 14px; top: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: 12px;
  padding: 6px 12px; border-radius: 999px;
}
.post__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post__date { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
.post__date svg { width: 15px; height: 15px; }
.post__body h3 { font-size: 17.5px; line-height: 1.35; margin: 12px 0 16px; }
.post__body h3 a { transition: color .2s var(--ease); }
.post__body h3 a:hover { color: var(--teal); }
.post__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; }
.post__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.post__link:hover svg { transform: translateX(4px); }

/* =================================================================
   BOOK AN APPOINTMENT
   ================================================================= */
.appoint { padding: clamp(64px, 8vw, 112px) 0; background: var(--white); }
.appoint__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: stretch; }
.appoint__info {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--teal-dark), var(--teal) 60%, var(--teal-bright) 135%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.appoint__info::before { content: ""; position: absolute; right: -70px; bottom: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.08); }
.appoint__info h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); margin: 8px 0 14px; }
.appoint__info > p { color: rgba(255,255,255,.88); font-size: 15px; margin-bottom: 26px; max-width: 42ch; }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: #fff; }
.appoint__contacts { display: grid; gap: 18px; position: relative; z-index: 1; }
.appoint__contacts li { display: flex; align-items: center; gap: 14px; }
.appoint__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,.16); }
.appoint__ic svg { width: 22px; height: 22px; color: #fff; }
.appoint__contacts small { display: block; font-size: 12.5px; color: rgba(255,255,255,.8); }
.appoint__contacts b { font-family: var(--font-head); font-size: 15.5px; }

.appoint__form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-card); display: flex; flex-direction: column; justify-content: center; }
.appoint__form h3 { font-size: 21px; margin-bottom: 20px; }
.field em { font-style: normal; font-weight: 400; color: var(--muted); }
.appoint__hint { margin-top: 14px; text-align: center; font-size: 13px; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-family: var(--font-head); font-weight: 500; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px; background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); }
.field textarea { resize: vertical; }
.appoint__submit { width: 100%; margin-top: 6px; justify-content: center; }
.appoint__note { margin-top: 14px; color: var(--teal-dark); font-weight: 500; font-size: 14px; background: var(--teal-050); border: 1px solid var(--teal-100); padding: 12px 14px; border-radius: 12px; }

@media (max-width: 980px) {
  .docs__grid, .articles__grid { grid-template-columns: repeat(2, 1fr); }
  .appoint__inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .docs__grid, .articles__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; }
}

/* =================================================================
   SPECIALIZED SERVICES (Facilities) — teal feature grid
   ================================================================= */
.facilities {
  position: relative; overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0;
  color: #fff;
  background: linear-gradient(150deg, var(--teal-dark) 0%, var(--teal) 48%, var(--teal-bright) 125%);
}
.facilities__head {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.facilities h2 { color: #fff; font-size: clamp(26px, 3.3vw, 40px); line-height: 1.18; }
.facilities__intro { display: flex; gap: 18px; align-items: flex-start; }
.facilities__shield { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.14); }
.facilities__shield svg { width: 28px; height: 28px; color: #fff; }
.facilities__intro p { color: rgba(255,255,255,.9); font-size: 14.5px; line-height: 1.75; }
.facilities__core { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.facilities__core .circle { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--teal); transition: transform .25s var(--ease); }
.facilities__core svg { width: 17px; height: 17px; }
.facilities__core:hover .circle { transform: translateX(4px); }

.facilities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fac-card {
  background: #fff; border-radius: 16px; padding: 26px 24px;
  box-shadow: 0 14px 30px -20px rgba(8,50,46,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fac-card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px -18px rgba(8,50,46,.55); }
.fac-card__ic { display: block; width: 46px; height: 46px; color: var(--teal); margin-bottom: 18px; }
.fac-card__ic svg { width: 100%; height: 100%; }
.fac-card h3 { font-size: 16px; color: var(--ink); line-height: 1.32; }

.facilities__foot { text-align: center; margin-top: clamp(36px, 4vw, 52px); color: rgba(255,255,255,.88); font-size: 14.5px; max-width: 60ch; margin-inline: auto; }
.facilities__foot a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.facilities__foot a:hover { text-decoration: underline; }
.facilities__foot svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .facilities__head { grid-template-columns: 1fr; align-items: start; }
  .facilities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .facilities__grid { grid-template-columns: 1fr; }
}

/* =================================================================
   DEDICATED TO YOUR FAMILY — navy journey/steps
   ================================================================= */
.family {
  position: relative; overflow: hidden;
  padding: clamp(64px, 8vw, 100px) 0 clamp(56px, 7vw, 90px);
  color: #fff;
  background: linear-gradient(165deg, #14233c 0%, #1b3a54 55%, #163a47 100%);
}
.family__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; margin-bottom: clamp(40px, 5vw, 60px); }
.family__head h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.14; }
.family__lead { color: rgba(255,255,255,.82); font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; }
.family__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; }
.family__checks li { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 500; font-size: 14.5px; }
.family__checks .ic { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; }
.family__checks .ic svg { width: 12px; height: 12px; }

.family__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; overflow: hidden;
  background: #fff; border-radius: 14px; padding: 30px 26px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: 0 28px 52px -22px rgba(0,0,0,.5); }
.step__num { position: absolute; top: 14px; right: 20px; font-family: var(--font-head); font-weight: 700; font-size: 56px; line-height: 1; color: var(--ink); opacity: .06; }
.step__ic { display: block; width: 46px; height: 46px; color: var(--teal); margin-bottom: 24px; position: relative; z-index: 1; }
.step__ic svg { width: 100%; height: 100%; }
.step h3 { font-size: 18px; color: var(--ink); line-height: 1.25; margin-bottom: 14px; }
.step p { font-size: 13.5px; color: var(--body); line-height: 1.65; margin-bottom: 18px; }
.step__link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 13.5px; }
.step__link svg { width: 15px; height: 15px; color: var(--teal); transition: transform .25s var(--ease); }
.step__link:hover { color: var(--teal); }
.step__link:hover svg { transform: translateX(4px); }

.family__cta { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; margin-top: clamp(44px, 5vw, 64px); }
.family__cta-ic { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.family__cta-ic svg { width: 38px; height: 38px; color: rgba(255,255,255,.65); }
.family__cta-text h3 { color: #fff; font-size: clamp(20px, 2.4vw, 28px); margin-bottom: 10px; }
.family__cta-text p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; max-width: 64ch; }
.family__cta .btn { white-space: nowrap; }

@media (max-width: 980px) {
  .family__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .family__head { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .family__cta { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 18px; }
  .family__cta-text p { margin-inline: auto; }
}
@media (max-width: 520px) {
  .family__steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .family__checks { grid-template-columns: 1fr; }
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */
.abt-hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(560px, 72vh, 720px);
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--ink);
}
.abt-hero__photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.abt-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,55,52,.95) 0%, rgba(11,90,84,.86) 38%, rgba(14,140,130,.5) 72%, rgba(14,140,130,.18) 100%);
}
.abt-hero__inner { position: relative; z-index: 2; width: 100%; }
.abt-hero__content { max-width: 600px; color: #fff; }
.abt-hero__content h1 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.12; letter-spacing: -0.02em; margin: 16px 0 18px; }
.abt-hero__content > p { color: rgba(255,255,255,.9); font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.75; max-width: 52ch; }
.abt-hero__badges { display: flex; flex-wrap: wrap; gap: 22px 32px; margin-top: 30px; }
.abt-hero__badges li { display: flex; align-items: center; gap: 12px; }
.abt-hero__badges .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.abt-hero__badges .ic svg { width: 23px; height: 23px; color: #fff; }
.abt-hero__badges b { display: block; font-family: var(--font-head); font-size: 15px; color: #fff; line-height: 1.2; }
.abt-hero__badges span { font-size: 13px; color: rgba(255,255,255,.8); }

/* Our Story */
.abt-story { padding: clamp(64px, 8vw, 110px) 0; background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); }
.abt-story__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.abt-rule { display: block; width: 60px; height: 3px; border-radius: 3px; background: var(--teal); margin: 6px 0 22px; }
.abt-story__text p { color: var(--body); margin-bottom: 16px; max-width: 48ch; }
.abt-story__text .btn { margin-top: 14px; }
.abt-story__media { position: relative; }
.abt-story__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3.05; background: var(--teal-050); }
.abt-story__photo img { width: 100%; height: 100%; object-fit: cover; }
.abt-story__badge {
  position: absolute; left: clamp(-22px, -2vw, -8px); top: 50%; transform: translateY(-50%);
  width: clamp(150px, 17vw, 188px); aspect-ratio: 1; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-card); border: 1px solid var(--teal-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.abt-story__badge b { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: clamp(34px, 4vw, 46px); line-height: 1; }
.abt-story__badge span { color: var(--teal-dark); font-family: var(--font-head); font-weight: 600; font-size: 12.5px; line-height: 1.25; margin-top: 4px; max-width: 11ch; }
.abt-story__laurel { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); width: 74%; color: var(--teal); opacity: .5; }

/* Mission & Values */
.abt-values { padding: clamp(64px, 8vw, 110px) 0; background: linear-gradient(180deg, var(--paper) 0%, #e9f5f3 100%); }
.abt-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: clamp(36px, 4vw, 52px); align-items: start; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card__ic { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; margin-bottom: 20px; }
.value-card__ic svg { width: 27px; height: 27px; }
.value-card h3 { font-size: 19px; margin-bottom: 12px; }
.value-card p { color: var(--body); font-size: 14.5px; line-height: 1.7; }
.value-card--list .value-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.value-card--list .value-card__head .value-card__ic { margin-bottom: 0; }
.value-card--list .value-card__head h3 { margin-bottom: 0; }
.value-list { display: grid; gap: 13px; }
.value-list li { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 15px; }
.value-list .chk { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; border: 1px solid var(--teal-100); }
.value-list .chk svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .abt-story__grid { grid-template-columns: 1fr; }
  .abt-story__media { max-width: 540px; }
  .abt-values__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .abt-hero__badges { gap: 16px 24px; }
  .abt-story__badge { left: auto; right: 14px; top: auto; bottom: -26px; transform: none; width: 132px; }
}

/* =================================================================
   SERVICES PAGE
   ================================================================= */
.svc-hero { position: relative; overflow: hidden; display: flex; align-items: center; min-height: clamp(560px, 72vh, 720px); padding: clamp(56px, 6vw, 96px) 0; background: linear-gradient(120deg, #eaf6f4 0%, #dcedf1 100%); }
.svc-hero__media { position: absolute; right: 0; top: 0; width: 50%; height: 100%; }
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero__media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #e6f3f1 0%, rgba(230,243,241,0) 26%); }
.svc-hero__inner { position: relative; z-index: 2; width: 100%; }
.svc-hero__content { max-width: 540px; }
.svc-hero__content h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.12; letter-spacing: -0.02em; margin: 16px 0 18px; }
.svc-hero__content h1 .accent { color: var(--teal); }
.svc-hero__content > p { color: var(--body); font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.7; max-width: 44ch; }
.svc-hero__badges { display: flex; flex-wrap: wrap; gap: 20px 30px; margin-top: 30px; }
.svc-hero__badges li { display: flex; align-items: center; gap: 12px; }
.svc-hero__badges .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: #fff; color: var(--teal); border: 1px solid var(--teal-100); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.svc-hero__badges .ic svg { width: 22px; height: 22px; }
.svc-hero__badges b { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); line-height: 1.2; }
.svc-hero__badges span { font-size: 13px; color: var(--muted); }

/* Services grid */
.svc-list { padding: clamp(64px, 8vw, 110px) 0; background: #fff; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(36px, 4vw, 52px); }
.svc-item { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.svc-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--teal-100); }
.svc-item__ic { width: 54px; height: 54px; border-radius: 50%; background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100); display: grid; place-items: center; margin-bottom: 18px; transition: background-color .3s var(--ease), color .3s var(--ease); }
.svc-item:hover .svc-item__ic { background: var(--teal); color: #fff; }
.svc-item__ic svg { width: 26px; height: 26px; }
.svc-item h3 { font-size: 17px; margin-bottom: 10px; }
.svc-item p { color: var(--body); font-size: 13.5px; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.svc-item__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: 13.5px; }
.svc-item__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.svc-item__link:hover svg { transform: translateX(4px); }
.svc-list__more { text-align: center; margin-top: clamp(30px, 3.5vw, 44px); }

/* Why choose (services) */
.svc-why { padding: clamp(64px, 8vw, 110px) 0; background: linear-gradient(135deg, #eaf6f4 0%, #dcedf1 100%); }
.svc-why__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.svc-why__text h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.16; }
.svc-why__text p { color: var(--body); margin: 18px 0 24px; max-width: 42ch; }
.svc-why__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.svc-why__link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; }
.svc-why__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-why__link:hover svg { transform: translateX(4px); }
.svc-why__features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feat { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.9); border-radius: 14px; padding: 18px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feat__ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: #fff; color: var(--teal); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.feat__ic svg { width: 24px; height: 24px; }
.feat b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); line-height: 1.25; }
.feat span { font-size: 13px; color: var(--body); }

/* Custom CTA */
.svc-cta { padding: clamp(20px, 4vw, 48px) 0; background: #fff; }
.svc-cta__inner {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal) 72%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.05fr auto 1fr; align-items: center;
  gap: clamp(18px, 3vw, 36px); padding: clamp(28px, 4vw, 40px) clamp(26px, 4vw, 48px);
  min-height: 250px; color: #fff;
}
.svc-cta__text h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; }
.svc-cta__text p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 14.5px; max-width: 30ch; }
.svc-cta__doctor {
  align-self: end; height: clamp(190px, 23vw, 290px); width: auto; object-fit: contain; object-position: bottom center;
  -webkit-mask-image: radial-gradient(135% 128% at 50% 102%, #000 60%, transparent 90%);
  mask-image: radial-gradient(135% 128% at 50% 102%, #000 60%, transparent 90%);
}
.svc-cta__help { background: #fff; border-radius: 16px; padding: 26px 24px; box-shadow: var(--shadow-card); color: var(--ink); }
.svc-cta__help h3 { font-size: 19px; }
.svc-cta__help > p { font-size: 13px; color: var(--muted); margin: 4px 0 18px; }
.svc-cta__help .row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.svc-cta__help .row .ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; }
.svc-cta__help .row .ic svg { width: 19px; height: 19px; }
.svc-cta__help .row small { display: block; font-size: 12px; color: var(--muted); }
.svc-cta__help .row b { font-family: var(--font-head); font-size: 15.5px; color: var(--ink); }
.svc-cta__help .btn { width: 100%; justify-content: center; margin-top: 4px; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .svc-hero { display: block; padding: 0; }
  .svc-hero__inner { padding-block: clamp(40px, 7vw, 56px); }
  .svc-hero__content { max-width: none; }
  .svc-hero__media { position: relative; width: 100%; height: clamp(220px, 48vw, 300px); }
  .svc-hero__media::before { display: none; }
  .svc-why__grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .svc-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .svc-cta__doctor { display: none; }
  .svc-cta__text p { margin-inline: auto; }
  .svc-cta__help { text-align: left; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .svc-why__features { grid-template-columns: 1fr; }
}

/* =================================================================
   CONTACT / BOOK AN APPOINTMENT PAGE
   ================================================================= */
.book { position: relative; overflow: hidden; padding: clamp(48px, 6vw, 88px) 0; background: linear-gradient(120deg, #eaf6f4 0%, #dcedf1 100%); }
.book__bg { position: absolute; inset: 0; z-index: 0; background: url("../images/hero-building.jpg") center/cover no-repeat; opacity: .06; }
.book__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.book__intro h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 0; }
.book__intro h1 .accent { color: var(--teal); }
.book__intro p { color: var(--body); margin: 22px 0 0; max-width: 42ch; }
.book__badges { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; }
.book__badges li { display: flex; align-items: center; gap: 11px; }
.book__badges .ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: #fff; color: var(--teal); border: 1px solid var(--teal-100); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.book__badges .ic svg { width: 20px; height: 20px; }
.book__badges b { display: block; font-family: var(--font-head); font-size: 14px; color: var(--ink); line-height: 1.2; }
.book__badges span { font-size: 12.5px; color: var(--muted); }

/* Form card */
.book__card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: clamp(26px, 3vw, 38px); }
.book__card-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.book__card-ic { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; background: var(--teal); color: #fff; display: grid; place-items: center; }
.book__card-ic svg { width: 26px; height: 26px; }
.book__card-head h2 { font-size: 21px; }
.book__card-head p { font-size: 13.5px; color: var(--body); line-height: 1.55; margin-top: 4px; }

.book__form { display: flex; flex-direction: column; gap: 14px; }
.book__form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ifield { position: relative; }
.ifield > svg { position: absolute; left: 14px; top: 15px; width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.ifield input, .ifield select, .ifield textarea {
  width: 100%; font: inherit; font-size: 14.5px; color: var(--ink); background: #fff;
  border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 14px 13px 42px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.ifield textarea { padding-left: 14px; min-height: 92px; resize: vertical; }
.ifield input::placeholder, .ifield textarea::placeholder { color: var(--muted); }
.ifield input:focus, .ifield select:focus, .ifield textarea:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); }
.ifield--select select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px; color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A98A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.book__submit { width: 100%; justify-content: center; margin-top: 4px; }
.book__secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--muted); text-align: center; }
.book__secure svg { width: 15px; height: 15px; color: var(--teal); flex: 0 0 auto; }

/* Need Immediate Assistance */
.assist { padding: clamp(48px, 6vw, 84px) 0; background: var(--paper); }
.assist__panel { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(20px, 2.5vw, 28px); box-shadow: var(--shadow-sm); }
.assist__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.1; }
.assist__media img { width: 100%; height: 100%; object-fit: cover; }
.assist__body h2 { margin: 12px 0 12px; }
.assist__body > p { color: var(--body); max-width: 46ch; margin-bottom: 26px; }
.assist__rows { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.assist__row { display: flex; align-items: flex-start; gap: 14px; }
.assist__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; }
.assist__ic svg { width: 21px; height: 21px; }
.assist__row b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.assist__row span { font-size: 13.5px; color: var(--body); line-height: 1.5; }

@media (max-width: 900px) {
  .book__grid { grid-template-columns: 1fr; }
  .book__intro { max-width: 640px; }
  .assist__panel { grid-template-columns: 1fr; }
  .assist__media { max-width: 560px; aspect-ratio: 16/9; }
}
@media (max-width: 560px) {
  .book__form .field-row { grid-template-columns: 1fr; }
  .assist__rows { grid-template-columns: 1fr; }
}

/* =================================================================
   DOCTORS PAGE
   ================================================================= */
.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; }

.dr-hero { position: relative; overflow: hidden; display: flex; align-items: center; min-height: clamp(580px, 74vh, 740px); padding: clamp(56px, 6vw, 96px) 0; background: linear-gradient(120deg, #eaf6f4 0%, #dcedf1 100%); }
.dr-hero__media { position: absolute; right: 0; top: 0; width: 50%; height: 100%; }
.dr-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.dr-hero__media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #e6f3f1 0%, rgba(230,243,241,0) 26%); }
.dr-hero__inner { position: relative; z-index: 2; width: 100%; }
.dr-hero__content { max-width: 560px; }
.dr-hero__content h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 18px; }
.dr-hero__content h1 .accent { color: var(--teal); }
.dr-hero__content > p { color: var(--body); font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.7; max-width: 44ch; }
.dr-hero__stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.dr-stat { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); }
.dr-stat__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100); display: grid; place-items: center; }
.dr-stat__ic svg { width: 20px; height: 20px; }
.dr-stat b { display: block; font-family: var(--font-head); font-size: 20px; color: var(--teal); line-height: 1; }
.dr-stat span { font-size: 12px; color: var(--muted); }

/* Specialty strip */
.dr-specs { padding: clamp(56px, 7vw, 96px) 0; background: #fff; }
.dr-specs__grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; margin-top: clamp(30px, 3.5vw, 46px); }
.dr-spec { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.dr-spec__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100); display: grid; place-items: center; transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease); }
.dr-spec:hover .dr-spec__ic { background: var(--teal); color: #fff; transform: translateY(-4px); }
.dr-spec__ic svg { width: 28px; height: 28px; }
.dr-spec__label { font-family: var(--font-head); font-weight: 500; font-size: 13px; color: var(--ink); line-height: 1.3; }

/* Team grid */
.dr-team { padding: clamp(56px, 7vw, 96px) 0; background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.dr-team__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(30px, 3.5vw, 46px); }
.dr-team__head .section-title { margin-top: 10px; }
.dr-filter select {
  font: inherit; font-size: 14.5px; color: var(--ink); background: #fff; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: 12px; padding: 11px 38px 11px 16px;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A98A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 18px;
}
.dr-filter select:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); }

.dr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dr-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.dr-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--teal-100); }
.dr-card__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(160deg, var(--teal-050), #dbeeeb); }
.dr-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dr-card:hover .dr-card__photo img { transform: scale(1.05); }
.dr-card__chip { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); white-space: nowrap; background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 11.5px; padding: 5px 13px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.dr-card__body { padding: 24px 20px 22px; text-align: center; }
.dr-card__body h3 { font-size: 17px; line-height: 1.25; }
.dr-card__quals { color: var(--muted); font-size: 13px; margin: 6px 0 14px; }
.dr-card__link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: 13.5px; }
.dr-card__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.dr-card__link:hover svg { transform: translateX(4px); }

@media (max-width: 1080px) { .dr-specs__grid { grid-template-columns: repeat(4, 1fr); } .dr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .dr-hero { display: block; padding: 0; }
  .dr-hero__inner { padding-block: clamp(40px, 7vw, 56px); }
  .dr-hero__content { max-width: none; }
  .dr-hero__media { position: relative; width: 100%; height: clamp(260px, 56vw, 360px); }
  .dr-hero__media::before { display: none; }
  .dr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) { .dr-specs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dr-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } .dr-team__head { flex-direction: column; align-items: flex-start; } }

/* =================================================================
   FACILITIES PAGE
   ================================================================= */
.svc-item--plain p { flex: 0 1 auto; margin-bottom: 0; }

.fac-amen { padding: clamp(56px, 7vw, 100px) 0; background: linear-gradient(135deg, #eaf6f4 0%, #dcedf1 100%); }
.fac-amen__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.fac-amen__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3; }
.fac-amen__media img { width: 100%; height: 100%; object-fit: cover; }
.fac-amen__body .abt-rule { margin: 6px 0 18px; }
.fac-amen__body > p { color: var(--body); margin-bottom: 22px; max-width: 46ch; }
.fac-amen__body .why-list { grid-template-columns: 1fr 1fr; gap: 13px 22px; margin-bottom: 28px; }

@media (max-width: 900px) {
  .fac-amen__grid { grid-template-columns: 1fr; }
  .fac-amen__media { max-width: 560px; }
  .fac-amen__body .why-list { grid-template-columns: 1fr; }
}

/* =================================================================
   DOCTOR PROFILE PAGE
   ================================================================= */
.doc-hero { position: relative; overflow: hidden; padding: clamp(36px, 4vw, 56px) 0 clamp(48px, 6vw, 76px); background: linear-gradient(120deg, #eef7f6 0%, #e3eef1 100%); }
.doc-hero__photo { position: absolute; right: 0; top: 0; width: 42%; height: 100%; }
.doc-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.doc-hero__photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #e9f3f2 0%, rgba(233,243,242,0) 32%); }
.doc-hero__inner { position: relative; z-index: 1; }
.doc-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.doc-crumb a:hover { color: var(--teal); }
.doc-crumb b { color: var(--ink); font-weight: 600; }
.doc-hero__text { max-width: 620px; }
.doc-hero__text h1 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
.doc-hero__quals { color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: 17px; margin-top: 10px; }
.doc-hero__title { color: var(--ink); font-weight: 500; font-family: var(--font-head); margin-top: 2px; }
.doc-meta { display: flex; flex-wrap: wrap; gap: 16px 28px; margin: 24px 0; }
.doc-meta li { display: flex; align-items: center; gap: 10px; }
.doc-meta__ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100); display: grid; place-items: center; }
.doc-meta__ic svg { width: 18px; height: 18px; }
.doc-meta small { display: block; font-size: 11.5px; color: var(--muted); }
.doc-meta b { font-family: var(--font-head); font-size: 13.5px; color: var(--ink); }
.doc-hero__bio { color: var(--body); line-height: 1.7; max-width: 54ch; }
.doc-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.doc-action { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.doc-action:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.doc-action__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; }
.doc-action__ic svg { width: 20px; height: 20px; }
.doc-action b { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); }
.doc-action small { font-size: 12px; color: var(--muted); }
.doc-action--primary { background: var(--teal); border-color: var(--teal); box-shadow: var(--shadow-md); }
.doc-action--primary .doc-action__ic { background: rgba(255,255,255,.2); color: #fff; }
.doc-action--primary b { color: #fff; }
.doc-action--primary small { color: rgba(255,255,255,.85); }

/* About + booking */
.doc-main { padding: clamp(56px, 7vw, 90px) 0; background: #fff; }
.doc-main__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.doc-about .abt-rule { margin: 8px 0 20px; }
.doc-about > p { color: var(--body); margin-bottom: 14px; max-width: 52ch; }
.doc-highlights { margin-top: 24px; }

/* Expertise */
.doc-exp { padding: clamp(56px, 7vw, 90px) 0; background: linear-gradient(135deg, #eaf6f4 0%, #dcedf1 100%); }

/* Education & experience */
.doc-eduexp { padding: clamp(56px, 7vw, 90px) 0; background: #fff; }
.doc-eduexp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); margin-top: clamp(30px, 4vw, 48px); max-width: 940px; margin-inline: auto; }
.doc-eduexp__title { font-size: 18px; color: var(--teal); margin-bottom: 18px; }
.doc-timeline { display: grid; gap: 15px; }
.doc-timeline li { position: relative; padding-left: 26px; color: var(--body); font-size: 14.5px; line-height: 1.5; }
.doc-timeline li::before { content: ""; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-050); }

/* Doctor CTA */
.doc-cta { margin: clamp(44px, 6vw, 80px) auto; }
.doc-cta__inner { background: linear-gradient(120deg, var(--teal-dark), var(--teal) 72%); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 42px) clamp(26px, 4vw, 52px); display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; color: #fff; box-shadow: var(--shadow-md); }
.doc-cta__lead { display: flex; align-items: center; gap: 18px; }
.doc-cta__ic { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 16px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.doc-cta__ic svg { width: 28px; height: 28px; color: #fff; }
.doc-cta__lead h2 { color: #fff; font-size: clamp(20px, 2.4vw, 28px); }
.doc-cta__lead p { color: rgba(255,255,255,.85); font-size: 14px; margin-top: 4px; max-width: 52ch; }
.doc-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 980px) { .doc-main__grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .doc-hero__photo { position: relative; width: auto; height: clamp(280px, 62vw, 400px); margin: 0 var(--gutter); border-radius: var(--radius-lg); overflow: hidden; }
  .doc-hero__photo::before { display: none; }
  .doc-hero__inner { margin-top: 24px; }
  .doc-hero__text { max-width: none; }
  .doc-eduexp__grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 600px) {
  .doc-actions { display: grid; grid-template-columns: 1fr; }
  .doc-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   BLOG (listing + single post)
   ================================================================= */
.blog-hero { padding: clamp(48px, 6vw, 84px) 0 clamp(26px, 3vw, 38px); background: linear-gradient(135deg, #eaf6f4 0%, #dcedf1 100%); }
.blog-hero .section-title { font-size: clamp(32px, 4.2vw, 48px); }
.blog-list { padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 100px); background: #fff; }
.post__excerpt { color: var(--body); font-size: 13.5px; line-height: 1.6; margin: 0 0 16px; }
.articles .post__body h3, .blog-list .post__body h3, .post-related .post__body h3 { margin-bottom: 10px; }

/* Single post */
.post-hero { background: linear-gradient(135deg, #eaf6f4 0%, #dcedf1 100%); padding: clamp(32px, 4vw, 52px) 0 clamp(34px, 4vw, 54px); }
.post-hero__cat { display: inline-block; background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 12px; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.post-hero h1 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.18; max-width: 24ch; }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: var(--muted); font-size: 13.5px; }
.post-hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-hero__meta svg { width: 15px; height: 15px; color: var(--teal); }

.post-wrap { max-width: 820px; padding-top: clamp(30px, 4vw, 50px); padding-bottom: clamp(40px, 5vw, 64px); }
.post-body__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16 / 8.5; margin-bottom: clamp(26px, 3.5vw, 42px); }
.post-body__media img { width: 100%; height: 100%; object-fit: cover; }

.post-prose { color: var(--body); font-size: 16px; line-height: 1.8; }
.post-prose h2 { font-size: clamp(20px, 2.2vw, 26px); color: var(--ink); margin: 34px 0 14px; }
.post-prose p { margin-bottom: 16px; }
.post-prose ul { margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.post-prose ul li { position: relative; padding-left: 28px; }
.post-prose ul li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.post-author { margin-top: 38px; padding: 24px 26px; border-radius: 18px; background: var(--teal-050); border: 1px solid var(--teal-100); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.post-author small { color: var(--muted); font-size: 12.5px; display: block; }
.post-author b { font-family: var(--font-head); color: var(--ink); font-size: 17px; display: block; margin: 2px 0; }
.post-author > div span { color: var(--body); font-size: 13px; }

.post-related { padding: clamp(48px, 6vw, 82px) 0; background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.articles__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-inline: auto; }

@media (max-width: 700px) {
  .articles__grid--2 { grid-template-columns: 1fr; max-width: 460px; }
  .post-author { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   FOOTER CTA BAND
   ================================================================= */
.cta-band {
  /* only set top margin — keep .container's margin-inline:auto so the band stays centered */
  margin-top: clamp(64px, 8vw, 110px);
}
.cta-band__inner {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal) 70%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band__lead { display: flex; align-items: center; gap: 20px; }
.cta-band__icon {
  flex: 0 0 auto;
  width: 62px; height: 62px;
  border-radius: 18px;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center;
}
.cta-band__icon svg { width: 30px; height: 30px; color: #fff; }
.cta-band small { font-family: var(--font-head); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; opacity: .85; }
.cta-band h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin-top: 4px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 14.5px; max-width: 34em; margin-top: 4px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--border);
  margin-top: clamp(48px, 6vw, 80px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 4vw, 52px);
}
.footer__brand img { height: 54px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; color: var(--body); max-width: 30ch; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--teal);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.footer__social a:hover { background: var(--teal); color: #fff; transform: translateY(-4px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 3px; border-radius: 3px; background: var(--teal);
}
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 14.5px;
  color: var(--body);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer__col a:hover { color: var(--teal); padding-left: 5px; }

.footer__contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14.5px; color: var(--body); }
.footer__contact .ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; }
.footer__contact .ic svg { width: 18px; height: 18px; }
.footer__contact b { display: block; color: var(--ink); font-weight: 600; }

.footer__bar {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}
.footer__bar a:hover { color: var(--teal); }
.footer__bar nav { display: flex; gap: 22px; }

/* =================================================================
   GSAP reveal (prevent flash before JS animates)
   ================================================================= */
.js-anim [data-reveal] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-anim [data-reveal] { opacity: 1; }
  .hero__float .pulse::after { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1180px) {
  .hero__float { left: auto; right: clamp(16px, 4vw, 48px); }
}

@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: block; }

  /* Hero reflows to a clean stack: copy → building photo → card */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 28px 0 0;
  }
  .hero__inner { order: 1; }
  .hero__content { max-width: none; }
  .hero__photo {
    order: 2;
    position: relative;
    inset: auto;
    width: auto;
    height: clamp(240px, 56vw, 380px);
    margin: 26px var(--gutter) 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
  }
  .hero__overlay { display: none; }
  .hero__float {
    order: 3;
    position: relative;
    left: auto; right: auto; top: auto;
    margin: -34px auto 0;
    max-width: 300px;
  }
  .stats { margin-top: 30px; }
}

@media (max-width: 760px) {
  :root { --gutter: 18px; }
  .topbar__group--left .topbar__item:nth-child(3),
  .topbar__divider { display: none; }
  .topbar { font-size: 12px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3)::before { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
}

@media (max-width: 480px) {
  .topbar__group--left .topbar__item:nth-child(1) { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
}

/* =================================================================
   From Our Instagram — fanned reels carousel
   ================================================================= */
.reels {
  background: #fff;
  padding: clamp(56px, 7vw, 100px) 0 clamp(44px, 5vw, 80px);
  overflow: hidden;
}
.reels__head {
  position: relative;
  max-width: 720px;
  text-align: center;
}
.reels__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--teal-dark);
  background: var(--teal-050);
  border: 1px solid var(--border);
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.reels__eyebrow svg { width: 15px; height: 15px; }
.reels__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 14px;
}
.reels__sub {
  color: var(--body);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

/* circular Instagram badge over the title */
.reels__badge {
  position: absolute;
  top: -22px;
  right: clamp(0px, 14%, 150px);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 3px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  background: conic-gradient(from 210deg, #515bd4, #8134af, #dd2a7b, #feda77, #f58529, #515bd4);
  box-shadow: 0 12px 26px rgba(221, 42, 123, .34);
  transform: rotate(-9deg);
  transition: transform .3s ease;
  z-index: 3;
}
.reels__badge:hover { transform: rotate(0) scale(1.06); }
.reels__badge-ic { display: grid; place-items: center; }
.reels__badge-ic svg { width: 17px; height: 17px; }

/* hand-drawn doodles */
.reels__doodle { position: absolute; color: var(--ink); opacity: .42; }
.reels__doodle--star  { width: 28px; height: 28px; left: 4%;  top: 64%; }
.reels__doodle--arrow { width: 64px; height: 44px; right: 3%; top: 56%; }
.reels__doodle svg { width: 100%; height: 100%; }

/* fanned, draggable track */
.reels__track {
  display: flex;
  gap: clamp(14px, 1.4vw, 22px);
  margin-top: clamp(30px, 4vw, 54px);
  padding: 34px clamp(16px, 8vw, 120px) 74px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.reels__track::-webkit-scrollbar { display: none; }
.reels__track.is-grabbing { cursor: grabbing; }
.reels__track.is-grabbing .reel { transition: none; }

/* reel card */
.reel {
  position: relative;
  flex: 0 0 auto;
  width: clamp(178px, 18vw, 234px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: center;
  text-decoration: none;
  background: var(--teal-050);
  transform: translateY(var(--dy, 0)) rotate(var(--rot, 0deg));
  transform-origin: center bottom;
  box-shadow: 0 22px 44px -18px rgba(21, 35, 59, .5);
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.reel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
.reel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 33, .62), rgba(8, 18, 33, .05) 46%, transparent 70%);
}
.reel__ig { position: absolute; top: 13px; right: 13px; width: 26px; height: 26px; color: #fff; opacity: .95; filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.reel__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
  transition: transform .3s ease, background .3s ease;
}
.reel__play svg { width: 24px; height: 24px; margin-left: 3px; }
.reel__cap {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 34px 64px -20px rgba(21, 35, 59, .62);
  z-index: 2;
}
.reel:hover .reel__play { transform: scale(1.1); background: #fff; }

.reels__cta { text-align: center; margin-top: clamp(26px, 3vw, 42px); }
.reels__cta .btn svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
  .reels__doodle { display: none; }
  .reels__badge { width: 74px; height: 74px; right: 6px; top: -10px; font-size: .62rem; }
  .reels__badge-ic svg { width: 14px; height: 14px; }
  .reels__track { padding: 28px 18px 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .reel { transform: none !important; }
}

/* =================================================================
   TEAM HERO (homepage) — copy beside the full, uncropped doctors
   photo. The image keeps its natural aspect ratio at every
   viewport; nothing is ever cropped away.
   ================================================================= */
.hero--team::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -160px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14,140,130,.13), transparent 72%);
  pointer-events: none;
}
.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 600px);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__media {
  position: relative;
  z-index: 1;
}
.hero__media > img {
  display: block;
  width: 100%;
  height: auto; /* natural aspect — never crops the doctors */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
/* Offset teal slab + thin frame accents behind the photo */
.hero__media::before {
  content: "";
  position: absolute;
  right: -16px; bottom: -16px;
  width: 58%; height: 48%;
  background: var(--teal-100);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero__media::after {
  content: "";
  position: absolute;
  left: -14px; top: -14px;
  width: 44%; height: 40%;
  border: 2px solid rgba(14,140,130,.22);
  border-radius: var(--radius-lg);
  z-index: 0;
}
@media (max-width: 1180px) {
  .hero__inner--split { grid-template-columns: minmax(0, 1fr) minmax(300px, 470px); }
}

@media (max-width: 980px) {
  .hero__inner--split { display: block; }
  .hero__media { margin-top: 28px; }
  .hero__media::before,
  .hero__media::after { display: none; }
}

/* Doctor card actions — real profile link + WhatsApp booking
   (replaces the former dead social icons) */
.doc__actions { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.doc__profile {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 500; font-size: 14px;
  color: var(--teal); padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--teal-050); border: 1px solid var(--teal-100);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.doc__profile svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.doc__profile:hover { background: var(--teal); color: #fff; }
.doc__profile:hover svg { transform: translateX(3px); }
.doc__wa {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal); border: 1px solid var(--teal-100);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.doc__wa svg { width: 17px; height: 17px; }
.doc__wa:hover { background: #25D366; border-color: #25D366; color: #fff; transform: translateY(-3px); }

/* =================================================================
   LEGAL PAGES (privacy, terms) — long-form readable prose
   ================================================================= */
.legal { padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px); background: var(--white); }
.legal__inner { max-width: 820px; }
.legal__head h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin: 14px 0 0; letter-spacing: -0.02em; }
.legal__meta { color: var(--muted); font-size: 14px; margin-top: 18px; }
.legal__body { margin-top: clamp(28px, 3.5vw, 44px); color: var(--body); }
.legal__body h2 {
  font-family: var(--font-head); color: var(--ink);
  font-size: clamp(19px, 1.7vw, 22px); margin: 38px 0 12px;
}
.legal__body p { margin: 0 0 14px; line-height: 1.75; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin-bottom: 8px; line-height: 1.7; }
.legal__body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--teal-dark); }
.legal__callout {
  background: var(--teal-050); border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius); padding: 20px 22px; margin: 26px 0 34px;
}
.legal__callout b { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 6px; }
.legal__callout p { margin: 0; }

/* Honeypot — hidden from humans, visible to naive bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
/* Alternate-channel line under a submit button */
.form-alt { font-size: 13px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-alt a { color: var(--teal); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.form-alt a:hover { color: var(--teal-dark); }
/* Error state for the inline form notice */
.appoint__note--error { color: #b3261e; }
