/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --midnight:   #374959;
  --midnight-dk:#2a3845;
  --vanilla:    #ECE4D4;
  --walnut:     #63503E;
  --walnut-dk:  #4a3b2e;
  --mist:       #D4D9DB;
  --porcelain:  #F3F2EE;
  --sandstone:  #DBCEC3;
  --powder:     #C2CADE;
  --ink:        #181818;
  --muted:      #9a8878;
  --brown-bar:  #5c4633;
  --font-head:  'Work Sans', sans-serif;
  --font-body:  'Inter', sans-serif;
  --max-w:      1430px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--vanilla);
  color: var(--walnut);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--midnight);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
  padding-right: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mist);
  transition: color 200ms;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-item { position: relative; }
.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 36px 0;
}
.nav-caret {
  transition: transform 250ms;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 12px 0;
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: 220;
}
.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--mist);
  white-space: nowrap;
  transition: color 150ms, background 150ms;
}
.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-item-mega { position: static; }
.nav-dropdown-mega {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 4px 24px;
  padding: 28px 32px;
  min-width: 1040px;
  max-width: calc(100vw - 40px);
}
.nav-dropdown-mega-3 {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  min-width: 620px;
}
.nav-mega-col { display: flex; flex-direction: column; }
.nav-mega-heading {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sandstone);
  padding: 4px 12px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  white-space: nowrap;
}
.nav-dropdown-mega a {
  padding: 9px 12px;
  border-radius: 6px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--mist);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: border-color 200ms, color 200ms;
  white-space: nowrap;
}
.nav-phone:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.nav-phone svg { flex-shrink: 0; }
.nav-book {
  font-size: 14px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--mist);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms;
  white-space: nowrap;
}
.nav-book:hover { background: #fff; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24,32,40,0.55) 0%,
    rgba(24,32,40,0.66) 50%,
    rgba(24,32,40,0.84) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeUp 1.2s ease-out 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.40);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-btn-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midnight);
  background: #fff;
  border: none;
  border-radius: 9999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background 200ms;
  white-space: nowrap;
}
.hero-btn-primary:hover { background: var(--porcelain); }
.hero-btn-outline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.50);
  border-radius: 9999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
  white-space: nowrap;
}
.hero-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Announcement Bar ────────────────────────────────────── */
.announce-bar {
  background: var(--brown-bar);
  padding: 14px 40px;
  text-align: center;
}
.announce-bar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 200ms;
}
.announce-bar a:hover { opacity: 0.85; }
.announce-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 200ms;
}
.announce-bar a:hover .announce-arrow { transform: translateX(4px); }

/* ── Credentials ─────────────────────────────────────────── */
.credentials {
  background: var(--vanilla);
  padding: 52px 0;
}
.credentials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.cred-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* desaturate to match brand */
  filter: grayscale(1) sepia(0.3) brightness(0.55);
  opacity: 0.9;
  transition: filter 300ms, opacity 300ms;
}
.cred-logo:hover {
  filter: grayscale(0) sepia(0) brightness(1);
  opacity: 1;
}
.cred-svg {
  height: 44px;
  width: auto;
  filter: grayscale(1) sepia(0.3) brightness(0.55);
  opacity: 0.9;
  transition: filter 300ms, opacity 300ms;
}
.cred-svg:hover {
  filter: grayscale(0) sepia(0) brightness(1);
  opacity: 1;
}
.cred-lg { height: 76px; }

/* ── Dr. Lopez ────────────────────────────────────────────── */
.dr-section {
  background: var(--vanilla);
  padding: 80px 0;
}
.dr-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dr-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.dr-photo {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
}
.dr-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.dr-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.dr-name {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.1;
  margin-bottom: 24px;
}
.dr-quote {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: var(--walnut);
  line-height: 1.75;
  margin-bottom: 36px;
}
.dr-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--walnut-dk);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms;
}
.dr-btn:hover { background: var(--walnut); }

/* ── Our Services ─────────────────────────────────────────── */
.services-section {
  background: var(--vanilla);
  padding: 100px 0;
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.services-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.services-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.1;
  margin-bottom: 20px;
}
.services-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--walnut);
  line-height: 1.65;
  max-width: 640px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--sandstone);
  border-radius: 16px;
  padding: 38px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 2px rgba(55, 73, 89, 0.05);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(99, 80, 62, 0.10);
  pointer-events: none;
  transition: border-color 280ms ease;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--walnut-dk);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms ease;
}
.service-card:hover {
  transform: translateY(-5px);
  background: var(--vanilla);
  box-shadow: 0 16px 36px rgba(99, 80, 62, 0.14);
}
.service-card:hover::before { border-color: rgba(99, 80, 62, 0.20); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 280ms ease;
}
.service-icon img,
.service-icon svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.service-card:hover .service-icon {
  transform: scale(1.08);
}
.service-name {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.3;
}

