:root {
  --ink: #112220;
  --muted: #576b68;
  --soft: #edf6f4;
  --soft-2: #f6faf9;
  --white: #ffffff;
  --line: #d3e4e1;
  --line-light: #e8f2f0;
  --green-950: #05292c;
  --green-850: #093c46;
  --green-700: #0a6f63;
  --green-600: #0f8577;
  --green-500: #14a393;
  --blue-100: #d8eef2;
  --gold: #c69a3f;
  --gold-soft: #f0cf74;
  --gold-glow: rgba(240, 207, 116, 0.25);
  --danger-bg: #fff0ee;
  --danger: #a3271f;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1160px;
  --shadow-sm: 0 2px 6px rgba(9, 60, 70, .06);
  --shadow-md: 0 16px 36px rgba(9, 60, 70, .10);
  --shadow-lg: 0 24px 60px rgba(5, 41, 44, .22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1100;
  padding: 10px 14px;
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform .2s ease;
  font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--gold-soft), var(--gold));
  z-index: 1000;
  transition: width 0.1s linear;
}

.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--gold), var(--gold-soft), var(--green-600));
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-soft { background: linear-gradient(180deg, var(--soft-2), var(--soft)); }
.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-eyebrow {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 750;
}
.section-sub {
  max-width: 42rem;
  margin: 14px auto 0;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 52px; padding: 14px 26px; font-size: 1rem; }
.btn-sm { min-height: 38px; padding: 8px 16px; font-size: .88rem; }
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(10, 111, 99, .22);
}
.btn-primary:hover { background: var(--green-600); box-shadow: 0 12px 26px rgba(10, 111, 99, .30); }
.btn-secondary {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border-color: rgba(255, 255, 255, .36);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, .20); border-color: rgba(255, 255, 255, .5); }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(211, 228, 225, .86);
  backdrop-filter: saturate(160%) blur(14px);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  flex: none;
  color: var(--gold-soft);
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  border: 1px solid rgba(240, 207, 116, .75);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.brand:hover .brand-mark { transform: scale(1.05); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: Poppins, sans-serif;
  font-size: 1.02rem;
  color: var(--green-950);
}
.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-link {
  position: relative;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 650;
  padding: 4px 0;
  transition: color .18s ease;
}
.nav-link:hover { color: var(--green-700); }
.nav-link.active {
  color: var(--green-700);
  font-weight: 750;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
}
.nav-cta { color: var(--white) !important; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  width: 21px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 41, 44, .96), rgba(9, 60, 70, .85)),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  color: var(--white);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(240, 207, 116, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.7;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% 42%;
  height: 70%;
  background: linear-gradient(120deg, transparent, rgba(240, 207, 116, .14), transparent);
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 81px);
  padding-top: 74px;
  padding-bottom: 92px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  color: #e6fbf6;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
  backdrop-filter: blur(6px);
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .22);
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.75; }
}

.hero h1 {
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(2.55rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lead {
  max-width: 42rem;
  margin: 22px 0 0;
  color: #d4e7e4;
  font-size: clamp(1.04rem, 1.6vw, 1.23rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 650;
  color: var(--gold-soft);
}
.badge-pill svg { width: 15px; height: 15px; color: var(--gold-soft); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-panel {
  padding: 34px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(240, 207, 116, .45);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.panel-kicker {
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-panel h2 {
  margin-bottom: 24px;
  font-size: 1.65rem;
}
.hero-list {
  display: grid;
  gap: 11px;
}
.hero-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}
.hero-list span svg {
  width: 18px;
  height: 18px;
  color: var(--green-700);
  flex: none;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.proof-item:last-child { border-right: 0; }
.proof-item:hover { background: var(--soft-2); }
.proof-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex: none;
  color: var(--green-700);
  background: var(--soft);
  border-radius: var(--radius);
}
.proof-icon svg { width: 100%; height: 100%; }
.proof-grid strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-950);
  font-family: Poppins, sans-serif;
  font-size: .98rem;
}
.proof-grid span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: start;
}
.section-copy p {
  max-width: 39rem;
  font-size: 1.05rem;
}
.feature-stack {
  display: grid;
  gap: 16px;
}
.feature-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature-stack article:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 111, 99, .32);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-950);
  background: var(--blue-100);
  border-radius: var(--radius);
  font-weight: 850;
  font-size: 1rem;
}
.feature-stack h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.feature-stack p { margin: 0; font-size: .95rem; }

.services-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto 36px;
}
.search-input-wrap {
  position: relative;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
}
.search-input-wrap input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.search-input-wrap input:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(10, 111, 99, .14);
}
.clear-search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tab-btn {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s ease;
}
.tab-btn:hover {
  background: var(--soft);
  color: var(--ink);
}
.tab-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 111, 99, .22);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 111, 99, .35);
  box-shadow: var(--shadow-md);
}
.service-card.hidden {
  display: none !important;
}
.service-card-wide { grid-column: span 2; min-height: 240px; }
.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  padding: 12px;
  color: var(--green-700);
  background: var(--soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}
