:root{
  --cream:#F4F0E6;
  --cream-2:#EFE9DB;
  --ink:#20241F;
  --ink-soft:#5B6058;
  --green:#1E9463;
  --green-dark:#146B48;
  --green-deep:#0F4A32;
  --orange:#F4A93B;
  --line:#E4DDCB;
  --white:#FFFFFF;
  --radius:20px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  width:100%;
  max-width:100%;
}
body{
  font-family:'Inter', sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
  max-width:100%;
  position:relative;
}

body.menu-open{
  overflow:hidden;
}

h1,h2,h3,.display{
  font-family:'Fraunces', serif;
  font-weight:600;
  letter-spacing:-0.02em;
  color:var(--ink);
}

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

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 32px;
  width:100%;
}

section{position:relative; overflow:hidden;}

/* Scroll reveal */
[data-reveal]{
  opacity:0; transform:translateY(34px) scale(.985);
  filter:blur(6px);
  transition:opacity 1s cubic-bezier(.19,1,.22,1),
             transform 1s cubic-bezier(.19,1,.22,1),
             filter 1s cubic-bezier(.19,1,.22,1);
  will-change:opacity, transform, filter;
}
[data-reveal].in{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
[data-reveal="fade"]{ transform:translateY(16px) scale(1); filter:blur(4px); }
[data-reveal="fade"].in{ transform:translateY(0) scale(1); }
[data-reveal="left"]{ transform:translateX(-44px) scale(.99); }
[data-reveal="left"].in{ transform:translateX(0) scale(1); }
[data-reveal="right"]{ transform:translateX(44px) scale(.99); }
[data-reveal="right"].in{ transform:translateX(0) scale(1); }
[data-reveal="scale"]{ transform:scale(.9); }
[data-reveal="scale"].in{ transform:scale(1); }
[data-reveal-group] [data-reveal]{ transition-delay:calc(var(--i, 0) * 110ms); }

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

header{ transition:box-shadow .3s ease, padding .3s ease; }
header.scrolled{ box-shadow:0 4px 24px rgba(20,24,20,.06); }
header.scrolled nav.wrap{ height:64px; }

.scroll-indicator{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  width:fit-content; margin:30px auto 0; color:var(--ink-soft);
  font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  cursor:pointer;
}
.scroll-indicator .line{
  width:1px; height:38px; background:linear-gradient(var(--ink-soft), transparent);
  position:relative; overflow:hidden;
}
.scroll-indicator .line::after{
  content:''; position:absolute; left:0; top:-100%; width:100%; height:100%;
  background:var(--green); animation:scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse{
  0%{ top:-100%; }
  60%{ top:100%; }
  100%{ top:100%; }
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:100px;
  font-weight:600; font-size:15px; cursor:pointer;
  border:none; transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space:nowrap;
  min-height:48px;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--green); color:#fff; box-shadow:0 8px 20px rgba(30,148,99,.25); position:relative; overflow:hidden; }
.btn-primary::after{
  content:''; position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg); transition:left .6s ease;
}
.btn-primary:hover::after{ left:140%; }
.btn-primary:hover{ background:var(--green-dark); }
.btn-ghost{ background:transparent; color:var(--ink); border:1.5px solid #D8D0BC; }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-white{ background:#fff; color:var(--green-deep); }
.btn-white:hover{ background:#f0f5f2; }
.btn-outline-white{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover{ border-color:#fff; background:rgba(255,255,255,.1); }
.btn-sm{ padding:8px 20px; font-size:13.5px; min-height:40px; }
.btn-full{ width:100%; }

/* NAV & HEADER */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(244,240,230,.92); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:78px; transition:height .3s ease;
}
.logo{ display:flex; align-items:center; gap:10px; font-family:'Fraunces',serif; font-weight:700; font-size:20px; color:var(--ink); position:relative; z-index:102; }
.logo-mark{
  width:34px; height:34px; border-radius:10px;
  background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.nav-links{ display:flex; align-items:center; gap:36px; font-size:14.5px; font-weight:500; color:var(--ink-soft); }
.nav-links a{ transition:color .2s ease; padding:6px 0; }
.nav-links a:hover{ color:var(--green-dark); }
.mobile-cta-wrapper{ display:none; width:100%; margin-top:12px; }

.nav-cta{ display:flex; align-items:center; gap:20px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  background:transparent;
  border:none;
  cursor:pointer;
  z-index:102;
  padding:8px;
  border-radius:10px;
}
.mobile-menu-toggle:focus-visible{
  outline:2px solid var(--green);
}
.hamburger-line{
  width:22px;
  height:2px;
  background-color:var(--ink);
  border-radius:2px;
  transition:transform .3s ease, opacity .3s ease, background-color .3s ease;
}

/* Active Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2){
  opacity:0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-nav-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(20,24,20,.45);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:98;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}
.mobile-nav-backdrop.active{
  opacity:1;
  pointer-events:auto;
}

/* Eyebrow */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--green-dark);
  background:rgba(30,148,99,.09);
  padding:7px 16px; border-radius:100px;
  margin-bottom:20px;
  max-width:100%;
}
.eyebrow.light{ color:#BFE9D6; background:rgba(255,255,255,.12); }
.eyebrow-dot{ width:6px; height:6px; border-radius:50%; background:var(--green); flex-shrink:0; }

/* HERO */
.hero{ padding:80px 0 60px; position:relative; }
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center;
}
.hero h1{
  font-size:clamp(2.25rem, 4.5vw + 1rem, 3.5rem);
  line-height:1.08;
  margin-bottom:22px;
}
.hero h1 .accent{ color:var(--green); }
.hero p.lead{ font-size:clamp(1rem, 1vw + .6rem, 1.125rem); color:var(--ink-soft); max-width:480px; margin-bottom:32px; }
.hero-actions{ display:flex; gap:14px; margin-bottom:48px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:40px; flex-wrap:wrap; }
.hero-stats div b{ display:block; font-family:'Fraunces',serif; font-size:26px; color:var(--ink); }
.hero-stats div span{ font-size:13px; color:var(--ink-soft); }

.hero-media{ position:relative; width:100%; }
.hero-visual{
  position:relative; border-radius:28px; overflow:hidden;
  aspect-ratio:1.35/1;
  box-shadow:0 30px 60px -20px rgba(15,74,50,.35);
  width:100%;
}
.hero-visual .bg-photo{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:58% 25%; display:block;
}
.hero-card-pos{
  position:absolute; top:50%; left:-48px; width:290px; max-width:calc(100% - 32px);
  transform:translateY(-50%); z-index:2;
}
.hero-card{
  position:relative; width:100%;
  background:linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius:22px; padding:22px; color:#fff; overflow:hidden;
  box-shadow:0 24px 50px -18px rgba(15,74,50,.5);
  animation:float 6s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
@media (prefers-reduced-motion: reduce){ .hero-card{ animation:none; } }
.hero-card::before{
  content:''; position:absolute; width:180px; height:180px; border-radius:50%;
  background:rgba(255,255,255,.08); top:-70px; right:-60px; pointer-events:none;
}
.tooth-icon{
  width:52px; height:58px; margin:14px auto 16px;
  display:flex; align-items:center; justify-content:center;
}
.badge-float{
  position:absolute; top:14px; right:14px;
  background:var(--orange); color:#3a2400; font-size:10.5px; font-weight:700;
  padding:6px 11px; border-radius:100px; display:flex; align-items:center; gap:5px;
  animation:pulseGlow 2.6s ease-in-out infinite;
}
@keyframes pulseGlow{
  0%,100%{ box-shadow:0 0 0 0 rgba(244,169,59,.5); }
  50%{ box-shadow:0 0 0 8px rgba(244,169,59,0); }
}
@media (prefers-reduced-motion: reduce){ .badge-float{ animation:none; } }
.doc-card{
  background:rgba(255,255,255,.12); border-radius:14px; padding:10px 12px;
  display:flex; align-items:center; gap:10px; margin-bottom:9px;
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
}
.avatar{
  width:34px; height:34px; border-radius:50%; background:var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:#3a2400; font-size:12px; flex-shrink:0;
}
.doc-card .name{ font-weight:700; font-size:12.5px; line-height:1.2; }
.doc-card .role{ font-size:10.5px; color:rgba(255,255,255,.7); }
.slot-row{
  background:rgba(255,255,255,.1); border-radius:12px; padding:9px 11px;
  display:flex; align-items:center; justify-content:space-between; gap:8px; font-size:11px;
}
.slot-row .slot-label{ color:rgba(255,255,255,.65); font-size:9.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:1px;}
.slot-row .slot-time{ font-weight:700; font-size:12px; }
.reserve-btn{ background:var(--orange); color:#3a2400; font-weight:700; font-size:10.5px; padding:7px 13px; border-radius:100px; border:none; flex-shrink:0; cursor:pointer; }

.blob{ position:absolute; border-radius:50%; z-index:-1; pointer-events:none; }

/* SECTION HEAD */
.section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-head h2{ font-size:clamp(1.75rem, 3vw + .5rem, 2.5rem); line-height:1.15; }
.section-head p{ color:var(--ink-soft); margin-top:16px; font-size:clamp(0.95rem, 1vw + .5rem, 1.05rem); }
.section-head.left{ text-align:left; margin:0; max-width:none; }

/* SERVICES */
.services{ padding:90px 0; }
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card{
  background:#fff; border:1px solid var(--line); border-radius:18px; padding:30px;
  transition:transform .35s cubic-bezier(.19,1,.22,1), box-shadow .35s ease, border-color .35s ease;
  transform-style:preserve-3d; will-change:transform;
  display:flex; flex-direction:column;
}
.service-card:hover{ box-shadow:0 24px 48px -20px rgba(20,107,72,.22); border-color:rgba(30,148,99,.35); }
.service-icon{
  width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  font-size:20px; margin-bottom:18px; transition:transform .4s cubic-bezier(.34,1.56,.64,1); flex-shrink:0;
}
.service-card:hover .service-icon{ transform:scale(1.12) rotate(-6deg); }
.service-card.has-photo{ padding:0; overflow:hidden; }
.service-photo{ height:160px; overflow:hidden; width:100%; }
.service-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.19,1,.22,1); }
.service-card.has-photo:hover .service-photo img{ transform:scale(1.08); }
.service-body{ padding:24px 28px 28px; flex-grow:1; display:flex; flex-direction:column; }
.service-card h3{ font-size:19px; margin-bottom:8px; }
.service-card p{ color:var(--ink-soft); font-size:14.5px; margin-bottom:16px; flex-grow:1; }
.service-card .learn{ font-size:13.5px; font-weight:700; color:var(--green-dark); display:inline-flex; align-items:center; gap:4px; transition:gap .3s ease; margin-top:auto; }
.service-card:hover .learn{ gap:9px; }
.service-card.emergency .learn{ color:#C4552F; }

/* STORY */
.story{ background:var(--green-deep); color:#fff; padding:100px 0; }
.story-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center; }
.story-card{
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12); border-radius:26px; padding:40px 30px; text-align:center;
  position:relative; width:100%;
}
.story-avatar{
  width:84px; height:84px; border-radius:50%; background:var(--orange); color:#3a2400;
  display:flex; align-items:center; justify-content:center; font-size:26px; font-weight:700;
  margin:0 auto 18px;
}
.story-card h3{ color:#fff; font-size:20px; margin-bottom:4px; }
.story-card .role{ color:rgba(255,255,255,.6); font-size:13.5px; margin-bottom:16px; }
.tag-row{ display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.tag{ background:rgba(255,255,255,.1); font-size:11.5px; padding:6px 12px; border-radius:100px; color:rgba(255,255,255,.85); }
.exp-badge{
  position:absolute; top:-14px; right:14px; background:#fff; color:var(--green-deep);
  border-radius:14px; padding:8px 12px; text-align:center; font-size:11px; font-weight:700; line-height:1.2;
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}
.exp-badge b{ display:block; font-size:16px; }

.story h2{ color:#fff; font-size:clamp(1.75rem, 3vw + .5rem, 2.35rem); line-height:1.2; margin-bottom:20px; }
.story p.body-text{ color:rgba(255,255,255,.78); font-size:15.5px; margin-bottom:16px; }
.cred-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:26px 0 30px; }
.cred-box{ background:rgba(255,255,255,.07); border-radius:14px; padding:14px 16px; }
.cred-box .label{ font-size:11px; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.05em; margin-bottom:3px;}
.cred-box .value{ font-weight:700; font-size:14.5px; word-break:break-word; }

/* TEAM STRIP */
.team-strip{ padding:90px 0 30px; }
.team-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; }
.team-photo{ border-radius:22px; overflow:hidden; box-shadow:0 24px 50px -20px rgba(20,40,30,.25); width:100%; }
.team-photo img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:4/3; }
.team-strip h2{ font-size:clamp(1.65rem, 2.5vw + .5rem, 2.25rem); margin-bottom:16px; line-height:1.2; }
.team-copy{ color:var(--ink-soft); font-size:15.5px; margin-bottom:28px; max-width:480px; }

/* STATS BAR */
.stats-bar{ padding:60px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat-box{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:26px 18px; text-align:center; transition:transform .35s cubic-bezier(.19,1,.22,1), box-shadow .35s ease; }
.stat-box:hover{ transform:translateY(-6px); box-shadow:0 20px 40px -22px rgba(20,107,72,.25); }
.stat-box .num{ font-family:'Fraunces',serif; font-size:clamp(1.75rem, 2.5vw + .5rem, 2.25rem); color:var(--green-dark); margin-bottom:4px; }
.stat-box .lab{ font-size:13.5px; color:var(--ink-soft); }

/* WHY US */
.why{ padding:90px 0; }
.why-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; gap:20px; flex-wrap:wrap; }
.why-head h2{ font-size:clamp(1.65rem, 2.5vw + .5rem, 2.25rem); }
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.why-card{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px; display:flex; gap:16px; transition:transform .35s cubic-bezier(.19,1,.22,1), box-shadow .35s ease, border-color .35s ease; }
.why-card:hover{ transform:translateY(-5px); box-shadow:0 20px 40px -22px rgba(20,107,72,.2); border-color:rgba(30,148,99,.3); }
.why-icon{ width:42px; height:42px; border-radius:12px; background:rgba(30,148,99,.1); color:var(--green-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:18px; transition:transform .4s cubic-bezier(.34,1.56,.64,1); }
.why-card:hover .why-icon{ transform:scale(1.1) rotate(6deg); }
.why-card h4{ font-size:16px; margin-bottom:6px; }
.why-card p{ font-size:13.5px; color:var(--ink-soft); }

/* TESTIMONIALS */
.testimonials{ background:var(--cream-2); padding:90px 0; }
.test-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:34px; }
.test-card{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:28px; transition:transform .35s cubic-bezier(.19,1,.22,1), box-shadow .35s ease; display:flex; flex-direction:column; }
.test-card:hover{ transform:translateY(-5px); box-shadow:0 22px 44px -22px rgba(20,107,72,.2); }
.stars{ color:var(--orange); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.test-card p.quote{ font-size:15px; color:var(--ink); margin-bottom:20px; flex-grow:1; }
.test-person{ display:flex; align-items:center; gap:12px; }
.test-person .name{ font-weight:700; font-size:14.5px; }
.test-person .meta{ font-size:12.5px; color:var(--ink-soft); }
.google-bar{
  background:#fff; border:1px solid var(--line); border-radius:100px;
  padding:14px 28px; display:flex; align-items:center; justify-content:center; gap:10px;
  font-size:14px; font-weight:600; max-width:460px; margin:0 auto; width:100%;
}
.google-bar .sep{ color:var(--ink-soft); font-weight:400; }

/* CTA MID */
.cta-mid{ padding:90px 0; text-align:center; }
.cta-mid .eyebrow{ display:inline-flex; margin-left:auto; margin-right:auto; }
.cta-mid h2{ font-size:clamp(2rem, 3.5vw + .5rem, 2.75rem); }

/* FAQ */
.faq{ padding:0 0 100px; }
.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; cursor:pointer; font-weight:600; font-size:15.5px;
}
.faq-q .chev{ transition:transform .25s ease; color:var(--ink-soft); font-size:14px; flex-shrink:0; }
.faq-item.open .chev{ transform:rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner{ padding:0 24px 22px; color:var(--ink-soft); font-size:14.5px; max-width:640px; }
.faq-item.open .faq-a{ max-height:300px; }

/* FINAL CTA */
.final-cta{
  background:linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color:#fff; padding:100px 0 80px; text-align:center; overflow:hidden; position:relative;
}
.final-cta .icon-circle{
  width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center; margin:0 auto 26px; font-size:22px;
}
.final-cta h2{ color:#fff; font-size:clamp(2rem, 4vw + .5rem, 2.85rem); line-height:1.15; margin-bottom:18px; }
.final-cta p{ color:rgba(255,255,255,.8); font-size:16px; margin-bottom:38px; }
.final-actions{ display:flex; gap:14px; justify-content:center; margin-bottom:46px; flex-wrap:wrap; }
.final-badges{ display:flex; gap:24px; justify-content:center; flex-wrap:wrap; font-size:13.5px; color:rgba(255,255,255,.75); }
.final-badges span{ display:flex; align-items:center; gap:8px; }
.mobile-cta-info{ display:none; }

/* FOOTER */
footer{ background:#171B15; color:rgba(255,255,255,.65); padding:70px 0 30px; font-size:14px; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1.1fr 1.2fr; gap:40px; margin-bottom:50px; }
.footer-logo{ color:#fff; font-family:'Fraunces',serif; font-weight:700; font-size:19px; display:flex; align-items:center; gap:10px; margin-bottom:14px; cursor:pointer; width:fit-content; }
footer h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
footer ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
footer a:hover{ color:#fff; }
footer p.tagline{ max-width:280px; margin-bottom:22px; }
.social-row{ display:flex; gap:10px; }
.social-icon{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center; font-size:14px;
  border:1px solid rgba(255,255,255,.08); transition:background .2s ease, transform .2s ease;
}
.social-icon:hover{ background:var(--green); transform:translateY(-2px); color:#fff; }
.find-us li{ display:flex; align-items:flex-start; gap:10px; }
.find-us .ficon{ flex-shrink:0; margin-top:1px; }
.hours-row{ display:flex; justify-content:space-between; gap:12px; }
.hours-row .d{ color:rgba(255,255,255,.9); }
.hours-row .t{ color:rgba(255,255,255,.55); text-align:right; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; flex-wrap:wrap; gap:14px;
}
.footer-bottom .legal-links{ display:flex; gap:22px; }
.footer-bottom .legal-links a:hover{ color:#fff; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Desktop / PC Scaling (>= 1400px) */
@media (min-width: 1400px){
  .wrap{ max-width: 1240px; }
}

/* Laptops & Standard Desktops (992px - 1199px) */
@media (max-width: 1199px){
  .hero-grid, .story-grid, .team-grid{ gap: 40px; }
  .nav-links{ gap: 24px; }
  .footer-grid{ gap: 28px; }
}

/* Tablets & Mobile Navigation Trigger (<= 900px) */
@media (max-width: 900px){
  .nav-cta{ display:none; }
  .mobile-menu-toggle{ display:flex; }
  .mobile-nav-backdrop{ display:block; }
  
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .nav-links{
    display:none;
    visibility:hidden;
    pointer-events:none;
    position:fixed;
    top:0;
    right:0;
    width:300px;
    max-width:85vw;
    height:100vh;
    height:100dvh;
    background:var(--cream);
    padding:95px 28px 40px;
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
    box-shadow:-10px 0 35px rgba(20,24,20,.18);
    z-index:99;
    overflow-y:auto;
  }
  .nav-links.active{
    display:flex;
    visibility:visible;
    pointer-events:auto;
    animation:mobileDrawerIn .32s cubic-bezier(.19,1,.22,1) forwards;
  }

@keyframes mobileDrawerIn{
  from{ transform:translateX(100%); opacity:0; }
  to{ transform:translateX(0); opacity:1; }
}
  .nav-links a{
    font-size:18px;
    font-weight:600;
    color:var(--ink);
    width:100%;
    padding:10px 0;
    border-bottom:1px solid rgba(228,221,203,.6);
  }
  .mobile-cta-wrapper{
    display:block;
    margin-top:16px;
  }

  /* Grid Layout Adjustments for Mobile & Tablets */
  .hero-grid, .story-grid, .team-grid{ grid-template-columns:1fr; text-align:center; }
  .hero h1, .hero p.lead{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }

  /* Keep Hero Media Container & Hero Card Visible, Hide Only Standalone Photo Image */
  .hero-media {
    display: block !important;
    margin-top: 16px;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-card-pos{
    position:relative;
    top:0;
    left:0;
    transform:none;
    margin:0 auto;
    width:100%;
    max-width:340px;
  }
  
  .services-grid, .why-grid, .test-grid, .footer-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  
  .team-copy{ margin-left:auto; margin-right:auto; }
  .team-photo{ max-width:600px; margin:0 auto; }
}

/* Medium Mobile & Small Tablets (<= 640px) */
@media (max-width: 640px){
  .wrap{ padding:0 20px; }
  
  .services-grid, .why-grid, .test-grid, .footer-grid{ grid-template-columns:1fr; }
  .why-head{ flex-direction:column; align-items:center; text-align:center; }
  
  .cred-grid{ grid-template-columns:1fr 1fr; }
  
  .google-bar{
    flex-direction:column;
    gap:6px;
    padding:14px 20px;
    border-radius:20px;
    text-align:center;
  }



  /* Hide Services, Location, and Hours from Footer in Mobile View */
  .footer-col-services,
  .footer-col-location,
  .footer-col-hours {
    display: none !important;
  }

  .footer-col-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo { justify-content: center; }
  footer p.tagline { max-width: 100%; }

  /* Show Location and Clinic Hours in CTA on Mobile View */
  .mobile-cta-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    text-align: left;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .mobile-info-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-info-card:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
  }

  .mobile-info-header {
    font-weight: 700;
    font-size: 14.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-info-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 700;
    margin-top: 4px;
  }

  .mobile-hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-hours-list div {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    gap: 8px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }
  .footer-bottom .legal-links{ justify-content:center; }
}

/* Small Mobile Devices (<= 480px) */
@media (max-width: 480px){
  .wrap{ padding:0 16px; }
  
  .hero-actions, .final-actions{ flex-direction:column; width:100%; }
  .btn{ width:100%; }
  .hero-stats{ gap:20px 32px; justify-content:space-between; }
  .hero-stats div{ flex:1 1 30%; min-width:80px; }
  .hero-stats div b{ font-size:22px; }

  .cred-grid{ grid-template-columns:1fr; }
  .exp-badge{ position:relative; top:0; right:0; display:inline-block; margin-bottom:16px; }
  .story-card{ padding:30px 20px; }

  .hero-card{ padding:18px; }
  .doc-card{ padding:8px 10px; }

  .final-badges{ flex-direction:column; align-items:center; gap:12px; }
  
  .faq-q{ padding:16px 18px; font-size:14.5px; }
  .faq-a-inner{ padding:0 18px 18px; font-size:14px; }
}

/* Extra Small / Foldable Devices (<= 360px) */
@media (max-width: 360px){
  .wrap{ padding:0 12px; }
  .hero-stats div b{ font-size:20px; }
  .hero-stats div span{ font-size:11.5px; }
  .logo{ font-size:18px; }
  .btn{ font-size:14px; padding:12px 20px; }
}

/* ==========================================================================
   BOOKING MODAL STYLES
   ========================================================================== */
body.modal-open{
  overflow: hidden !important;
}

.booking-modal-backdrop{
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 16, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.booking-modal-backdrop.active{
  opacity: 1;
  visibility: visible;
}

.booking-modal{
  background: #FAF8F3;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  max-height: 90dvh;
  border-radius: 26px;
  padding: 32px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
}

.booking-modal-backdrop.active .booking-modal{
  transform: scale(1) translateY(0);
}

.modal-close-btn{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(32, 36, 31, 0.06);
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover{
  background: rgba(32, 36, 31, 0.12);
  transform: rotate(90deg);
}

.modal-header{
  margin-bottom: 24px;
}

.modal-header h2{
  font-size: 24px;
  line-height: 1.2;
}

.modal-subtitle{
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.booking-step{
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.step-label{
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-label .required{
  color: var(--green);
}

/* Service Chips */
.services-select-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 100px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-chip:hover{
  border-color: var(--green-dark);
}

.service-chip.active{
  background: var(--green);
  color: #fff;
  border-color: var(--green-dark);
}

/* Doctor Select Cards */
.doctors-select-grid{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doctor-select-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.doctor-select-card:hover{
  border-color: var(--green);
}

.doctor-select-card.selected{
  border-color: var(--green);
  background: rgba(30, 148, 99, 0.08);
}

.doc-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #3a2400;
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-info{
  flex-grow: 1;
}

.doc-name{
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}

.doc-spec{
  font-size: 11.5px;
  color: var(--ink-soft);
}

.doc-radio{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.doctor-select-card.selected .doc-radio{
  background: var(--green);
  border-color: var(--green-dark);
  color: #fff;
}

/* Date & Time Picker */
.datetime-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width{
  grid-column: 1 / -1;
}

.input-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-input{
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus{
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 148, 99, 0.15);
}

.form-textarea{
  resize: vertical;
  min-height: 70px;
}

.time-slots-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.time-slot-btn{
  padding: 8px 10px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.time-slot-btn:hover{
  border-color: var(--green);
}

.time-slot-btn.active{
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-deep);
}

.contact-inputs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-lg{
  padding: 16px 28px;
  font-size: 16px;
}

/* Confirmation Screen */
.booking-confirmation-view{
  text-align: center;
  padding: 20px 10px 10px;
}

.success-icon{
  font-size: 48px;
  margin-bottom: 12px;
}

.booking-confirmation-view h2{
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}

.confirmation-lead{
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.confirmation-summary-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  border-bottom: 1px dashed rgba(228, 221, 203, 0.6);
  padding-bottom: 8px;
}

.summary-row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.summary-row .s-label{
  color: var(--ink-soft);
}

.summary-row .s-value{
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.summary-row .ref-code{
  font-family: monospace;
  background: rgba(30, 148, 99, 0.1);
  color: var(--green-dark);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
}

.summary-row .highlight{
  color: var(--green-dark);
}

.confirmation-note{
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

@media (max-width: 600px){
  .booking-modal{
    padding: 24px 18px;
    border-radius: 20px;
  }
  .datetime-grid, .contact-inputs-grid{
    grid-template-columns: 1fr;
  }
  .time-slots-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}