/* ── Specials ─────────────────────────────────────────────── */
.specials-section {
  background: var(--mist);
  padding: 100px 0;
}
.specials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.specials-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.specials-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--midnight);
  opacity: 0.7;
  margin-bottom: 18px;
}
.specials-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--midnight);
  line-height: 1.1;
  margin-bottom: 24px;
}
.specials-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--midnight);
  opacity: 0.78;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}
.specials-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--midnight);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms;
}
.specials-btn:hover { background: var(--midnight-dk); }

.specials-carousel-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.specials-carousel-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.specials-carousel {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--midnight);
  min-height: 290px;
}
.specials-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--midnight);
  background: transparent;
  color: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 200ms;
}
.specials-arrow:hover {
  background: var(--midnight);
  color: #fff;
}
.specials-arrow:active { transform: scale(0.94); }
.specials-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}
.special-slide {
  position: absolute;
  inset: 0;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease;
}
.special-slide.active {
  opacity: 1;
  visibility: visible;
}
.special-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.special-price {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.2vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.special-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 380px;
}
.specials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.specials-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--midnight);
  opacity: 0.25;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 200ms, transform 200ms;
}
.specials-dot.active {
  opacity: 1;
  transform: scale(1.15);
}
.specials-fineprint {
  margin-top: 28px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--midnight);
  opacity: 0.7;
  line-height: 1.9;
}

/* ── Reviews ──────────────────────────────────────────────── */
.reviews-section {
  background: var(--walnut);
  padding: 100px 0;
}
.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.reviews-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vanilla);
  line-height: 1.15;
  margin: 0;
}

/* ── Before & After ───────────────────────────────────────── */
.ba-section {
  background: var(--powder);
  padding: 100px 0;
}
.ba-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.ba-header {
  text-align: center;
  margin-bottom: 56px;
}
.ba-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--midnight);
  opacity: 0.7;
  margin-bottom: 16px;
}
.ba-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--midnight);
  line-height: 1.15;
  margin: 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(55, 73, 89, 0.12);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
/* Specificity (0,3,0) must beat .reveal[class] (0,2,0) so the slow 800ms
   reveal transition doesn't carry over to the hover lift. */
.ba-card.reveal.is-visible {
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ba-card:hover,
.ba-card.reveal.is-visible:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(55, 73, 89, 0.22);
}
.ba-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .ba-card { transition: none; }
  .ba-card:hover { transform: none; }
}
.ba-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.ba-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--midnight);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms;
}
.ba-btn:hover { background: var(--midnight-dk); }

/* ── Parallax ─────────────────────────────────────────────── */
.parallax {
  position: relative;
  height: 70vh;
  min-height: 460px;
  max-height: 720px;
  background-image: url('team-photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* iOS / mobile: background-attachment: fixed is unreliable.
   Use a scaled element fallback below 1024px. */
@media (max-width: 1024px) {
  .parallax {
    background-attachment: scroll;
    height: 50vh;
    min-height: 320px;
  }
}

/* ── Trust Badges ─────────────────────────────────────────── */
.trust-section {
  background: var(--vanilla);
  padding: 80px 0;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-card {
  border: 1.5px solid var(--walnut-dk);
  border-radius: 14px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  transition: background 220ms ease;
}
.trust-card:hover {
  background: var(--sandstone);
}
.trust-icon {
  width: 56px;
  height: 56px;
  color: var(--walnut-dk);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.trust-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.5;
  margin: 0;
}

/* ── Location ─────────────────────────────────────────────── */
.location-section {
  background: var(--vanilla);
  padding: 100px 0;
}
.location-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.location-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.location-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.1;
  margin: 0 0 14px;
}
.location-publix {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 28px;
}
.location-publix svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--walnut-dk);
}
.location-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--walnut);
  line-height: 1.75;
  margin: 0 0 32px;
}
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--walnut-dk);
  border-radius: 9999px;
  padding: 11px 22px;
  margin-bottom: 36px;
  transition: background 200ms;
}
.location-btn:hover { background: var(--walnut); }
.location-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.location-hours {
  width: 100%;
  border: 1.5px solid rgba(99, 80, 62, 0.30);
  border-radius: 14px;
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  border-bottom: 1px solid rgba(99, 80, 62, 0.15);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--walnut); }
.hours-time { color: var(--walnut-dk); }
.location-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 4px 18px rgba(55, 73, 89, 0.10);
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) sepia(0.45) hue-rotate(-8deg) saturate(0.85) contrast(0.95) brightness(1.02);
}

