/* =========================================================
   Wharton Dental — Modern Refined Theme
   Designed & developed by BVTech LLC (bvtech.org)
   Built free of charge — hostable on Cloudflare Pages
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand palette — warm, clinical, premium */
  --teal-900: #0a3b3d;
  --teal-800: #0f4f52;
  --teal-700: #156569;
  --teal-600: #1a7e83;
  --teal-500: #2a9da3;
  --teal-100: #d6ecee;
  --teal-50:  #eef7f8;

  --gold-600: #b78a2f;
  --gold-500: #d4a64a;
  --gold-400: #e0bc6e;

  --cream-100: #fbf8f3;
  --cream-200: #f2ece1;
  --cream-300: #e6dcc7;

  --ink-900: #111418;
  --ink-700: #2a2f36;
  --ink-500: #4a525c;
  --ink-400: #6b7480;
  --ink-300: #9aa3ad;
  --ink-200: #d4d9df;
  --ink-100: #ebeef1;

  --white:   #ffffff;
  --bg:      var(--cream-100);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans:    "Inter Tight", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,59,61,0.06), 0 1px 3px rgba(10,59,61,0.04);
  --shadow-md: 0 6px 18px rgba(10,59,61,0.08), 0 2px 6px rgba(10,59,61,0.05);
  --shadow-lg: 0 22px 50px rgba(10,59,61,0.14), 0 8px 20px rgba(10,59,61,0.08);

  /* Layout */
  --max-w: 1200px;
}

/* ---------- 2. Resets & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink-700);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }
p { margin: 0 0 var(--space-4); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-900);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.02em; }

.italic-accent { font-style: italic; color: var(--gold-600); font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 10px;
}

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-800);
  color: var(--cream-100);
}
.btn-primary:hover {
  background: var(--teal-900);
  color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  border-color: var(--teal-800);
  color: var(--teal-800);
}
.btn-secondary:hover {
  background: var(--teal-800);
  color: var(--cream-100);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--teal-900);
}
.btn-gold:hover {
  background: var(--gold-600);
  color: var(--cream-100);
}
.btn-arrow::after {
  content: "→";
  transition: transform .2s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- 4. Top Bar ---------- */
.topbar {
  background: var(--teal-900);
  color: var(--cream-200);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.topbar a { color: var(--cream-200); }
.topbar a:hover { color: var(--gold-400); }
.topbar-info { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.topbar-info span::before {
  content: "•";
  color: var(--gold-500);
  margin-right: 8px;
}
.topbar-info span:first-child::before { content: none; }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  background: var(--cream-100);
  border-bottom: 1px solid var(--cream-300);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 243, 0.92);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  gap: var(--space-5);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--teal-800);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal-900);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-text small {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 2px;
}

.main-nav { display: flex; gap: var(--space-5); align-items: center; }
.main-nav a {
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold-500);
  transition: right .25s ease;
}
.main-nav a:hover { color: var(--teal-900); }
.main-nav a:hover::after { right: 0; }
.main-nav a.active { color: var(--teal-900); }
.main-nav a.active::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--teal-900);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-9) 0 var(--space-10);
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,157,163,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -300px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,166,74,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero-content h1 {
  margin-bottom: var(--space-5);
}
.hero-content h1 .italic-accent {
  display: block;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 50ch;
  margin-bottom: var(--space-6);
}
.hero-meta {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--cream-300);
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-800);
  font-weight: 500;
  line-height: 1;
}
.hero-meta-item span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-400);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,166,74,0.25), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(42,157,163,0.35), transparent 50%);
}
.hero-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-6);
  color: var(--cream-100);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 248, 243, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 248, 243, 0.25);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-400);
}
.hero-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-4);
}
.hero-quote-attr {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-400);
}

/* ---------- 7. Pillar Cards (Why Choose Us) ---------- */
.pillars {
  background: var(--white);
  padding: var(--space-9) 0;
  position: relative;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.pillar {
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  background: var(--cream-100);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-50);
  display: grid; place-items: center;
  color: var(--teal-700);
  margin-bottom: var(--space-4);
}
.pillar h4 {
  color: var(--teal-900);
  margin-bottom: var(--space-3);
}
.pillar p {
  font-size: 0.95rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.6;
}

