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

:root {
  --navy:       #1d3557;
  --navy-soft:  #2c4a6e;
  --teal:       #2e86a0;
  --teal-dark:  #1f6070;
  --teal-light: #eaf4f7;
  --silver:     #cacdd6;
  --silver-light: #f4f5f7;
  --rule:       #dddfe6;
  --white:      #ffffff;
  --dark:       #1a2535;
  --text-body:  #363c44;
  --text-muted: #6b7480;
  --mint:       #bcf7cb;
  --mint-dark:  #8eeaa4;
  --black:      #111318;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 19px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.nav-logo-icon img,
.nav-logo-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text strong {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-logo-text span {
  font-size: .68rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .8rem;
  list-style: none;
}

.nav-links a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color .15s;
  white-space: nowrap;
  letter-spacing: .01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-social {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

.nav-social-link {
  display: flex;
  align-items: center;
  opacity: .75;
  transition: opacity .2s;
}

.nav-social-link:hover { opacity: 1; }

.nav-social-img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: 2px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-soft); border-color: var(--navy-soft); }

.btn-portal {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-portal:hover { background: var(--navy); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-mint {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-mint:hover { background: #f0f2f5; }

.btn-lg { padding: .9rem 2.25rem; font-size: .95rem; border-radius: 2px; }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 1rem 2rem 1.5rem;
  gap: .25rem;
}

.nav-mobile a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  border-bottom: 1px solid var(--rule);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 2.25rem 0; }
.section-sm { padding: 1.5rem 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(rgba(10,20,40,.72), rgba(10,20,40,.72)), url('hero-bg-clinic.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 2.5rem 0 2rem;
  border-bottom: 4px solid var(--mint);
}

.hero::before { display: none; }

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(188,247,203,.12);
  border: 1px solid rgba(188,247,203,.45);
  color: var(--mint);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em { font-style: italic; color: #a8d8e8; }

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Hours card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.25rem 1.25rem 1rem;
}

.open-indicator {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .3s;
}

.status-dot.open { background: #2e7d32; }
.status-dot.closed { background: #c62828; }

.status-text {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Source Sans 3', sans-serif;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  padding: .15rem 0;
  white-space: nowrap;
}

.hours-row .day { color: var(--text-muted); font-weight: 500; }
.hours-row .time { color: var(--dark); font-weight: 600; }
.hours-row.today .day,
.hours-row.today .time { color: var(--teal); }
.hours-row.closed-day .time { color: var(--text-muted); font-weight: 400; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 3rem 0 2.75rem;
  border-bottom: 4px solid var(--mint);
}

.page-hero::before { display: none; }

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: .6rem;
}

.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  max-width: 560px;
  font-family: 'Source Sans 3', sans-serif;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .85rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
}

.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
  border-left: 3px solid var(--mint);
  padding-left: .5rem;
}

.section-label::before { display: none; }

.section-heading {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0;
  transition: border-color .2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  opacity: 0;
  transition: opacity .2s;
}

.service-card:hover { border-color: var(--navy); }
.service-card:hover::before { opacity: 1; }

.service-card-click-hint {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal);
  opacity: .7;
  transition: opacity .2s;
  font-family: 'Source Sans 3', sans-serif;
}

.service-card:hover .service-card-click-hint { opacity: 1; }

.service-icon {
  width: 44px;
  height: 44px;
  background: #e4fbec;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-icon svg { width: 22px; height: 22px; color: #1c7a38; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── SERVICE MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 2px;
  border-top: 4px solid var(--navy);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: var(--silver-light);
  border: 1px solid var(--rule);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}

.modal-close:hover { background: var(--silver); }
.modal-close svg { width: 14px; height: 14px; }

.modal-body { padding: 1rem 1.5rem 1.5rem; }
.modal-section { margin-top: 1rem; }

.modal-section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
  font-family: 'Source Sans 3', sans-serif;
}

.modal-section p, .modal-section li {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: 'Source Sans 3', sans-serif;
}

.modal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-left: 0;
}

.modal-section ul li::before {
  content: '—';
  color: var(--teal);
  margin-right: .4rem;
  font-weight: 600;
}

.modal-cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: .65rem;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-item span {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image {
  border-radius: 2px;
  overflow: hidden;
  background: #e4fbec;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-image-placeholder {
  text-align: center;
  color: var(--teal);
}

.why-image-placeholder svg {
  width: 100px;
  height: 100px;
  opacity: .25;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1rem;
}

.why-item { display: flex; gap: 1rem; }

.why-item-icon {
  width: 36px;
  height: 36px;
  background: #ddf8e6;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-icon svg { width: 18px; height: 18px; color: #1c7a38; }

.why-item h4 {
  font-size: 1rem;
  margin-bottom: .25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.why-item p {
  font-size: .95rem;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
}

/* ── INSURANCE CAROUSEL ── */
.insurance-section {
  padding: 2rem 0;
  background: var(--silver-light);
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.insurance-intro { margin-bottom: 1.25rem; }

.insurance-carousel {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 0.5rem 0;
}

.insurance-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-logos 32s linear infinite;
}

.insurance-carousel:hover .insurance-track {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.insurance-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 80px;
  padding: .5rem .75rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
}

.insurance-logo-item.logo-wide { width: 220px; }

.insurance-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.insurance-accepted-note {
  margin-top: 1rem;
  text-align: center;
  font-size: .95rem;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
}

.insurance-accepted-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

/* Insurance page full grid */
.insurance-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.insurance-page-card {
  background: var(--white);
  border-radius: 2px;
  padding: 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .85rem;
  text-align: center;
  border: 1px solid var(--rule);
  transition: border-color .2s;
}

.insurance-page-card:hover { border-color: var(--teal); }

.insurance-page-card img {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.insurance-page-card span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
  align-items: start;
}

.google-cta-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
}

.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.google-g {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.stars {
  display: flex;
  justify-content: center;
  gap: .15rem;
  margin-bottom: .65rem;
}

.stars svg { width: 20px; height: 20px; color: #FBBC05; fill: #FBBC05; }

.google-cta-card h3 { margin-bottom: .4rem; font-size: 1.15rem; }
.google-cta-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.1rem; font-family: 'Source Sans 3', sans-serif; }

.review-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.btn-google {
  background: #4285F4;
  color: white;
  border-color: #4285F4;
  justify-content: center;
}

.btn-google:hover { background: #3574e2; border-color: #3574e2; }

.btn-maps {
  background: transparent;
  color: var(--dark);
  border-color: var(--rule);
  justify-content: center;
}

.btn-maps:hover { border-color: var(--navy); color: var(--navy); }

.review-quotes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-quote-card {
  background: var(--silver-light);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--mint);
}

.review-quote-stars {
  display: flex;
  gap: .12rem;
  margin-bottom: .5rem;
}

.review-quote-stars svg { width: 13px; height: 13px; fill: #FBBC05; color: #FBBC05; }

.review-quote-card p {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: .5rem;
  font-family: 'Source Sans 3', sans-serif;
}

.review-quote-author {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  border-top: 4px solid var(--mint);
  padding: 2.25rem 0;
  text-align: center;
}

.cta-band::before { display: none; }
.cta-band-inner { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: .65rem;
}

.cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0 1.5rem;
  border-top: 4px solid var(--mint);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.25rem;
}

.footer-brand-logo {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  font-family: 'Source Sans 3', sans-serif;
}

.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }

.footer-col ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .15s;
  font-family: 'Source Sans 3', sans-serif;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .8rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  font-family: 'Source Sans 3', sans-serif;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.3);
  font-family: 'Source Sans 3', sans-serif;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  opacity: .45;
  transition: opacity .2s;
}
.footer-social-link:hover { opacity: .8; }
.footer-social-img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-social-img--wide {
  width: 48px;
  height: 16px;
  object-fit: contain;
}

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.team-card {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: border-color .2s;
  background: var(--white);
  cursor: pointer;
}

.team-card:hover { border-color: var(--navy); }

.team-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--teal-light);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-placeholder svg {
  width: 72px;
  height: 72px;
  color: var(--teal);
  opacity: .3;
}

.team-info { padding: 1.5rem; }

.team-info h3 { font-size: 1.35rem; margin-bottom: .25rem; }

.team-info .role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .85rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}

.team-info .credentials { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem; }
.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.credentials-list li {
  font-size: .8rem;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  padding-left: 1rem;
  position: relative;
}
.credentials-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

.team-info p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Source Sans 3', sans-serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--silver-light);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.75rem;
  text-align: center;
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  background: #e4fbec;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
}

.value-card .value-icon svg { width: 24px; height: 24px; color: #1c7a38; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.value-card p { font-size: .9rem; color: var(--text-muted); font-family: 'Source Sans 3', sans-serif; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--silver-light);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.75rem;
}

.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }

.info-item { display: flex; gap: .7rem; margin-bottom: 1.1rem; }

.info-item-icon {
  width: 36px;
  height: 36px;
  background: #e4fbec;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item-icon svg { width: 16px; height: 16px; color: #1c7a38; }
.info-item h4 { font-size: .95rem; margin-bottom: .1rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
.info-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.55; font-family: 'Source Sans 3', sans-serif; }

.hours-table-contact { width: 100%; margin-top: 1.25rem; border-collapse: collapse; }
.hours-table-contact tr { border-bottom: 1px solid var(--rule); }
.hours-table-contact tr:last-child { border-bottom: none; }
.hours-table-contact td { padding: .45rem 0; font-size: .9rem; font-family: 'Source Sans 3', sans-serif; }
.hours-table-contact td:last-child { text-align: right; color: var(--teal); font-weight: 600; }
.hours-table-contact tr.closed-row td:last-child { color: var(--text-muted); font-weight: 400; }

/* ── FORM ── */
.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--dark);
  font-family: 'Source Sans 3', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--silver);
  border-radius: 2px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  border-top: 3px solid var(--navy);
  padding: 2rem;
}

/* ── SERVICES FULL PAGE ── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-full-card {
  display: flex;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.5rem;
  transition: border-color .2s;
  cursor: pointer;
}

.service-full-card:hover { border-color: var(--navy); }

/* ── APPT ── */
.appt-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.appt-info {
  background: var(--navy);
  border-radius: 2px;
  padding: 2rem;
  color: var(--white);
}

.appt-info h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 1.1rem; }

.appt-info-item {
  display: flex;
  gap: .7rem;
  margin-bottom: .85rem;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  font-family: 'Source Sans 3', sans-serif;
}

.appt-info-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  margin-top: 2px;
}

.notice {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  padding: .85rem 1rem;
  margin-top: 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── STOCK IMAGE BLOCKS ── */
.stock-image-block {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stock-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-placeholder {
  background: #e4fbec;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 600;
}

.stock-placeholder svg { width: 44px; height: 44px; opacity: .35; }

/* ── MISC ── */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.badge {
  display: inline-block;
  padding: .18rem .55rem;
  border-radius: 2px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge-mint { background: #d4f5de; color: #1a5c2a; border: 1px solid #b8ecc8; }
.badge-teal { background: var(--teal-light); color: var(--teal-dark); border: 1px solid #c0dde6; }

/* ── SERVICES LIST GRID (home page 3-col) ── */
.svc-list-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 860px) {
  .svc-list-3col { grid-template-columns: 1fr; }
}
@media (min-width: 560px) and (max-width: 860px) {
  .svc-list-3col { grid-template-columns: repeat(2, 1fr); }
}

/* ── SERVICE CATALOG (services page) ── */
.svc-catalog-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}

.svc-catalog-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.svc-catalog-row.reversed { direction: rtl; }
.svc-catalog-row.reversed > * { direction: ltr; }

.svc-catalog-img {
  width: 100%;
  height: 260px;
  border-radius: 2px;
  overflow: hidden;
}

.svc-catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-catalog-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
  border-left: 3px solid var(--teal);
  padding-left: .5rem;
  display: block;
}

.svc-catalog-title {
  font-size: 1.5rem;
  margin-bottom: .65rem;
}

.svc-catalog-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-family: 'Source Sans 3', sans-serif;
}

.svc-catalog-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.svc-catalog-list li {
  font-size: .9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
}
.svc-catalog-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

.svc-catalog-actions { display: flex; gap: .65rem; flex-wrap: wrap; }

/* ── HERO PHONE + ADDRESS ── */
.hero-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--rule);
  font-family: 'Merriweather', serif;
  white-space: nowrap;
}
.hero-phone a { color: inherit; }
.hero-phone a:hover { color: var(--navy); }

.hero-address {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--rule);
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-family: 'Source Sans 3', sans-serif;
}
.hero-address svg { flex-shrink: 0; margin-top: 2px; opacity: .5; }

/* ── TEAM CARD EXPANDABLE ── */
.team-bio {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--rule);
  margin-top: .25rem;
  padding-top: 1.1rem;
}
.team-bio p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: .7rem;
  font-family: 'Source Sans 3', sans-serif;
}
.team-bio p:last-child { margin-bottom: 0; }
.team-card.expanded .team-bio { display: block; }
.team-expand-hint {
  font-size: .85rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: 'Source Sans 3', sans-serif;
}
.team-expand-hint svg { transition: transform .25s; }
.team-card.expanded .team-expand-hint svg { transform: rotate(180deg); }

/* ── LABS SECTION ── */
.labs-section {
  background: var(--navy);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.labs-section::before { display: none; }
.labs-intro .section-label { color: rgba(255,255,255,.6); border-left-color: rgba(255,255,255,.4); }
.labs-intro .section-heading { color: var(--white); }
.labs-intro .section-sub { color: rgba(255,255,255,.65); }

.labs-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.labs-panel-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 1.75rem;
  border-top: 3px solid rgba(255,255,255,.3);
}

.labs-panel-title {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.labs-panel-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .2rem;
  font-family: 'Merriweather', serif;
}
.labs-panel-price span {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-family: 'Source Sans 3', sans-serif;
}
.labs-panel-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
  font-family: 'Source Sans 3', sans-serif;
}
.labs-included {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.labs-included li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  font-family: 'Source Sans 3', sans-serif;
}
.labs-included li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}

.labs-why { display: flex; flex-direction: column; gap: 1.1rem; }
.labs-why-item { display: flex; gap: .85rem; align-items: flex-start; }
.labs-why-icon {
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.7);
}
.labs-why-item h4 {
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.labs-why-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── PAY ONLINE SECTION ── */
.pay-section {
  background: var(--teal-light);
  padding: 1.75rem 0;
  border-top: 1px solid #c0dde6;
  border-bottom: 1px solid #c0dde6;
}
.pay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.pay-inner h2 { font-size: 2.25rem; margin-bottom: .65rem; }
.pay-inner p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; font-family: 'Source Sans 3', sans-serif; }
.pay-actions { display: flex; flex-direction: column; gap: .65rem; }
.btn-pay {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-pay:hover { background: var(--navy-soft); border-color: var(--navy-soft); }

/* ── FORMS / ACCORDION ── */
.forms-accordion { display: flex; flex-direction: column; gap: .5rem; }

.forms-accordion-item {
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--white);
  overflow: hidden;
}

.forms-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  list-style: none;
  transition: background .15s;
  font-family: 'Source Sans 3', sans-serif;
}

.forms-accordion-item summary::-webkit-details-marker { display: none; }
.forms-accordion-item summary:hover { background: var(--silver-light); }
.forms-accordion-item[open] summary { background: var(--silver-light); border-bottom: 1px solid var(--rule); }

.form-chevron { flex-shrink: 0; transition: transform .25s; color: var(--teal); }
.forms-accordion-item[open] .form-chevron { transform: rotate(180deg); }

.forms-accordion-body {
  padding: 1.1rem 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Source Sans 3', sans-serif;
}

.forms-accordion-body p { margin-bottom: .5rem; }
.forms-accordion-body p:last-child { margin-bottom: 0; }

.form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

/* ── BLOG HOME CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  border-top: 3px solid var(--navy);
  overflow: hidden;
  display: block;
  transition: border-color .2s;
}

.blog-card:hover { border-color: var(--navy); }

.blog-tag-bar {
  height: 3px;
  display: none;
}

.blog-card-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Source Sans 3', sans-serif;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .85rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .03em;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
}

/* ── BLOG ── */
.blog-full-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  margin-top: 2.5rem;
}

.blog-post-full {
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--navy);
}

.blog-card-body { padding: 1.75rem; }

.blog-card-category {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1c6b32;
  background: #e4fbec;
  border: 1px solid #a8e8bc;
  padding: .2rem .55rem;
  border-radius: 2px;
}

.blog-meta {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
  font-family: 'Source Sans 3', sans-serif;
}

.blog-post-full h2 { font-size: 1.35rem; margin-bottom: .6rem; }

.blog-excerpt {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: 'Source Sans 3', sans-serif;
}

.blog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.blog-sidebar-card {
  background: var(--silver-light);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.5rem;
}

.blog-sidebar-card h4 { font-size: 1rem; margin-bottom: .65rem; }

.blog-sidebar-topics { list-style: none; }

.blog-sidebar-topics li { margin-bottom: .4rem; }

.blog-sidebar-topics a {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .15s;
  font-family: 'Source Sans 3', sans-serif;
}

.blog-sidebar-topics a:hover { color: var(--navy); }