.card-icon svg { width: 100%; height: 100%; }
.service-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}
.service-card p {
  margin: 0 0 16px;
  font-size: .94rem;
  flex-grow: 1;
}
.service-action-link {
  display: inline-flex;
  align-items: center;
  font-size: .88rem;
  font-weight: 750;
  color: var(--green-700);
  transition: color .15s ease, transform .15s ease;
}
.service-action-link:hover { color: var(--green-600); transform: translateX(3px); }

.no-services-found {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  max-width: 540px;
  margin: 0 auto;
}
.no-services-icon { font-size: 2.5rem; margin-bottom: 12px; }
.no-services-found h4 { font-size: 1.2rem; margin-bottom: 8px; }
.no-services-found p { margin-bottom: 18px; font-size: .95rem; }

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.doctor-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.2;
  background: var(--soft);
}
.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.doctor-card:hover img {
  transform: scale(1.04);
}
.doctor-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(5, 41, 44, .85);
  color: var(--gold-soft);
  border: 1px solid rgba(240, 207, 116, .4);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}
.doctor-info {
  padding: 22px 22px 24px;
  border-top: 4px solid var(--gold);
}
.doctor-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-700);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.doctor-info h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.doctor-info p {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 650;
}
.doctor-info small { color: var(--muted); font-weight: 650; display: block; margin-bottom: 14px; }
.doctor-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  color: var(--green-700);
  font-size: .85rem;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.doctor-action-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.doctors-note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 36px auto 0;
  padding: 18px 24px;
  color: var(--green-950);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.note-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--gold);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.note-icon svg { width: 20px; height: 20px; }
.doctors-note p { margin: 0; font-size: .95rem; font-weight: 600; }

section[id] {
  scroll-margin-top: 84px;
}

.faq-section { background: var(--white); }
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: rgba(10, 111, 99, .35); }
.faq-item.active {
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  gap: 16px;
}
.faq-trigger:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: -2px;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--green-700);
  transition: transform .28s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}
.faq-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px 22px;
  opacity: 0;
  transition: opacity .25s ease;
}
.faq-item.active .faq-inner {
  opacity: 1;
}
.faq-inner p {
  margin: 0;
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(246, 250, 249, .95), rgba(237, 246, 244, .98)),
    var(--soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 44px;
  align-items: start;
}
.contact-copy .section-title { max-width: 12ch; }
.contact-copy .section-sub {
  margin-left: 0;
  margin-right: 0;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 24px;
}
.contact-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--green-700);
  background: var(--soft);
  border-radius: var(--radius);
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-list strong {
  display: block;
  margin-bottom: 2px;
  font-family: Poppins, sans-serif;
  font-size: .95rem;
}
.contact-list p { margin: 0; font-size: .94rem; }
.missing-detail { color: #8a9896; font-style: italic; }
.map-embed {
  overflow: hidden;
  height: 270px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}
.contact-form > p {
  margin-bottom: 22px;
  font-size: .95rem;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 750;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(10, 111, 99, .14);
}
.form-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  color: var(--green-950);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .92rem;
  line-height: 1.5;
}
.form-note.error {
  color: var(--danger);
  background: var(--danger-bg);
  border-color: #ffd3cc;
}

.site-footer {
  background: var(--green-950);
  color: #cfdfdc;
  border-top: 5px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 42px;
  padding-top: 58px;
  padding-bottom: 52px;
}
.footer-brand strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
}
.footer-brand p,
.footer-col p {
  color: #aebfbc;
  font-size: .94rem;
}
.footer-col h4 {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: .83rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #cfdfdc;
  font-size: .94rem;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-bottom p {
  margin: 0;
  color: #aebfbc;
  font-size: .86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.mobile-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .service-card,
  .doctor-card,
  .faq-icon,
  .faq-content { transition: none; }
}

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 80px;
  }
  .hero h1 { max-width: 13ch; }
  .hero-panel { max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-bottom: 1px solid var(--line); }
}

@media (max-width: 780px) {
  body { padding-bottom: 76px; }
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .header-inner { height: 70px; }
  .brand-text strong { font-size: .94rem; }
  .brand-text small { font-size: .66rem; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 75px 16px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }
  .nav a:not(.btn):hover { background: var(--soft); }
  .nav-cta { margin-top: 8px; }
  .hero-grid {
    padding-top: 48px;
    padding-bottom: 68px;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-panel { padding: 24px; }
  .proof-strip { margin-top: 0; }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .services-grid,
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card-wide {
    min-height: auto;
    grid-column: auto;
  }
  .contact-copy .section-title { max-width: none; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 955;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--radius);
    font-weight: 800;
  }
  .mcta-ghost {
    color: var(--green-950);
    background: var(--soft);
    border: 1px solid var(--line);
  }
  .mcta-primary {
    color: var(--white);
    background: var(--green-700);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .brand { gap: 9px; }
  .brand-mark { width: 38px; height: 38px; }
  .eyebrow {
    align-items: flex-start;
    border-radius: var(--radius);
  }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; }
  .feature-stack article,
  .contact-list article {
    grid-template-columns: 1fr;
  }
  .doctors-note { flex-direction: column; text-align: center; }
}
