:root{
  --navy:#16314F;
  --navy-deep:#0E2238;
  --steel:#8A94A6;
  --foam:#D9A441;
  --foam-light:#E8C172;
  --paper:#FAFAF8;
  --ink:#1C1F24;
  --ink-soft:#4A5160;
  --line:#E3E0D8;
  --radius:10px;
  --maxw:1180px;
  --font-display:'Barlow Condensed',Arial,sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px;}
.visually-hidden{position:absolute;left:-9999px;}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important;transition-duration:0.01ms !important;}
  html{scroll-behavior:auto;}
}

/* ===== STICKY CALL BAR ===== */
.call-bar{
  position:sticky;top:0;z-index:100;
  background:var(--navy-deep);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  letter-spacing:0.02em;
  border-bottom:3px solid var(--foam);
}
.call-bar a{
  display:flex;align-items:center;gap:8px;
  color:#fff;
}
.call-bar svg{width:18px;height:18px;flex-shrink:0;fill:var(--foam);}
.call-bar .hours{
  display:none;
  color:var(--steel);
  font-family:var(--font-body);
  font-weight:500;
  font-size:13px;
  padding-left:14px;
  border-left:1px solid rgba(255,255,255,0.2);
}
@media(min-width:640px){
  .call-bar .hours{display:inline;}
}

/* ===== HEADER ===== */
header.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  max-width:var(--maxw);
  margin:0 auto;
}
.logo-link{display:flex;align-items:center;flex:0 0 auto;}
.logo-link img{
  height:74px;
  width:74px;
  object-fit:contain;
  filter:drop-shadow(0 5px 10px rgba(14,34,56,0.12));
}
@media(min-width:900px){
  .logo-link img{height:92px;width:92px;}
}

