/* ==========================================================================
   Millbrook Air Duct Care — stylesheet
   Prefix: mbac- (Millbrook Air duct Care)
   Fonts: Fraunces (display/serif) + Work Sans (body)
   ========================================================================== */

:root{
  --mbac-forest:#0b2947;
  --mbac-forest-dark:#071b30;
  --mbac-moss:#4f9b2f;
  --mbac-terracotta:#4f9b2f;
  --mbac-terracotta-dark:#3f7d25;
  --mbac-gold:#0381bc;
  --mbac-cream:#f5f7f2;
  --mbac-cream-soft:#fafbf8;
  --mbac-charcoal:#242a2e;
  --mbac-line:#dde3da;
  --mbac-white:#ffffff;

  --mbac-font-display:'Fraunces', serif;
  --mbac-font-body:'Work Sans', sans-serif;

  --mbac-radius-sm:10px;
  --mbac-radius-md:18px;
  --mbac-radius-lg:32px;
  --mbac-shadow:0 20px 45px -25px rgba(31,61,46,.45);
  --mbac-shadow-soft:0 10px 30px -18px rgba(31,61,46,.35);
  --mbac-maxw:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--mbac-font-body);
  color:var(--mbac-charcoal);
  background:var(--mbac-cream-soft);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--mbac-font-display);
  color:var(--mbac-forest);
  margin:0 0 .5em;
  line-height:1.15;
  font-weight:600;
}
p{ margin:0 0 1em; }
.mbac-container{
  width:100%;
  max-width:var(--mbac-maxw);
  margin:0 auto;
  padding:0 24px;
}
section{ position:relative; }
.mbac-section{ padding:96px 0; }
.mbac-section--tight{ padding:64px 0; }
.mbac-section--forest{ background:var(--mbac-forest); color:var(--mbac-cream); }
.mbac-section--forest h2, .mbac-section--forest h3{ color:var(--mbac-cream); }
.mbac-section--soft{ background:var(--mbac-cream); }

