/* ============================================================
   Coastal Pro Exterior Washing — Base design system
   Shared structure + components. Two themes layer on top:
   .theme-luxury  (Luxury Coastal)   .theme-commercial (Aggressive Commercial)
   Brand: navy #0A1F3C · controlled cyan #00B4D8 · white. No neon flood.
   ============================================================ */

:root {
  --navy: #0A1F3C;
  --navy-900: #061528;
  --navy-800: #0c2547;
  --navy-700: #16386a;
  --cyan: #00B4D8;
  --cyan-600: #0E7FA8;
  --cyan-300: #5BD3F0;
  --cyan-050: #e7f7fc;
  --ink: #0A1F3C;
  --slate: #4a5a72;
  --slate-400: #8095ad;
  --line: #e3e9f0;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f3f7fb;

  /* themed (set per theme) */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --section-py: clamp(64px, 8vw, 120px);
  --maxw: 1200px;
  --shadow: 0 18px 50px -28px rgba(10,31,60,0.35);
  --shadow-sm: 0 6px 22px -14px rgba(10,31,60,0.4);
  --eyebrow-spacing: 0.16em;
  --eyebrow-weight: 700;
  --headline-weight: 700;
  --headline-spacing: -0.02em;
  --btn-radius: 100px;
  --btn-weight: 700;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: var(--headline-weight); letter-spacing: var(--headline-spacing); line-height: 1.08; margin: 0; color: var(--ink); text-wrap: balance; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-spacing);
  font-weight: var(--eyebrow-weight);
  font-size: 13px;
  color: var(--cyan-600);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--cyan); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 18px 0 16px; }
