:root {
  --navy:       #1d3557;
  --navy-soft:  #2c4a6e;
  --teal:       #2a7b93;
  --teal-dark:  #1f6070;
  --teal-light: #eaf4f7;
  --silver:     #cacdd6;
  --silver-light: #eceef2;
  --rule:       #dddfe6;
  --white:      #ffffff;
  --dark:       #1a2535;
  --text-body:  #363c44;
  --text-muted: #5b636f;
  --mint:       #bcf7cb;
  --mint-dark:  #8eeaa4;
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --shadow-soft: 0 1px 3px rgba(29,53,87,.08), 0 6px 20px rgba(29,53,87,.07);
  --shadow-lift: 4px 4px 0 var(--mint-dark);
}

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

::selection { background: var(--mint); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── SCROLL-TRIGGERED REVEAL ── */
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: .06s; }
[data-delay="2"] { transition-delay: .12s; }
[data-delay="3"] { transition-delay: .18s; }
[data-delay="4"] { transition-delay: .24s; }
[data-delay="5"] { transition-delay: .3s; }
[data-delay="6"] { transition-delay: .36s; }
[data-delay="7"] { transition-delay: .42s; }
[data-delay="8"] { transition-delay: .48s; }
[data-delay="9"] { transition-delay: .54s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

body {
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', sans-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: rgba(255,255,255,.7);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(221,223,230,.6);
  box-shadow: 0 2px 10px rgba(29,53,87,.06);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 0 1.25rem;
  height: 92px;
  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: 64px;
  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: 'Plus Jakarta Sans', sans-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: 1.3rem;
  list-style: none;
  flex-shrink: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color .2s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
  padding: .4rem .05rem;
  border-bottom: 2px solid transparent;
  line-height: 1;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active::after { transform-origin: left; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .3rem; }
.nav-caret { transition: transform .15s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: .4rem 0;
  list-style: none;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(20,30,50,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--teal); background: var(--teal-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.nav-actions .btn { border-radius: 6px; padding: .6rem 1.1rem; font-size: .82rem; }

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

.btn-primary,
.btn-mint {
  box-shadow: var(--shadow-lift);
}
.btn-primary:hover,
.btn-mint:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--mint-dark);
}
.btn-primary:active,
.btn-mint:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--mint-dark);
}

.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(--teal); color: var(--white); border-color: var(--teal); }

.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: var(--teal); color: var(--white); border-color: var(--teal); }

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

/* ── 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: rgba(255,255,255,.9);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  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(to bottom, rgba(10,20,40,.45) 0%, rgba(10,20,40,.62) 45%, rgba(10,20,40,.86) 100%), url('photo-home-visit-bp.webp') center 15%/cover no-repeat;
  color: var(--white);
  padding: 7rem 0 4rem;
  border-bottom: 4px solid var(--mint);
  display: flex;
  align-items: flex-end;
  min-height: 760px;
  margin-top: -93px;
}

.hero::before { display: none; }

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: block;
  width: 100%;
  text-align: center;
}

.hero-content { max-width: 820px; margin: 0 auto; }
@media (min-width: 700px) {
  .hero-content { transform: translateX(-6%); }
}

.hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2.25rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-accent {
  position: relative;
  display: inline-block;
  color: var(--mint);
  vertical-align: -0.08em;
}
.hero-accent svg { display: block; overflow: visible; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-wordmark {
  height: 148px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.hero-link-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: .2rem;
  transition: border-color .15s, gap .15s;
}
.hero-link-cta:hover { border-color: var(--mint); gap: .65rem; }
.hero-link-cta svg { color: var(--mint); }

/* Service area map, floating on the hero photo */
.hero-map-wrap {
  display: flex;
  justify-content: center;
}

.hero-map {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Same map, reused on a light background (about page) */
.about-map-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 3rem;
}
.about-map-section .hero-map-wrap { justify-content: flex-start; }
.about-map-section .hero-county { stroke: var(--white); stroke-width: 1.5; }
.about-map-section .hero-county-c1,
.about-map-section .hero-county-c2,
.about-map-section .hero-county-c3 { fill: var(--teal); }
.about-map-section .hero-county:hover { fill: var(--navy); opacity: 1; }
@media (max-width: 860px) {
  .about-map-section { grid-template-columns: 1fr; gap: 2rem; }
  .about-map-section .hero-map-wrap { justify-content: center; }
  .about-map-section .hero-map { max-width: 280px; }
}