/* ---------- 8. Generic Section Layouts ---------- */
.section {
  padding: var(--space-9) 0;
}
.section-tight { padding: var(--space-8) 0; }
.section-cream { background: var(--cream-100); }
.section-teal {
  background: linear-gradient(160deg, var(--teal-800), var(--teal-900));
  color: var(--cream-100);
}
.section-teal h2, .section-teal h3, .section-teal h4 { color: var(--cream-100); }
.section-teal .eyebrow { color: var(--gold-400); }
.section-teal .eyebrow::before { background: var(--gold-400); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header p {
  font-size: 1.08rem;
  color: var(--ink-500);
}
.section-teal .section-header p { color: var(--cream-200); }

/* ---------- 9. Split Service Sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--cream-300);
}
.split:last-of-type { border-bottom: 0; }
.split.reverse > :first-child { order: 2; }
.split-visual {
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--teal-100), var(--cream-200));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(42,157,163,0.18), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(212,166,74,0.18), transparent 55%);
}
.split-visual .visual-label {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
}
.split-content h2 { margin-bottom: var(--space-4); }
.split-content p {
  font-size: 1.05rem;
  color: var(--ink-500);
  margin-bottom: var(--space-5);
}

/* ---------- 10. Service Chip Grid ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.chip {
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--teal-900);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .2s ease;
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}
.chip:hover {
  border-color: var(--teal-600);
  transform: translateX(4px);
  color: var(--teal-700);
}

/* ---------- 11. Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.testimonial {
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}
.testimonial-body {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-700);
  line-height: 1.55;
  margin-bottom: var(--space-5);
  flex: 1;
}
.testimonial-author {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-700);
  font-weight: 600;
  padding-top: var(--space-3);
  border-top: 1px solid var(--cream-300);
}

/* ---------- 12. Doctors ---------- */
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-7);
}
.doctor-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.doctor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.doctor-photo {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  position: relative;
  display: grid; place-items: center;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
}
.doctor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212,166,74,0.2), transparent 55%);
}
.doctor-body { padding: var(--space-6); }
.doctor-body h3 { margin-bottom: var(--space-1); }
.doctor-credentials {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.doctor-body p { color: var(--ink-500); font-size: 0.98rem; }

/* ---------- 13. CTA Strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  color: var(--cream-100);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,166,74,0.25), transparent 60%);
  border-radius: 50%;
}
.cta-strip .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--cream-100);
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cta-strip-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- 14. Insurance / Community Logos ---------- */
.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-8);
  align-items: center;
  margin-top: var(--space-6);
  padding: var(--space-5) 0;
}
.logo-row .logo-item {
  padding: var(--space-3) var(--space-5);
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  color: var(--ink-500);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  min-width: 130px;
  text-align: center;
}

/* ---------- 15. Map Section ---------- */
.map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-6);
  aspect-ratio: 16/7;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: var(--cream-200);
  padding: var(--space-8) 0 var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.footer-grid h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  margin: 0 0 var(--space-4);
  font-weight: 600;
}
.footer-grid p, .footer-grid li {
  font-size: 0.92rem;
  color: var(--cream-200);
  line-height: 1.7;
}
.footer-grid a { color: var(--cream-200); }
.footer-grid a:hover { color: var(--gold-400); }
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid ul li { margin-bottom: 6px; }
.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  font-size: 0.92rem;
}
.footer-hours dt { color: var(--gold-400); font-weight: 600; }
.footer-hours dd { margin: 0; color: var(--cream-200); }
.footer-bottom {
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.82rem;
  color: rgba(251, 248, 243, 0.65);
}
.footer-bottom a { color: rgba(251, 248, 243, 0.85); }
.footer-bottom .bvtech-credit a {
  color: var(--gold-400);
  font-weight: 600;
}

/* ---------- 17. Page Header (interior pages) ---------- */
.page-header {
  padding: var(--space-9) 0 var(--space-7);
  background: linear-gradient(160deg, var(--cream-100), var(--cream-200));
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,163,0.15), transparent 60%);
  border-radius: 50%;
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-400);
  margin-bottom: var(--space-3);
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--teal-700); }