/* ── Insurance ────────────────────────────────────────────── */
.insurance-section {
  background: var(--mist);
  padding: 100px 0;
}
.insurance-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.insurance-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.insurance-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--midnight);
  line-height: 1.1;
  margin: 0 0 24px;
}
.insurance-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--midnight);
  opacity: 0.85;
  line-height: 1.75;
  margin: 0 0 32px;
}
.insurance-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--midnight);
  background: transparent;
  border: 1.5px solid var(--midnight);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.insurance-btn:hover { background: var(--midnight); color: #fff; }
.insurance-btn svg { flex-shrink: 0; }
.insurance-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ── We Accept Bar ────────────────────────────────────────── */
.accept-bar {
  background: var(--midnight);
  padding: 22px 40px;
}
.accept-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.accept-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin-right: 6px;
}
.accept-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--midnight);
  background: var(--mist);
  border-radius: 9999px;
  padding: 9px 22px;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.accept-pill:hover {
  background: #fff;
  color: var(--midnight-dk);
}

/* ── Feel Calm ────────────────────────────────────────────── */
.feel-section {
  background: var(--vanilla);
  padding: 100px 0;
}
.feel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.feel-header {
  text-align: center;
  margin-bottom: 56px;
}
.feel-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.feel-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.1;
  margin: 0;
}
.feel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feel-card {
  background: var(--sandstone);
  border-radius: 16px;
  padding: 38px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 2px rgba(55, 73, 89, 0.05);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.feel-card:hover {
  background: var(--vanilla);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(99, 80, 62, 0.12);
}
.feel-icon {
  width: 56px;
  height: 56px;
  color: var(--walnut-dk);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feel-icon svg { width: 100%; height: 100%; display: block; }
.feel-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.4;
  margin: 0 0 12px;
}
.feel-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--walnut);
  line-height: 1.7;
  margin: 0;
}