.hero-county {
  stroke: var(--white);
  stroke-width: 1;
  stroke-linejoin: round;
  cursor: pointer;
  transition: fill .18s ease, opacity .18s ease;
}

.hero-county:hover {
  opacity: .8;
}

.hero-county-c1,
.hero-county-c2,
.hero-county-c3 { fill: #BFE1D0; }

.hero-indy-star {
  fill: #f5a623;
  stroke: var(--navy);
  stroke-width: 1;
  stroke-linejoin: round;
  pointer-events: none;
}

.hero-county:hover {
  fill: #b3b8c4;
}

/* ── PAGE HERO ── */
.page-hero {
  background-color: #1d3557;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23b4f3fc' fill-opacity='0.11'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 2.25rem 0 2rem;
  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(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: .5rem;
}

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

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

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

/* ── LIGHT PAGE HERO (informational/documentation pages) ── */
.page-hero--light {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 2.25rem 0 2rem;
}
.page-hero--light h1 { color: var(--dark); }
.page-hero--light p { color: var(--text-muted); }
.page-hero--light .breadcrumb { color: var(--text-muted); }
.page-hero--light .breadcrumb a { color: var(--teal); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  padding: 0;
  transition: border-color .2s var(--ease), box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(29,53,87,.1), 0 10px 28px rgba(29,53,87,.1); }

.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;
  transition: transform .5s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.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: 'Plus Jakarta Sans', sans-serif;
}

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

.service-icon {
  width: 44px;
  height: 44px;
  background: #e4fbec;
  border-radius: 8px;
  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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  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: 6px;
  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: 'Plus Jakarta Sans', sans-serif;
}

.modal-section p, .modal-section li {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', sans-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: 'Plus Jakarta Sans', sans-serif;
}

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

.why-image {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(29,53,87,.12);
  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: 8px;
  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: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.why-item p {
  font-size: .95rem;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── WHY GRACE CARE — expandable stack ── */
.why-stack { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.25rem; }
.why-stack-item {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.why-stack-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  list-style: none;
}
.why-stack-item summary::-webkit-details-marker { display: none; }
.why-stack-item summary h4 {
  margin: 0;
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
}
.why-stack-chevron { flex-shrink: 0; color: var(--text-muted); transition: transform .2s var(--ease), color .2s var(--ease); }
.why-stack-item[open] { background: var(--navy); border-color: var(--navy); }
.why-stack-item[open] summary h4 { color: var(--white); }
.why-stack-item[open] .why-stack-chevron { color: var(--mint); transform: rotate(180deg); }
.why-stack-body { padding: 0 1.35rem 1.35rem; }
.why-stack-body p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

.insurance-carousel {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.insurance-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 3rem;
  padding: .5rem 0;
}

.insurance-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 0 .5rem;
}

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

.insurance-logo-item.logo-wide img { max-width: 260px; }

/* Homepage variant: full-bleed, single-row, wheel/touch-scroll strip */
.insurance-carousel--edge { padding: 0; }
.insurance-track--scroll {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: .5rem clamp(1.25rem, 4vw, 3rem) .5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.insurance-track--scroll::-webkit-scrollbar { display: none; }
.insurance-track--scroll.dragging { scroll-behavior: auto; }
.insurance-track--scroll .insurance-logo-item { flex-shrink: 0; }

/* Custom scrollbar: replaces the native thumb with a smoother, draggable indicator */
.insurance-scrollbar {
  position: relative;
  height: 3px;
  margin: 0 clamp(1.25rem, 4vw, 3rem) 1rem;
  background: var(--rule);
  border-radius: 8px;
  cursor: pointer;
}
.insurance-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 40px;
  background: var(--teal);
  border-radius: 8px;
}

.insurance-accepted-note {
  margin-top: 1rem;
  text-align: center;
  font-size: .95rem;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  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: 'Plus Jakarta Sans', 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: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.reviews-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 640px) {
  .reviews-band {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

.google-cta-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.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; }

/* ── TESTIMONIALS (reusable: homepage + partners.html) ──
   To add a real testimonial: duplicate a .testimonial-card block, replace the
   .testimonial-quote text and .testimonial-attribution name/role, and delete
   the "placeholder-badge" span. Never publish a placeholder as if it were real. */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0 2.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 1.75rem; display: flex; flex-direction: column; gap: .85rem;
}
.testimonial-card.is-placeholder { background: var(--silver-light); border-style: dashed; }
.placeholder-badge {
  display: inline-block; align-self: flex-start; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted);
  background: var(--rule); padding: .2rem .55rem; border-radius: 2px;
}
.testimonial-quote { font-size: .95rem; line-height: 1.7; color: var(--text-body); font-style: italic; margin: 0; }
.testimonial-attribution { font-size: .85rem; color: var(--text-muted); font-weight: 600; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ── OUTCOMES CALLOUT (published research only — never Grace Care's own claimed outcomes) ── */
.outcomes-callout { background: var(--navy); border-radius: 8px; padding: 2.25rem 2rem; margin-top: 1rem; }
.outcomes-callout-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mint); margin-bottom: 1rem; }
.outcomes-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.outcomes-stats--single { grid-template-columns: 1fr; max-width: 480px; }
.outcomes-stat p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.8); margin: 0; }
.outcomes-cites { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.outcomes-cites div { margin-bottom: .3rem; }
@media (max-width: 700px) { .outcomes-stats { grid-template-columns: 1fr; } }

.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: 'Plus Jakarta Sans', 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); }