.section-head .lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--slate); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: var(--btn-weight);
  font-size: 16px; line-height: 1; cursor: pointer;
  padding: 17px 28px; border-radius: var(--btn-radius);
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 54px; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-quote { background: var(--cyan); color: #042231; box-shadow: 0 14px 30px -12px rgba(0,180,216,.6); }
.btn-quote:hover { background: var(--cyan-300); transform: translateY(-2px); }
.btn-call { background: transparent; color: var(--ink); border-color: rgba(10,31,60,.25); }
.btn-call:hover { border-color: var(--navy); background: rgba(10,31,60,.04); }
.btn-lg { font-size: 17px; padding: 20px 34px; min-height: 60px; }
.btn-block { width: 100%; }
.on-dark .btn-call, .btn-call.on-dark { color: #fff; border-color: rgba(255,255,255,.35); }
.on-dark .btn-call:hover, .btn-call.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- direction toggle (presentation chrome) ---------- */
.dirbar {
  position: sticky; top: 0; z-index: 80;
  background: #061528; color: #cfe0f0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-body); font-size: 13.5px;
}
.dirbar .wrap { display: flex; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.dirbar b { color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: .01em; }
.dirbar .seg { display: inline-flex; background: rgba(255,255,255,.07); border-radius: 100px; padding: 3px; gap: 2px; }
.dirbar .seg button {
  font-family: var(--font-display); font-weight: 600; font-size: 13px; cursor: pointer;
  border: 0; background: transparent; color: #9fb6cf; padding: 7px 15px; border-radius: 100px; transition: .18s;
}
.dirbar .seg button[aria-pressed="true"] { background: var(--cyan); color: #042231; }
.dirbar .note { color: #7e95b0; margin-left: auto; }
.dirbar a.note { text-decoration: underline; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 70; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.dirbar + .site-header { top: 0; }
.site-header .wrap { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-wave { height: 38px; width: auto; flex: none; display: block; }
.brand .mark { width: 46px; height: 37px; flex: none; }
.brand .mark svg { width: 100%; height: 100%; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark .n1 { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .01em; color: var(--ink); }
.brand .wordmark .n2 { font-family: var(--font-display); font-weight: 600; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan-600); margin-top: 3px; }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); opacity: .82; transition: .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; color: var(--cyan-600); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 20px; min-height: 46px; font-size: 14.5px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.header-phone small { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-400); font-weight: 700; }
.header-phone b { font-family: var(--font-display); font-size: 17px; color: var(--ink); font-weight: 700; }
.hamb { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 { font-size: clamp(38px, 6vw, 70px); margin: 20px 0 22px; }
.hero h1 .accent { color: var(--cyan-600); }
.hero .sub { font-size: clamp(18px, 1.7vw, 22px); color: var(--slate); max-width: 33ch; }
.hero-cta { display: flex; gap: 14px; margin: 32px 0 22px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14.5px; color: var(--slate); }
.hero-trust .stars { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.stars .s { color: #f0a500; letter-spacing: 1px; }
.hero-trust .pill { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ink); }
.hero-trust .pill svg { width: 17px; height: 17px; color: var(--cyan-600); }
.hero-media { position: relative; }

/* ---------- photo placeholder ---------- */
.ph { position: relative; overflow: hidden; background:
    radial-gradient(120% 90% at 70% 10%, #1b4a86 0%, #0e2c54 45%, #0a1f3c 100%);
  color: #cfe0f2; display: flex; align-items: center; justify-content: center; text-align: center;
  border-radius: var(--radius); isolation: isolate;
}
.ph::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    radial-gradient(circle at 18% 80%, rgba(0,180,216,.35), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(91,211,240,.22), transparent 45%);
}
.ph .ph-cap { padding: 22px; max-width: 80%; }
.ph .ph-cap .ic { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--cyan-300); opacity: .9; }
.ph .ph-cap .t { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #eaf4fb; }
.ph .ph-cap .d { font-size: 13px; opacity: .72; margin-top: 5px; line-height: 1.45; }
.flag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(4,21,35,.82); color: #ffd9a8; border: 1px solid rgba(255,180,90,.4);
  font-family: var(--font-body); font-weight: 800; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 6px; backdrop-filter: blur(4px);
}
.hero-media .ph { aspect-ratio: 4/5; min-height: 380px; box-shadow: var(--shadow); }
.hero-badge {
  position: absolute; bottom: 18px; left: -18px; z-index: 4; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 250px;
}
.hero-badge .big { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--cyan-600); line-height: 1; }
.hero-badge .lbl { font-size: 12.5px; color: var(--slate); font-weight: 600; line-height: 1.25; }

/* ---------- trust / affiliations band ---------- */
.trustband { background: var(--navy); color: #dce7f3; }
.trustband .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 30px 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 13px; }
.trust-item svg { width: 26px; height: 26px; color: var(--cyan-300); flex: none; margin-top: 2px; }
.trust-item .ti-t { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; line-height: 1.15; }
.trust-item .ti-d { font-size: 13px; color: #9fb6cf; margin-top: 3px; }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card .ph { border-radius: 0; aspect-ratio: 16/10; }
.service-card .sc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card h3 { font-size: 22px; }
.service-card .sc-body p { color: var(--slate); font-size: 15.5px; }
.service-card .sc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.service-card .start { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); }
.service-card .start span { color: var(--slate-400); font-weight: 600; font-size: 12px; display: block; text-transform: uppercase; letter-spacing: .08em; }
.service-card .arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--cyan-600); }
.tag-upsell { position: absolute; top: 12px; right: 12px; z-index: 3; background: #fff; color: var(--cyan-600); font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; padding: 6px 11px; border-radius: 100px; box-shadow: var(--shadow-sm); }

/* ---------- education split (soft wash vs blasting) ---------- */
.edu { background: var(--bg-soft); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.edu-media .ph { aspect-ratio: 5/4; min-height: 320px; }
.compare { display: grid; gap: 14px; margin-top: 26px; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.compare .col { border-radius: var(--radius-sm); padding: 16px 18px; }
.compare .col.bad { background: #fff; border: 1px solid var(--line); }
.compare .col.good { background: var(--cyan-050); border: 1px solid rgba(0,180,216,.3); }
.compare .col .h { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.compare .col.bad .h { color: #b4452f; }
.compare .col.good .h { color: var(--cyan-600); }
.compare .col p { font-size: 14.5px; color: var(--slate); }

/* ---------- founders / why us ---------- */
.founders { }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.founder-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founder-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.founder-card .pic { aspect-ratio: 4/5; overflow: hidden; background: var(--navy); }
.founder-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.founder-card .pic .ph { border-radius: 0; height: 100%; }
.founder-card .fc-cap { padding: 14px 16px; }
.founder-card .fc-cap .nm { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.founder-card .fc-cap .rl { font-size: 12.5px; color: var(--cyan-600); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.founder-card .fc-cap .yr { font-size: 13.5px; color: var(--slate); margin-top: 7px; }
.values { display: grid; gap: 14px; margin-top: 26px; }
.value { display: flex; gap: 13px; align-items: flex-start; }
.value svg { width: 22px; height: 22px; color: var(--cyan-600); flex: none; margin-top: 3px; }
.value b { font-family: var(--font-display); }
.value p { font-size: 15px; color: var(--slate); }

/* ---------- before/after gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; user-select: none;
  box-shadow: var(--shadow-sm); cursor: ew-resize; touch-action: none;
}
.ba .ph { border-radius: 0; position: absolute; inset: 0; height: 100%; }
.ba .after { z-index: 1; }
.ba .before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba .before .ph { background: radial-gradient(120% 90% at 30% 20%, #5c6b50 0%, #3a4436 50%, #2a3128 100%); }
.ba .lab { position: absolute; bottom: 12px; z-index: 4; font-family: var(--font-display); font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; background: rgba(4,21,35,.7); color: #fff; backdrop-filter: blur(3px); }
.ba .lab.l { left: 12px; } .ba .lab.r { right: 12px; }
.ba .handle { position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; z-index: 5; left: 50%; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.ba .handle::after { content: "⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--cyan-600); display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow-sm); }

/* ---------- QuoteIQ placeholder surface ---------- */
.quote-section { background: var(--navy); color: #e7f0fa; position: relative; overflow: hidden; }
.quote-section::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(70% 60% at 85% 0%, rgba(0,180,216,.22), transparent 60%); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: center; position: relative; }
.quote-copy h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.quote-copy .lead { color: #b9cce0; font-size: 19px; margin: 16px 0 24px; }
.quote-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.quote-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: #d4e2f0; font-size: 15.5px; }
.quote-list svg { width: 22px; height: 22px; color: var(--cyan-300); flex: none; margin-top: 2px; }
.quote-reassure { font-size: 13.5px; color: #8fa8c4; border-left: 2px solid var(--cyan); padding-left: 14px; }

/* ---------- Home instant-quote CTA card (links to full tool) ---------- */
.quote-cta-card { background: linear-gradient(180deg, #ffffff, #f3f7fb); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: clamp(30px, 3.4vw, 44px); box-shadow: 0 30px 70px -34px rgba(0,0,0,.55); text-align: left; }
.quote-cta-card .qcc-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan-600); background: var(--cyan-050); border: 1px solid rgba(0,180,216,.28); padding: 7px 13px; border-radius: 100px; }
.quote-cta-card .qcc-badge svg { width: 15px; height: 15px; }
.quote-cta-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: clamp(24px, 2.6vw, 32px); line-height: 1.12; margin: 18px 0 12px; }
.quote-cta-card p { color: var(--slate); font-size: 16px; line-height: 1.6; margin-bottom: 26px; max-width: 42ch; }
.quote-cta-card .qcc-btn { width: 100%; justify-content: center; font-size: 18px; }
.quote-cta-card .qcc-foot { display: block; margin-top: 14px; text-align: center; font-size: 13px; color: var(--slate); }
.iq-frame {
  background: linear-gradient(180deg, #ffffff, #f3f7fb); border-radius: var(--radius);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6); overflow: hidden; color: var(--ink); position: relative;
}
.iq-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.iq-head .dot { width: 10px; height: 10px; border-radius: 50%; background: #d9e2ec; }
.iq-head .ttl { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-left: 4px; }
.iq-head .live { margin-left: auto; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #b4452f; background: #fbe9e4; padding: 4px 9px; border-radius: 100px; }
.iq-body { padding: 24px; display: grid; gap: 14px; }
.iq-step { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-600); }
.iq-field { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; gap: 12px; color: var(--slate); font-size: 15px; background: #fff; }
.iq-field svg { width: 18px; height: 18px; color: var(--slate-400); flex: none; }
.iq-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.iq-chip { font-size: 13px; font-weight: 600; padding: 8px 13px; border-radius: 100px; border: 1.5px solid var(--line); color: var(--slate); }
.iq-chip.on { background: var(--cyan-050); border-color: var(--cyan); color: var(--cyan-600); }
.iq-quote-out { background: var(--navy); color: #fff; border-radius: var(--radius-sm); padding: 18px; display: flex; align-items: center; justify-content: space-between; }
.iq-quote-out .lbl { font-size: 12px; color: #9fb6cf; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.iq-quote-out .amt { font-family: var(--font-display); font-weight: 800; font-size: 30px; }
.iq-quote-out .amt small { font-size: 14px; color: #9fb6cf; font-weight: 600; }
.iq-cover { position: absolute; inset: 0; z-index: 6; background: rgba(7,21,40,.46); backdrop-filter: blur(1.5px); display: flex; align-items: center; justify-content: center; }
.iq-cover .card { background: #fff; border-radius: 12px; padding: 16px 20px; max-width: 320px; text-align: center; box-shadow: var(--shadow); }
.iq-cover .card .t { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--ink); }
.iq-cover .card .d { font-size: 12.5px; color: var(--slate); margin-top: 5px; line-height: 1.45; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; display: flex; flex-direction: column; gap: 14px; }
.review .stars { color: #f0a500; font-size: 15px; letter-spacing: 1px; }
.review p { font-size: 15.5px; color: var(--ink); }
.review .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.review .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.review .who .nm { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.review .who .ct { font-size: 12.5px; color: var(--slate-400); }
.reviews-note { margin-top: 26px; font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 10px; justify-content: center; text-align: center; }
.reviews-note svg { width: 18px; height: 18px; color: var(--cyan-600); }

/* ---------- service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.city-pill { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; padding: 10px 16px; border-radius: 100px; border: 1px solid var(--line); background: #fff; display: inline-flex; align-items: center; gap: 8px; }
.city-pill svg { width: 14px; height: 14px; color: var(--cyan-600); }
.city-pill.soon { color: var(--slate-400); border-style: dashed; }
.area-media .ph { aspect-ratio: 4/3; min-height: 300px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-display); font-weight: 700; font-size: 17.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 26px; height: 26px; flex: none; position: relative; }
.faq-item summary .pm::before, .faq-item summary .pm::after { content: ""; position: absolute; background: var(--cyan-600); border-radius: 2px; top: 50%; left: 50%; transition: .2s; }
.faq-item summary .pm::before { width: 14px; height: 2.5px; transform: translate(-50%,-50%); }
.faq-item summary .pm::after { width: 2.5px; height: 14px; transform: translate(-50%,-50%); }
.faq-item[open] summary .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .ans { padding: 0 22px 22px; color: var(--slate); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-800) 100%); color: #fff; border-radius: var(--radius); padding: clamp(36px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.ctaband::before { content: ""; position: absolute; inset: 0; opacity: .4; background: radial-gradient(60% 80% at 50% 120%, rgba(0,180,216,.4), transparent 60%); }
.ctaband h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); position: relative; }
.ctaband p { color: #b9cce0; font-size: 18px; margin: 14px auto 28px; max-width: 540px; position: relative; }
.ctaband .hero-cta { justify-content: center; position: relative; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #aebfd2; font-size: 14.5px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding: clamp(48px,6vw,72px) 0 40px; }
.footer-brand .brand .wordmark .n1 { color: #fff; }
.footer-logo { width: 232px; max-width: 100%; height: auto; display: block; }
.footer-brand p { margin-top: 16px; max-width: 32ch; color: #8fa3bd; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; color: #aebfd2; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7e93af; }
.footer-flag { background: rgba(255,180,90,.1); border: 1px solid rgba(255,180,90,.25); color: #ffce95; border-radius: 8px; padding: 12px 16px; font-size: 12.5px; margin-top: 18px; }

/* ---------- sticky mobile bar ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(10,31,60,.3); }
.mobilebar .btn { flex: 1; min-height: 52px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .edu-grid, .founders-grid, .quote-grid, .area-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .ph { aspect-ratio: 16/10; min-height: 0; }
  .trustband .wrap { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .services-grid, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .compare-row { grid-template-columns: 1fr; }
  .header-cta .btn-call, .header-phone { display: none; }
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
  .dirbar .note { display: none; }
  .hero-badge { left: 0; }
}

/* ============================================================
   Revision additions — live quote embed, slim area strip,
   compact family teaser, owner-promise strip, equipment line.
   ============================================================ */

/* ---------- live QuoteIQ embed ---------- */
.quote-embed { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.45); position: relative; }
.quote-embed iframe { display: block; width: 100%; min-height: 840px; border: 0; background: #fff; }
@media (max-width: 640px) { .quote-embed iframe { min-height: 1180px; } }

/* ---------- clean reserved frames (no labels) ---------- */
.ph.is-reserved { aspect-ratio: 4/3; }
.ph.is-reserved::before { content: ""; position: absolute; inset: 0; opacity: .14;
  background-image: linear-gradient(135deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.08) 75%, transparent 75%);
  background-size: 22px 22px; }

/* ---------- slim service-area strip ---------- */
.area-strip { padding: clamp(34px, 4.5vw, 56px) 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.theme-commercial .area-strip { background: var(--navy-900); border-color: rgba(255,255,255,.1); }
.area-strip-inner { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.area-line { font-size: clamp(18px, 1.8vw, 22px); color: var(--ink); margin: 12px 0 16px; max-width: 50ch; }
.area-line strong { color: var(--cyan-600); }
.theme-commercial .area-strip .area-line { color: #eaf2fb; }
.theme-commercial .area-strip .area-line strong { color: var(--cyan-300); }
.theme-commercial .area-strip .eyebrow { color: var(--cyan-300); }
.theme-commercial .area-strip .eyebrow::before { background: var(--cyan-300); }
.area-strip-map .ph { aspect-ratio: 16/8; min-height: 150px; }
.theme-commercial .area-strip .city-pill { background: var(--navy-800); border-color: rgba(255,255,255,.14); color: #dbe7f3; }

/* ---------- custom Southeast Florida service-area map ---------- */
.area-strip-map {
  --map-water: #ddecf8;
  --map-land: #f4fbff;
  --map-coast-tint: #d2eff8;
  --map-bay: #b6dfee;
  --map-land-stroke: #d3e0ec;
  --map-glades: #e0efe1;
  --map-glades-stroke: #cbe4cd;
  --map-coast: #37bfe0;
  --map-dot: #0E7FA8;
  --map-dot-ring: rgba(0,180,216,.22);
  --map-label: #13314f;
  --map-wave: rgba(0,180,216,.32);
  --map-cover: rgba(0,180,216,.20);
}
.theme-commercial .area-strip-map {
  --map-water: #06121f;
  --map-land: #0e2a50;
  --map-coast-tint: #123a63;
  --map-bay: #08263f;
  --map-land-stroke: rgba(255,255,255,.10);
  --map-glades: #0c2c26;
  --map-glades-stroke: rgba(255,255,255,.07);
  --map-coast: #5BD3F0;
  --map-dot: #7fe0f6;
  --map-dot-ring: rgba(91,211,240,.30);
  --map-label: #eaf2fb;
  --map-wave: rgba(91,211,240,.22);
  --map-cover: rgba(0,180,216,.26);
}
.cp-map { width: 100%; height: auto; display: block; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }
.theme-commercial .cp-map { border-color: rgba(255,255,255,.1); }
.cp-label { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; fill: var(--map-label); paint-order: stroke; stroke: var(--map-water); stroke-width: 3.5px; stroke-linejoin: round; }
.cp-ring { fill: var(--map-dot-ring); transition: r .18s ease, fill .18s ease; }
.cp-core { fill: var(--map-dot); stroke: var(--map-water); stroke-width: 1.6; transition: r .18s ease, fill .18s ease; }
.cp-pt--primary .cp-label { font-weight: 700; font-size: 14.5px; }
.cp-pt { cursor: default; }
.cp-pt.is-active .cp-ring { fill: var(--map-coast); r: 15; opacity: .35; }
.cp-pt.is-active .cp-core { fill: var(--map-coast); r: 6.5; }
.cp-pt.is-active .cp-label { fill: var(--map-coast); font-weight: 800; }
.theme-commercial .cp-pt.is-active .cp-label { fill: #bff0fb; }
.city-pill { cursor: default; transition: border-color .15s, background .15s, color .15s; }
.city-pill.is-active { border-color: var(--cyan); color: var(--cyan-600); background: var(--cyan-050); }
.theme-commercial .city-pill.is-active { background: rgba(0,180,216,.14); border-color: var(--cyan-300); color: var(--cyan-300); }
@media (prefers-reduced-motion: no-preference) {
  .cp-pt--primary .cp-ring { animation: cpPulse 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
}
@keyframes cpPulse { 0%,100% { opacity: .9; } 50% { opacity: .45; } }
@media (max-width: 860px) { .area-strip-inner { grid-template-columns: 1fr; } .area-strip-map { max-width: 480px; } }

/* ---------- compact family teaser ---------- */
.family-teaser-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.ft-photos { display: flex; gap: 14px; flex: none; }
.ft-pic { width: 138px; aspect-ratio: 4/5; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--navy); }
.ft-pic img { width: 100%; height: 100%; object-fit: cover; }
.ft-pic .ph { height: 100%; border-radius: 0; }
.ft-copy h2 { font-size: clamp(24px, 3vw, 36px); margin: 12px 0 12px; }
.ft-copy p { color: var(--slate); max-width: 54ch; margin-bottom: 22px; }
.theme-commercial .family-teaser { background: var(--navy-900); }
.theme-commercial .family-teaser h2 { color: #fff; }
.theme-commercial .family-teaser p { color: #aebfd2; }
.theme-commercial .family-teaser .eyebrow { color: var(--cyan-300); }
.theme-commercial .family-teaser .eyebrow::before { background: var(--cyan-300); }
.theme-commercial .family-teaser .btn-call { color: #fff; border-color: rgba(255,255,255,.4); }
@media (max-width: 720px) { .family-teaser-inner { grid-template-columns: 1fr; } .ft-pic { width: 120px; } }

/* ---------- owner-promise strip ---------- */
.promise-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.promise { display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; background: #fff; }
.theme-commercial .promise { background: var(--navy-800); border-color: rgba(255,255,255,.1); }
.promise svg { width: 22px; height: 22px; color: var(--cyan-600); flex: none; margin-top: 2px; }
.theme-commercial .promise svg { color: var(--cyan-300); }
.promise b { font-family: var(--font-display); font-size: 15px; color: var(--ink); display: block; }
.theme-commercial .promise b { color: #fff; }
.promise span { font-size: 13.5px; color: var(--slate); display: block; margin-top: 3px; }
.theme-commercial .promise span { color: #aebfd2; }
@media (max-width: 860px) { .promise-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .promise-strip { grid-template-columns: 1fr; } }

/* ---------- soft-wash equipment trust line + merged inclusions ---------- */
.equip-line { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--cyan-600); background: var(--cyan-050); border: 1px solid rgba(0,180,216,.3); padding: 10px 16px; border-radius: 100px; margin-top: 22px; }
.theme-commercial .equip-line { color: var(--cyan-300); background: rgba(0,180,216,.12); border-color: rgba(0,180,216,.4); }
.equip-line svg { width: 18px; height: 18px; flex: none; }
.equip-cap { font-size: 14px; color: var(--slate); margin-top: 18px; max-width: 72ch; line-height: 1.6; }
.theme-commercial .equip-cap { color: #aebfd2; }
.incl-sec { margin-top: clamp(30px, 4vw, 46px); padding-top: clamp(28px, 4vw, 40px); border-top: 1px solid var(--line); }
.theme-commercial .incl-sec { border-color: rgba(255,255,255,.12); }
.incl-sec .incl-head { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--cyan-600); margin-bottom: 18px; }
.theme-commercial .incl-sec .incl-head { color: var(--cyan-300); }

/* ---------- review-only image-frame captions (strip before launch) ---------- */
.frame-note { position: relative; z-index: 2; max-width: 90%; margin: 0 auto; text-align: center; font-family: var(--font-body); font-size: 12px; line-height: 1.45; color: rgba(234,244,251,.66); padding: 12px; }
.frame-note .k { display: block; font-family: var(--font-display); font-weight: 700; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(91,211,240,.82); margin-bottom: 6px; }
.ba .ba-note { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); z-index: 4; max-width: 88%; text-align: center; font-family: var(--font-body); font-size: 10.5px; line-height: 1.3; color: #eaf4fb; background: rgba(4,21,35,.62); border: 1px solid rgba(255,255,255,.14); padding: 4px 9px; border-radius: 7px; backdrop-filter: blur(3px); }

/* ---------- real service-card photos ---------- */
.sc-photo { aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.sc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