/* ── HERO LOGO ROW ── */
.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.1rem;
}
.hero-logo-row h1 { margin-bottom: 0; }
.hero-logo-mark {
  height: 160px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.45));
}

/* ── PHOTO BANNER ── */
.photo-banner { width: 100%; overflow: hidden; position: relative; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-banner--short { height: 280px; }
.photo-banner--tall  { height: 420px; }

/* ── VISIT US SECTION ── */
.visit-section {
  background: var(--white);
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: stretch;
}

/* ── SLIDESHOW ── */
.slider-wrap { display: flex; flex-direction: column; }
.slider-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 2px 2px 0 0;
  flex: 1;
}
.slide-track { display: flex; transition: transform .4s ease; height: 100%; }
.slide-placeholder {
  min-width: 100%;
  height: 480px;
  background: #1a2f48;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.slide-placeholder--dark { background: #0d1a28; gap: .85rem; }
.slide-placeholder span {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
}
.slide-placeholder--dark span { color: rgba(255,255,255,.4); }
.slide-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.88);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.slide-btn--prev { left: .6rem; }
.slide-btn--next { right: .6rem; }
.slider-tabs {
  display: flex;
  border: 1px solid var(--rule);
  border-top: none;
  border-radius: 0 0 2px 2px;
  overflow: hidden;
}
.slider-tab {
  flex: 1;
  padding: .55rem .3rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  background: var(--white);
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  transition: background .15s, color .15s;
}
.slider-tab:last-child { border-right: none; }
.slider-tab.active { background: #e4fbec; color: var(--navy); }

/* ── MAP SIDEBAR ── */
.map-sidebar { display: flex; flex-direction: column; gap: .85rem; }
.map-embed { border: 1px solid var(--rule); border-radius: 2px; overflow: hidden; flex: 1; min-height: 220px; }
.info-chip { padding: .7rem .9rem; }
.info-chip--phone { background: #e4fbec; border-left: 3px solid var(--mint); }
.info-chip--hours { background: var(--silver-light); border-left: 3px solid var(--navy); }
.info-chip-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--teal-dark);
  margin-bottom: .2rem;
  font-family: 'Source Sans 3', sans-serif;
}
.info-chip--hours .info-chip-label { color: var(--text-muted); margin-bottom: .5rem; }
.info-chip-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Merriweather', serif;
  text-decoration: none;
  display: block;
}
.info-chip-table { width: 100%; border-collapse: collapse; }
.info-chip-table td { font-size: .85rem; color: var(--text-muted); padding: .1rem 0; font-family: 'Source Sans 3', sans-serif; }
.info-chip-table td:last-child { font-weight: 700; color: var(--navy); text-align: right; }
.directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  font-family: 'Source Sans 3', sans-serif;
  transition: background .15s;
}
.directions-btn:hover { background: var(--navy-soft); color: var(--white); }

/* ── SVC 3-COL CARDS ── */
.svc-col {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.svc-col--dark { background: var(--navy); border-color: transparent; border-top-color: var(--mint); }
.svc-col-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.svc-col--dark .svc-col-heading { color: rgba(255,255,255,.85); }
.svc-col-list { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: .55rem; }
.svc-col-item { display: flex; gap: .6rem; font-size: .88rem; color: var(--text-body); line-height: 1.5; }
.svc-col--dark .svc-col-item { color: rgba(255,255,255,.75); font-family: 'Source Sans 3', sans-serif; }
.svc-col-dash { color: var(--teal); font-weight: 800; flex-shrink: 0; }
.svc-col--dark .svc-col-dash { color: rgba(255,255,255,.4); font-weight: 600; }
.svc-col-footer { margin-top: 1.75rem; }
.svc-col-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.svc-col-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .01em;
}
.svc-col--dark .svc-col-link { color: rgba(255,255,255,.75); letter-spacing: .04em; text-transform: uppercase; font-family: 'Source Sans 3', sans-serif; }
.svc-col--dark .svc-col-link + .svc-col-link { color: rgba(255,255,255,.45); }

/* ── QUOTE BAND ── */

/* ── WHY SECTION GRID ── */
.why-section-grid { display: grid; grid-template-columns: 1fr 420px; gap: 2.5rem; align-items: center; }
.why-doctor-img { overflow: hidden; border-radius: 2px; }
.why-doctor-img img { width: 100%; height: 780px; object-fit: cover; object-position: center top; display: block; }