.mbac-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--mbac-terracotta);
  font-weight:600;
  margin-bottom:14px;
}
.mbac-eyebrow::before{
  content:"";
  width:22px;
  height:2px;
  background:var(--mbac-terracotta);
  display:inline-block;
}
.mbac-kicker{
  max-width:640px;
  color:#5b5b53;
  font-size:17px;
}
.mbac-section--forest .mbac-kicker{ color:#d9e6dc; }

/* Buttons */
.mbac-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  font-family:var(--mbac-font-body);
  font-weight:600;
  font-size:15px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.mbac-btn svg{ width:16px; height:16px; }
.mbac-btn--primary{
  background:var(--mbac-terracotta);
  color:var(--mbac-cream);
  box-shadow:var(--mbac-shadow-soft);
}
.mbac-btn--primary:hover{ background:var(--mbac-terracotta-dark); transform:translateY(-2px); }
.mbac-btn--ghost{
  background:transparent;
  border-color:var(--mbac-cream);
  color:var(--mbac-cream);
}
.mbac-btn--ghost:hover{ background:rgba(247,241,230,.12); transform:translateY(-2px); }
.mbac-btn--outline{
  background:transparent;
  border-color:var(--mbac-forest);
  color:var(--mbac-forest);
}
.mbac-btn--outline:hover{ background:var(--mbac-forest); color:var(--mbac-cream); }
.mbac-btn--block{ width:100%; justify-content:center; }

/* ==================== Header ==================== */
.mbac-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(247,241,230,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--mbac-line);
}
.mbac-header__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}
.mbac-logo{ display:flex; align-items:center; gap:12px; }
.mbac-logo__mark{ width:46px; height:46px; flex-shrink:0; }
.mbac-logo__img{ height:44px; width:auto; display:block; }
.mbac-logo__card{
  background:var(--mbac-white);
  border-radius:10px;
  padding:6px 10px;
  display:inline-flex;
  align-items:center;
}
.mbac-logo__card .mbac-logo__img{ height:34px; }
.mbac-logo__word{
  font-family:var(--mbac-font-display);
  font-size:22px;
  font-weight:600;
  color:var(--mbac-forest);
  line-height:1.05;
}
.mbac-logo__sub{
  display:block;
  font-family:var(--mbac-font-body);
  font-size:10.5px;
  letter-spacing:.2em;
  color:var(--mbac-terracotta);
  font-weight:600;
  margin-top:3px;
}
.mbac-nav{ display:flex; align-items:center; gap:22px; }
.mbac-nav a{
  font-size:14.5px;
  font-weight:500;
  color:var(--mbac-charcoal);
  position:relative;
  padding:6px 0;
  white-space:nowrap;
}
.mbac-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--mbac-terracotta);
  transition:width .2s ease;
}
.mbac-nav a:hover::after,
.mbac-nav a[aria-current="page"]::after{ width:100%; }
.mbac-nav a[aria-current="page"]{ color:var(--mbac-terracotta); }
.mbac-header__cta{ display:flex; align-items:center; gap:14px; }
.mbac-header__phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:15px;
  color:var(--mbac-forest);
}
.mbac-header__phone svg{ width:18px; height:18px; color:var(--mbac-terracotta); }
.mbac-burger{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid var(--mbac-line);
  background:var(--mbac-white);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.mbac-burger svg{ width:20px; height:20px; color:var(--mbac-forest); }

/* ==================== Hero ==================== */
.mbac-hero{
  padding:70px 0 100px;
  overflow:hidden;
  background:
    radial-gradient(600px 400px at 85% -10%, rgba(3,129,188,.14), transparent 60%),
    var(--mbac-cream);
}
.mbac-hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.mbac-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:var(--mbac-forest);
  margin-bottom:22px;
}
.mbac-hero__badge svg{ width:15px; height:15px; color:var(--mbac-gold); }
.mbac-hero h1{
  font-size:clamp(34px,4.6vw,54px);
  margin-bottom:22px;
}
.mbac-hero h1 em{
  font-style:normal;
  color:var(--mbac-terracotta);
}
.mbac-hero__lead{
  font-size:18px;
  color:#514f47;
  max-width:520px;
  margin-bottom:30px;
}
.mbac-hero__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px; }
.mbac-hero__stats{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
  border-top:1px solid var(--mbac-line);
  padding-top:26px;
}
.mbac-hero__stat b{
  display:block;
  font-family:var(--mbac-font-display);
  font-size:28px;
  color:var(--mbac-forest);
}
.mbac-hero__stat span{ font-size:13px; color:#6b6a61; }

.mbac-hero__art{ position:relative; }
.mbac-hero__blob{
  position:absolute;
  inset:-8%;
  background:var(--mbac-moss);
  border-radius:38% 62% 61% 39% / 45% 40% 60% 55%;
  opacity:.16;
  z-index:0;
}
.mbac-hero__frame{
  position:relative;
  z-index:1;
  border-radius:var(--mbac-radius-lg);
  overflow:hidden;
  box-shadow:var(--mbac-shadow);
}
.mbac-hero__wave{
  position:absolute;
  bottom:-1px; left:0;
  width:100%; height:70px;
  z-index:2;
  color:var(--mbac-cream-soft);
}

/* ==================== Image placeholder slots ==================== */
.mbac-imgslot{
  position:relative;
  width:100%;
  border-radius:var(--mbac-radius-md);
  background:
    repeating-linear-gradient(135deg, rgba(31,61,46,.06) 0 12px, rgba(31,61,46,.02) 12px 24px),
    var(--mbac-white);
  border:2px dashed #b9c6ba;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:var(--mbac-forest);
  text-align:center;
}
.mbac-imgslot--tall{ aspect-ratio:4/5; }
.mbac-imgslot--wide{ aspect-ratio:16/10; }
.mbac-imgslot--square{ aspect-ratio:1/1; }
.mbac-imgslot--banner{ aspect-ratio:21/9; }
.mbac-hero__frame .mbac-imgslot{ border-radius:var(--mbac-radius-lg); border-width:2px; }
.mbac-imgslot__inner{ padding:18px; max-width:230px; }
.mbac-imgslot__icon{
  width:38px; height:38px;
  margin:0 auto 10px;
  color:var(--mbac-terracotta);
  opacity:.8;
}
.mbac-imgslot__num{
  display:inline-block;
  font-family:var(--mbac-font-display);
  font-size:13px;
  font-weight:700;
  background:var(--mbac-forest);
  color:var(--mbac-cream);
  width:24px; height:24px;
  line-height:24px;
  border-radius:50%;
  margin-bottom:10px;
}
.mbac-imgslot__label{
  font-size:13px;
  font-weight:600;
  color:var(--mbac-forest);
  margin-bottom:4px;
}
.mbac-imgslot__dim{
  font-size:11.5px;
  color:#8a897d;
  letter-spacing:.03em;
}

/* ==================== Trust strip ==================== */
.mbac-trust{
  background:var(--mbac-white);
  border-top:1px solid var(--mbac-line);
  border-bottom:1px solid var(--mbac-line);
}
.mbac-trust__row{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  padding:26px 0;
}
.mbac-trust__item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14.5px;
  font-weight:600;
  color:var(--mbac-forest);
}
.mbac-trust__item svg{ width:22px; height:22px; color:var(--mbac-terracotta); flex-shrink:0; }

