/* ==========================================================================
   All Metro Painting — core stylesheet
   ========================================================================== */

:root {
  --navy: #12233B;
  --navy-dark: #0B1728;
  --navy-light: #1E3A5F;
  --accent: #E0521E;
  --accent-dark: #B93F13;
  --gold: #F5B942;
  --offwhite: #F7F5F1;
  --cream: #FBF9F6;
  --white: #FFFFFF;
  --ink: #1B2430;
  --gray-700: #4B5563;
  --gray-500: #6B7280;
  --gray-300: #D6D3CC;
  --gray-200: #E7E4DD;
  --border: #E2DFD9;

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --container: 1200px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 10px rgba(18, 35, 59, 0.08);
  --shadow-md: 0 8px 30px rgba(18, 35, 59, 0.12);
  --shadow-lg: 0 20px 50px rgba(18, 35, 59, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--gray-700); }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75em;
}

.section-head {
  max-width: 720px;
  margin: 0 0 3rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; }

section { padding: 5.5rem 0; }
.section-alt { background: var(--offwhite); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .95em 1.9em;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(224,82,30,.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1em 2.4em; font-size: 1.02rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-transparent {
  background: linear-gradient(to bottom, rgba(11,23,40,.55), rgba(11,23,40,0));
}
.site-header.is-solid,
.site-header.nav-solid {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-icon { width: 52px; height: 52px; flex-shrink: 0; }
.brand-icon .drip { fill: var(--accent); }
.brand-icon .brush-body { fill: var(--accent); }
.brand-icon .brush-outline { stroke: var(--white); }
.site-header.is-solid .brand-icon .brush-outline,
.site-header.nav-solid .brand-icon .brush-outline { stroke: var(--white); }
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.36rem;
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--white);
  transition: color .2s ease;
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}
.site-header.is-solid .brand-word,
.site-header.nav-solid .brand-word,
.page-header-inner .brand-word,
.inner-page .brand-word { color: var(--navy); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button.nav-toplink {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .94rem;
  color: var(--white);
  white-space: nowrap;
  border: none;
  background: none;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.site-header.is-solid .nav-links > li > a,
.site-header.nav-solid .nav-links > li > a,
.site-header.is-solid .nav-links > li > button.nav-toplink,
.site-header.nav-solid .nav-links > li > button.nav-toplink { color: var(--navy); }

.nav-links > li > a:hover,
.nav-links > li > button.nav-toplink:hover { background: rgba(255,255,255,.14); }
.site-header.is-solid .nav-links > li > a:hover,
.site-header.nav-solid .nav-links > li > a:hover,
.site-header.is-solid .nav-links > li > button.nav-toplink:hover,
.site-header.nav-solid .nav-links > li > button.nav-toplink:hover { background: var(--offwhite); }

.caret { width: 10px; height: 10px; transition: transform .2s ease; }
li.has-dropdown:hover .caret,
li.has-dropdown.open .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
li.has-dropdown:hover .dropdown,
li.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(4px); }

.dropdown.mega { min-width: 460px; padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dropdown a.drop-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: var(--navy);
}
.dropdown a.drop-link:hover { background: var(--offwhite); }
.drop-link .di { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.drop-link strong { display: block; font-family: var(--font-head); font-size: .92rem; }
.drop-link small { color: var(--gray-500); font-size: .78rem; }

.dropdown.areas-drop { min-width: 320px; }
.dropdown.areas-drop a.drop-link { padding: 10px 12px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  color: var(--white);
}
.site-header.is-solid .nav-phone,
.site-header.nav-solid .nav-phone { color: var(--navy); }
.nav-phone svg { width: 18px; height: 18px; color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  color: var(--white);
}
.site-header.is-solid .nav-toggle, .site-header.nav-solid .nav-toggle { color: var(--navy); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,17,28,.92) 0%, rgba(11,17,28,.55) 32%, rgba(11,17,28,.15) 58%, rgba(11,17,28,.05) 100%),
    linear-gradient(to right, rgba(11,17,28,.55) 0%, rgba(11,17,28,.05) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 5.5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: .4em;
}
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,.9);
  max-width: 640px;
  margin-bottom: 1.8rem;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--white);
}
.badge-pill .stars { color: var(--gold); letter-spacing: 1px; }
.badge-pill .google-g { flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.75);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* Inner page header (non-home) */
.page-header {
  position: relative;
  padding: 190px 0 90px;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,17,28,.88), rgba(11,17,28,.62));
}
.page-header-inner { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--gold); }
.page-header h1 { color: var(--white); max-width: 760px; }
.page-header p.lead { color: rgba(255,255,255,.88); max-width: 620px; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; font-family: var(--font-head); }
.breadcrumb a { color: var(--gold); }

/* ==========================================================================
   Reviews strip
   ========================================================================== */
.reviews-strip { background: var(--navy); padding: 4rem 0; overflow: hidden; }
.reviews-head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 2.2rem; flex-wrap: wrap;
}
.reviews-head h2 { color: var(--white); margin: 0; }
.reviews-agg { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); }
.reviews-agg .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -ms-overflow-style: none;
  scrollbar-width: thin;
}
.review-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px;
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; display: block; }
.review-card p { color: rgba(255,255,255,.92); font-size: .95rem; margin-bottom: 14px; }
.review-meta { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
}
.review-name { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--white); }
.review-date { font-size: .76rem; color: rgba(255,255,255,.55); }
.review-controls { display: flex; gap: 10px; margin-top: 1.6rem; }
.review-controls button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: transparent; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.review-controls button:hover { background: rgba(255,255,255,.15); }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .thumb { height: 190px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 22px; }
.service-card h3 { margin-bottom: .4em; }
.service-card p { font-size: .93rem; margin-bottom: 1.1em; }
.service-card .card-link { font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ==========================================================================
   Before / After gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  user-select: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 2;
  width: 50%;
}
.ba-slider .ba-before-wrap img { width: var(--ba-img-w, 100%); max-width: none; height: 100%; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white); z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ba-handle::after {
  content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312233B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='8 7 3 12 8 17'></polyline><polyline points='16 7 21 12 16 17'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}