/* ── FOR CAREGIVERS BAND ── */
.prevention-band {
  background: var(--white);
  padding: 4.5rem 0;
}
.caregiver-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 2.5rem;
  align-items: center;
}
.caregiver-illustration {
  position: relative;
  z-index: 2;
  margin-left: 1.5rem;
  top: -2.75rem;
}
.caregiver-illustration img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .caregiver-grid { grid-template-columns: 1fr; }
  .caregiver-illustration { order: -1; max-width: 340px; margin: 0 auto -2rem; top: 0; }
}
.prevention-blob-wrap {
  position: relative;
  max-width: 880px;
}
.prevention-blob {
  position: absolute;
  top: -2rem;
  left: -6.5rem;
  width: calc(100% + 23rem);
  height: calc(100% + 4.5rem);
  z-index: 0;
}
.prevention-blob .blob-shape-path { fill: url(#caregiverLeafPattern); }
.prevention-blob-backdrop { transform: translate(38px, 38px); }
.prevention-blob-backdrop path { fill: var(--silver-light); }
.prevention-blob-backdrop-top { transform: translate(-38px, -38px); }
.prevention-blob-backdrop-top path { fill: var(--silver-light); }
.prevention-blob-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 3.5rem 3.5rem 7rem;
  text-align: center;
}
.prevention-grid { text-align: left; }
.prevention-blob-content .section-label { color: var(--mint); }
.prevention-blob-content .section-heading { color: var(--white); font-size: clamp(1.5rem, 2.4vw, 2rem); }
.prevention-blob-content .section-sub { color: rgba(255,255,255,.8); font-size: .98rem; max-width: 58ch; margin: 0 auto; }
.prevention-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.prevention-item h3 { color: var(--white); font-size: 1.08rem; margin-bottom: .35rem; }
.prevention-item p { color: rgba(255,255,255,.75); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.65; font-size: .94rem; max-width: 58ch; }
.prevention-item:nth-child(3) { margin-left: 3rem; }
@media (max-width: 640px) {
  .prevention-blob-wrap { max-width: 100%; }
  .prevention-blob { top: -3rem; left: -3rem; width: calc(100% + 6rem); height: calc(100% + 6rem); }
  .prevention-blob-content { padding: 3rem 2.25rem; }
}

/* ── CTA BAND ── */
.cta-band {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23486770' fill-opacity='0.2'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-top: 4px solid var(--mint);
  padding: 1.5rem 0;
  text-align: center;
}

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

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: .4rem;
}

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

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

