/* ============================================================
   Dr Mike McGill — Paediatrician | Stylesheet v2
   Dark & Distinguished — Navy · Gold · Playfair
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1a1a2e;
  --navy-mid:    #16213e;
  --navy-light:  #0f3460;
  --gold:        #f59e0b;
  --gold-dark:   #d97706;
  --gold-light:  #fef3c7;
  --gold-pale:   #fffbeb;
  --white:       #ffffff;
  --off-white:   #f9f8f5;
  --text:        #1a1a2e;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --border-dark: #334155;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 48px rgba(0,0,0,.18);
  --transition:  160ms ease;
  --container:   1100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img { height: 95px; width: auto; }
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  font-family: 'Playfair Display', serif;
}
.logo-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.logo-creds {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.825rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(245,158,11,.12);
  color: var(--gold);
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px 28px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ── Alert Banner ──────────────────────────────────────────── */
.alert-banner {
  background: #451a03;
  border-bottom: 1px solid #92400e;
  padding: 11px 28px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fde68a;
}
.alert-banner span {
  display: inline-block;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 999px;
  padding: 3px 18px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f3460 100%);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-bio {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(245,158,11,.35);
  box-shadow: 0 0 0 8px rgba(245,158,11,.08), var(--shadow-lg);
  flex-shrink: 0;
}
.hero-photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 4px solid rgba(245,158,11,.25);
  box-shadow: 0 0 0 8px rgba(245,158,11,.06), var(--shadow-lg);
  flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), transform 80ms, box-shadow var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(245,158,11,.5);
}
.btn-outline:hover {
  background: rgba(245,158,11,.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Sections ──────────────────────────────────────────────── */
section { padding: 72px 0; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── About Section ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.about-body p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 300;
}
.about-body p:last-child { margin-bottom: 0; }
.creds-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.creds-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.creds-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.creds-list li:last-child { border-bottom: none; }
.creds-list .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Philosophy Section ────────────────────────────────────── */
.philosophy-section {
  background: var(--navy);
  padding: 80px 0;
  border-top: none !important;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.philosophy-quote {
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}
.philosophy-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 16px;
}
.philosophy-quote cite {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.philosophy-body .section-label { color: var(--gold); }
.philosophy-body .section-title { color: var(--white); }
.philosophy-body p {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  font-size: 0.975rem;
  font-weight: 300;
  margin-bottom: 14px;
}
.philosophy-body p:last-child { margin-bottom: 0; }

/* ── Services ──────────────────────────────────────────────── */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Hours ─────────────────────────────────────────────────── */
.hours-section { background: var(--white); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 13px 0; color: var(--text); }
.hours-table td:first-child { font-weight: 500; padding-right: 24px; }
.hours-table td.closed { color: var(--text-muted); }
.hours-note { margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.location-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.location-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.location-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
}
.location-line:last-child { margin-bottom: 0; }
.location-line .icon { flex-shrink: 0; margin-top: 1px; }
.location-line a { color: rgba(255,255,255,.8); }
.location-line a:hover { color: var(--gold); text-decoration: none; }

/* ── Contact Strip ─────────────────────────────────────────── */
.contact-strip { background: var(--gold); padding: 52px 0; }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-strip p { font-size: 0.9rem; color: rgba(26,26,46,.65); }
.contact-strip-links { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-strip-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,26,46,.12);
  color: var(--navy);
  border: 1px solid rgba(26,26,46,.2);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
  text-decoration: none;
}
.contact-strip-links a:hover { background: rgba(26,26,46,.22); text-decoration: none; color: var(--navy); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0d0d1a;
  color: rgba(255,255,255,.4);
  padding: 36px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-inner a:hover { color: var(--gold); text-decoration: none; }

/* ── Inner Pages ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.page-hero p { color: rgba(255,255,255,.6); font-size: 1rem; font-weight: 300; }

.page-body { padding: 60px 0 88px; }
.page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-card table { width: 100%; font-size: 0.85rem; border-collapse: collapse; }
.sidebar-card table tr { border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-card table tr:last-child { border-bottom: none; }
.sidebar-card table td { padding: 9px 0; color: rgba(255,255,255,.8); }
.sidebar-card table td:first-child { font-weight: 500; padding-right: 12px; }
.sidebar-card table td.closed { color: rgba(255,255,255,.3); }
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
}
.sidebar-contact-item:last-child { margin-bottom: 0; }
.sidebar-contact-item .icon { flex-shrink: 0; margin-top: 1px; }
.sidebar-contact-item a { color: rgba(255,255,255,.8); }
.sidebar-contact-item a:hover { color: var(--gold); text-decoration: none; }

/* Prose */
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; font-size: 0.975rem; font-weight: 300; }
.prose ul { list-style: none; padding: 0; margin-bottom: 20px; }
.prose ul li {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
}
.prose table th {
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: 13px 18px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.prose table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.prose table tbody tr:last-child td { border-bottom: none; }
.prose table tbody tr:hover td { background: var(--gold-pale); }

.footnote {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 16px 20px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 8px;
  font-weight: 300;
}

/* Contact Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.map-embed { margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: none; }

/* Contact Simple */
.contact-simple { max-width: 720px; margin: 0 auto; padding: 56px 0 80px; }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-card-large {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card-large:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.contact-card-large h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-card-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-light);
  word-break: break-all;
  margin-bottom: 8px;
}
.contact-card-value:hover { color: var(--gold-dark); text-decoration: none; }
.contact-card-note { font-size: 0.82rem; color: var(--text-muted); }
.contact-hours-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.contact-hours-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 18px;
}
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card-large { padding: 30px 24px; }
  .contact-hours-box { padding: 24px 20px; }
}

/* Providers */
.jump-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.jump-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--navy);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 5px 14px;
  text-decoration: none;
  transition: background 150ms, color 150ms;
  letter-spacing: 0.02em;
}
.jump-nav a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); text-decoration: none; }
.provider-section { margin-bottom: 52px; }
.provider-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.provider-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.provider-table thead th {
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: 11px 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.provider-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.55;
}
.provider-table tbody tr:last-child td { border-bottom: none; }
.provider-table tbody tr:hover td { background: var(--gold-pale); }
.provider-name { font-weight: 600; color: var(--navy); }
.provider-sub { font-weight: 400; color: var(--text-muted); font-size: 0.82rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo, .hero-photo-placeholder { margin: 0 auto; }
  .hero-bio { margin: 0 auto 36px; }
  .hero-eyebrow { justify-content: center; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .page-grid { grid-template-columns: 1fr; }
  .contact-strip-inner { flex-direction: column; text-align: center; }
  .contact-strip-links { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  section { padding: 52px 0; }
  .hero { padding: 56px 0 48px; }
  .page-hero { padding: 40px 0 32px; }
  .page-body { padding: 44px 0 64px; }
}