.ba-tag { position: absolute; top: 14px; z-index: 4; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: var(--white); }
.ba-tag.before-tag { left: 14px; background: rgba(18,35,59,.75); }
.ba-tag.after-tag { right: 14px; background: var(--accent); }
.ba-caption { text-align: center; margin-top: 14px; font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.ba-hint { text-align: center; font-size: .82rem; color: var(--gray-500); margin-top: 4px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--accent); color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
}
.about-badge .num { font-size: 2.1rem; font-weight: 800; line-height: 1; display: block; }
.about-badge .lbl { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 1.8rem 0; }
.about-stats div { border-left: 3px solid var(--accent); padding-left: 14px; }
.about-stats .num { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.about-stats .lbl { font-size: .82rem; color: var(--gray-500); }
.about-signature { margin-top: 2rem; display: flex; align-items: center; gap: 16px; }
.about-signature img.sig { height: 46px; }
.about-signature .who strong { display: block; font-family: var(--font-head); color: var(--navy); }
.about-signature .who span { font-size: .82rem; color: var(--gray-500); }

/* ==========================================================================
   Service areas
   ========================================================================== */
.areas-primary {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px; margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.areas-primary svg { width: 34px; height: 34px; color: var(--accent); flex-shrink: 0; }
.areas-primary strong { font-family: var(--font-head); color: var(--navy); font-size: 1.1rem; display: block; }
.areas-primary span { color: var(--gray-500); font-size: .9rem; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .2s ease, background .2s ease;
}
.area-chip:hover { border-color: var(--accent); background: var(--cream); }
.area-chip svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.area-chip span { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .92rem; }

/* ==========================================================================
   Quote section / form
   ========================================================================== */
.quote-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}
.quote-info { padding: 52px; color: var(--white); }
.quote-info h2 { color: var(--white); }
.quote-info ul { margin-top: 1.6rem; display: grid; gap: 14px; }
.quote-info li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .95rem; }
.quote-info li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.quote-form { background: var(--white); padding: 52px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,82,30,.15);
}
.form-note { font-size: .78rem; color: var(--gray-500); margin-top: 10px; text-align: center; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,17,28,.68);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white); border-radius: var(--radius); max-width: 560px; width: 100%;
  max-height: 92vh; overflow-y: auto; padding: 40px;
  transform: translateY(16px); transition: transform .2s ease;
  position: relative;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; border: none; background: var(--offwhite); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.modal-box h2 { font-size: 1.5rem; margin-bottom: .2em; }
.modal-box .sub { color: var(--gray-500); margin-bottom: 1.6rem; font-size: .92rem; }
.form-success {
  display: none; text-align: center; padding: 20px 0;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: #2E9E5B; margin: 0 auto 14px; }

/* ==========================================================================
   Generic content blocks (service pages / about / contact)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.split.reverse .media { order: 2; }
.checklist { display: grid; gap: 12px; margin: 1.4rem 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--gray-700); }
.checklist li svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding-top: 10px; }
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: .9rem; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-band .stat { text-align: center; }
.stat-band .num { font-family: var(--font-head); font-size: 2.3rem; font-weight: 800; color: var(--white); display: block; }
.stat-band .lbl { color: rgba(255,255,255,.75); font-size: .86rem; }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy);
}
.faq-q svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 22px; }

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius);
  padding: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 16px; display: flex; gap: 16px; box-shadow: var(--shadow-sm); }
.contact-card svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.contact-card strong { display: block; font-family: var(--font-head); color: var(--navy); margin-bottom: 2px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 260px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-word { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 1rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 17px; height: 17px; color: var(--white); }
.site-footer h4 { color: var(--white); font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul a { font-size: .92rem; color: rgba(255,255,255,.68); transition: color .2s ease; }
.site-footer ul a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: .88rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 0; font-size: .82rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split .media { order: -1 !important; }
  .quote-wrap { grid-template-columns: 1fr; }
  .process-grid, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-right .nav-phone-text, .nav-right .btn-accent { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-right { gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-info, .quote-form { padding: 34px; }
}
@media (max-width: 640px) {
  section { padding: 3.6rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .stat-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero-content { padding-bottom: 2.5rem; padding-top: 120px; }
  .hero { align-items: flex-start; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .brand-word { font-size: 1.05rem; }
  .brand-word span { font-size: .55rem; }
  .brand-icon { width: 40px; height: 40px; }
  .page-header { padding: 150px 0 60px; }
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh;
  background: var(--white); z-index: 900; box-shadow: var(--shadow-lg);
  transition: right .28s ease; overflow-y: auto; padding: 26px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-drawer ul { display: grid; gap: 4px; }
.mobile-drawer a, .mobile-drawer button.m-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; background: none; border: none;
  padding: 14px 6px; font-family: var(--font-head); font-weight: 600; color: var(--navy);
  font-size: 1rem; border-bottom: 1px solid var(--border);
}
.mobile-sub { padding-left: 14px; display: none; }
.mobile-sub.open { display: block; }
.mobile-sub a { border-bottom: none; font-weight: 500; font-size: .92rem; padding: 10px 6px; color: var(--gray-700); }
.mobile-drawer .btn { margin-top: 20px; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(11,17,28,.5); z-index: 890;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }
