/* ===================== TOKENS ===================== */
:root {
  --navy: #10263a;
  --navy-2: #163049;
  --coral: #ef8368;
  --coral-dark: #e5714f;
  --cream: #fdf6f0;
  --cream-2: #fbf1e8;
  --blue-tint: #eef2f8;
  --ink: #1f2d3a;
  --muted: #6b7885;
  --line: #ece3da;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 40px -24px rgba(16, 38, 58, .35);
  --maxw: 1120px;
  --font-head: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  letter-spacing: -.01em;
}
.section-sub { color: var(--muted); margin-top: 10px; max-width: 620px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 14px;
}
.eyebrow-dark { color: var(--coral-dark); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 12px 24px -12px var(--coral-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand-logo { height: 40px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: 30px; }
.main-nav a { font-size: .92rem; color: var(--ink); font-weight: 500; }
.main-nav a:hover { color: var(--coral); }
.btn-book { margin-left: auto; padding: 10px 20px; font-size: .88rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(120% 120% at 80% 0%, #1c3a55 0%, var(--navy) 55%);
  color: #fff;
  padding: 64px 0 72px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero .eyebrow { color: var(--coral); }
.hero-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero-lede { color: rgba(255,255,255,.78); margin: 22px 0 30px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }

/* ===================== CARE CARDS ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.care-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .2s ease;
}
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.care-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fbe2d8;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.care-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--navy); margin-bottom: 8px; }
.care-card p { color: var(--muted); font-size: .92rem; }

/* ===================== PATHWAY ===================== */
.pathway { background: var(--blue-tint); }
.pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 36px; }
.step-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
  display: block;
  margin-bottom: 10px;
}
.pathway-step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.pathway-step p { color: var(--muted); font-size: .9rem; }

/* ===================== RECOVERY ===================== */
.recovery { background: var(--cream); }
.recovery-card {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 50px 90px -55px rgba(16, 38, 58, .45);
}

.recovery-media { position: relative; min-height: 460px; }
.recovery-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .35);
}

.recovery-copy { padding: clamp(36px, 5vw, 64px); }
.recovery-copy .eyebrow { margin-bottom: 14px; }
.recovery-copy .section-title { line-height: 1.12; }
.recovery-lede {
  color: var(--muted);
  margin: 18px 0 28px;
  max-width: 480px;
  font-size: 1.02rem;
}
.recovery-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  margin: 0 0 36px;
  padding: 0;
}
.recovery-list li {
  position: relative;
  padding-left: 32px;
  font-size: .94rem;
  color: var(--ink);
}
.recovery-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5714f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat,
    rgba(239, 131, 104, .14);
}

/* ===================== STORIES ===================== */
.stories { background: var(--blue-tint); }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.story-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px -30px rgba(16,38,58,.4);
}
.story-media { position: relative; }
.story-media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--coral);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.4);
  transition: transform .15s ease;
}
.play-btn:hover { transform: scale(1.08); }
.story-body { padding: 20px 22px 24px; }
.quote { color: var(--ink); font-size: .92rem; position: relative; padding-top: 6px; }
.quote::before { content: "\201C"; color: var(--coral); font-family: var(--font-head); font-size: 1.6rem; margin-right: 4px; }
.story-name { font-weight: 600; color: var(--navy); margin-top: 16px; }
.story-proc { text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--muted); }

/* ===================== GALLERY ===================== */
.gallery-head { display: flex; justify-content: space-between; align-items: center; }
.gallery-controls { display: flex; gap: 10px; }
.round-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.round-btn:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.round-btn:disabled { opacity: .35; cursor: default; }
.round-btn:disabled:hover { background: #fff; color: var(--navy); border-color: var(--line); }

/* ---- generic slider track ---- */
.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 30px;
  padding: 4px 2px 6px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; }

/* ---- gallery ---- */
.gallery-track > .gallery-item { flex: 0 0 calc((100% - 40px) / 3); margin: 0; }
.gallery-item img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  cursor: zoom-in;
  box-shadow: 0 20px 40px -30px rgba(16,38,58,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item img:hover { transform: translateY(-4px); box-shadow: 0 26px 46px -26px rgba(16,38,58,.5); }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--blue-tint); }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 440px;
  box-shadow: 0 18px 40px -30px rgba(16,38,58,.4);
}
.rating-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
.rating-num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.rating-title { font-weight: 600; color: var(--navy); }
.rating-count { font-size: .82rem; color: var(--muted); }
.stars { color: #f5b301; letter-spacing: 2px; font-size: .9rem; }
.write-review { color: var(--coral); font-size: .82rem; font-weight: 600; }
.reviews-controls { display: flex; gap: 8px; margin-left: auto; }
.reviews-track > .review-card { flex: 0 0 calc((100% - 40px) / 3); }
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 40px -32px rgba(16,38,58,.4);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fbe2d8;
  color: var(--coral-dark);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.reviewer { font-weight: 600; color: var(--navy); font-size: .92rem; }
.review-age { font-size: .78rem; color: var(--muted); }
.review-card p:last-child { color: var(--muted); font-size: .88rem; margin-top: 10px; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cdd6e0;
  border: 0; padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.dot.active { background: var(--coral); width: 22px; border-radius: 6px; }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: rgba(9, 20, 31, .92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { margin: 0; max-width: min(1000px, 92vw); max-height: 86vh; text-align: center; }
.lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8);
  transform: scale(.96);
  transition: transform .28s ease;
}
.lightbox.open .lb-img { transform: scale(1); }
.lb-caption { color: rgba(255,255,255,.8); font-size: .88rem; margin-top: 14px; }
.lb-close, .lb-nav {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
  flex: 0 0 auto;
}
.lb-close:hover, .lb-nav:hover { background: var(--coral); }
.lb-nav { width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lb-close {
  position: absolute;
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  font-size: 1.7rem; line-height: 1;
}
@media (max-width: 640px) {
  .lb-nav { position: absolute; bottom: 24px; width: 46px; height: 46px; }
  .lb-prev { left: 24px; }
  .lb-next { right: 24px; }
}

/* ===================== FOOTER ===================== */
.site-footer { background: #0b1a28; color: rgba(255,255,255,.72); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.1fr 1.2fr 1.5fr; gap: 40px; padding-bottom: 48px; align-items: start; }
.footer-brand .brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
  background: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  box-sizing: content-box;
}
.footer-brand p { font-size: .92rem; max-width: 260px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.social-links a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: var(--coral); font-size: 1.12rem; font-family: var(--font-head); font-weight: 600; margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-size: .88rem; margin-bottom: 13px; line-height: 1.45; }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--coral); }
.footer-col p { color: rgba(255,255,255,.72); }

/* Contact column */
.footer-contact .contact-line { display: flex; align-items: center; gap: 8px; }
.footer-contact .contact-line a { display: inline; margin: 0; }
.contact-item { display: flex; gap: 8px; margin-bottom: 16px; }
.contact-item .ci-icon { flex: 0 0 auto; line-height: 1.5; opacity: .8; }
.contact-item p { margin-bottom: 3px; }
.ci-phones a, .contact-line a { color: #6ea8ff; display: inline; margin: 0; }
.ci-phones a:hover, .contact-line a:hover { color: #9dc4ff; }
.ci-icon { font-size: .82rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom p { font-size: .78rem; text-align: center; color: rgba(255,255,255,.5); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .main-nav, .btn-book { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { justify-content: space-between; }
  .hero-inner, .recovery-card { grid-template-columns: 1fr; }
  .recovery-media { min-height: 320px; }
  .hero-media { order: -1; }
  .card-grid, .stories-grid { grid-template-columns: 1fr; }
  .gallery-track > .gallery-item { flex: 0 0 80%; }
  .reviews-track > .review-card { flex: 0 0 88%; }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
}
@media (max-width: 560px) {
  .pathway-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .recovery-list { grid-template-columns: 1fr; }
  .reviews-summary { flex-wrap: wrap; }
}

/* ===================== STATS BAR ===================== */
.stats-wrap { background: var(--cream); }
.stats-card {
  position: relative;
  z-index: 5;
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 34px 64px -42px rgba(16, 38, 58, .5);
  padding: 30px 28px;
}
.stat { flex: 1; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--coral);
  line-height: 1;
}
.stat-label { display: block; margin-top: 8px; color: var(--muted); font-size: .9rem; }
.stat-divider { width: 1px; align-self: stretch; background: var(--line); }

/* ===================== ABOUT DOCTOR ===================== */
.about-doc { background: var(--blue-tint); }
.about-inner { display: grid; grid-template-columns: .92fr 1.12fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  right: -14px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 18px 34px -18px rgba(16, 38, 58, .6);
}
.about-badge-num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--coral); line-height: 1; }
.about-badge-text { font-size: .74rem; line-height: 1.3; color: rgba(255,255,255,.85); }
.about-copy .eyebrow { margin-bottom: 12px; }
.about-lede { color: var(--ink); font-size: 1.05rem; margin: 16px 0 14px; max-width: 520px; }
.about-text { color: var(--muted); margin-bottom: 22px; max-width: 520px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; list-style: none; padding: 0; margin: 0 0 22px; }
.about-cred {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--coral-dark);
  font-weight: 600;
  margin-bottom: 26px;
}

/* shared check-list bullets (about) */
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5714f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat,
    rgba(239, 131, 104, .14);
}

/* ===================== SYMPTOMS ===================== */
.symptoms { background: var(--cream); }
.symptoms-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.symptoms-sub { color: var(--muted); max-width: 470px; }
.symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.symptom {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 500;
  color: var(--navy);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.symptom::before {
  content: "";
  flex: 0 0 auto;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px #fbe2d8;
}
.symptom:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }

/* ===================== APPOINTMENT ===================== */
.appointment { background: var(--blue-tint); }
.appt-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.appt-lede { color: var(--muted); margin: 16px 0 26px; max-width: 420px; }
.appt-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.appt-points li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; }
.appt-points li span { font-size: 1rem; }

.appt-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 40px 80px -50px rgba(16, 38, 58, .45);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239, 131, 104, .16);
  background: #fff;
}
.field textarea { resize: vertical; }
.appt-submit { width: 100%; justify-content: center; margin-top: 6px; }
.appt-note { margin-top: 14px; font-size: .88rem; color: var(--coral-dark); font-weight: 600; text-align: center; }

/* ===================== NEW SECTIONS — RESPONSIVE ===================== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 440px; }
  .appt-inner { grid-template-columns: 1fr; gap: 36px; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stats-card { flex-wrap: wrap; gap: 24px 0; padding: 26px 18px; }
  .stat { flex: 0 0 50%; }
  .stat-divider { display: none; }
  .about-list { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