/* ---------- 18. FAQ Accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: var(--space-6) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  padding: var(--space-5);
  cursor: pointer;
  font-weight: 600;
  color: var(--teal-900);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-600);
  transition: transform .25s ease;
  font-weight: 400;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-500);
  font-size: 1rem;
}

/* ---------- 19. Content blocks for interior pages ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 { margin-top: var(--space-7); }
.prose h3 { margin-top: var(--space-6); }
.prose ul, .prose ol {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--teal-900); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
}
.feature-list li {
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  font-size: 0.98rem;
  position: relative;
  padding-left: 3rem;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: var(--space-5);
  top: var(--space-4);
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- 20. Contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  margin-top: var(--space-6);
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.contact-info-card h4 {
  color: var(--teal-900);
  margin-bottom: var(--space-4);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  color: var(--teal-900);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.form {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-900);
  font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-700);
  background: var(--cream-100);
  transition: border-color .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-5); }
  .split.reverse > :first-child { order: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-100);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4);
    border-bottom: 1px solid var(--cream-300);
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--cream-300);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .hero-meta { flex-wrap: wrap; gap: var(--space-4); }
}

/* ---------- 22. Subtle entrance animation ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp .8s ease both;
}
.fade-up-delay-1 { animation-delay: .1s; }
.fade-up-delay-2 { animation-delay: .2s; }
.fade-up-delay-3 { animation-delay: .3s; }
.fade-up-delay-4 { animation-delay: .4s; }

/* ---------- 23. Print ---------- */
@media print {
  .topbar, .site-header, .site-footer, .cta-strip { display: none; }
  body { background: white; color: black; }
}

/* ============================================================
   Service detail pages — content sections, breadcrumbs, lists
   ============================================================ */

.content-narrow { max-width: 760px; margin: 0 auto; }

.content-section {
  padding: 4rem 0;
  background: var(--cream-100);
}
.content-section.alt {
  background: var(--cream-200, #f4eee2);
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--teal-900);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-800, #1b5658);
  margin: 1.75rem 0 0.5rem;
}
.content-section p {
  font-size: 1.075rem;
  line-height: 1.75;
  color: #2d2d2d;
  margin: 0 0 1rem;
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 1rem;
}

.breadcrumbs {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1.25rem;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--gold-400); }
.breadcrumbs span { margin: 0 0.4rem; opacity: 0.6; }

ul.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
ul.checklist li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.85rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--teal-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 6.5l2 2 4-4.5' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

ol.ordered {
  list-style: none;
  counter-reset: ord;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
ol.ordered li {
  counter-increment: ord;
  position: relative;
  padding: 0.6rem 0 0.6rem 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
ol.ordered li::before {
  content: counter(ord);
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 2.1rem;
  height: 2.1rem;
  background: var(--teal-900);
  color: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

/* FAQ accordions */
details.faq-item {
  background: #fff;
  border: 1px solid rgba(10, 59, 61, 0.08);
  border-radius: 10px;
  margin: 0.6rem 0;
  padding: 0;
  box-shadow: 0 1px 2px rgba(10,59,61,0.04);
  transition: box-shadow 0.2s;
}
details.faq-item[open] { box-shadow: 0 4px 14px rgba(10,59,61,0.07); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-900);
  position: relative;
  padding-right: 3rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold-500);
  font-weight: 400;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after {
  content: "−";
}
details.faq-item .faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: #3a3a3a;
  line-height: 1.7;
}
details.faq-item .faq-answer p { margin: 0; }
.faq-list { margin: 1.5rem 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700, #155153));
  color: var(--cream-100);
  padding: 3rem 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.4rem;
  color: var(--cream-100);
}
.cta-strip p {
  margin: 0;
  color: rgba(255,255,255,0.85);
}
.cta-strip a { color: var(--gold-400); }

.btn-light {
  background: var(--cream-100);
  color: var(--teal-900);
}
.btn-light:hover {
  background: #fff;
  color: var(--teal-900);
}

/* Page header (used on inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700, #155153));
  color: var(--cream-100);
  padding: 4rem 0 3.5rem;
  position: relative;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--cream-100);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
  color: var(--cream-100);
}
.page-header .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 720px;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

