/* ─── Template A — Modern Trust ────────────────────────────────────────
   :root tokens are the ONLY theming surface. Per-client overrides
   live in the inlined :root block at the very top (set by the generator).
   ──────────────────────────────────────────────────────────────────────*/

:root {
  /* ── Contractor / general-construction theme (ref: cmwells.com) ──
     Charcoal + black bands, warm light sections, CONSTRUCTION GOLD accent, bold
     CONDENSED display type. Brand-customizable (generator may override). */
  --brand:      #2a2e36;   /* charcoal (buttons / links) */
  --brand-2:    #3a404a;   /* lighter charcoal */
  --navy:       #16181c;   /* near-black bands / headings */
  --accent:     #d1b13e;   /* construction gold */
  --accent-2:   #e6c95f;   /* lighter gold (on dark) */
  --text:       #1b1c1f;
  --text-muted: #5d626b;
  --bg:         #f7f6f2;   /* warm off-white sections */
  --bg-alt:     #ecebe5;   /* light gray alt sections */
  --border:     #e0ddd3;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 12px 32px rgba(16, 18, 22, 0.12);
  --shadow-sm:  0 4px 12px rgba(16, 18, 22, 0.08);
  --display:    "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w:      1200px;
  --gutter:     clamp(20px, 4vw, 48px);
}

/* ─── Reset + base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  font-family: var(--body); color: var(--text); background: var(--bg);
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  /* The horizontal services slider can otherwise leak page-wide overflow that
     shifts the whole layout left — clamp it here. */
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }
ul, ol { padding-left: 1.4rem; margin: 0 0 1rem; }
li { margin-bottom: .35rem; }
p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  /* Barlow Condensed reads industrial/contractor when bold + slightly spaced. */
  font-family: var(--display); font-weight: 700;
  color: var(--navy); letter-spacing: 0.4px; margin: 0 0 0.6em;
  line-height: 1.05; text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 4.6rem); font-weight: 800; letter-spacing: 0.5px; }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); font-weight: 600; letter-spacing: 0.3px; }
h4 { font-weight: 600; }

.eyebrow {
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

/* ─── Layout helpers ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tight { padding: clamp(48px, 7vw, 80px) 0; }
.section--dark { background: var(--navy); color: #e9ecf1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--alt { background: var(--bg-alt); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.2px;
  background: var(--brand); color: #fff; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  text-decoration: none; font-family: var(--body);
}
.btn:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }
.btn--accent { background: var(--accent); color: var(--navy); }
.btn--accent:hover { background: var(--accent); color: var(--navy); filter: brightness(0.95); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.site-header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.site-header__logo img { height: 44px; width: auto; }
.site-header__brand { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 19px; letter-spacing: -0.005em; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { color: var(--text); font-weight: 500; font-size: 15px; }
.site-nav a:hover { color: var(--brand); }
/* Hamburger toggle — hidden on desktop, shown in the mobile media query. */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Dropdown submenus (Service Areas → cities, Blog → posts).
   padding-bottom + negative margin extend the hover zone down to the menu so it
   doesn't vanish when the mouse crosses the gap (no dead zone). */
.nav-dropdown { position: relative; display: inline-flex; align-items: center;
  padding-bottom: 16px; margin-bottom: -16px; }
.nav-dropdown__label { cursor: pointer; }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 0;
  min-width: 210px; max-width: 320px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px;
  display: none; flex-direction: column; gap: 2px;
  box-shadow: 0 14px 34px rgba(10, 22, 38, 0.14); z-index: 60;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { display: flex; }
.nav-dropdown__menu a {
  padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  line-height: 1.35; color: var(--text);
}
.nav-dropdown__menu a:hover { background: rgba(10, 22, 38, 0.05); color: var(--brand); }
.site-header__cta { display: flex; align-items: center; gap: 12px; }
.site-header__phone { font-weight: 600; color: var(--navy); font-size: 15px; letter-spacing: 0.2px; }

/* ─── Hero (background image + gradient overlay) ─── */
.hero {
  position: relative;
  min-height: 640px;
  padding: clamp(120px, 18vw, 200px) 0 clamp(88px, 12vw, 140px);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 38, 0.86) 0%, rgba(14, 30, 58, 0.62) 55%, rgba(14, 30, 58, 0.30) 100%);
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; right: -10%; bottom: -20%; width: 520px; height: 520px;
  border-radius: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.22; z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; max-width: 1100px; }