/* ==================== Section headers ==================== */
.mbac-sec-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:48px;
  flex-wrap:wrap;
}
.mbac-sec-head h2{ font-size:clamp(28px,3.4vw,40px); margin-bottom:10px; }

/* ==================== Bento services grid ==================== */
.mbac-bento{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:180px;
  gap:22px;
}
.mbac-bento__card{
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
  border-radius:var(--mbac-radius-md);
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mbac-bento__card:hover{
  transform:translateY(-5px);
  box-shadow:var(--mbac-shadow-soft);
  border-color:var(--mbac-moss);
}
.mbac-bento__card--lg{ grid-column:span 2; grid-row:span 2; background:var(--mbac-forest); border-color:var(--mbac-forest); }
.mbac-bento__card--lg h3{ color:var(--mbac-cream); }
.mbac-bento__card--lg p{ color:#cfe0d3; }
.mbac-bento__card--lg .mbac-bento__icon{ background:rgba(247,241,230,.14); color:var(--mbac-gold); }
.mbac-bento__icon{
  width:46px; height:46px;
  border-radius:12px;
  background:var(--mbac-cream);
  color:var(--mbac-terracotta);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.mbac-bento__icon svg{ width:24px; height:24px; }
.mbac-bento__card h3{ font-size:19px; margin-bottom:8px; }
.mbac-bento__card p{ font-size:14.5px; color:#5f5e55; margin-bottom:0; }
.mbac-bento__link{
  margin-top:14px;
  font-size:13.5px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--mbac-terracotta);
}
.mbac-bento__card--lg .mbac-bento__link{ color:var(--mbac-gold); }
.mbac-bento__link svg{ width:14px; height:14px; }

/* ==================== Process steps ==================== */
.mbac-process{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:60px;
  align-items:center;
}
.mbac-steps{ counter-reset:mbac-step; }
.mbac-step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  padding:22px 0;
  border-top:1px solid var(--mbac-line);
}
.mbac-step:last-child{ border-bottom:1px solid var(--mbac-line); }
.mbac-step__num{
  counter-increment:mbac-step;
  font-family:var(--mbac-font-display);
  font-size:16px;
  font-weight:700;
  color:var(--mbac-terracotta);
  width:42px; height:42px;
  border-radius:50%;
  border:2px solid var(--mbac-terracotta);
  display:flex; align-items:center; justify-content:center;
}
.mbac-step__num::before{ content: counter(mbac-step); }
.mbac-step h3{ font-size:18px; margin-bottom:6px; }
.mbac-step p{ font-size:14.5px; color:#5f5e55; margin-bottom:0; }

/* ==================== Gallery / before-after ==================== */
.mbac-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}
.mbac-gallery__card{ text-align:center; }
.mbac-gallery__tag{
  display:inline-block;
  margin-bottom:14px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
}
.mbac-gallery__tag--before{ background:#f1e3da; color:var(--mbac-terracotta-dark); }
.mbac-gallery__tag--after{ background:#dfe9df; color:var(--mbac-forest); }

/* ==================== Local area ==================== */
.mbac-local{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.mbac-townlist{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 20px;
  margin-top:22px;
}
.mbac-townlist li{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:14.5px;
  font-weight:500;
  color:var(--mbac-forest);
}
.mbac-townlist svg{ width:16px; height:16px; color:var(--mbac-terracotta); flex-shrink:0; }

/* ==================== Testimonials ==================== */
.mbac-quotes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.mbac-quote{
  background:var(--mbac-white);
  border-radius:var(--mbac-radius-md);
  padding:30px 26px;
  border:1px solid var(--mbac-line);
}
.mbac-quote__icon{ width:26px; height:26px; color:var(--mbac-gold); margin-bottom:14px; }
.mbac-quote__stars{ display:flex; gap:3px; margin-bottom:14px; }
.mbac-quote__stars svg{ width:15px; height:15px; color:var(--mbac-gold); }
.mbac-quote p{ font-size:15px; color:#43423b; margin-bottom:18px; }
.mbac-quote__name{ font-weight:700; color:var(--mbac-forest); font-size:14.5px; }
.mbac-quote__loc{ font-size:12.5px; color:#8a897d; }

/* ==================== CTA + map ==================== */
.mbac-cta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border-radius:var(--mbac-radius-lg);
  overflow:hidden;
  box-shadow:var(--mbac-shadow);
}
.mbac-cta__text{
  background:var(--mbac-forest);
  color:var(--mbac-cream);
  padding:56px 48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.mbac-cta__text h2{ color:var(--mbac-cream); font-size:clamp(26px,3vw,34px); }
.mbac-cta__text p{ color:#d9e6dc; }
.mbac-cta__map{ min-height:340px; }
.mbac-cta__map iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; }

/* ==================== Footer ==================== */
.mbac-footer{
  background:var(--mbac-forest-dark);
  color:#c9d6cb;
  padding:70px 0 26px;
}
.mbac-footer__grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr .8fr 1fr;
  gap:32px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(247,241,230,.12);
}
.mbac-footer__grid--compact{ grid-template-columns:1.4fr 1fr 1fr 1.2fr; }
.mbac-footer__logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.mbac-footer__logo .mbac-logo__mark{ width:38px; height:38px; }
.mbac-footer__logo span{ font-family:var(--mbac-font-display); font-size:18px; color:var(--mbac-cream); }
.mbac-footer p{ font-size:14px; color:#a9bcac; }
.mbac-footer h4{
  color:var(--mbac-cream);
  font-family:var(--mbac-font-body);
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.mbac-footer__links li{ margin-bottom:10px; }
.mbac-footer__links a{ font-size:14px; color:#c9d6cb; transition:color .2s; }
.mbac-footer__links a:hover{ color:var(--mbac-gold); }
.mbac-footer__contact li{
  display:flex;
  gap:10px;
  font-size:14px;
  margin-bottom:14px;
  color:#c9d6cb;
}
.mbac-footer__contact svg{ width:17px; height:17px; color:var(--mbac-gold); flex-shrink:0; margin-top:2px; }
.mbac-footer__social{ display:flex; gap:10px; margin-top:18px; }
.mbac-footer__social a{
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid rgba(247,241,230,.25);
  display:flex; align-items:center; justify-content:center;
}
.mbac-footer__social svg{ width:16px; height:16px; }
.mbac-footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding-top:24px;
  font-size:12.5px;
  color:#8ba090;
}

/* ==================== Interior page header ==================== */
.mbac-pagehead{
  padding:64px 0 56px;
  background:var(--mbac-forest);
  color:var(--mbac-cream);
  position:relative;
  overflow:hidden;
}
.mbac-pagehead::after{
  content:"";
  position:absolute;
  right:-60px; top:-60px;
  width:260px; height:260px;
  border-radius:50%;
  background:rgba(3,129,188,.14);
}
.mbac-pagehead h1{ color:var(--mbac-cream); font-size:clamp(30px,4vw,46px); margin-bottom:10px; }
.mbac-breadcrumb{ font-size:13.5px; color:#bcd0c0; margin-bottom:16px; }
.mbac-breadcrumb a{ color:var(--mbac-gold); }
.mbac-pagehead p{ max-width:600px; color:#d9e6dc; margin-bottom:0; }

/* ==================== Long-form content blocks ==================== */
.mbac-prose{ max-width:820px; }
.mbac-prose h2{ font-size:26px; margin-top:44px; }
.mbac-prose h2:first-child{ margin-top:0; }
.mbac-prose p{ font-size:15.5px; color:#43423b; }
.mbac-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.mbac-split--rev{ grid-template-columns:1fr 1fr; }
.mbac-split--rev .mbac-imgslot{ order:2; }

.mbac-checklist li{
  display:flex;
  gap:10px;
  font-size:15px;
  color:#3e3d36;
  padding:9px 0;
  border-bottom:1px dashed var(--mbac-line);
}
.mbac-checklist svg{ width:19px; height:19px; color:var(--mbac-terracotta); flex-shrink:0; margin-top:1px; }

.mbac-servicelist{ display:grid; gap:20px; }
.mbac-service-row{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:20px;
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
  border-radius:var(--mbac-radius-md);
  padding:26px;
}
.mbac-service-row__icon{
  width:56px; height:56px;
  border-radius:14px;
  background:var(--mbac-cream);
  color:var(--mbac-terracotta);
  display:flex; align-items:center; justify-content:center;
}
.mbac-service-row__icon svg{ width:28px; height:28px; }
.mbac-service-row h3{ font-size:19px; margin-bottom:6px; }
.mbac-service-row p{ font-size:14.5px; color:#5f5e55; margin-bottom:0; }

/* ==================== Family / about page blocks ==================== */
.mbac-values{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.mbac-value{
  padding:26px;
  border-radius:var(--mbac-radius-md);
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
}
.mbac-value svg{ width:28px; height:28px; color:var(--mbac-terracotta); margin-bottom:12px; }
.mbac-value h3{ font-size:17px; margin-bottom:6px; }
.mbac-value p{ font-size:14px; color:#5f5e55; margin-bottom:0; }

.mbac-timeline{ border-left:2px solid var(--mbac-line); margin-left:6px; padding-left:30px; }
.mbac-timeline__item{ position:relative; padding-bottom:34px; }
.mbac-timeline__item:last-child{ padding-bottom:0; }
.mbac-timeline__item::before{
  content:"";
  position:absolute;
  left:-37px; top:4px;
  width:12px; height:12px;
  border-radius:50%;
  background:var(--mbac-terracotta);
  border:3px solid var(--mbac-cream-soft);
}
.mbac-timeline__year{ font-family:var(--mbac-font-display); color:var(--mbac-terracotta); font-weight:700; font-size:15px; }
.mbac-timeline__item h3{ font-size:17px; margin:4px 0 6px; }
.mbac-timeline__item p{ font-size:14.5px; color:#5f5e55; margin-bottom:0; }

/* ==================== Form (estimate page) ==================== */
.mbac-form-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--mbac-white);
  border-radius:var(--mbac-radius-lg);
  overflow:hidden;
  box-shadow:var(--mbac-shadow);
  border:1px solid var(--mbac-line);
}
.mbac-form-wrap__side{
  background:var(--mbac-forest);
  color:var(--mbac-cream);
  padding:50px 44px;
}
.mbac-form-wrap__side h2{ color:var(--mbac-cream); }
.mbac-form-wrap__side p{ color:#d9e6dc; }
.mbac-form-wrap__form{ padding:50px 44px; }
.mbac-field{ margin-bottom:20px; }
.mbac-field label{
  display:block;
  font-size:13.5px;
  font-weight:600;
  color:var(--mbac-forest);
  margin-bottom:7px;
}
.mbac-field input,
.mbac-field select,
.mbac-field textarea{
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  border:1.5px solid var(--mbac-line);
  font-family:var(--mbac-font-body);
  font-size:14.5px;
  background:var(--mbac-cream-soft);
  color:var(--mbac-charcoal);
}
.mbac-field input:focus,
.mbac-field select:focus,
.mbac-field textarea:focus{
  outline:none;
  border-color:var(--mbac-terracotta);
  background:var(--mbac-white);
}
.mbac-field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.mbac-field__note{ font-size:12px; color:#8a897d; margin-top:6px; }
.mbac-form-msg{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  border-radius:10px;
  background:#e7f0e6;
  color:var(--mbac-forest);
  font-size:14px;
  font-weight:600;
}
.mbac-form-msg.is-visible{ display:block; }

.mbac-hours{ margin-top:26px; }
.mbac-hours li{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  padding:8px 0;
  border-bottom:1px solid rgba(247,241,230,.15);
}

.mbac-map-block{
  border-radius:var(--mbac-radius-md);
  overflow:hidden;
  border:1px solid var(--mbac-line);
  box-shadow:var(--mbac-shadow-soft);
}
.mbac-map-block iframe{ width:100%; height:420px; border:0; display:block; }

/* ==================== Scroll reveal ==================== */
.mbac-reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.mbac-reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ==================== Responsive ==================== */
@media (max-width:980px){
  .mbac-nav{ display:none; }
  .mbac-burger{ display:flex; }
  .mbac-header__phone span{ display:none; }
  .mbac-hero__grid{ grid-template-columns:1fr; }
  .mbac-hero__art{ order:-1; }
  .mbac-process{ grid-template-columns:1fr; }
  .mbac-local{ grid-template-columns:1fr; }
  .mbac-split{ grid-template-columns:1fr; }
  .mbac-split--rev .mbac-imgslot{ order:0; }
  .mbac-quotes{ grid-template-columns:1fr; }
  .mbac-gallery{ grid-template-columns:1fr; }
  .mbac-bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:200px; }
  .mbac-bento__card--lg{ grid-column:span 2; grid-row:span 1; }
  .mbac-cta{ grid-template-columns:1fr; }
  .mbac-footer__grid{ grid-template-columns:1fr 1fr; }
  .mbac-form-wrap{ grid-template-columns:1fr; }
  .mbac-values{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .mbac-section{ padding:64px 0; }
  .mbac-hero{ padding:48px 0 70px; }
  .mbac-bento{ grid-template-columns:1fr; }
  .mbac-bento__card--lg{ grid-column:span 1; }
  .mbac-field-row{ grid-template-columns:1fr; }
  .mbac-footer__grid{ grid-template-columns:1fr; }
  .mbac-hero__stats{ gap:22px; }
  .mbac-sec-head{ flex-direction:column; align-items:flex-start; }
}

/* Mobile nav panel (JS toggled) */
.mbac-mobilenav{
  position:fixed;
  inset:0 0 0 auto;
  width:min(320px,84%);
  height:100vh;
  background:var(--mbac-forest);
  color:var(--mbac-cream);
  z-index:100;
  padding:26px 26px 30px;
  transform:translateX(100%);
  transition:transform .3s ease;
  display:flex;
  flex-direction:column;
}
.mbac-mobilenav.is-open{ transform:translateX(0); }
.mbac-mobilenav__top{ display:flex; justify-content:flex-end; margin-bottom:30px; }
.mbac-mobilenav__close{ width:36px; height:36px; color:var(--mbac-cream); background:none; border:0; cursor:pointer; }
.mbac-mobilenav__close svg{ width:22px; height:22px; }
.mbac-mobilenav a{
  display:block;
  font-family:var(--mbac-font-display);
  font-size:22px;
  padding:12px 0;
  border-bottom:1px solid rgba(247,241,230,.14);
}
.mbac-mobilenav__phone{
  margin-top:auto;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--mbac-gold);
  font-weight:700;
}
.mbac-scrim{
  position:fixed; inset:0;
  background:rgba(19,42,32,.5);
  z-index:90;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.mbac-scrim.is-open{ opacity:1; pointer-events:auto; }

/* Nav collapses a little earlier now that there are more links */
@media (max-width:1080px){
  .mbac-nav{ display:none; }
  .mbac-burger{ display:flex; }
  .mbac-header__phone span{ display:none; }
}

/* ==================== Hub link cards (services.html / service-areas.html) ==================== */
.mbac-hubgrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.mbac-hubcard{
  display:flex;
  flex-direction:column;
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
  border-radius:var(--mbac-radius-md);
  padding:30px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mbac-hubcard:hover{ transform:translateY(-5px); box-shadow:var(--mbac-shadow-soft); border-color:var(--mbac-moss); }
.mbac-hubcard__icon{
  width:50px; height:50px;
  border-radius:13px;
  background:var(--mbac-cream);
  color:var(--mbac-terracotta);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.mbac-hubcard__icon svg{ width:26px; height:26px; }
.mbac-hubcard h3{ font-size:19px; margin-bottom:8px; }
.mbac-hubcard p{ font-size:14.5px; color:#5f5e55; margin-bottom:16px; flex-grow:1; }
.mbac-hubcard__link{
  font-size:13.5px;
  font-weight:700;
  color:var(--mbac-terracotta);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.mbac-hubcard__link svg{ width:14px; height:14px; }

/* City chip list on service-areas.html */
.mbac-citychips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:10px;
}
.mbac-citychip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
  font-size:14px;
  font-weight:600;
  color:var(--mbac-forest);
}
.mbac-citychip svg{ width:15px; height:15px; color:var(--mbac-terracotta); }
.mbac-citychip:hover{ border-color:var(--mbac-terracotta); }

/* ==================== FAQ accordion ==================== */
.mbac-faqlist{ max-width:820px; }
.mbac-faq{
  border-bottom:1px solid var(--mbac-line);
}
.mbac-faq__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 4px;
  background:none;
  border:0;
  text-align:left;
  cursor:pointer;
  font-family:var(--mbac-font-display);
  font-size:17px;
  color:var(--mbac-forest);
  font-weight:600;
}
.mbac-faq__q svg{ width:18px; height:18px; color:var(--mbac-terracotta); flex-shrink:0; transition:transform .2s ease; }
.mbac-faq.is-open .mbac-faq__q svg{ transform:rotate(45deg); }
.mbac-faq__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.mbac-faq.is-open .mbac-faq__a{ max-height:400px; }
.mbac-faq__a p{ padding:0 4px 22px; font-size:15px; color:#4c4b43; }

/* ==================== Gallery page ==================== */
.mbac-galleryflow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.mbac-galleryflow .mbac-imgslot{ aspect-ratio:1/1; }
.mbac-galleryflow .mbac-imgslot--tall2{ aspect-ratio:4/5; grid-row:span 2; }

/* ==================== City / location pages ==================== */
.mbac-cityfacts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:30px 0 10px;
}
.mbac-cityfact{
  background:var(--mbac-white);
  border:1px solid var(--mbac-line);
  border-radius:var(--mbac-radius-md);
  padding:20px;
  text-align:center;
}
.mbac-cityfact svg{ width:24px; height:24px; color:var(--mbac-terracotta); margin-bottom:8px; }
.mbac-cityfact b{ display:block; font-family:var(--mbac-font-display); color:var(--mbac-forest); font-size:16px; }
.mbac-cityfact span{ font-size:12.5px; color:#8a897d; }

.mbac-othercities{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.mbac-othercities a{
  padding:8px 16px;
  border-radius:999px;
  background:var(--mbac-cream);
  border:1px solid var(--mbac-line);
  font-size:13.5px;
  font-weight:600;
  color:var(--mbac-forest);
}
.mbac-othercities a:hover{ border-color:var(--mbac-terracotta); color:var(--mbac-terracotta); }

@media (max-width:900px){
  .mbac-hubgrid{ grid-template-columns:1fr; }
  .mbac-galleryflow{ grid-template-columns:repeat(2,1fr); }
  .mbac-cityfacts{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .mbac-galleryflow{ grid-template-columns:1fr; }
  .mbac-galleryflow .mbac-imgslot--tall2{ grid-row:span 1; }
}