/* ── CONDITION PAGES (shared) ── */
.cond-body { max-width: 760px; }
.cond-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .75rem; }
.cond-list li { display: flex; gap: .75rem; font-size: 1rem; color: var(--text-body); line-height: 1.7; }
.cond-list .dash { color: var(--teal); font-weight: 800; flex-shrink: 0; }
.cond-evidence {
  margin-top: 2.5rem; padding: 1.5rem 1.75rem; background: var(--teal-light);
  border-left: 4px solid var(--teal); border-radius: 2px;
}
.cond-evidence p { font-size: .92rem; line-height: 1.75; color: var(--text-body); margin: 0; }
.cond-evidence-cites { margin-top: .85rem; font-size: .76rem; color: var(--text-muted); line-height: 1.7; }
.cond-evidence-cites div { margin-bottom: .3rem; }
.cond-note {
  margin-top: 2.5rem; padding: 1.25rem 1.5rem; background: var(--silver-light);
  border-left: 4px solid var(--rule); border-radius: 2px; font-size: .88rem; color: var(--text-muted); line-height: 1.7;
}
.cond-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule); font-size: .95rem; }

.cond-intro-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; margin-bottom: 2.5rem; }
.cond-intro-img { overflow: hidden; border-radius: 8px; box-shadow: 0 4px 20px rgba(29,53,87,.12); }
.cond-intro-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center top; display: block; }

.cond-aside-card {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23486770' fill-opacity='0.2'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: 8px;
  border-top: 3px solid var(--mint);
  padding: 1.5rem 1.5rem 1.35rem;
}
.cond-aside-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .6rem;
}
.cond-aside-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin: 0 0 .85rem;
}
.cond-aside-citation {
  font-size: .68rem;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
  margin: 0;
}

.cond-aside-card--safety { background: var(--teal-light); border-top: 3px solid var(--teal); }
.cond-aside-card--safety .cond-aside-eyebrow { color: var(--teal-dark); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .75rem; }
.cond-aside-card--safety p { color: var(--navy); font-size: .95rem; line-height: 1.6; margin: 0 0 .75rem; }
.cond-aside-card--safety p:last-child { margin-bottom: 0; }
.cond-aside-card--safety a { color: var(--teal-dark); font-weight: 700; }

.cond-aside-card--facts { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--teal); box-shadow: var(--shadow-soft); }
.cond-aside-card--facts h4 { font-size: .95rem; color: var(--navy); margin-bottom: 1rem; }
.cond-aside-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.cond-aside-facts li { display: flex; gap: .65rem; font-size: .88rem; color: var(--text-body); line-height: 1.5; }
.cond-aside-facts .dash { color: var(--teal); font-weight: 800; flex-shrink: 0; }

@media (max-width: 760px) {
  .cond-intro-grid { grid-template-columns: 1fr; }
  .cond-intro-img, .cond-aside-card { order: -1; }
}

/* ── FOOTER ── */

.footer {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  color: var(--text-muted);
  padding: 2.1rem 0 1.1rem;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--navy), var(--teal-dark), var(--teal)) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  margin-left: -5rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: .65rem;
}

.footer-brand-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  max-width: 220px;
  margin: 0;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .85rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--rule);
}

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

.footer-col--pages ul {
  column-count: 2;
  column-gap: 1.25rem;
}
.footer-col--pages ul li { break-inside: avoid; }

.footer-col ul li a {
  font-size: .85rem;
  color: var(--text-body);
  transition: color .15s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-underline-offset: 3px;
}

.footer-col ul li a:hover { color: var(--teal); text-decoration: underline; }

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

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: .85rem;
  color: var(--text-body);
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', 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;
}