/* ── Final CTA ────────────────────────────────────────────── */
.cta-final {
  background: var(--porcelain);
  padding: 100px 0;
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px rgba(99, 80, 62, 0.18);
  will-change: transform;
}
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  line-height: 1.1;
  margin: 0 0 20px;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--walnut);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 36px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--walnut-dk);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms;
  white-space: nowrap;
}
.cta-btn-primary:hover { background: var(--walnut); }
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut-dk);
  background: transparent;
  border: 1.5px solid var(--walnut-dk);
  border-radius: 9999px;
  padding: 11px 22px;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.cta-btn-outline:hover { background: var(--walnut-dk); color: #fff; }
.cta-btn-outline svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--midnight);
  color: var(--mist);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
}
.footer-link {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 200ms;
  margin-bottom: 16px;
  width: fit-content;
}
.footer-link:hover { color: #fff; }
.footer-link svg { flex-shrink: 0; opacity: 0.6; }
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 22px;
}
.footer-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sandstone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight-dk);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.footer-social a:hover {
  background: #fff;
  color: var(--midnight);
  transform: translateY(-2px);
}
.footer-social svg { width: 19px; height: 19px; display: block; }
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--mist);
  transition: color 200ms;
}
.footer-list a:hover { color: #fff; }
.footer-hours {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  border-radius: 14px;
  padding: 8px 22px;
  display: flex;
  flex-direction: column;
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-day { color: rgba(255, 255, 255, 0.60); }
.footer-hours-time { color: var(--mist); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 200ms;
  white-space: nowrap;
}
.footer-legal a:hover { color: #fff; }
.footer-legal-sep {
  color: rgba(255, 255, 255, 0.30);
}

/* ── Mobile Hamburger ────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: all 200ms;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  background: var(--midnight-dk);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.20);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mobile-menu-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 200ms;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-close svg {
  width: 22px;
  height: 22px;
  display: block;
}
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
  overflow-y: auto;
}
.mobile-menu-nav > a {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mist);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 200ms;
}
.mobile-menu-nav > a:hover { color: #fff; }
.mm-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mm-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mist);
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms;
}
.mm-toggle:hover { color: #fff; }
.mm-caret {
  transition: transform 280ms ease;
  flex-shrink: 0;
  opacity: 0.7;
}
.mm-toggle[aria-expanded="true"] .mm-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.mm-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms ease;
}
.mm-toggle[aria-expanded="true"] + .mm-sub {
  max-height: 1200px;
}
.mm-sub a {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mist);
  padding: 11px 0 11px 16px;
  transition: color 200ms;
}
.mm-sub a:hover { color: #fff; }
.mm-sub a:last-child { padding-bottom: 18px; }
.mm-sub-heading {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sandstone);
  padding: 16px 0 6px 16px;
  opacity: 0.85;
}
.mm-sub-heading:first-child { padding-top: 8px; }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mist);
  background: var(--midnight);
  transition: background 200ms, color 200ms;
}
.mobile-menu-phone:hover {
  background: #2a3845;
  color: #fff;
}
.mobile-menu-phone svg { flex-shrink: 0; }
.mobile-menu-book {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--walnut-dk);
  transition: background 200ms;
}
.mobile-menu-book:hover { background: var(--walnut); }
body.menu-open { overflow: hidden; }

/* ── Mobile Action Bar ──────────────────────────────────── */
.mobile-action-bar {
  display: none;
}
.mobile-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--mist);
  border-right: 1px solid rgba(55,73,89,0.10);
  transition: background 200ms, color 200ms;
}
.mobile-action svg {
  width: 18px;
  height: 18px;
  display: block;
}
.mobile-action:hover { background: var(--midnight); color: var(--mist); }
.mobile-action-primary {
  background: var(--sandstone);
  color: var(--walnut-dk);
}
.mobile-action-primary:hover {
  background: var(--vanilla);
  color: var(--walnut-dk);
}
.mobile-action:last-child {
  background: var(--porcelain);
  color: var(--walnut-dk);
  border-right: none;
}
.mobile-action:last-child:hover {
  background: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .dr-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .specials-inner { gap: 48px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-book  { display: none; }
  .nav-hamburger { display: flex; }
  .nav { position: static; }
  .hero { margin-top: 0; }
  .mobile-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: sticky;
    top: 0;
    z-index: 150;
    background: var(--walnut-dk);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 860px) {
  .dr-inner { grid-template-columns: 1fr; gap: 36px; max-width: 540px; }
  .dr-name { font-size: 28px; }
  .credentials-inner { gap: 40px; }
  .cred-logo { height: 38px; }
  .cred-lg { height: 56px; }
  .specials-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 560px;
    text-align: center;
  }
  .specials-intro { align-items: center; }
  .specials-desc { text-align: center; }
  .specials-title { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-title { font-size: 28px; }
  .reviews-title { font-size: 28px; }
  .feel-grid { grid-template-columns: repeat(2, 1fr); }
  .feel-title { font-size: 28px; }
  .cta-title { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ba-title { font-size: 28px; }
  .trust-inner { grid-template-columns: 1fr; max-width: 480px; gap: 16px; }
  .location-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 640px;
  }
  .location-title { font-size: 28px; }
  .location-map { min-height: 360px; }
  .insurance-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
  }
  .insurance-title { font-size: 28px; }
  .dr-content { align-items: center; text-align: center; }
  .location-content { align-items: center; text-align: center; }
  .insurance-content { align-items: center; text-align: center; }
  .footer-col { align-items: center; text-align: center; }
  .footer-link { justify-content: center; }
  .footer-address { justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-bottom-inner > div { width: 100%; }
  .footer-legal { justify-content: center; }
  .footer-address > div { text-align: left; }
}
@media (max-width: 540px) {
  .nav-inner { padding: 0 20px; }
  .nav-logo img { height: 42px; }
  .hero { max-height: 60vh; min-height: 320px; }
  .announce-bar { padding: 12px 20px; }
  .announce-bar a { font-size: 11px; gap: 6px; }
  .credentials { padding: 40px 0; }
  .credentials-inner { padding: 0 20px; gap: 28px; }
  .cred-logo { height: 30px; }
  .cred-lg { height: 44px; }
  .dr-section { padding: 56px 0; }
  .dr-inner { padding: 0 20px; }
  .dr-name { font-size: 24px; }
  .specials-section { padding: 64px 0; }
  .specials-inner { padding: 0 20px; }
  .specials-title { font-size: 24px; }
  .specials-carousel { min-height: 380px; }
  .special-slide { padding: 36px 24px; }
  .specials-fineprint { font-size: 10px; letter-spacing: 0.12em; }
  .services-section { padding: 64px 0; }
  .services-inner { padding: 0 20px; }
  .services-title { font-size: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 24px 14px; }
  .reviews-section { padding: 64px 0; }
  .reviews-inner { padding: 0 20px; }
  .reviews-title { font-size: 24px; }
  .feel-section { padding: 64px 0; }
  .feel-inner { padding: 0 20px; }
  .feel-title { font-size: 24px; }
  .feel-grid { grid-template-columns: 1fr; gap: 16px; }
  .feel-card { padding: 28px 22px; }
  .cta-final { padding: 64px 0; }
  .cta-inner { padding: 0 20px; }
  .cta-title { font-size: 24px; }
  .cta-logo { width: 90px; height: 90px; margin-bottom: 24px; }
  .cta-sub { font-size: 16px; }
  .footer-inner { grid-template-columns: 1fr; padding: 56px 20px 40px; gap: 36px; }
  .footer-bottom-inner { padding: 24px 20px; flex-direction: column; align-items: center; }
  .ba-section { padding: 64px 0; }
  .ba-inner { padding: 0 20px; }
  .ba-title { font-size: 24px; }
  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-card { max-width: 480px; margin: 0 auto; }
  .trust-section { padding: 56px 0; }
  .trust-inner { padding: 0 20px; }
  .location-section { padding: 64px 0; }
  .location-inner { padding: 0 20px; gap: 36px; }
  .location-title { font-size: 24px; }
  .location-hours { padding: 16px 22px; }
  .hours-row { font-size: 12px; padding: 10px 0; }
  .location-map { min-height: 320px; }
  .insurance-section { padding: 64px 0; }
  .insurance-inner { padding: 0 20px; gap: 32px; }
  .insurance-title { font-size: 24px; }
  .accept-bar { padding: 18px 20px; }
  .accept-inner { gap: 10px; }
  .accept-label { font-size: 12px; margin-right: 0; width: 100%; text-align: center; }
  .accept-pill { font-size: 13px; padding: 8px 18px; }
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
/* [class] bumps specificity so per-element `transition` rules
   (e.g. .doc-assoc-logo, .funfact-card) don't override the reveal. */
.reveal[class] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal[class].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal[class] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Page Header (internal pages) ─────────────────────────── */
.page-header {
  background: var(--midnight);
  padding: 96px 0 88px;
  margin-top: 96px;
  text-align: center;
}
@media (max-width: 1200px) {
  .page-header { margin-top: 0; }
}
.page-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstone);
  opacity: 0.9;
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: #fff;
  text-wrap: balance;
  margin: 0;
}
.page-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
  margin: 20px auto 0;
}
@media (max-width: 860px) {
  .page-header { padding: 64px 0 56px; }
  .page-header-inner { padding: 0 24px; }
  .page-title { font-size: 28px; }
}
@media (max-width: 540px) {
  .page-title { font-size: 24px; }
}

