/* 321 Pro Wash — site stylesheet */
:root {
  --navy:       #1b2d4f;
  --navy-deep:  #111d33;
  --blue:       #2563a8;
  --blue-mid:   #3a7cc7;
  --blue-light: #deeaf8;
  --accent:     #e07b28;
  --accent-dk:  #c46a1a;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --text:       #1b2d4f;
  --muted:      #6b7f99;
  --border:     #d0dff0;
  --max:        1180px;
  --shadow:     0 8px 32px rgba(27,45,79,.10);
  --shadow-lg:  0 24px 60px rgba(27,45,79,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Outfit', system-ui, -apple-system, sans-serif; font-weight: 400; background: var(--white); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Barlow Condensed', system-ui, sans-serif; line-height: 1.1; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* NAV */
.top { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; gap: 16px; }
.nav-logo { display: inline-flex; }
.nav-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-link { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .15s; }
.nav-link:hover { color: var(--navy); }
.nav-phone { font-weight: 600; font-size: 1rem; color: var(--navy); white-space: nowrap; }
.nav-phone small { display: block; font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 22px; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .15s ease; border: 1.5px solid transparent; gap: 8px; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dk); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-full { width: 100%; padding: 15px; font-size: 1rem; }

/* HERO */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 65%, #1e3563 100%); color: #fff; min-height: 86vh; display: flex; align-items: center; padding: 32px 0; }
.hero-overlay { position: absolute; inset: 0; background:
    radial-gradient(circle at 12% 18%, rgba(91,163,232,.18) 0%, transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(224,123,40,.10) 0%, transparent 50%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding: 48px 0; display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.88); padding: 6px 14px; border-radius: 999px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin-bottom: 22px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(74,222,128,.18); }
.hero h1 { font-weight: 800; font-size: clamp(2.4rem, 6.4vw, 5.2rem); letter-spacing: -0.01em; margin-bottom: 20px; }
.hero h1 em { color: #5ba3e8; font-style: normal; }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 30px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 500; }
.trust-icon { width: 18px; height: 18px; fill: #4ade80; flex-shrink: 0; }
.hero-image { border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.45); height: clamp(440px, 41vw, 520px); transform: translateY(-24px); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* STATS STRIP */
.stats-strip { background: var(--blue); padding: 22px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat { padding: 8px 12px; border-right: 1px solid rgba(255,255,255,.22); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.78); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

/* SECTIONS */
section { padding: 84px 0; }
.section-head { max-width: 720px; margin-bottom: 24px; }
.section-label { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.section-lead { font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.7; }

/* SERVICES */
.services-bg { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #b8d4f0; }
.service-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { width: 26px; height: 26px; fill: var(--blue); }
.service-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.01em; }
.service-card p { font-size: .93rem; color: var(--muted); line-height: 1.65; flex: 1; }
.card-link { display: inline-block; margin-top: 14px; font-size: .88rem; font-weight: 600; color: var(--blue); letter-spacing: 0.01em; }
.card-link:hover { color: var(--navy); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 22px; margin-top: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-num { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: .92rem; color: var(--muted); line-height: 1.65; }

/* GALLERY */
.ba-bg { background: var(--navy); color: #fff; }
.ba-bg .section-title { color: #fff; }
.ba-bg .section-lead { color: rgba(255,255,255,.68); }
.ba-title { color: #fff; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.ba-card { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.ba-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ba-card:hover img { transform: scale(1.04); }
.ba-label { position: absolute; bottom: 12px; left: 12px; background: rgba(27,45,79,.92); color: var(--white); font-size: .75rem; font-weight: 600; padding: 5px 12px; border-radius: 6px; letter-spacing: .06em; text-transform: uppercase; }
.ba-swap-note { text-align: center; color: rgba(255,255,255,.5); font-size: .88rem; margin-top: 22px; font-style: italic; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-card { background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; border-radius: 18px; padding: 36px 32px; aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.about-card::before { content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px; border-radius:50%; background: rgba(91,163,232,.14); pointer-events: none; }
.about-card::after { content:''; position:absolute; bottom:-80px; left:-40px; width:220px; height:220px; border-radius:50%; background: rgba(91,163,232,.08); pointer-events: none; }
.about-card > * { position: relative; z-index: 1; }
.about-card-logo { margin-bottom: 6px; }
.about-card-quote { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 600; line-height: 1.25; color: #fff; }
.about-card-quote cite { display: block; font-family: 'Outfit', sans-serif; font-style: normal; font-size: .92rem; color: #8ec0ed; font-weight: 500; margin-top: 14px; }
.about-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.85); padding: 5px 12px; border-radius: 999px; font-size: .78rem; letter-spacing: .04em; font-weight: 500; }
.about-story { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.highlight { background: var(--blue-light); border-radius: 10px; padding: 14px 16px; }
.highlight strong { display: block; color: var(--navy); font-weight: 600; font-size: .98rem; margin-bottom: 2px; }
.highlight span { font-size: .85rem; color: var(--muted); }

/* AREAS */
.areas-bg { background: var(--off-white); }
.areas-two { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; margin-top: 8px; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px; font-size: .9rem; color: var(--navy); font-weight: 500; transition: all .15s; }
a.pill:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.areas-note { background: var(--blue-light); border-radius: 14px; padding: 18px 22px; margin-top: 24px; }
.areas-note p { font-size: .92rem; color: var(--blue); font-weight: 500; }
/* Local Pages Card Grid */
.local-pages { margin-top: 56px; padding: 36px 32px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); }
.local-pages-head { margin-bottom: 24px; max-width: 720px; }
.local-pages-head .section-label { margin-bottom: 8px; }
.local-pages-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 700; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.2; text-transform: none; }
.local-pages-lead { font-size: 1rem; color: var(--muted); line-height: 1.65; }
.local-pages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0; }
.local-pages-grid li { list-style: none; }
.local-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 16px 18px; background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; color: var(--navy); text-decoration: none; transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; height: 100%; }
.local-card:hover { background: var(--white); border-color: var(--blue-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.local-card:hover .local-card-arrow { transform: translateX(4px); color: var(--accent); }
.local-card:hover .local-card-icon { background: var(--blue); color: var(--white); }
.local-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .18s ease, color .18s ease; }
.local-card-icon svg { width: 22px; height: 22px; display: block; }
.local-card-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.local-card-title { font-size: .98rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.local-card-desc { font-size: .82rem; color: var(--muted); line-height: 1.45; font-weight: 400; }
.local-card-arrow { font-size: 1.1rem; color: var(--blue); font-weight: 600; transition: transform .18s ease, color .18s ease; flex-shrink: 0; }
@media (max-width: 720px) {
  .local-pages { padding: 28px 20px; margin-top: 40px; border-radius: 14px; }
  .local-pages-grid { grid-template-columns: 1fr; gap: 10px; }
  .local-card { padding: 14px 16px; gap: 12px; grid-template-columns: 40px 1fr auto; }
  .local-card-icon { width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .local-card, .local-card-arrow, .local-card-icon { transition: none; }
  .local-card:hover { transform: none; }
  .local-card:hover .local-card-arrow { transform: none; }
}
.sub-title { font-size: 1.55rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; margin-top: 4px; }
.jobs-list { display: grid; gap: 10px; }
.jobs-list li { padding: 14px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; font-size: .94rem; color: var(--text); }

/* QUOTE FORM */
.quote-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; margin-top: 24px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 32px; box-shadow: var(--shadow); }
.form-note { background: var(--blue-light); border: 1px solid #b8d4f0; border-radius: 10px; padding: 12px 14px; font-size: .9rem; color: var(--blue); font-weight: 500; margin-bottom: 22px; }
form { display: grid; gap: 14px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: .88rem; font-weight: 600; display: block; margin-bottom: 6px; color: var(--navy); }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: .96rem; background: var(--off-white); color: var(--text); transition: border-color .15s, background .15s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(37,99,168,.12); }
textarea { min-height: 120px; resize: vertical; }
.form-fineprint { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 4px; }
.contact-info { display: grid; gap: 16px; }
.contact-block h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.c-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 18px; height: 18px; fill: var(--blue); }
.c-text .c-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.c-text .c-val { font-size: 1rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
.c-text .c-val a { color: var(--navy); }
.c-text .c-val a:hover { color: var(--blue); }
.card-cta { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--blue-light); border: 1px solid #b8d4f0; border-radius: 12px; color: var(--navy); font-weight: 600; font-size: .95rem; }
.card-cta:hover { background: #c8dbf0; }
.card-cta-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-btn { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #fff4ec; border: 1px solid #f0cba8; border-radius: 12px; transition: background .15s; }
.review-btn:hover { background: #ffe8d0; }
.r-icon { width: 36px; height: 36px; background: #c8621a; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.r-icon svg { width: 17px; height: 17px; fill: white; }
.r-text .r-label { font-size: 10px; color: #7a3a10; text-transform: uppercase; letter-spacing: .1em; }
.r-text .r-val { font-size: .95rem; font-weight: 600; color: #7a3a10; }
.pro-tip { background: var(--blue-light); border-radius: 14px; padding: 18px 22px; }
.pro-tip p { font-size: .92rem; color: var(--blue); font-weight: 500; line-height: 1.7; }

/* FOOTER */
footer { background: var(--navy); position: relative; overflow: hidden; color: #fff; }
footer::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; border-radius:50%; background:rgba(37,99,168,0.22); pointer-events:none; }
footer::after { content:''; position:absolute; bottom:-80px; left:-40px; width:260px; height:260px; border-radius:50%; background:rgba(37,99,168,0.14); pointer-events:none; }
.footer-bubble-1 { position:absolute; bottom:40px; right:200px; width:140px; height:140px; border-radius:50%; background:rgba(37,99,168,0.08); pointer-events:none; }
.footer-bubble-2 { position:absolute; top:30px; left:40%; width:100px; height:100px; border-radius:50%; background:rgba(37,99,168,0.06); pointer-events:none; }
.foot-main { display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.1fr; gap: 36px; padding: 52px 0 32px; position: relative; z-index: 1; }
.foot-logo { margin-bottom: 14px; }
.foot-brand-tagline { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 360px; }
.foot-col h4 { font-family: 'Outfit', sans-serif; font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 14px; }
.foot-col a { display: block; color: rgba(255,255,255,.68); font-size: .92rem; margin-bottom: 9px; transition: color .15s; }
.foot-col a:hover { color: var(--white); }
.foot-col p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.foot-hours { margin-top: 10px; }
.foot-card { margin-top: 10px; font-weight: 600; color: #5ba3e8 !important; }
.foot-cta { margin-top: 14px; width: 100%; justify-content: center; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.42); position: relative; z-index: 1; }

/* LANDING PAGE STYLES */
.breadcrumbs { padding: 16px 0 0; font-size: .85rem; color: var(--muted); }
.breadcrumbs a { color: var(--blue); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; color: var(--border); }
.page-hero { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; padding: 56px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; top:-50px; right:-50px; width:280px; height:280px; border-radius:50%; background:rgba(91,163,232,0.12); pointer-events:none; }
.page-hero .breadcrumbs { color: rgba(255,255,255,.55); }
.page-hero .breadcrumbs a { color: #8ec0ed; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; margin: 18px 0 16px; max-width: 880px; letter-spacing: -0.01em; }
.page-hero p.lead { font-size: 1.1rem; max-width: 720px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 26px; }
.page-hero .hero-actions { margin: 0; }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.intro-grid .lead-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.intro-grid .lead-img img { width: 100%; height: 100%; object-fit: cover; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.benefit-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.step { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.step h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.step p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.local-section { background: var(--off-white); }
.neighborhoods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.faq { margin-top: 24px; }
.faq details { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 0; margin-bottom: 10px; overflow: hidden; }
.faq details[open] { box-shadow: var(--shadow); border-color: #b8d4f0; }
.faq summary { padding: 18px 22px; font-weight: 600; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1rem; }
.faq summary::after { content: '+'; font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; color: var(--blue); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq summary::-webkit-details-marker { display: none; }
.faq .ans { padding: 0 22px 20px; font-size: .96rem; color: var(--muted); line-height: 1.7; }
.faq .ans p { margin-bottom: 8px; }

.cta-band { background: var(--navy); color: #fff; padding: 56px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 12px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 24px; }
.cta-band .hero-actions { justify-content: center; }

.related-services { background: var(--off-white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; transition: all .15s; }
.related-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.related-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; font-weight: 700; }
.related-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.related-card .related-link { color: var(--blue); font-weight: 600; font-size: .88rem; margin-top: 8px; display: inline-block; }
.related-card:hover .related-link { color: var(--navy); }

/* Icon size guard
   Prevent inline SVG icons from rendering at oversized natural dimensions if a browser/cache
   hiccup drops one of the more specific rules. Logo SVGs are intentionally excluded. */
.service-icon svg,
.trust-icon,
.local-card-icon svg,
.c-icon svg,
.r-icon svg,
.card-cta-icon svg {
  display: block;
  flex: 0 0 auto;
  max-width: 26px;
  max-height: 26px;
}
.trust-icon { width: 18px; height: 18px; }
.local-card-icon svg { width: 22px; height: 22px; }
.c-icon svg,
.r-icon svg,
.card-cta-icon svg { width: 18px; height: 18px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .foot-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-main > div:last-child { grid-column: span 3; }
}
@media (max-width: 960px) {
  .hero-content, .why-grid, .about-grid, .quote-grid, .areas-two, .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { order: -1; height: auto; aspect-ratio: 16/10; transform: none; }
  .services-grid, .ba-grid, .benefits, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat { padding: 8px; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .foot-main > div:first-child, .foot-main > div:last-child { grid-column: span 2; }
}
@media (max-width: 720px) {
  section { padding: 56px 0; }
  .services-grid, .ba-grid, .benefits, .related-grid, .process, .about-highlights { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .nav-right { gap: 10px; }
  .nav-link { display: none; }
  .nav-right .btn { padding: 9px 16px; font-size: .9rem; }
  .nav-phone { font-size: .94rem; }
  .form-card { padding: 24px; }
  .foot-main { grid-template-columns: 1fr; gap: 28px; }
  .foot-main > div { grid-column: span 1 !important; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