/* ── COOKIE NOTICE ── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--navy), var(--teal-dark), var(--teal)) 1;
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
  padding: 1.25rem 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-banner-text { display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 280px; }
.cookie-banner-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
}
.cookie-banner-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: .35rem;
}
.cookie-banner p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cookie-banner a { color: var(--white); text-decoration: underline; font-weight: 600; }
.cookie-banner-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner .btn { border-radius: 2px; }
@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

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

.team-card {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  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;
  transition: transform .5s var(--ease-out);
}
.team-card:hover .team-photo img { transform: scale(1.05); }

.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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', sans-serif;
}

/* ── LEADER CARD (About page) ── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1.75rem;
  margin: 2.5rem auto 0;
  max-width: 1180px;
}
@media (max-width: 900px) {
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .leader-grid { grid-template-columns: 1fr; }
}

.leader-solo-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
}
.leader-solo-text h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: .85rem; }
.leader-solo-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.leader-solo-text p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .leader-solo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .leader-solo-grid .leader-card { max-width: 380px; margin: 0 auto; }
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.leader-photo { width: 100%; aspect-ratio: 4/3; position: relative; background: var(--silver-light); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader-photo-fallback { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; background: var(--silver-light); }
.leader-photo--placeholder { display: flex; align-items: center; justify-content: center; color: var(--silver); }
.leader-info { padding: 1.5rem 1.5rem 1.1rem; text-align: center; }
.leader-info h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.leader-info .role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.leader-details { border-top: 1px solid var(--rule); }
.leader-details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--teal);
  transition: background .15s;
}
.leader-details summary:hover { background: var(--teal-light); }
.leader-details summary::-webkit-details-marker { display: none; }
.leader-chevron { transition: transform .2s var(--ease); flex-shrink: 0; }
.leader-details[open] .leader-chevron { transform: rotate(180deg); }
.leader-details-body { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--rule); padding-top: 1.25rem; }
.leader-details-body .credentials-list { margin-bottom: .9rem; }
.leader-details-body p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: left;
}

.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: 8px;
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  text-align: center;
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  background: #e4fbec;
  border-radius: 8px;
  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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  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: 8px;
  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: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.info-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.55; font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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-progress { display: flex; align-items: center; margin-bottom: 2rem; }
.form-progress-step { display: flex; align-items: center; gap: .6rem; }
.form-progress-badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--silver-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.form-progress-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
}
.form-progress-step.is-active .form-progress-badge { background: var(--teal); color: var(--white); }
.form-progress-step.is-active .form-progress-label { color: var(--navy); }
.form-progress-step.is-done .form-progress-badge { background: var(--navy); color: var(--white); }
.form-progress-line { flex: 1; height: 1px; background: var(--rule); margin: 0 1rem; }
.form-note { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: -.5rem 0 1.1rem; }

.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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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; }

/* ── CUSTOM SELECT DROPDOWN (replaces native <select> on request forms) ── */
.select-dropdown { position: relative; }
.select-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .75rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--teal-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.select-dropdown-btn:hover { border-color: var(--teal); }
.select-dropdown-btn:focus,
.select-dropdown-btn[aria-expanded="true"] {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--teal-light);
}
.select-dropdown-label.is-placeholder { color: var(--text-muted); font-weight: 400; }
.select-dropdown-caret { flex-shrink: 0; color: var(--teal-dark); transition: transform .15s; }
.select-dropdown-btn[aria-expanded="true"] .select-dropdown-caret { transform: rotate(180deg); }

.select-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: .35rem;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(29,53,87,.14);
}
.select-dropdown-menu.open { display: block; }
.select-dropdown-menu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .7rem;
  border-left: 3px solid transparent;
  border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  cursor: pointer;
}
.select-dropdown-menu li.active,
.select-dropdown-menu li:hover { background: var(--teal-light); border-left-color: var(--teal); color: var(--teal-dark); }
.select-dropdown-menu li[aria-selected="true"] { font-weight: 600; color: var(--teal-dark); }
.select-dropdown-menu li[aria-selected="true"]::after { content: '✓'; font-weight: 700; }

.select-dropdown--error .select-dropdown-btn { border-color: #c62828; }

.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  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: 8px;
  box-shadow: var(--shadow-soft);
  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: 8px;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.75rem;
  color: var(--white);
}

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

.appt-info-item {
  display: flex;
  gap: .7rem;
  margin-bottom: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-family: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  padding: .7rem .9rem;
  margin-top: .85rem;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── STOCK IMAGE BLOCKS ── */
.stock-image-block {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(29,53,87,.12);
  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: 'Plus Jakarta Sans', 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;
  align-items: start;
}
@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-row--intro { grid-template-columns: 1fr; }
.svc-catalog-row--intro .svc-catalog-body { max-width: 640px; }

.svc-catalog-img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(29,53,87,.12);
  overflow: hidden;
}

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

.svc-catalog-label {
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', sans-serif;
}

.svc-catalog-list {
  list-style: none;
  padding: 0;
  margin: .6rem 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1.5rem;
}
.svc-catalog-list li {
  font-size: .9rem;
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.svc-catalog-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: .17rem;
  color: var(--teal-dark);
}
@media (max-width: 480px) {
  .svc-catalog-list { grid-template-columns: 1fr; }
}

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