/* ── Mobile Body Text (17px below 640px) ─────────────────── */
@media (max-width: 640px) {
  .hero-sub,
  .dr-quote,
  .services-sub,
  .specials-desc,
  .location-desc,
  .insurance-desc,
  .cta-sub,
  .page-subtitle {
    font-size: 17px;
  }
  .specials-carousel { min-height: 340px; }
}

/* ── Accessibility Widget ──────────────────────────────── */
.a11y-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
}
.a11y-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--mist);
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}
.a11y-toggle:hover {
  background: var(--midnight-dk);
  transform: scale(1.06);
}
.a11y-toggle svg { width: 26px; height: 26px; display: block; }
.a11y-panel {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 290px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  overflow: hidden;
}
.a11y-widget.open .a11y-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--midnight);
  color: #fff;
}
.a11y-panel-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.a11y-panel-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
}
.a11y-panel-close:hover { background: rgba(255,255,255,0.24); }
.a11y-panel-close svg { width: 16px; height: 16px; }
.a11y-panel-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.a11y-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--porcelain);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--walnut-dk);
  transition: background 180ms ease, color 180ms ease;
}
.a11y-option:hover { background: var(--sandstone); }
.a11y-option.is-active { background: var(--midnight); color: #fff; }
.a11y-option svg { width: 18px; height: 18px; flex-shrink: 0; }
.a11y-option-label { flex: 1; }
.a11y-option-state {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.a11y-option.is-active .a11y-option-state { opacity: 1; }
.a11y-reset {
  background: transparent;
  color: var(--walnut);
  justify-content: center;
  margin-top: 4px;
}
.a11y-reset:hover { background: var(--porcelain); color: var(--walnut-dk); }
.a11y-reset.is-active { background: transparent; color: var(--walnut); }
@media (max-width: 540px) {
  .a11y-widget { bottom: 16px; left: 12px; }
  .a11y-panel { width: calc(100vw - 24px); max-width: 320px; }
}

/* A11Y modifier states applied to <html> */
html.a11y-text-1 { zoom: 1.125; }
html.a11y-text-2 { zoom: 1.25; }
html.a11y-contrast { filter: invert(1) hue-rotate(180deg); background: #fff; }
html.a11y-contrast img,
html.a11y-contrast video,
html.a11y-contrast iframe,
html.a11y-contrast picture,
html.a11y-contrast svg { filter: invert(1) hue-rotate(180deg); }
html.a11y-readable-font body,
html.a11y-readable-font body * {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}
html.a11y-highlight-links a {
  text-decoration: underline !important;
  outline: 1.5px dashed currentColor;
  outline-offset: 3px;
}
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation-duration: 0.001s !important;
  animation-delay: 0s !important;
  transition-duration: 0.001s !important;
  transition-delay: 0s !important;
}

/* ── Language Switch ──────────────────────────────────── */
.lang-switch { position: relative; margin-left: 8px; }
.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 9999px;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.lang-switch-toggle:hover {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}
.lang-switch.open .lang-switch-toggle {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.lang-flag {
  font-size: 16px;
  line-height: 1;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
}
.lang-code { letter-spacing: 0.12em; }
.lang-caret { width: 10px; height: 10px; transition: transform 200ms ease; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-switch-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 100;
}
.lang-switch.open .lang-switch-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--walnut-dk);
  transition: background 180ms ease;
}
.lang-switch-option:hover { background: var(--porcelain); }
.lang-switch-option.is-active { background: var(--porcelain); }
.lang-switch-option .lang-flag { font-size: 22px; }
.lang-switch-option-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.lang-switch-option-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--walnut-dk);
}
.lang-switch-option-text small {
  font-size: 12px;
  color: var(--walnut);
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0;
}
/* Floating tab variant — hangs from top-right of viewport */
.lang-switch--floating {
  position: fixed;
  top: 0;
  right: 32px;
  z-index: 1100;
  margin-left: 0;
}
.lang-switch--floating .lang-switch-toggle {
  background: var(--sandstone);
  border: 0;
  border-radius: 0 0 14px 14px;
  padding: 11px 20px 13px;
  color: var(--walnut-dk);
  box-shadow: 0 8px 22px rgba(0,0,0,0.30);
  font-weight: 700;
}
.lang-switch--floating .lang-switch-toggle:hover {
  background: var(--vanilla);
  color: var(--walnut-dk);
}
.lang-switch--floating.open .lang-switch-toggle {
  background: var(--vanilla);
  color: var(--walnut-dk);
}
.lang-switch--floating .lang-switch-menu {
  top: calc(100% + 6px);
  right: 0;
}
@media (max-width: 1200px) {
  .lang-switch--floating { display: none; }
}

/* Mobile variant inside mobile menu (on light bg) */
.lang-switch--mobile { margin: 0 0 6px; align-self: center; }
.lang-switch--mobile .lang-switch-toggle {
  background: var(--midnight);
  color: var(--mist);
  border: 0;
  padding: 11px 20px;
  box-shadow: 0 6px 18px rgba(55,73,89,0.20);
  font-weight: 700;
}
.lang-switch--mobile .lang-switch-toggle:hover {
  background: var(--midnight-dk);
  color: #fff;
}
.lang-switch--mobile.open .lang-switch-toggle {
  background: var(--midnight-dk);
  color: #fff;
}
.lang-switch--mobile .lang-switch-menu {
  top: auto;
  bottom: calc(100% + 10px);
  left: 50%;
  right: auto;
  transform: translate(-50%, 6px);
}
.lang-switch--mobile.open .lang-switch-menu { transform: translate(-50%, 0); }
body.is-translating .lang-switch { opacity: 0.55; pointer-events: none; }
