/* =====================================================
   Millpond Family Dental — static rebuild
   ===================================================== */

:root{
  --blue:#3399ff;
  --blue-light:#9fcfff;
  --navy:#1d3557;
  --orange:#ffa500;
  --text:#333;
  --muted:#525252;
  --gray-1:#fafafa;
  --gray-2:#f1f1f1;
  --gray-3:#e9e9e9;
  --white:#fff;
  --lato:'Lato',sans-serif;
  --roboto:'Roboto',sans-serif;
  --onest:'Onest',sans-serif;
  --container:1150px;
  --header-h:80px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--lato);
  font-size:17px;
  line-height:1.7;
  color:var(--text);
  background:var(--white);
  padding-top:var(--header-h);
}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue);text-decoration:none}
p a{text-decoration:underline;font-weight:700}
h1,h2,h3,h4{margin:0;line-height:1.2;color:var(--navy)}
p{margin:0 0 1.1em}
ul{margin:0;padding:0;list-style:none}
svg{fill:currentColor}
button{font-family:inherit;cursor:pointer}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px}
.container.narrow{max-width:1010px}
.center{text-align:center}
.eyebrow{font-size:17px;color:var(--navy);margin:0 0 4px}
.eyebrow.center{text-align:center;color:var(--muted)}
.section-title{font-size:42px;font-weight:700;letter-spacing:-1.5px;text-align:center;margin-bottom:32px}
.rule{border:0;border-top:1px solid #ddd;margin:0}

.skip-link{position:absolute;left:-999px;top:0;background:var(--navy);color:#fff;padding:8px 16px;z-index:9999}
.skip-link:focus{left:8px;top:8px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--blue);color:#e9e9e9;
  border:2px solid var(--blue-light);border-radius:100px;
  padding:11px 26px;font-size:16px;font-weight:400;font-family:var(--lato);
  text-decoration:none;transition:background .2s,border-color .2s,transform .2s;
}
.btn svg{width:16px;height:16px}
.btn:hover{background:#1f86f0;border-color:var(--blue);color:#fff;transform:translateY(-1px)}

/* ---------- Check lists ---------- */
.check-list li{display:flex;align-items:flex-start;gap:14px;margin-bottom:12px}
.check-list svg{width:20px;height:20px;flex:0 0 20px;margin-top:5px}
.check-list a{text-decoration:underline;font-weight:700}

/* ---------- Stars ---------- */
.stars{display:inline-flex;gap:3px;margin-left:10px;vertical-align:middle;color:var(--orange)}
.stars svg{width:16px;height:16px}

/* =====================================================
   Header
   ===================================================== */
.site-header{
  position:absolute;top:0;left:0;right:0;z-index:1000;
  height:var(--header-h);background:var(--white);
  box-shadow:0 1px 8px rgba(0,0,0,.08);
}
/* Headroom: header scrolls away with the page, then slides back in only when scrolling up */
.site-header.is-fixed{position:fixed;transform:translateY(-100%);transition:transform .3s ease}
.site-header.is-fixed.is-visible{transform:translateY(0);box-shadow:0 2px 14px rgba(0,0,0,.12)}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:100%;padding:0 20px;max-width:1620px;margin:0 auto;
}
.logo img{width:150px;height:auto}

.main-nav{margin-left:auto;margin-right:30px}
.menu{display:flex;gap:6px}
.menu>li{position:relative}
.menu>li>a{
  display:flex;align-items:center;gap:6px;
  padding:28px 16px;
  font-family:var(--onest);font-size:16px;font-weight:600;text-transform:uppercase;
  color:var(--navy);letter-spacing:.2px;
}
.menu>li.has-sub>a::after{
  content:"";width:7px;height:7px;
  border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-3px);
}
.menu>li>a:hover{color:var(--blue)}
.sub-menu{
  position:absolute;top:100%;left:0;min-width:240px;
  background:var(--white);box-shadow:0 8px 24px rgba(0,0,0,.12);
  padding:10px 0;border-top:3px solid var(--blue);
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .2s,transform .2s,visibility .2s;
}
.menu>li:hover>.sub-menu,.menu>li:focus-within>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
.sub-menu a{display:block;padding:9px 22px;font-family:var(--onest);font-size:15px;color:var(--text)}
.sub-menu a:hover{background:#f4f8ff;color:var(--blue)}

.menu-toggle{
  width:34px;height:26px;background:none;border:0;padding:0;
  display:flex;flex-direction:column;justify-content:space-between;
}
.menu-toggle span{display:block;height:2px;background:var(--navy);border-radius:2px;transition:.2s}

/* ---------- Off-canvas ---------- */
.offcanvas-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;visibility:hidden;transition:.3s;z-index:1100}
.offcanvas{
  position:fixed;top:0;right:0;bottom:0;width:340px;max-width:90vw;
  background:var(--navy);color:#fff;padding:70px 34px 40px;overflow-y:auto;
  transform:translateX(100%);transition:transform .3s;z-index:1200;
}
body.menu-open .offcanvas{transform:none}
body.menu-open .offcanvas-backdrop{opacity:1;visibility:visible}
body.menu-open{overflow:hidden}
.offcanvas-close{position:absolute;top:16px;right:20px;background:none;border:0;color:#fff;font-size:36px;line-height:1}
.offcanvas-call{margin-bottom:28px;padding-bottom:22px;border-bottom:1px solid rgba(255,255,255,.15)}
.offcanvas-call span{display:block;font-family:var(--roboto);font-size:13px;letter-spacing:2px;color:var(--blue-light)}
.offcanvas-call a{font-family:var(--roboto);font-size:26px;font-weight:700;color:#fff}
.offcanvas-menu>li{border-bottom:1px solid rgba(255,255,255,.1)}
.offcanvas-menu>li>a,.oc-parent{
  display:flex;width:100%;justify-content:space-between;align-items:center;
  padding:14px 0;background:none;border:0;color:#fff;text-align:left;
  font-family:var(--onest);font-size:16px;font-weight:600;text-transform:uppercase;
}
.oc-parent::after{content:"+";font-size:20px;color:var(--blue-light)}
.oc-parent[aria-expanded="true"]::after{content:"\2212"}
.offcanvas-menu ul{display:none;padding:0 0 12px 14px}
.offcanvas-menu li.open>ul{display:block}
.offcanvas-menu ul a{display:block;padding:7px 0;color:#cfe4ff;font-family:var(--onest);font-size:15px}

/* =====================================================
   Hero
   ===================================================== */
.hero{position:relative;min-height:640px;color:#fff;display:flex;align-items:center}
.hero-bg{
  position:absolute;inset:0;
  background:url("/static/images/hero.jpg") center/cover no-repeat;
}
.hero-bg::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.28)}
.hero-inner{position:relative;display:flex;align-items:center;justify-content:space-between;padding-top:60px;padding-bottom:60px;min-height:640px}
.hero-copy{max-width:560px}
.hero-kicker{margin:0 0 14px;font-size:14px}
.hero-kicker em{font-style:italic}
.hero h1{
  font-weight:300;font-size:66px;line-height:1.12;letter-spacing:-1px;
  color:#fff;margin-bottom:34px;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}
.hero-list li{font-size:20px;color:#f1f1f1}
.hero-list svg{color:#fff;opacity:.9}
.hero-list a{color:var(--blue)}

.hero-arrow{position:absolute;left:49%;top:52%;width:200px;pointer-events:none}

.hero-card{
  position:relative;width:378px;flex:0 0 378px;
  background:var(--white);color:var(--text);
  border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,.25);
  padding:30px 20px 20px;align-self:flex-end;margin-bottom:-95px;z-index:2;
}
.hero-card h2{
  font-family:'Palanquin Dark',sans-serif;font-weight:700;font-size:26px;
  letter-spacing:-1px;color:var(--blue);margin-bottom:6px;
}
.hero-card p{font-size:14px;line-height:1.5;margin-bottom:22px}
.video{position:relative;aspect-ratio:16/9;overflow:hidden;background:#000}
.video img{width:100%;height:100%;object-fit:cover}
.video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.video-play{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:96px;height:96px;border-radius:50%;border:0;
  background:rgba(51,153,255,.88);color:#e9e9e9;
  display:flex;align-items:center;justify-content:center;
  transition:transform .2s,background .2s;
}
.video-play svg{width:48px;height:48px;margin-left:5px}
.video-play:hover{transform:translate(-50%,-50%) scale(1.06);background:var(--blue)}

/* =====================================================
   Stats + FAQ teaser
   ===================================================== */
.stats{background:var(--gray-1);padding:90px 0 90px}
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;text-align:center;margin-bottom:90px}
.stat-num{font-size:60px;font-weight:900;color:var(--navy);line-height:1.1;letter-spacing:-1px}
.stat-label{font-size:16px;color:var(--muted);letter-spacing:-.4px}

.script-heading{
  display:flex;align-items:center;gap:18px;
  font-family:'Kaushan Script',cursive;font-weight:400;font-size:26px;
  color:var(--navy);text-align:center;margin:0 auto 34px;max-width:930px;
}
.script-heading::before,.script-heading::after{content:"";flex:1;border-top:2px dotted #777}

.faq-teaser{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:1080px;margin:0 auto}
.faq-box{
  background:var(--gray-1);border:1px solid #d9d9d9;border-radius:22px;
  padding:22px 26px 12px;text-align:center;
}
.faq-box h3{font-family:'Oswald',sans-serif;font-weight:400;font-size:20px;letter-spacing:.5px;color:var(--blue);margin-bottom:8px}
.faq-box mark{background:rgba(235,255,0,.5);color:inherit;padding:0 6px}
.faq-box p{font-style:italic;font-size:16px;line-height:1.7;margin:0 0 10px}
.faq-box strong{font-style:italic}

/* =====================================================
   Welcome
   ===================================================== */
.welcome{padding:70px 0 80px}
.welcome h2{font-size:36px;font-weight:700;letter-spacing:-1.5px;text-align:center;margin-bottom:26px}
.welcome .narrow p{font-size:17px;line-height:1.7}
.welcome .narrow .btn{margin-top:6px}
.welcome .rule{margin:64px 0 58px;border-color:#ddd}

.tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;align-items:start}
.tile{position:relative;display:block;height:380px;color:inherit;padding-bottom:0}
.tile-img{height:380px;border-radius:10px;background-size:cover;background-position:center}
.tile-label{
  position:absolute;left:-12px;bottom:-10px;width:88%;
  background:var(--gray-2);border-radius:10px;padding:24px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);transition:transform .2s;
}
.tile:hover .tile-label{transform:translateY(-4px)}
.tile-label span{font-size:24px;line-height:1.35;color:var(--blue)}
.tile-label svg{width:44px;height:44px;color:var(--navy);flex:0 0 44px}

.hours-card{
  position:relative;background:var(--blue);color:#fff;border-radius:10px;
  padding:50px 50px 40px;min-height:380px;
}
.hours-card h3{font-family:var(--roboto);font-weight:700;font-size:24px;letter-spacing:-1px;color:#e9e9e9;margin-bottom:22px}
.hours-card p{font-size:16px;line-height:1.45;margin-bottom:14px}
.hours-card strong{font-weight:700}
.hours-card small{font-size:14px}
.hours-tooth{position:absolute;right:52px;top:48px;width:56px;height:60px;color:#e9e9e9}

/* =====================================================
   Why choose
   ===================================================== */
.why{position:relative;background:#f8f8f8;padding:100px 0 150px}
.why-inner{display:grid;grid-template-columns:1.05fr 1fr;gap:40px;align-items:start}
.why-photo{position:relative;padding:40px 0 0 30px}
.why-photo-bg{position:absolute;left:30px;top:0;right:0;bottom:-40px;background:#e6e6e6;border-radius:10px}
.why-photo img{position:relative;border-radius:10px;width:100%}
.why-copy h2{font-size:34px;font-weight:700;letter-spacing:-1.5px;margin-bottom:26px}
.why-copy>p{font-size:17px;line-height:1.7}
.why .check-list.dark li{font-size:16px;color:var(--text)}
.why .check-list.dark svg{color:var(--navy);width:22px;height:22px}
.why .check-list.dark a{color:var(--navy)}
.why .check-list{margin-bottom:22px}
.doctor{display:flex;gap:16px;align-items:flex-start;margin-top:36px}
.doctor img{width:88px;height:88px;border-radius:50%;border:4px solid var(--navy);flex:0 0 88px}
.doctor h3{font-size:20px;font-weight:700;color:#333;margin-bottom:2px}
.doctor p{font-size:14px;line-height:1.5;margin:0 0 6px;color:var(--muted)}
.doctor .small{font-size:13px;line-height:1.35}
.why-wave{position:absolute;left:0;right:0;bottom:-1px;line-height:0}
.why-wave svg{width:100%;height:90px;display:block}

/* =====================================================
   Services
   ===================================================== */
.services{padding:80px 0 120px}
.services .section-title{margin-bottom:34px}
.photo-strip{display:grid;grid-template-columns:repeat(6,1fr);gap:30px;margin-bottom:76px}
.photo-strip img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:4px}

.service-grid{display:grid;grid-template-columns:1fr 1fr;gap:62px 66px}
.service{
  background:rgba(159,207,255,.1);border-radius:30px;
  padding:30px 14px 36px;text-align:center;
}
.service img{width:100px;height:100px;object-fit:contain;margin:0 auto 20px}
.service h3{font-size:36px;font-weight:700;letter-spacing:-1.5px;color:var(--blue);margin-bottom:22px}
.service p{text-align:left;font-size:17px;line-height:1.7;color:#000;margin-bottom:22px}
.service p a{color:var(--blue)}

/* =====================================================
   Reviews
   ===================================================== */
.reviews{background:var(--gray-3);padding-bottom:70px}
.reviews-blue{
  position:relative;background:var(--blue);color:#fff;
  padding:90px 0 620px;margin-top:0;
}
.reviews-blue::before{
  content:"";position:absolute;left:0;right:0;top:-1px;height:120px;
  background:var(--white);
  clip-path:polygon(0 0,100% 0,100% 0,0 100%);
}
.services{position:relative;z-index:1}
.reviews-head{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;position:relative;z-index:1;padding-top:40px}
.reviews-kicker{font-size:20px;color:var(--orange);margin-bottom:6px}
.reviews-kicker .stars{margin-left:14px}
.reviews-blue h2{font-size:42px;font-weight:700;letter-spacing:-1.5px;color:#fff}
.reviews-intro{font-size:16px;letter-spacing:-.3px;line-height:1.6;margin:0;padding-left:30px}
.reviews-intro a{color:var(--orange)}

.carousel{position:relative;margin-top:-600px;overflow:hidden;padding-bottom:4px;max-width:1038px;margin-left:auto;margin-right:auto}
.carousel-track{display:flex;gap:30px;transition:transform .5s ease}
.review{
  flex:0 0 calc((100% - 60px)/3);
  background:var(--white);border-radius:8px;
  padding:60px 26px 40px;text-align:center;min-height:600px;
  display:flex;flex-direction:column;
}
.g-badge{
  width:40px;height:40px;border-radius:50%;background:#e14a3b;
  display:flex;align-items:center;justify-content:center;margin:0 auto 26px;
}
.g-badge svg{width:22px;height:22px;fill:#fff}
.g-badge svg path{fill:#fff}
.review p{font-style:italic;font-size:17px;line-height:1.7;color:#333;margin-bottom:22px}
.review h3{font-size:20px;font-weight:700;color:#333;margin-bottom:2px}
.review-role{display:block;font-size:14px;color:#666}
.review-date{display:block;font-size:12px;color:#666;letter-spacing:.8px;margin-top:6px}
.carousel-dots{display:flex;justify-content:center;gap:10px;margin-top:48px}
.carousel-dots button{width:10px;height:10px;border-radius:50%;border:2px solid var(--navy);background:transparent;padding:0}
.carousel-dots button.active{background:var(--navy)}

/* =====================================================
   FAQ
   ===================================================== */
.faq{background:var(--gray-3);padding:80px 0 90px}
.faq .section-title{font-size:40px;font-weight:900;letter-spacing:-.8px;margin-bottom:44px}
.acc-item{background:var(--white);border:1px solid #cdcdcd;border-radius:6px;margin-bottom:16px;overflow:hidden}
.acc-head{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:20px;
  background:none;border:0;padding:20px 16px 16px;text-align:left;
  font-family:var(--roboto);font-weight:700;font-size:22px;letter-spacing:-.5px;color:#333;line-height:1.3;
}
.acc-head svg{width:24px;height:24px;flex:0 0 24px;color:#333;transition:transform .3s}
.acc-item:not(.open) .acc-head svg{transform:rotate(180deg)}
.acc-body{display:none;padding:0 38px 20px}
.acc-item.open .acc-body{display:block}
.acc-body p{font-size:17px;line-height:1.7;color:var(--muted);margin-bottom:1.2em}
.acc-body p:last-child{margin-bottom:0}
.acc-body strong{color:#333}
.acc-body a{color:#333}

/* =====================================================
   Connect
   ===================================================== */
.connect{background:linear-gradient(to bottom,var(--gray-3) 0,#fff 90px);padding:110px 0 40px}
.connect .rule{margin-bottom:34px;border-color:#ddd}
.connect-row{display:flex;justify-content:center;align-items:center;gap:130px;margin-bottom:26px}
.connect h2{
  font-family:var(--roboto);font-style:italic;font-weight:700;font-size:52px;letter-spacing:-1.2px;
  background:linear-gradient(90deg,#3399ff,#4fb0ff);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.socials{display:flex;gap:22px}
.social{width:56px;height:56px;display:flex;align-items:center;justify-content:center;border-radius:10px;color:#fff;transition:transform .2s}
.social:hover{transform:translateY(-3px)}
.social svg{width:56px;height:56px}
.social.yt{color:#ff0000}
.social.fb{color:#1877f2}
.social.ig svg{width:52px;height:52px;fill:url(#ig-grad)}
.social.ig{background:linear-gradient(45deg,#f9ce34,#ee2a7b 55%,#6228d7);border-radius:12px}
.social.ig svg{fill:#fff;width:40px;height:40px}
.social.lk{background:#2ecc71;border-radius:12px}
.social.lk svg{width:36px;height:36px}
.serving{text-align:center;font-size:17px;color:rgba(102,102,102,.74);margin:0}

/* =====================================================
   Footer
   ===================================================== */
.site-footer{background:var(--navy);color:#fff}
.footer-inner{padding:110px 20px 60px;max-width:1190px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 1.8fr 1fr;gap:30px;margin-bottom:60px}
.footer-col h4{font-family:var(--roboto);font-weight:700;font-size:15px;letter-spacing:2px;color:var(--blue-light);margin-bottom:22px}
.footer-col ul li{margin-bottom:8px}
.footer-col ul a{color:#fff;font-size:16px}
.footer-col ul a:hover{color:var(--blue-light)}
.footer-col.office p{font-size:16px;line-height:1.5;margin-bottom:6px}
.footer-col.office .small{font-size:13px;color:#cfd8e3}
.footer-col.call{text-align:right;padding-top:12px}
.footer-col.call span{display:block;font-family:var(--roboto);font-size:16px;letter-spacing:.4px}
.footer-col.call a{font-family:var(--roboto);font-weight:700;font-size:26px;color:var(--blue-light)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:30px}
.legal{display:flex;gap:120px}
.legal a{color:#fff;font-size:16px}
.legal a:hover{color:var(--blue-light)}
.footer-bottom img{width:200px}
.copyright{border-top:1px solid rgba(255,255,255,.12);padding:34px 0}
.copyright .container{max-width:1230px;font-family:'Inter',sans-serif;font-size:14px;color:#a9b3c1;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px 20px}
.copyright .credit{color:#a9b3c1}

/* ---------- Scroll to top ---------- */
.to-top{
  position:fixed;right:24px;bottom:24px;width:46px;height:46px;border-radius:50%;
  background:var(--navy);color:#fff;border:0;display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transition:.3s;z-index:900;box-shadow:0 4px 14px rgba(0,0,0,.25);
}
.to-top.show{opacity:1;visibility:visible}
.to-top svg{width:22px;height:22px}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width:1200px){
  .hero-arrow{display:none}
  .legal{gap:50px}
}

@media (max-width:1024px){
  .main-nav{display:none}
  .hero h1{font-size:54px}
  .hero-card{width:340px;flex-basis:340px;margin-bottom:-110px}
  .tiles{grid-template-columns:1fr 1fr}
  .why-inner{grid-template-columns:1fr}
  .service-grid{gap:34px}
  .service h3{font-size:30px}
  .photo-strip{grid-template-columns:repeat(3,1fr)}
  .review{flex-basis:calc((100% - 30px)/2)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-col.call{text-align:left}
  .connect-row{gap:50px}
}

@media (max-width:768px){
  body{font-size:16px}
  .hero{min-height:0}
  .hero-inner{flex-direction:column;align-items:stretch;padding-top:60px;padding-bottom:40px}
  .hero h1{font-size:42px;margin-bottom:24px}
  .hero-list li{font-size:18px}
  .hero-card{width:100%;flex-basis:auto;align-self:auto;margin:40px 0 -60px}
  .stats{padding-top:110px}
  .stat-grid{grid-template-columns:1fr;gap:34px;margin-bottom:60px}
  .stat-num{font-size:52px}
  .script-heading{font-size:22px;display:block}
  .script-heading::before,.script-heading::after{display:none}
  .faq-teaser{grid-template-columns:1fr}
  .welcome h2{font-size:30px}
  .tiles{grid-template-columns:1fr;gap:40px}
  .tile{height:auto;margin-bottom:20px}
  .tile-img{height:300px}
  .tile-label{left:10px;width:calc(100% - 20px)}
  .why{padding:70px 0 120px}
  .why-copy h2{font-size:28px}
  .section-title{font-size:32px}
  .photo-strip{gap:14px}
  .service-grid{grid-template-columns:1fr}
  .reviews-head{grid-template-columns:1fr;gap:16px}
  .reviews-blue{padding-bottom:520px}
  .carousel{margin-top:-500px}
  .reviews-blue h2{font-size:32px}
  .reviews-intro{padding-left:0}
  .carousel-track{padding:0}
  .review{flex-basis:100%;min-height:0}
  .faq .section-title{font-size:30px}
  .acc-head{font-size:18px;padding:16px 14px}
  .acc-body{padding:0 16px 18px}
  .connect{padding-top:70px}
  .connect-row{flex-direction:column;gap:24px}
  .connect h2{font-size:38px;text-align:center}
  .footer-inner{padding-top:70px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start}
  .legal{flex-direction:column;gap:10px}
}

/* ---------- Mobile sticky Call / Text bar (PeakCMS standard) ---------- */
.mobile-cta-bar{display:none}
@media (max-width:768px){
  body{padding-bottom:64px}
  .mobile-cta-bar{position:fixed;left:0;right:0;bottom:0;z-index:950;display:flex;box-shadow:0 -4px 16px rgba(0,0,0,.15)}
  .mobile-cta-bar a{flex:1;text-align:center;padding:16px 10px;font-family:var(--lato);font-weight:700;font-size:16px;color:#fff;background:var(--blue)}
  .mobile-cta-bar a+a{background:var(--navy)}
  .to-top{bottom:80px}
}
/* One editable team photo feeds every slot; crop per slot instead of per file */
.gds-photo img{aspect-ratio:3/2;object-fit:cover;object-position:center 20%}
.why-photo img{aspect-ratio:850/720;object-fit:cover;object-position:center 15%}

/* ---------- Home page map + fade out of the gray FAQ section ---------- */
.faq-fade{height:60px;background:linear-gradient(to bottom,var(--gray-3),#fff)}
.map-section{padding:30px 0 10px}
.map-section iframe{display:block;width:100%;height:400px;border:0;border-radius:8px;box-shadow:0 6px 24px rgba(0,0,0,.08)}
@media (max-width:768px){.map-section iframe{height:300px}}