nav.main-nav{display:none;}
@media(min-width:900px){
  nav.main-nav{
    display:flex;align-items:center;
    font-family:var(--font-body);font-weight:600;font-size:15px;color:var(--ink);
  }
  nav.main-nav > a,
  nav.main-nav > .nav-dropdown{margin-right:28px;}
  nav.main-nav a:hover{color:var(--navy);}
}
.nav-dropdown{position:relative;}
.nav-dropdown-trigger{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.nav-dropdown-trigger::after{
  content:"";
  width:6px;
  height:6px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
}
.nav-dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  z-index:120;
  width:520px;
  max-width:calc(100vw - 40px);
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 18px 42px rgba(14,34,56,0.16);
  padding:14px;
  margin-top:18px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:6px;
}
.nav-dropdown-menu.nav-dropdown-menu-services{
  width:340px;
  grid-template-columns:1fr;
}
.nav-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-18px;
  height:18px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  display:grid;
}
.nav-dropdown-menu a{
  margin:0;
  display:block;
  padding:9px 10px;
  border-radius:6px;
  color:var(--navy-deep);
  font-size:14px;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible{
  background:rgba(217,164,65,0.12);
  color:var(--navy-deep);
}
.header-cta{
  display:none;
}
@media(min-width:900px){
  .header-cta{
    display:inline-flex;
    background:var(--foam);
    color:var(--navy-deep);
    font-family:var(--font-display);
    font-weight:700;
    font-size:15px;
    padding:11px 22px;
    border-radius:var(--radius);
    letter-spacing:0.02em;
  }
  .header-cta:hover{background:var(--foam-light);}
}

.menu-toggle{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border:1px solid var(--line);border-radius:8px;
  background:none;
}
@media(min-width:900px){.menu-toggle{display:none;}}
.menu-toggle svg{width:22px;height:22px;}

/* ===== HERO ===== */
.hero{
  position:relative;
  height:520px;
  display:flex;
  align-items:flex-end;
  color:#fff;
  overflow:hidden;
}
@media(max-width:639px){
  .hero{
    height:auto;
    min-height:0;
    align-items:stretch;
  }
}
@media(min-width:640px){.hero{height:620px;}}
@media(min-width:1100px){.hero{height:680px;}}
.hero picture{
  position:absolute;top:0;right:0;bottom:0;left:0;
  width:100%;height:100%;
  z-index:0;
  display:block;
}
.hero picture img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.hero::after{
  content:"";
  position:absolute;top:0;right:0;bottom:0;left:0;
  background:linear-gradient(180deg, rgba(14,34,56,0.35) 0%, rgba(14,34,56,0.55) 55%, rgba(14,34,56,0.92) 100%);
  z-index:1;
}
.hero-content{
  position:relative;z-index:2;
  width:100%;
  padding:48px 20px 40px;
  max-width:var(--maxw);
  margin:0 auto;
}
@media(max-width:639px){
  .hero-content{padding:34px 20px 46px;}
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg, var(--foam-light) 0%, var(--foam) 100%);
  border:2px solid rgba(255,255,255,0.78);
  color:var(--navy-deep);
  font-family:var(--font-body);
  font-weight:800;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:9px 15px;
  border-radius:99px;
  margin-bottom:18px;
  box-shadow:0 12px 28px rgba(0,0,0,0.28), 0 0 0 4px rgba(217,164,65,0.22);
}
.hero-eyebrow svg{width:16px;height:16px;stroke-width:2.4;}
@media(max-width:520px){
  .hero-eyebrow{
    max-width:calc(100vw - 40px);
    justify-content:center;
    text-align:center;
    white-space:normal;
    font-size:12px;
    line-height:1.2;
    padding:9px 12px;
    gap:7px;
  }
  .hero-eyebrow svg{flex:0 0 16px;}
}
h1.hero-title{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(34px, 7vw, 58px);
  line-height:1.05;
  letter-spacing:-0.01em;
  margin-bottom:16px;
  max-width:780px;
}
.hero-title em{color:var(--foam-light);font-style:normal;}
.hero-sub{
  font-size:17px;
  color:#E7E9EE;
  max-width:520px;
  margin-bottom:26px;
}
.hero-actions{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-bottom:22px;
}
.btn{
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  letter-spacing:0.02em;
  padding:15px 26px;
  border-radius:var(--radius);
  display:inline-flex;
  align-items:center;
  gap:9px;
}
.btn svg{width:18px;height:18px;fill:currentColor;}
.btn-primary{background:var(--foam);color:var(--navy-deep);}
.btn-primary:hover{background:var(--foam-light);}
.btn-secondary{background:rgba(255,255,255,0.08);color:#fff;border:1.5px solid rgba(255,255,255,0.5);}
.btn-secondary:hover{background:rgba(255,255,255,0.16);}
.hero-trust{
  display:flex;flex-wrap:wrap;align-items:center;gap:18px;
  font-size:14px;color:#D7DCE5;
}
.hero-trust .stars{color:var(--foam-light);letter-spacing:1px;font-size:15px;}
.hero-trust .div{width:1px;height:16px;background:rgba(255,255,255,0.3);}
@media(max-width:520px){
  .hero-trust{gap:10px 14px;}
  .hero-trust .div{display:none;}
}

/* ===== 404 PAGE ===== */
.error-hero{
  position:relative;min-height:560px;display:flex;align-items:center;color:#fff;overflow:hidden;
}
.error-hero picture{position:absolute;inset:0;z-index:0;}
.error-hero picture img{width:100%;height:100%;object-fit:cover;}
.error-hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(circle at 20% 35%, rgba(217,164,65,0.24), transparent 32%),
    linear-gradient(90deg, rgba(14,34,56,0.94) 0%, rgba(14,34,56,0.78) 48%, rgba(14,34,56,0.48) 100%);
}
.error-hero-inner{position:relative;z-index:2;padding-top:70px;padding-bottom:70px;}
.error-code{
  font-family:var(--font-display);font-weight:800;font-size:clamp(82px, 16vw, 168px);
  line-height:.82;color:rgba(232,193,114,0.24);letter-spacing:0;margin-bottom:-18px;
}
.error-hero h1{
  max-width:720px;color:#fff;font-size:clamp(40px, 7vw, 72px);
  line-height:.95;margin-bottom:18px;
}
.error-sub{max-width:600px;color:rgba(255,255,255,0.86);font-size:18px;margin-bottom:28px;}
.error-paths{padding-top:56px;}
@media(max-width:700px){
  .error-hero{min-height:620px;}
  .error-code{margin-bottom:-8px;}
}

/* ===== TRUST STRIP ===== */
.trust-strip{
  background:var(--navy);
  color:#fff;
  padding:18px 0;
}
.trust-strip .container{
  display:flex;flex-wrap:wrap;justify-content:center;gap:28px;
  font-family:var(--font-display);font-weight:700;font-size:14px;
  letter-spacing:0.03em;text-transform:uppercase;
  text-align:center;
}
.trust-strip .item{display:flex;align-items:center;gap:8px;color:#fff;}
.trust-strip svg{width:18px;height:18px;flex-shrink:0;}

/* ===== SECTION SHARED ===== */
section{padding:64px 0;}
.section-head{max-width:680px;margin:0 auto 40px;text-align:center;}
.eyebrow{
  font-family:var(--font-body);
  font-weight:700;font-size:13px;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--foam);margin-bottom:10px;
}
h2{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(28px,4.5vw,40px);
  color:var(--navy-deep);
  line-height:1.1;
  letter-spacing:-0.01em;
}
.section-head p{margin-top:14px;color:var(--ink-soft);font-size:16px;}

/* ===== SERVICES ===== */
.services-grid{
  display:flex;flex-wrap:wrap;gap:18px;
}
.services-grid .service-card{flex:1 1 100%;}
@media(min-width:700px){.services-grid .service-card{flex:1 1 calc(50% - 9px);}}
@media(min-width:1000px){.services-grid .service-card{flex:1 1 calc(25% - 13.5px);}}
.service-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 22px;
  transition:border-color .15s, transform .15s;
}
.service-card:hover{border-color:var(--foam);transform:translateY(-2px);}
.service-icon{
  width:46px;height:46px;min-width:46px;min-height:46px;border-radius:9px;
  background:rgba(217,164,65,0.14);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  margin-bottom:16px;
}
.service-icon svg{width:24px;height:24px;}
.service-card h3{
  font-family:var(--font-display);font-weight:700;font-size:19px;
  color:var(--navy-deep);margin-bottom:8px;
}
.service-card p{font-size:14.5px;color:var(--ink-soft);}

