﻿/* ============================================================
   Oakville Dental Care
   ============================================================ */

:root{
  --brand:        #653915;
  --brand-deep:   #4a290f;
  --brand-mid:    #7a4519;
  --accent:       #0b8643;
  --accent-soft:  #e8f4da;
  --ink:          #3f2510;
  --body:         #6b6157;
  --muted:        #cbb8a5;
  --line:         #e9e2d9;
  --bg:           #f8f6f2;
  --white:       #ffffff;
  --gold:        #f5a623;
  --accent-bright: #8ec646;
  --container:   1200px;
  --radius:      8px;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:110px; }

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size:15px;
  line-height:1.65;
  color:var(--body);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ margin:0; color:var(--ink); }
p{ margin:0; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }

/* ---------- icons ---------- */
.ico{
  width:18px; height:18px; flex:none;
  fill:none; stroke:currentColor; stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.ico--xs{ width:13px; height:13px; stroke-width:2.2; }
.ico--md{ width:26px; height:26px; }
.ico--lg{ width:30px; height:30px; stroke-width:1.4; }

.eyebrow{
  display:block;
  font-size:12px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent);
  margin-bottom:14px;
}

.h2{
  font-family:'Playfair Display',Georgia,serif;
  font-size:34px; font-weight:700; line-height:1.22;
  letter-spacing:-.01em; color:var(--ink);
}
.h2--light{ color:#fff; }

.stars{ color:var(--gold); letter-spacing:1px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar{ background:var(--brand); color:#fff; font-size:13px; }
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; min-height:42px;
}
.topbar__center{ display:flex; align-items:center; gap:46px; }
.topbar__item{
  display:inline-flex; align-items:center; gap:8px;
  color:#f4ece3; white-space:nowrap;
}
.topbar__item .ico{ width:15px; height:15px; opacity:.9; }
a.topbar__item:hover{ color:#fff; }

.btn-pill{
  background:#fff; color:var(--brand);
  font-size:11.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  padding:9px 20px; border-radius:100px; white-space:nowrap;
  transition:background .2s,transform .2s;
}
.btn-pill:hover{ background:var(--accent-soft); transform:translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:sticky; top:0; z-index:60;
  background:#fff; border-bottom:1px solid var(--line);
  transition:box-shadow .25s;
}
.header.is-stuck{ box-shadow:0 6px 24px rgba(101,57,21,.08); }
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:70px; gap:24px;
}

.logo{ display:inline-flex; align-items:center; gap:11px; }
.logo__img{ width:auto; height:42px; }
.footer .logo__img{ height:46px; }
.logo__mark{
  width:34px; height:34px; flex:none;
  fill:none; stroke:var(--brand); stroke-width:1.3;
  stroke-linejoin:round;
}
.logo__text{ display:flex; flex-direction:column; line-height:1; }
.logo__text strong{
  font-size:25px; font-weight:700; letter-spacing:.055em; color:var(--brand);
}
.logo__text em{
  font-style:normal; font-size:13.5px; font-weight:500;
  letter-spacing:.235em; color:var(--accent); margin-top:4px;
}
.logo--light .logo__mark{ stroke:#fff; }
.logo--light .logo__text strong{ color:#fff; }
.logo--light .logo__text em{ color:#d9ead0; }

.nav__list{ display:flex; align-items:center; gap:38px; }
.nav__list > li > a{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink); padding:24px 0; position:relative;
  transition:color .2s;
}
.nav__list > li > a:hover{ color:var(--accent); }
.nav__list > li > a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:18px;
  height:2px; background:var(--accent);
}

.has-drop{ position:relative; }
.drop{
  position:absolute; top:100%; left:-18px; min-width:216px;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:0 16px 40px rgba(101,57,21,.14);
  padding:8px 0; opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .2s,transform .2s,visibility .2s;
}
.has-drop:hover .drop,
.has-drop.is-open .drop{ opacity:1; visibility:visible; transform:translateY(0); }
.drop a{
  display:block; padding:9px 20px; font-size:13.5px; color:var(--body);
  transition:background .15s,color .15s;
}
.drop a:hover{ background:var(--accent-soft); color:var(--brand); }

.nav-toggle{
  display:none; width:44px; height:40px; border:0; background:none;
  cursor:pointer; padding:9px 8px; flex-direction:column; justify-content:space-between;
}
.nav-toggle span{ display:block; height:2px; background:var(--brand); border-radius:2px; transition:transform .25s,opacity .2s; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  align-items:center;
  background:#fff;
  min-height:470px;
}
.hero__content{
  padding:56px 60px 56px max(24px,calc((100vw - var(--container)) / 2 + 24px));
}
.hero__title{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(38px,4.2vw,56px); font-weight:700; line-height:1.08;
  letter-spacing:-.015em; color:var(--ink);
}
.hero__sub{
  margin-top:20px; font-size:15px; color:var(--body); max-width:430px;
}

.usp{ display:flex; gap:46px; margin:34px 0 32px; }
.usp li{
  display:flex; flex-direction:column; align-items:center; gap:12px;
  text-align:center; color:var(--brand);
  font-size:12.5px; font-weight:600; line-height:1.35;
}
.usp .ico{ color:var(--brand); }

.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  padding:15px 26px; border-radius:6px; cursor:pointer;
  transition:transform .2s,box-shadow .2s,background .2s,color .2s;
}
.btn--solid{ background:var(--brand); color:#fff; }
.btn--solid:hover{ background:#7d4a1c; transform:translateY(-2px); box-shadow:0 10px 24px rgba(101,57,21,.22); }
.btn--ghost{ background:#fff; color:var(--brand); border:1.5px solid var(--brand); }
.btn--ghost .ico{ color:var(--accent); }
.btn--ghost:hover{ background:var(--brand); color:#fff; transform:translateY(-2px); }
.btn--ghost:hover .ico{ color:#fff; }

.hero__media{ position:relative; align-self:stretch; min-height:470px; }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center 42%; }

/* photo fallback */
.js-photo{ background:linear-gradient(135deg,#eae2d6 0%,#f7f3ed 100%); overflow:hidden; }
.photo-ph{
  display:none; position:absolute; inset:0;
  align-items:center; justify-content:center;
  font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:#a89275;
}
.js-photo.is-missing img{ display:none; }
.js-photo.is-missing .photo-ph{ display:flex; }

/* ============================================================
   INFO STRIP
   ============================================================ */
.strip{ background:var(--brand); color:#fff; }
.strip__inner{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding-top:26px; padding-bottom:26px;
}
.strip__cell{
  display:flex; align-items:flex-start; gap:16px;
  padding:4px 26px;
  border-left:1px solid rgba(255,255,255,.14);
}
.strip__cell:first-child{ border-left:0; padding-left:0; }
.strip__cell .ico{ color:#fff; margin-top:2px; stroke-width:1.4; }
.strip__cell h4{
  color:#fff; font-size:14.5px; font-weight:700; line-height:1.3;
  display:flex; align-items:center; gap:8px;
}
.strip__cell p{ margin-top:5px; font-size:12.5px; line-height:1.5; color:var(--muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.services{ background:var(--bg); padding:64px 0 70px; }
.services__inner{
  display:grid; grid-template-columns:318px 1fr; gap:38px; align-items:center;
}
.services__intro .h2{ font-size:30px; }
.services__intro p{ margin-top:18px; font-size:14px; max-width:300px; }

.services__grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:14px; align-items:stretch;
}
.card{
  background:#fff; border-radius:var(--radius); padding:26px 12px 30px;
  text-align:center; box-shadow:0 2px 10px rgba(101,57,21,.05);
  transition:transform .25s,box-shadow .25s;
}
.card:hover{ transform:translateY(-6px); box-shadow:0 16px 32px rgba(101,57,21,.12); }
.card__icon{
  width:54px; height:54px; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; background:var(--accent-soft); color:var(--accent);
}
.card h3{ font-size:14px; font-weight:700; line-height:1.3; margin-bottom:10px; }
.card p{ font-size:12.5px; line-height:1.55; }
.card--featured{
  padding:34px 18px 34px; margin:-18px 0 -20px;
  box-shadow:0 8px 26px rgba(101,57,21,.1);
}

/* ============================================================
   FAMILY / ABOUT
   ============================================================ */
.family{
  display:grid; grid-template-columns:1.15fr .95fr .9fr;
  background:#faf8f5;
}
.family__photo{ position:relative; min-height:280px; }
.family__photo img{ width:100%; height:100%; object-fit:cover; }
.family__text{ padding:44px 46px; align-self:center; }
.family__text p{ margin-top:16px; font-size:13.5px; max-width:330px; }

.checklist{ margin-top:22px; display:grid; gap:11px; }
.checklist li{
  display:flex; align-items:center; gap:11px;
  font-size:13.5px; font-weight:500; color:var(--ink);
}
.checklist .ico{ color:var(--accent); stroke-width:1.7; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{
  background:linear-gradient(180deg,#7a4519 0%,var(--brand) 100%);
  padding:56px 0 66px; text-align:center;
}
.reviews__head{ margin-bottom:34px; }
.rule-label{
  display:inline-flex; align-items:center; gap:16px;
  font-size:11.5px; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:#e3d3c2; margin-bottom:14px;
}
.rule-label::before,.rule-label::after{
  content:""; width:32px; height:1px; background:rgba(255,255,255,.4);
}

.reviews__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.quote{
  margin:0; padding:24px 24px 22px; text-align:left;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.13);
  border-radius:var(--radius);
  transition:transform .25s,background .25s;
}
.quote:hover{ transform:translateY(-4px); background:rgba(255,255,255,.09); }
.quote .stars{ font-size:15px; letter-spacing:2px; }
.quote p{ margin:12px 0 16px; color:#f6efe8; font-size:13.5px; line-height:1.65; }
.quote cite{ font-style:normal; font-size:13px; font-weight:600; color:#d3c0ad; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--brand-deep); color:#e2d5c8; padding-top:52px; font-size:13.5px; }
.footer__inner{
  display:grid; grid-template-columns:1.5fr .85fr 1fr 1.25fr .8fr;
  gap:32px; padding-bottom:44px;
}
.footer__brand p{ margin-top:20px; max-width:270px; font-size:13px; line-height:1.75; color:#cdbba8; }
.footer__col h5{
  color:#fff; font-size:12px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; margin-bottom:18px;
}
.footer__col ul{ display:grid; gap:9px; }
.footer__col a{ color:#ddcdbd; transition:color .2s,padding-left .2s; }
.footer__col a:hover{ color:#fff; padding-left:3px; }

.contact-list li{ display:flex; gap:11px; align-items:flex-start; line-height:1.6; }
.contact-list .ico{ margin-top:4px; color:#c0a074; }
.contact-list small{ font-size:12px; color:#bda893; }

.social{ display:flex; gap:11px; }
.social__link{
  width:33px; height:33px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; transition:transform .2s,filter .2s;
}
.social__link svg{ width:19px; height:19px; }
.social__link:hover{ transform:translateY(-3px); filter:brightness(1.12); }
.social__link--fb{ background:#1877f2; }
.social__link--ig{ background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }
.social__link--gg{ background:#fff; color:#ea4335; }

.footer__bottom{ border-top:1px solid rgba(255,255,255,.1); padding:18px 0; }
.footer__bottom-inner{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between;
  font-size:12.5px; color:#bda893;
}
.footer__bottom a:hover{ color:#fff; }

/* ============================================================
   SHARED SECTION HEADS
   ============================================================ */
.sec-head{ max-width:640px; }
.sec-head--center{ margin:0 auto 44px; text-align:center; }
.sec-head__lead{ margin-top:16px; font-size:14.5px; line-height:1.75; }
.sec-head--center .sec-head__lead{ margin-left:auto; margin-right:auto; }
.eyebrow--light{ color:#a9dc6f; }

.pill-list{
  display:flex; flex-wrap:wrap; gap:9px; justify-content:center;
  margin-top:46px; padding-top:34px; border-top:1px solid #ece5dc;
}
.pill-list li{
  font-size:12.5px; font-weight:500; color:var(--ink);
  background:#fff; border:1px solid #e8e0d7; border-radius:100px;
  padding:8px 16px;
}
.services__more{ margin-top:0; }

/* ============================================================
   WHY US
   ============================================================ */
.why{ padding:70px 0 74px; background:#fff; }
.why__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why__card{
  background:var(--bg); border:1px solid #ece5dd; border-radius:12px;
  padding:28px 24px 30px; transition:transform .25s,box-shadow .25s,border-color .25s;
}
.why__card:hover{ transform:translateY(-5px); box-shadow:0 18px 38px rgba(101,57,21,.1); border-color:#dccfc0; }
.why__icon{
  width:50px; height:50px; border-radius:12px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center;
  background:var(--brand); color:#fff;
}
.why__card h3{ font-size:16px; font-weight:700; margin-bottom:10px; }
.why__card p{ font-size:13.5px; line-height:1.7; }

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors{ padding:70px 0 76px; background:var(--bg); }
.doctors__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.doc{
  background:#fff; border-radius:12px; overflow:hidden;
  box-shadow:0 3px 14px rgba(101,57,21,.06);
  transition:transform .25s,box-shadow .25s;
}
.doc:hover{ transform:translateY(-5px); box-shadow:0 20px 42px rgba(101,57,21,.13); }
.doc__photo{ position:relative; aspect-ratio:1/1; }
.doc__photo img{ width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.doc__body{ padding:24px 24px 26px; }
.doc__body h3{ font-size:19px; font-weight:700; }
.doc__role{
  display:block; margin:5px 0 14px;
  font-size:11.5px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; color:var(--accent);
}
.doc__body p{ font-size:13.5px; line-height:1.72; }
.doc__tags{ display:flex; flex-wrap:wrap; gap:7px; margin-top:18px; }
.doc__tags li{
  font-size:11.5px; font-weight:500; color:var(--brand);
  background:var(--accent-soft); border-radius:100px; padding:5px 12px;
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.tech{ padding:74px 0 78px; background:#fff; }
.tech__inner{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:center; }
.tech__media{ position:relative; border-radius:14px; overflow:hidden; aspect-ratio:3/4; }
.tech__media img{ width:100%; height:100%; object-fit:cover; }
.tech__list{ margin-top:32px; display:grid; gap:4px; }
.tech__list li{
  display:flex; gap:18px; align-items:flex-start;
  padding:16px 18px; border-radius:10px;
  transition:background .2s;
}
.tech__list li:hover{ background:var(--bg); }
.tech__icon{
  width:42px; height:42px; flex:none; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--accent-soft); color:var(--accent);
}
.tech__list h3{ font-size:15.5px; font-weight:700; margin-bottom:3px; }
.tech__list p{ font-size:13.5px; line-height:1.6; }

/* ============================================================
   FIRST VISIT
   ============================================================ */
.visit{ padding:72px 0 78px; background:var(--bg); }
.visit__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step{
  background:#fff; border-radius:12px; padding:28px 24px 30px;
  border-top:3px solid var(--accent); position:relative;
  transition:transform .25s,box-shadow .25s;
}
.step:hover{ transform:translateY(-5px); box-shadow:0 18px 38px rgba(101,57,21,.1); }
.step__num{
  display:block; font-family:'Playfair Display',Georgia,serif;
  font-size:32px; font-weight:700; color:#dcecc6; line-height:1; margin-bottom:14px;
}
.step h3{ font-size:16px; font-weight:700; margin-bottom:9px; }
.step p{ font-size:13.5px; line-height:1.7; }

.visit__note{
  margin-top:26px; display:grid; grid-template-columns:.9fr 1.1fr;
  background:#fff; border-radius:14px; overflow:hidden;
  box-shadow:0 3px 16px rgba(101,57,21,.07);
}
.visit__photo{ position:relative; min-height:260px; }
.visit__photo img{ width:100%; height:100%; object-fit:cover; }
.visit__copy{ padding:38px 42px; align-self:center; }
.visit__copy h3{ font-family:'Playfair Display',Georgia,serif; font-size:25px; font-weight:700; margin-bottom:14px; }
.visit__copy p{ font-size:14px; line-height:1.75; margin-bottom:24px; max-width:480px; }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.member{
  padding:72px 0 76px;
  background:linear-gradient(135deg,var(--brand) 0%,#7a4519 100%);
  color:#c8daee;
}
.member__inner{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.member__body p{ margin-top:16px; font-size:14.5px; line-height:1.8; color:#c2d6ec; }
.member__perks{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:26px 0 30px; max-width:420px; }
.member__perks li{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:500; color:#fff; }
.member__perks .ico{ color:#a9dc6f; }

.member__cards{ display:grid; gap:18px; }
.plan{
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16);
  border-radius:12px; padding:26px 26px 28px;
  transition:background .25s,transform .25s;
}
.plan:hover{ background:rgba(255,255,255,.12); transform:translateY(-3px); }
.plan h3{ color:#fff; font-size:18px; font-weight:700; margin-bottom:10px; }
.plan__desc{ font-size:13.5px; line-height:1.7; color:#e3d3c2; }
.plan__list{ display:grid; gap:9px; margin:18px 0 20px; }
.plan__list li{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:#f4efe9; }
.plan__list .ico{ color:#a9dc6f; width:16px; height:16px; }
.plan__link{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#a9dc6f;
  transition:gap .2s,color .2s;
}
.plan__link:hover{ gap:13px; color:#fff; }

.btn--light{ background:#fff; color:var(--brand); }
.btn--light:hover{ background:var(--accent-soft); transform:translateY(-2px); }
.btn--outline-light{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.5); }
.btn--outline-light:hover{ background:#fff; color:var(--brand); border-color:#fff; }
.btn--block{ display:flex; justify-content:center; width:100%; margin-top:22px; }

/* ============================================================
   RATING PANEL
   ============================================================ */
.rating{
  display:grid; grid-template-columns:300px 1fr; gap:22px;
  margin-bottom:26px;
}
.rating__score{
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15);
  border-radius:12px; padding:28px 24px; text-align:center;
}
.rating__num{
  display:block; font-family:'Playfair Display',Georgia,serif;
  font-size:60px; font-weight:700; line-height:1; color:#fff;
}
.stars--lg{ display:block; font-size:20px; letter-spacing:3px; margin:10px 0 8px; }
.rating__score p{ font-size:13px; color:#d8c8b6; }
.rating__score strong{ color:#fff; }
.rating__badge{
  display:inline-flex; align-items:center; gap:7px; margin-top:16px;
  background:#fff; color:#3c4043; border-radius:100px; padding:6px 14px;
  font-size:11.5px; font-weight:700; letter-spacing:.04em;
}
.rating__badge svg{ width:15px; height:15px; color:#ea4335; }

.rating__facts{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.fact{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:22px 18px; text-align:center;
}
.fact strong{
  display:block; font-family:'Playfair Display',Georgia,serif;
  font-size:26px; font-weight:700; color:#fff; margin-bottom:8px; line-height:1.1;
}
.fact span{ font-size:12.5px; line-height:1.55; color:#d3c0ad; }

.reviews__grid{ grid-template-columns:repeat(3,1fr); }
.quote{ position:relative; }
.quote__mark{
  position:absolute; top:18px; right:20px; width:30px; height:30px;
  fill:rgba(255,255,255,.09); stroke:none;
}
.quote cite{ display:flex; align-items:center; gap:11px; }
.avatar{
  width:30px; height:30px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:var(--accent); color:#fff; font-size:13px; font-weight:700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq{ padding:74px 0 80px; background:#fff; }
.faq__inner{ display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:start; }
.faq__intro p{ margin-top:16px; font-size:14px; line-height:1.75; }
.faq__intro a{ color:var(--accent); font-weight:600; }
.faq__photo{
  position:relative; margin-top:28px; border-radius:14px; overflow:hidden;
  aspect-ratio:4/3;
}
.faq__photo img{ width:100%; height:100%; object-fit:cover; }

.accordion{ display:grid; gap:10px; }
.acc{
  border:1px solid #eae3db; border-radius:10px; background:#fff;
  transition:border-color .2s,box-shadow .2s;
}
.acc.is-open{ border-color:#d8cabb; box-shadow:0 10px 28px rgba(101,57,21,.08); }
.acc__head{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px;
  background:none; border:0; cursor:pointer; text-align:left;
  padding:18px 22px; font-family:inherit;
  font-size:15px; font-weight:600; color:var(--ink); line-height:1.45;
  transition:color .2s;
}
.acc__head:hover{ color:var(--accent); }
.acc__icon{ flex:none; color:var(--accent); transition:transform .3s; stroke-width:2; }
.acc.is-open .acc__icon{ transform:rotate(45deg); }
.acc__panel{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.acc__panel p{
  padding:0 22px 20px; font-size:13.8px; line-height:1.78; color:var(--body);
  max-width:66ch;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta{ background:var(--brand-deep); padding:44px 0; }
.cta__inner{
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta .h2{ font-size:29px; }
.cta p{ margin-top:8px; font-size:14px; color:#d3c0ad; max-width:520px; }
.cta__actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ padding:74px 0 80px; background:var(--bg); }
.contact__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.info-card{
  background:#fff; border-radius:12px; padding:30px 28px 32px;
  box-shadow:0 3px 14px rgba(101,57,21,.06);
}
.info-card h3{
  display:flex; align-items:center; gap:11px;
  font-size:16px; font-weight:700; margin-bottom:20px;
}
.info-card h3 .ico{ color:var(--accent); }
.info-card__lead{ font-size:13.5px; line-height:1.7; margin-bottom:18px; }

.hours{ width:100%; border-collapse:collapse; font-size:13.5px; }
.hours th, .hours td{ padding:9px 0; text-align:left; border-bottom:1px solid #f2ece5; font-weight:500; }
.hours th{ color:var(--ink); }
.hours td{ text-align:right; color:var(--body); }
.hours tr:last-child th, .hours tr:last-child td{ border-bottom:0; }
.hours .is-closed td{ color:#a89a8a; }

.contact-lines{ display:grid; gap:16px; }
.contact-lines li{ display:grid; gap:3px; }
.contact-lines span{ font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); }
.contact-lines strong{ font-size:14px; font-weight:600; color:var(--ink); line-height:1.55; }
.contact-lines a:hover{ color:var(--accent); }

.areas{ display:flex; flex-wrap:wrap; gap:8px; }
.areas li{
  font-size:12.5px; font-weight:500; color:var(--brand);
  background:var(--accent-soft); border-radius:100px; padding:7px 14px;
}

.footer__rating{ margin-top:18px; font-size:12.5px; color:#9db4cc; line-height:1.7; }
.footer__rating strong{ color:#fff; font-size:14px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease,transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1120px){
  .why__grid{ grid-template-columns:repeat(2,1fr); }
  .visit__grid{ grid-template-columns:repeat(2,1fr); }
  .rating{ grid-template-columns:1fr; }
  .rating__facts{ grid-template-columns:repeat(4,1fr); }
  .reviews__grid{ grid-template-columns:repeat(2,1fr); }
  .tech__inner{ grid-template-columns:1fr; gap:36px; }
  .tech__media{ aspect-ratio:16/9; }
  .faq__inner{ grid-template-columns:1fr; gap:34px; }
  .faq__photo{ display:none; }
  .contact__grid{ grid-template-columns:1fr 1fr; }
  .contact__grid .info-card:last-child{ grid-column:1 / -1; }

  .services__inner{ grid-template-columns:1fr; gap:30px; }
  .services__intro p{ max-width:520px; }
  .services__grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
  .card--featured{ margin:0; padding:26px 16px 30px; }
  .family{ grid-template-columns:1fr 1fr; }
  .family__text{ grid-column:1 / -1; order:-1; padding:38px 24px; }
}

@media (max-width:980px){
  .topbar__center{ gap:24px; }
  .topbar__inner{ flex-wrap:wrap; padding-top:8px; padding-bottom:8px; }

  .nav-toggle{ display:flex; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--line);
    box-shadow:0 20px 34px rgba(101,57,21,.12);
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .nav.is-open{ max-height:520px; }
  .nav__list{ flex-direction:column; align-items:stretch; gap:0; padding:8px 24px 18px; }
  .nav__list > li > a{ padding:13px 0; justify-content:space-between; }
  .nav__list > li > a.is-active::after{ bottom:8px; right:auto; width:26px; }
  .drop{
    position:static; opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:0; border-left:2px solid var(--accent-soft);
    border-radius:0; padding:0 0 6px 0; margin:0 0 6px 4px;
    max-height:0; overflow:hidden; transition:max-height .28s ease;
  }
  .has-drop:hover .drop{ max-height:0; }
  .has-drop.is-open .drop{ max-height:240px; }
  .drop a{ padding:8px 16px; }

  .hero{ grid-template-columns:1fr; }
  .hero__content{ padding:44px 24px 40px; order:1; }
  .hero__media{ order:2; min-height:320px; }

  .strip__inner{ grid-template-columns:repeat(2,1fr); gap:22px 0; }
  .strip__cell:nth-child(odd){ border-left:0; padding-left:0; }

  .footer__inner{ grid-template-columns:repeat(3,1fr); gap:30px; }
  .footer__brand{ grid-column:1 / -1; }
  .footer__brand p{ max-width:460px; }
}

@media (max-width:980px){
  .doctors__grid{ grid-template-columns:1fr; }
  .doc{ display:grid; grid-template-columns:180px 1fr; }
  .doc__photo{ aspect-ratio:auto; }
  .member__inner{ grid-template-columns:1fr; gap:36px; }
  .visit__note{ grid-template-columns:1fr; }
  .visit__copy{ padding:30px 26px 34px; }
}

@media (max-width:720px){
  .why__grid{ grid-template-columns:1fr; }
  .visit__grid{ grid-template-columns:1fr; }
  .rating__facts{ grid-template-columns:repeat(2,1fr); }
  .reviews__grid{ grid-template-columns:1fr; }
  .contact__grid{ grid-template-columns:1fr; }
  .contact__grid .info-card:last-child{ grid-column:auto; }
  .doc{ grid-template-columns:1fr; }
  .doc__photo{ aspect-ratio:16/10; }
  .doc__photo img{ object-position:center 22%; }
  .member__perks{ grid-template-columns:1fr; }
  .cta__inner{ flex-direction:column; align-items:flex-start; }
  .cta__actions .btn{ flex:1 1 auto; justify-content:center; }
  .why, .doctors, .tech, .visit, .member, .faq, .contact{ padding:52px 0 56px; }

  .h2{ font-size:28px; }
  .services{ padding:48px 0 54px; }
  .services__grid{ grid-template-columns:repeat(2,1fr); }
  .family{ grid-template-columns:1fr; }
  .family__photo{ min-height:230px; }
  .reviews__grid{ grid-template-columns:1fr; }
  .footer__inner{ grid-template-columns:1fr 1fr; gap:28px; }
  .footer__brand{ grid-column:1 / -1; }
  .usp{ gap:26px; justify-content:space-between; }
  .hero__cta .btn{ flex:1 1 auto; justify-content:center; }
}

@media (max-width:520px){
  .topbar__center{ width:100%; justify-content:space-between; gap:12px; }
  .btn-pill{ width:100%; text-align:center; margin-bottom:4px; }
  .strip__inner{ grid-template-columns:1fr; }
  .strip__cell{ border-left:0; padding-left:0; }
  .services__grid{ grid-template-columns:1fr; }
  .footer__inner{ grid-template-columns:1fr; }
}