/* ── HERO ADDRESS ── */
.hero-address {
  margin-top: 1rem;
  padding: .55rem .75rem;
  border-left: 3px solid var(--mint);
  font-size: .88rem;
}
.hero-address-link {
  color: var(--teal);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  text-decoration: none;
}
.hero-address-link svg { flex-shrink: 0; margin-top: 2px; }
.hero-address-city { padding-left: 1.3rem; color: var(--text-muted); font-weight: 500; font-size: .88rem; display: block; }
.hero-address-dir { display: block; padding-left: 1.3rem; font-size: .78rem; color: var(--teal); margin-top: .25rem; }

/* ── ICON SIZING UTILITIES ── */
.nav-social-icon { width: 24px; height: 24px; object-fit: contain; display: block; border-radius: 5px; }
.footer-social-icon { width: 24px; height: 24px; object-fit: contain; display: block; }
.google-logo-img { height: 44px; width: auto; display: block; }

/* ── BLOG PREVIEW SECTION ── */
.blog-preview-section {
  background: var(--silver-light);
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ── CARE OPTIONS / DPC ── */
.care-options-section {
  background: var(--silver-light);
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.care-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.care-option-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  border-radius: 2px;
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.care-option-card--featured {
  background: var(--navy);
  border-color: transparent;
  border-top-color: var(--mint);
}
.care-option-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
  font-family: 'Source Sans 3', sans-serif;
}
.care-option-tag--light { color: rgba(255,255,255,.55); }
.care-option-title { font-size: 1.3rem; margin-bottom: .65rem; }
.care-option-title--light { color: var(--white); }
.care-option-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  flex: 1;
}
.care-option-desc--light { color: rgba(255,255,255,.7); }
.care-option-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.care-option-list li {
  display: flex;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.5;
  font-family: 'Source Sans 3', sans-serif;
}
.care-option-list li::before { content: '—'; color: #1c7a38; font-weight: 700; flex-shrink: 0; }
.care-option-list--light li { color: rgba(255,255,255,.8); }
.care-option-list--light li::before { color: var(--mint); }

/* ── CASH PAY BAND ── */
.cash-pay-band {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--mint);
  border-radius: 2px;
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.cash-pay-network {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .85rem;
}
.cash-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: #1c6b32;
  background: #e4fbec;
  border: 1px solid #a8e8bc;
  border-radius: 2px;
  padding: .3rem .7rem;
  font-family: 'Source Sans 3', sans-serif;
}
.cash-pay-chip svg { width: 13px; height: 13px; stroke: #1c7a38; flex-shrink: 0; }

/* ── TRUST BADGES ── */
.medicaid-badge-row {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0 .5rem;
}
.medicaid-badge-row img {
  height: 52px;
  width: auto;
  border-radius: 4px;
}
.footer-trust-badges {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer-trust-badge {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* ── UTILITIES ── */
.btn-block { width: 100%; justify-content: center; }
.nav-mobile-book { color: var(--teal) !important; font-weight: 700 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { gap: .55rem; }
  .nav-links a { font-size: .8rem; }
  .hero-inner { grid-template-columns: 1fr 260px; gap: 2rem; }
  .svc-catalog-row { grid-template-columns: 280px 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 2fr 2fr; gap: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .insurance-page-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-catalog-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-catalog-row.reversed { direction: ltr; }
  .svc-catalog-img { height: 220px; }
  .pay-inner { grid-template-columns: 1fr; gap: 2rem; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .why-section-grid { grid-template-columns: 1fr; }
  .why-doctor-img { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-actions .btn-portal { display: none; }
  .nav-social { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .insurance-page-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-cta { flex-direction: column; }
  .labs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .forms-accordion-item summary { font-size: .92rem; }
  .hero-phone { font-size: 1.5rem; }
  .photo-banner--tall { height: 220px; }
  .photo-banner--short { height: 180px; }
  .slide-placeholder { height: 300px; }
  .hero-logo-mark { height: 110px; }
  .hero-logo-row { gap: .85rem; }
  .footer-social { gap: .85rem; }
  .care-options-grid { grid-template-columns: 1fr; }
  .cash-pay-band { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 440px) {
  html { font-size: 15px; }
  .hero-logo-row { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .hero-logo-mark { height: 80px; }
  .photo-banner--tall { height: 180px; }
  .photo-banner--short { height: 150px; }
  .slide-placeholder { height: 240px; }
  .slider-tabs { flex-wrap: wrap; }
  .slider-tab { flex: 1 0 50%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