/* ===== BEFORE/AFTER ===== */
.proof{background:var(--navy-deep);color:#fff;}
.proof .section-head p{color:var(--steel);}
.proof .eyebrow{color:var(--foam-light);}
.proof h2{color:#fff;}
.ba-wrap{
  display:flex;flex-wrap:wrap;gap:4px;
  max-width:900px;margin:0 auto 18px;
  border-radius:var(--radius);overflow:hidden;
}
.ba-item{position:relative;flex:1 1 100%;}
@media(min-width:640px){.ba-item{flex:1 1 calc(50% - 2px);}}
.ba-item img{width:100%;height:100%;min-height:240px;object-fit:cover;aspect-ratio:4/3;display:block;}
.ba-tag{
  position:absolute;top:14px;left:14px;
  font-family:var(--font-display);font-weight:700;font-size:13px;letter-spacing:0.05em;text-transform:uppercase;
  padding:6px 14px;border-radius:99px;
}
.ba-tag.before{background:rgba(28,31,36,0.75);color:#fff;}
.ba-tag.after{background:var(--foam);color:var(--navy-deep);}
.ba-caption{text-align:center;color:var(--steel);font-size:14px;max-width:560px;margin:0 auto;}

/* ===== PAINTABLE SPRAY FOAM ===== */
.paintable-foam{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.paintable-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:34px;
  align-items:center;
}
.paintable-copy{flex:1 1 360px;}
.paintable-copy h2{margin-bottom:14px;}
.paintable-copy p{color:var(--ink-soft);font-size:16px;margin-bottom:14px;}
.paintable-note{
  padding:14px 16px;
  background:rgba(217,164,65,0.1);
  border-left:4px solid var(--foam);
  border-radius:0 8px 8px 0;
}
.paintable-swatches{flex:1 1 430px;}
.paintable-swatch-heading{
  margin:0 0 10px;
  font-family:var(--font-display);
  font-size:22px;
  font-weight:800;
  line-height:1;
  color:var(--navy-deep);
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.paintable-grid{
  display:flex;
  gap:12px;
}
.paintable-card{
  flex:1 1 0;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.paintable-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.paintable-card figcaption{
  font-size:13px;
  font-weight:700;
  color:var(--navy-deep);
  padding:10px;
  text-align:center;
}
@media(max-width:640px){
  .paintable-grid{flex-direction:column;}
}

/* ===== WHY CHOOSE ===== */
.why-wrap{
  display:flex;flex-wrap:wrap;gap:36px;align-items:center;
}
.why-wrap > *{flex:1 1 100%;}
@media(min-width:900px){.why-wrap > *{flex:1 1 calc(50% - 18px);}}
.why-photo{
  border-radius:var(--radius);
  overflow:hidden;
  height:clamp(260px,32vw,420px);
}
.why-photo picture{display:block;height:100%;}
.why-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.why-list{display:flex;flex-direction:column;gap:20px;}
.why-item{display:flex;gap:14px;}
.why-item .num{
  font-family:var(--font-display);font-weight:800;font-size:15px;
  background:var(--navy);color:var(--foam-light);
  width:30px;height:30px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.why-item h3{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--navy-deep);margin-bottom:4px;}
.why-item p{font-size:14.5px;color:var(--ink-soft);}

/* ===== ACCUFOAM BADGE BAR ===== */
.badge-bar{
  background:var(--paper);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  padding:28px 0;
}
.badge-bar .container{
  display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;text-align:center;
}
.badge-bar p{font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--navy-deep);}
.badge-bar .sub{font-family:var(--font-body);font-weight:500;font-size:13px;color:var(--ink-soft);}

/* ===== SERVICE AREAS ===== */
.areas-grid{
  display:flex;flex-wrap:wrap;gap:10px;
  max-width:760px;margin:0 auto;
}
.areas-grid a{
  flex:1 1 calc(50% - 5px);
  background:#fff;border:1px solid var(--line);border-radius:8px;
  padding:13px 14px;font-size:14.5px;font-weight:600;color:var(--navy-deep);
  text-align:center;
}
@media(min-width:640px){.areas-grid a{flex:1 1 calc(25% - 7.5px);}}
.areas-grid a:hover{border-color:var(--foam);}

/* ===== FAQ ===== */
.faq-wrap{max-width:760px;margin:0 auto;}
details{
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
summary{
  font-family:var(--font-display);font-weight:700;font-size:17px;color:var(--navy-deep);
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px;
}
summary::-webkit-details-marker{display:none;}
summary .plus{font-size:22px;color:var(--foam);flex-shrink:0;transition:transform .15s;}
details[open] summary .plus{transform:rotate(45deg);}
details p{margin-top:12px;color:var(--ink-soft);font-size:15px;}
summary:focus-visible, a:focus-visible, button:focus-visible{outline:3px solid var(--foam);outline-offset:2px;}

/* ===== FINAL CTA ===== */
.final-cta{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color:#fff;text-align:center;
}
.final-cta h2{color:#fff;margin-bottom:14px;}
.final-cta p{color:var(--steel);max-width:480px;margin:0 auto 28px;font-size:16px;}
.final-cta .hero-actions{justify-content:center;margin-bottom:0;}

/* ===== GOOGLE REVIEWS ===== */
.google-reviews{background:#fff;border-top:1px solid var(--line);padding:42px 0;}
.google-reviews-head{
  display:flex;align-items:flex-end;justify-content:space-between;gap:22px;
  margin-bottom:20px;
}
.google-reviews-head h2{margin:0;font-size:clamp(28px, 4vw, 40px);}
.google-reviews-head .eyebrow{margin-bottom:6px;}
.google-review-summary{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  color:var(--ink-soft);font-weight:600;margin-bottom:18px;
}
.review-stars{color:var(--foam);letter-spacing:1px;font-size:18px;line-height:1;}
.google-review-slider{
  display:none;grid-template-columns:44px minmax(0, 1fr) 44px;gap:14px;
  align-items:center;max-width:920px;
}
.google-review-slider.has-reviews{display:grid;}
.google-review-cards{position:relative;min-height:238px;}
.google-review-card{
  display:none;
  border:1px solid var(--line);border-radius:8px;background:var(--paper);
  padding:26px;box-shadow:0 16px 34px rgba(14,34,56,0.08);
  animation:reviewFade .28s ease;
}
.google-review-card.active{display:block;}
.google-review-card-head{display:flex;align-items:center;gap:12px;margin-bottom:12px;}
.google-review-card img{
  width:48px;height:48px;border-radius:50%;object-fit:cover;background:#fff;
  border:1px solid var(--line);
}
.google-review-card h3{
  font-family:var(--font-body);font-size:15px;font-weight:700;margin:0;color:var(--ink);
}
.google-review-card .review-meta{font-size:13px;color:var(--steel);margin-top:2px;}
.google-review-card p{margin:0;color:var(--ink-soft);line-height:1.7;font-size:17px;}
.google-review-nav{
  width:44px;height:44px;border-radius:50%;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;background:#fff;color:var(--navy-deep);
  cursor:pointer;box-shadow:0 10px 20px rgba(14,34,56,0.07);
}
.google-review-nav:hover{border-color:var(--foam);background:rgba(217,164,65,0.1);}
.google-review-nav svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;}
.google-review-dots{display:none;align-items:center;gap:8px;margin-top:16px;margin-left:58px;}
.google-review-dots.has-reviews{display:flex;}
.google-review-dots button{
  width:9px;height:9px;border-radius:50%;border:none;background:var(--line);
  cursor:pointer;
}
.google-review-dots button.active{background:var(--foam);transform:scale(1.25);}
.google-reviews-note{color:var(--ink-soft);margin:0;font-size:15px;}
@keyframes reviewFade{from{opacity:0;transform:translateY(6px);}to{opacity:1;transform:translateY(0);}}
@media(max-width:640px){
  .google-reviews-head{align-items:flex-start;flex-direction:column;}
  .google-review-slider{grid-template-columns:1fr;}
  .google-review-nav{display:none;}
  .google-review-dots{margin-left:0;justify-content:center;}
  .google-review-card p{font-size:15px;}
}

/* ===== MAP EMBED ===== */
.map-section{background:#fff;border-top:1px solid var(--line);}
.map-embed{
  overflow:hidden;border-radius:8px;border:1px solid var(--line);
  background:var(--paper);box-shadow:0 16px 34px rgba(14,34,56,0.08);
  aspect-ratio:16 / 7;
}
.map-embed iframe{display:block;width:100%;height:100%;min-height:320px;}
@media(max-width:700px){
  .map-embed{aspect-ratio:4 / 3;}
}

/* ===== FOOTER ===== */
footer{background:var(--navy-deep);color:var(--steel);padding:44px 0 22px;font-size:14px;}
.footer-grid{display:flex;flex-wrap:wrap;gap:30px;margin-bottom:30px;}
.footer-grid > *{flex:1 1 100%;}
@media(min-width:700px){
  .footer-brand{flex:2 1 calc(50% - 15px);}
  .footer-col{flex:1 1 calc(25% - 22.5px);}
}
.footer-brand img{height:126px;width:126px;object-fit:contain;margin-bottom:14px;}
.footer-brand p{max-width:340px;line-height:1.6;}
.footer-social{display:flex;align-items:center;gap:10px;margin-top:18px;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  transition:background .18s ease,color .18s ease,transform .18s ease,border-color .18s ease;
}
.footer-social a:hover{background:var(--foam);color:var(--navy-deep);border-color:var(--foam);transform:translateY(-2px);}
.footer-social svg{width:18px;height:18px;fill:currentColor;}
.footer-col h4{font-family:var(--font-display);color:#fff;font-weight:700;font-size:14px;letter-spacing:0.04em;text-transform:uppercase;margin-bottom:14px;}
.footer-col a{display:block;margin-bottom:9px;color:var(--steel);}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);padding-top:20px;
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px;font-size:13px;color:#6E7A8C;
}

/* ===== MOBILE NAV DRAWER ===== */
#mobile-nav{
  display:none;
  position:fixed;inset:0;z-index:200;
  background:var(--navy-deep);
  color:#fff;
  padding:24px 22px;
  overflow-y:auto;
}
#mobile-nav.open{display:block;}
#mobile-nav .close-btn{
  position:absolute;top:20px;right:20px;
  width:40px;height:40px;border-radius:8px;
  background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
}
#mobile-nav .close-btn svg{width:20px;height:20px;fill:#fff;}
#mobile-nav nav{margin-top:60px;display:flex;flex-direction:column;gap:6px;}
#mobile-nav nav a{
  font-family:var(--font-display);font-weight:700;font-size:22px;
  padding:14px 4px;border-bottom:1px solid rgba(255,255,255,0.08);
}
.mnav-city-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px;
  padding:10px 0 18px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
#mobile-nav nav .mnav-city-list a{
  font-family:var(--font-body);
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  padding:10px 11px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:8px;
  background:rgba(255,255,255,0.05);
  color:#fff;
}
#mobile-nav .mnav-cta{
  margin-top:28px;background:var(--foam);color:var(--navy-deep);
  text-align:center;padding:16px;border-radius:var(--radius);
  font-family:var(--font-display);font-weight:700;font-size:17px;
}

/* ===== INTERIOR PAGE HEADER (About, Services, Contact, Areas) ===== */
.page-header{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color:#fff;
  padding:54px 0 44px;
}
.page-header .eyebrow{color:var(--foam-light);}
.page-header h1{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(30px,5.5vw,46px);line-height:1.08;letter-spacing:-0.01em;
  margin-bottom:12px;
}
.page-header p{color:#D7DCE5;font-size:16px;max-width:600px;}
.breadcrumb{
  font-size:13px;color:var(--steel);margin-bottom:16px;
}
.breadcrumb a{color:var(--steel);}
.breadcrumb a:hover{color:#fff;}
.breadcrumb .sep{margin:0 6px;opacity:0.5;}

/* ===== CONTENT BLOCKS (About / generic prose pages) ===== */
.prose{max-width:760px;}
.prose p{margin-bottom:18px;font-size:16px;color:var(--ink-soft);line-height:1.7;}
.prose h2{margin-top:36px;margin-bottom:14px;}
.prose h3{font-family:var(--font-display);font-weight:700;font-size:20px;color:var(--navy-deep);margin:24px 0 8px;}
.prose ul{margin:0 0 18px 22px;color:var(--ink-soft);}
.prose li{margin-bottom:8px;font-size:16px;}
.prose strong{color:var(--ink);}

/* ===== TWO COL CONTENT + SIDEBAR ===== */
.content-wrap{display:flex;flex-wrap:wrap;gap:48px;align-items:flex-start;}
.content-main{flex:2 1 480px;}
.content-side{flex:1 1 280px;position:sticky;top:90px;}
.side-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:26px;
}
.side-card h3{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--navy-deep);margin-bottom:14px;}
.side-card .btn{width:100%;justify-content:center;margin-bottom:12px;}
.side-card-list{list-style:none;font-size:14.5px;color:var(--ink-soft);}
.side-card-list li{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px solid var(--line);}
.side-card-list li:last-child{border-bottom:none;}
.side-card-list span:first-child{font-weight:600;color:var(--ink);}

/* ===== TEAM / VALUES CARDS (About page) ===== */
.values-grid{display:flex;flex-wrap:wrap;gap:18px;}
.value-card{
  flex:1 1 calc(50% - 9px);
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:24px;
}
@media(max-width:640px){.value-card{flex:1 1 100%;}}
.value-card h3{font-family:var(--font-display);font-weight:700;font-size:17px;color:var(--navy-deep);margin-bottom:6px;}
.value-card p{font-size:14.5px;color:var(--ink-soft);}

/* ===== STAT STRIP ===== */
.stat-strip{display:flex;flex-wrap:wrap;gap:0;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;}
.stat{flex:1 1 25%;text-align:center;padding:26px 14px;border-right:1px solid var(--line);}
.stat:last-child{border-right:none;}
@media(max-width:640px){.stat{flex:1 1 50%;}.stat:nth-child(2){border-right:none;}.stat:nth-child(odd){}}
.stat .num{font-family:var(--font-display);font-weight:800;font-size:32px;color:var(--navy);display:block;}
.stat .label{font-size:13px;color:var(--ink-soft);font-weight:600;text-transform:uppercase;letter-spacing:0.04em;}

/* ===== CONTACT FORM ===== */
.contact-wrap{display:flex;flex-wrap:wrap;gap:48px;align-items:flex-start;}
.contact-form{flex:1 1 480px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:32px;}
.contact-info{flex:1 1 360px;}
.form-row{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:16px;}
.form-group{flex:1 1 220px;}
.form-group.full{flex:1 1 100%;}
.form-group label{display:block;font-size:13.5px;font-weight:600;color:var(--ink);margin-bottom:6px;}
.form-group input, .form-group select, .form-group textarea{
  width:100%;border:1px solid var(--line);border-radius:8px;
  padding:12px 14px;font-family:var(--font-body);font-size:15px;color:var(--ink);
  background:var(--paper);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none;border-color:var(--foam);background:#fff;
}
.form-group textarea{resize:vertical;min-height:110px;}
.contact-form button[type="submit"]{
  width:100%;border:none;cursor:pointer;font-family:var(--font-display);
  background:var(--foam);color:var(--navy-deep);font-weight:700;font-size:16px;
  padding:15px 26px;border-radius:var(--radius);
}
.contact-form button[type="submit"]:hover{background:var(--foam-light);}
.contact-method{display:flex;gap:14px;align-items:flex-start;margin-bottom:22px;}
.contact-method .icon-box{
  width:42px;height:42px;border-radius:9px;background:rgba(217,164,65,0.14);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-method .icon-box svg{width:20px;height:20px;}
.contact-method h4{font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--navy-deep);margin-bottom:2px;}
.contact-method p, .contact-method a{font-size:14.5px;color:var(--ink-soft);}

/* ===== SERVICES LIST PAGE ===== */
.service-detail{
  display:flex;flex-wrap:wrap;gap:32px;align-items:center;
  padding:40px 0;border-bottom:1px solid var(--line);
}
.service-detail:last-child{border-bottom:none;}
.service-detail.reverse{flex-direction:row-reverse;}
.service-detail-text{flex:1 1 420px;}
.service-detail-img{flex:1 1 420px;border-radius:var(--radius);overflow:hidden;height:300px;}
.service-detail-img img{width:100%;height:100%;object-fit:cover;display:block;}
@media(min-width:640px){.service-detail-img{height:340px;}}
.service-detail-text .eyebrow{margin-bottom:8px;}
.service-detail-text h2{margin-bottom:14px;}
.service-detail-text p{color:var(--ink-soft);font-size:16px;margin-bottom:16px;}
.check-list{list-style:none;margin-bottom:20px;}
.check-list li{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:15px;color:var(--ink);}
.check-list svg{width:18px;height:18px;flex-shrink:0;margin-top:2px;stroke:var(--foam);fill:none;stroke-width:2.5;}

@media(max-width:780px){
  .service-detail.reverse{flex-direction:column;}
  .service-detail{flex-direction:column;}
}