/* ── 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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  border-top: 3px solid rgba(255,255,255,.3);
}

.labs-panel-title {
  font-family: 'Plus Jakarta Sans', sans-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: 'Plus Jakarta Sans', sans-serif;
}
.labs-panel-price span {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.labs-panel-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px;
  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: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.labs-why-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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); }

.vision-section {
  background-color: #1d3557;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23486770' fill-opacity='0.2'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.forms-accordion-item {
  border: 1px solid var(--rule);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--navy);
}

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

.blog-card-category {
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px;
  box-shadow: var(--shadow-soft);
  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: 'Plus Jakarta Sans', sans-serif;
}

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


/* ── 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(--teal-light);
  padding: 3.5rem 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.visit-grid--solo {
  grid-template-columns: 1fr;
  justify-items: center;
}
.quick-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  max-width: 1120px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.65rem 1.75rem;
  position: relative;
}
.quick-info-bar .btn-lg { padding: .75rem 1.75rem; }
.quick-info-bar .btn-primary,
.quick-info-bar .btn-mint {
  box-shadow: none;
}
.quick-info-bar .btn-primary:hover,
.quick-info-bar .btn-mint:hover,
.quick-info-bar .btn-primary:active,
.quick-info-bar .btn-mint:active {
  box-shadow: none;
  transform: none;
}
.quick-info-item { display: flex; align-items: center; gap: .75rem; text-align: left; flex-shrink: 0; }
.quick-info-icon-badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-info-icon-badge svg { width: 18px; height: 18px; }
.quick-info-icon { color: var(--teal-dark); flex-shrink: 0; }
.quick-info-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .15rem;
}
.quick-info-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
a.quick-info-value:hover { color: var(--teal); }
.quick-info-value--sm { font-size: .88rem; font-weight: 600; white-space: nowrap; }
.quick-info-divider { width: 1px; flex-shrink: 0; align-self: stretch; background: var(--rule); }
@media (max-width: 1180px) {
  .quick-info-bar { flex-direction: column; align-items: stretch; gap: 1.5rem; padding: 2rem 1.5rem; }
  .quick-info-divider { display: none; }
  .quick-info-bar .btn { width: 100%; justify-content: center; }
  .quick-info-value--sm { white-space: normal; }
}

/* ── FOCUS LIST (bento grid, replaces icon-card grid) ── */
.focus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.focus-row {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(29,53,87,.06);
}
.focus-row-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.focus-row-body p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.focus-row-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  white-space: nowrap;
  margin-top: 1rem;
}

.focus-stat {
  grid-row: span 2;
  align-self: start;
  position: sticky;
  top: 108px;
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23486770' fill-opacity='0.2'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: 8px;
  border-top: 3px solid var(--mint);
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
}
.focus-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.focus-stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  margin: 0 0 .85rem;
}
.focus-stat-citation {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 900px) {
  .focus-list { grid-template-columns: repeat(2, 1fr); }
  .focus-stat { grid-row: auto; grid-column: span 2; position: static; }
}
@media (max-width: 680px) {
  .focus-list { grid-template-columns: 1fr; }
  .focus-stat { grid-column: auto; }
}

/* ── HOUSE-CALL BAG FEATURE ── */
.bag-feature { padding: 4rem 0; background: var(--white); }
.bag-feature-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
}
.bag-feature-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bag-feature-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
}
.bag-feature-backdrop path { fill: var(--silver-light); }
.bag-feature-img img { position: relative; width: 100%; max-width: 400px; height: auto; display: block; }
.bag-model-sub { margin-top: 1.75rem; }
.bag-model-sub h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: .5rem; }
.bag-model-sub p { color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.7; font-size: .95rem; margin: 0; }
.bag-model-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.bag-model-points li {
  font-size: .92rem;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  padding-left: 1.15rem;
  position: relative;
}
.bag-model-points li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
.bag-model-points li strong { color: var(--navy); }
@media (max-width: 780px) {
  .bag-feature-grid { grid-template-columns: 1fr; }
  .bag-feature-img { order: -1; }
}