.hero__copy { max-width: 720px; }
.hero__copy h1 { margin-bottom: 22px; color: #fff; }
.hero .eyebrow { color: var(--accent); }
.hero__sub { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: rgba(255, 255, 255, 0.88); margin-bottom: 32px; max-width: 580px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.hero .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ─── Trust strip ─── */
.trust-strip {
  border-bottom: 1px solid var(--border);
  padding: 28px 0; background: var(--bg);
}
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; text-align: center;
}
.trust-strip__item { display: flex; flex-direction: column; gap: 4px; }
.trust-strip__num { font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
.trust-strip__label { font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-muted); }
.trust-strip__stars { color: var(--accent); font-size: 1.4rem; }

/* ─── Services — horizontal scroll-snap slider ─── */
.services-slider {
  position: relative; margin-top: 48px;
}
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  margin-bottom: 12px;
}
.slider-controls { display: flex; gap: 10px; flex-shrink: 0; }
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--navy); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.slider-btn:hover { background: var(--navy); color: var(--accent); border-color: var(--navy); }
.slider-btn[aria-disabled="true"] { opacity: 0.35; cursor: not-allowed; }
.services-scroller {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  margin: 0 calc(-1 * var(--gutter));
  padding: 16px var(--gutter);
  scroll-padding: 0 var(--gutter);
}
.services-scroller::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: #fff; border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--border); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.service-card__num {
  font-family: var(--display); font-weight: 900; font-size: 3.2rem;
  color: var(--accent); line-height: 1; letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin-bottom: 0; font-size: 15.5px; line-height: 1.7; }

/* ─── Process — horizontal timeline with connecting line ─── */
.process-timeline {
  position: relative; margin-top: 72px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.process-timeline::before {
  content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  z-index: 0; opacity: 0.6;
}
.process-step {
  position: relative; padding: 0; background: none; border: none; box-shadow: none;
  text-align: center;
}
.process-step:hover { transform: none; box-shadow: none; }
.process-step__num {
  display: inline-flex; width: 72px; height: 72px; align-items: center; justify-content: center;
  background: var(--navy); color: var(--accent); border-radius: 50%;
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 28px; position: relative; z-index: 1;
  border: 6px solid var(--bg-alt);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.process-step:hover .process-step__num { transform: scale(1.08); background: var(--brand); color: #fff; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ─── Recent work — featured slideshow ─── */
.work-slideshow {
  position: relative; margin-top: 48px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--navy);
}
.work-slides {
  position: relative; aspect-ratio: 16/9;
}
.work-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--navy);
  opacity: 0; transition: opacity .7s ease;
  display: flex; align-items: flex-end;
}
.work-slide.is-active { opacity: 1; }
.work-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 38, 0.10) 0%, rgba(10, 22, 38, 0.30) 50%, rgba(10, 22, 38, 0.92) 100%);
}
.work-slide__caption {
  position: relative; z-index: 1; padding: clamp(32px, 5vw, 64px);
  max-width: 760px; color: #fff;
}
.work-slide__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.work-slide__caption h3 {
  color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 10px; line-height: 1.15;
}
.work-slide__caption p {
  color: rgba(255, 255, 255, 0.88); font-size: 1.05rem; margin: 0; max-width: 580px;
}
.work-slideshow__controls {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex; justify-content: space-between; padding: 0 clamp(16px, 3vw, 32px);
  z-index: 3; pointer-events: none;
}
.work-slideshow__controls button {
  pointer-events: auto;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: var(--navy);
  border: none; cursor: pointer;
  font-size: 22px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .15s ease;
  box-shadow: 0 4px 16px rgba(10, 22, 38, 0.20);
}
.work-slideshow__controls button:hover { background: var(--accent); transform: scale(1.06); }
.work-slideshow__dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.work-slideshow__dots button {
  width: 40px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.35); border: none; cursor: pointer; padding: 0;
  transition: background .25s ease, width .25s ease;
}
.work-slideshow__dots button.is-active { background: var(--accent); width: 56px; }

/* ─── Parallax promise band — full-bleed bg image moment ─── */
.promise-band {
  position: relative; padding: clamp(96px, 14vw, 180px) 0;
  background-color: var(--navy);
  background-size: cover; background-position: center;
  background-attachment: fixed;
  color: #fff; text-align: center; overflow: hidden;
}
.promise-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(10, 22, 38, 0.82) 0%, rgba(14, 30, 58, 0.65) 100%);
}
.promise-band .container { position: relative; z-index: 1; max-width: 880px; }
.promise-band .eyebrow { color: var(--accent); }
.promise-band h2 {
  color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 900;
  margin: 0 auto 24px; max-width: 740px; line-height: 1.15;
}
.promise-band p { color: rgba(255, 255, 255, 0.82); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }

/* ─── Why us — split layout, the memorable moment ─── */
.why-us {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start;
}
.why-us__list { display: grid; gap: 18px; }
.why-us__item {
  display: grid; grid-template-columns: 40px 1fr; gap: 20px; align-items: start;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.why-us__item:last-child { border-bottom: 1px solid var(--border); }
.why-us__num { font-family: var(--display); font-size: 1.5rem; color: var(--accent); font-weight: 700; line-height: 1; }
.why-us__item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.why-us__item p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ─── Reviews — testimonial carousel ─── */
.reviews-carousel {
  position: relative; max-width: 920px; margin: 56px auto 0;
  text-align: center;
}
.reviews-carousel__quote-mark {
  font-family: var(--display); font-weight: 900;
  font-size: 7rem; color: var(--accent); line-height: 1;
  opacity: 0.25; display: block; margin-bottom: -28px;
}
.reviews-track {
  position: relative; min-height: 300px;
}
.review-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 32px;
}
.review-slide.is-active { opacity: 1; pointer-events: auto; transform: none; }
.review-slide__stars {
  color: var(--accent); font-size: 22px; letter-spacing: 4px;
  margin-bottom: 24px;
}
.review-slide__text {
  font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500; line-height: 1.45; color: var(--navy);
  margin-bottom: 28px; font-style: italic;
}
.review-slide__author {
  font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: 0.6px;
  text-transform: uppercase;
}
.reviews-carousel__controls {
  display: flex; justify-content: center; gap: 14px; margin-top: 32px;
}
.reviews-carousel__controls button {
  width: 48px; height: 48px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--navy); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.reviews-carousel__controls button:hover { background: var(--navy); color: var(--accent); border-color: var(--navy); }
.reviews-carousel__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 18px;
}
.reviews-carousel__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background .25s ease, transform .25s ease;
}
.reviews-carousel__dots button.is-active { background: var(--accent); transform: scale(1.4); }

/* ─── Service areas ─── */
.areas-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px; margin-top: 32px;
}
.area-pill {
  padding: 14px 20px; background: #fff; border: 1px solid var(--border); border-radius: 999px;
  text-align: center; font-weight: 600; color: var(--navy); font-size: 14.5px;
}
.area-pill:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }

/* ─── FAQ ─── */
.faq-list { display: grid; gap: 6px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; overflow: hidden;
}
.faq-item details summary {
  padding: 22px 28px; font-weight: 600; color: var(--navy); font-size: 16px;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after { content: "+"; font-family: var(--display); font-size: 1.5rem; color: var(--accent); font-weight: 700; transition: transform .2s ease; }
.faq-item details[open] summary::after { content: "−"; }
.faq-item details .faq-answer { padding: 0 28px 24px; color: var(--text-muted); font-size: 15px; }

/* ─── NAP block ─── */
.nap-block {
  display: grid; gap: 4px;
}
.nap-block strong { color: var(--navy); font-size: 15px; font-weight: 700; }
.nap-block a { color: var(--text-muted); font-weight: 500; }
.nap-block a:hover { color: var(--accent); }

/* ─── Contact CTA — parallax bg image ─── */
.contact-cta {
  position: relative;
  background-color: var(--navy);
  background-size: cover; background-position: center;
  background-attachment: fixed;
  color: #fff; text-align: center;
  padding: clamp(80px, 11vw, 128px) 0;
  overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(10, 22, 38, 0.92) 0%, rgba(14, 30, 58, 0.78) 100%);
}
.contact-cta .container { position: relative; z-index: 1; }
.contact-cta h2 { color: #fff; max-width: 720px; margin-left: auto; margin-right: auto; }
.contact-cta p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ─── Contact form ─── */
.contact-form { display: grid; gap: 16px; max-width: 520px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--body); font-size: 15px; background: #fff; color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ─── Footer ─── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.72);
  padding: 72px 0 32px; font-size: 14.5px;
}
.site-footer h4 { color: #fff; font-family: var(--body); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.site-footer a { color: rgba(255,255,255,0.72); font-weight: 500; }
.site-footer a:hover { color: var(--accent); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.site-footer__logo img { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.site-footer__blurb { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; max-width: 320px; }

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .hero { min-height: 520px; padding: 96px 0 72px; }
  .why-us { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── Mobile hamburger menu ── */
  .nav-toggle { display: inline-flex; order: 2; margin-left: auto; }
  .site-header .container { flex-wrap: wrap; }
  .site-header__logo { order: 1; }
  .site-nav, .site-header__cta { order: 3; width: 100%; display: none; }
  /* Open state: nav + CTA become a stacked panel under the header. */
  .site-header.nav-open .site-nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border);
  }
  .site-header.nav-open .site-nav a { padding: 11px 4px; font-size: 16px; }
  .site-header.nav-open .site-header__cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px;
    padding: 8px 0 16px;
  }
  .site-header.nav-open .site-header__cta .btn { width: 100%; text-align: center; }
  .site-header.nav-open .site-header__phone { padding: 6px 4px; }
  /* Dropdowns → inline indented lists on mobile (no hover needed) */
  .site-header.nav-open .nav-dropdown { flex-direction: column; align-items: stretch;
    padding: 0; margin: 0; }
  .site-header.nav-open .nav-dropdown__menu {
    position: static; display: flex; box-shadow: none; border: 0; background: transparent;
    padding: 0 0 6px 16px; min-width: 0; max-width: none; margin: 0; }
  .site-header.nav-open .nav-dropdown__menu a { padding: 8px 4px; font-size: 15px; }

  .site-header__cta .btn { padding: 12px 20px; font-size: 14px; }
  /* iOS Safari doesn't honor background-attachment: fixed cleanly. */
  .promise-band, .contact-cta { background-attachment: scroll; }
  .promise-band { padding: 80px 0; }
}