/* ── CLINIC PHOTO ── */
.slider-wrap { display: flex; flex-direction: column; }
.clinic-photo {
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(29,53,87,.12);
  overflow: hidden;
  height: 360px;
}
.clinic-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.clinic-opening-note {
  margin-top: 2.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.clinic-opening-note span {
  display: block;
  margin-top: .3rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── MAP SIDEBAR ── */
.map-embed { border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; flex: 1; min-height: 220px; box-shadow: 0 4px 20px rgba(29,53,87,.12); }

/* ── SVC 3-COL CARDS ── */
.svc-col {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.svc-col:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(29,53,87,.1), 0 10px 28px rgba(29,53,87,.1); }
.svc-col--dark {
  background: var(--navy);
  border-color: transparent;
  border-top-color: var(--mint);
  position: relative;
}
@media (min-width: 861px) {
  .svc-col--dark {
    transform: translateY(-1.5rem);
    box-shadow: 0 8px 16px rgba(29,53,87,.18), 0 22px 40px rgba(29,53,87,.16);
    z-index: 1;
  }
  .svc-col--dark::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: -10px;
    height: 10px;
    background: var(--mint);
    border-radius: 0 0 4px 4px;
    z-index: -1;
  }
  .svc-col--dark:hover { transform: translateY(calc(-1.5rem - 3px)); }
}
.svc-col-heading {
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 8px; box-shadow: 0 4px 20px rgba(29,53,87,.12); }
.why-doctor-img img { width: 100%; aspect-ratio: 675 / 475; height: auto; object-fit: cover; object-position: center top; display: block; }

/* ── COMMUNITY SECTION GRID ── */
.community-section-grid { display: grid; grid-template-columns: 480px 1fr; gap: 3rem; align-items: center; }
.community-img { overflow: hidden; border-radius: 8px; box-shadow: 0 4px 20px rgba(29,53,87,.12); }
.community-img img { width: 100%; height: 320px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .community-section-grid { grid-template-columns: 1fr; }
}

/* ── ZIP CHECKER ── */
.zip-check { margin-top: 1.75rem; max-width: 420px; }
.zip-check-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: .5rem; font-size: .95rem; }
.zip-check-row { display: flex; gap: .75rem; }
.zip-check-input {
  flex: 1; min-width: 0;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem;
  padding: .7rem .9rem; border: 1px solid var(--silver); border-radius: 2px;
  background: var(--white); color: var(--text-body);
}
.zip-check-input:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.zip-check-result { margin-top: .85rem; font-size: .92rem; line-height: 1.6; min-height: 1.3em; }
.zip-check-result.is-yes { color: #1c7a38; font-weight: 600; font-size: 1.1rem; }
.zip-check-result.is-no { color: #b8564a; font-weight: 600; }
.zip-check-result.is-error { color: var(--text-muted); }

/* ── ICON SIZING UTILITIES ── */
.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(--white);
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ── CARE OPTIONS / DPC ── */
.care-options-section {
  background: var(--white);
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.insurance-intro-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: center;
}
.insurance-intro-img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(29,53,87,.12);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.insurance-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.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: 8px;
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.care-option-card--featured {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23486770' fill-opacity='0.2'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', 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); }

.care-option-disclosure {
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  padding-top: 1rem;
  margin-top: .25rem;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

/* ── CASH PAY BAND ── */
.cash-pay-band {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--mint);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.cash-pay-network {
  font-size: .88rem;
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.7;
  margin: .85rem 0 0;
}
.cash-pay-network strong { color: var(--navy); }

/* ── 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: 2px;
}
.footer-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.footer-trust-badge {
  height: 56px;
  width: auto;
  opacity: .9;
}

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

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

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

@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; }
  .footer-brand { margin-left: -1.5rem; }
  .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; }
  .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: 640px) {
  html { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { margin-left: 0; }
  .footer-brand-logo { height: 68px; }
  .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; }
  .clinic-photo { height: 260px; }
  .hero-eyebrow-wordmark { height: 95px; }
  .footer-social { gap: .85rem; }
  .care-options-grid { grid-template-columns: 1fr; }
  .insurance-intro-grid { grid-template-columns: 1fr; }
  .cash-pay-band { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 440px) {
  html { font-size: 15px; }
  .photo-banner--tall { height: 180px; }
  .photo-banner--short { height: 150px; }
  .clinic-photo { height: 200px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
