/* ── TOKENS ─────────────────────────────────── */
:root {
  --brand:       #2C7DA0;
  --brand-dark:  #1B566F;
  --brand-light: #CBE2EE;
  --brand-xlight:#EEF6FB;
  --ink:         #16384A;
  --ink-mid:     #3A5563;
  --ink-muted:   #6B8694;
  --wash:        #F4FAFD;
  --white:       #FFFFFF;
  --border:      #D8E8F1;
  --success:     #10B981;
  --radius:      6px;
  --radius-sm:   4px;
  --shadow-sm:   0 1px 2px rgba(15,23,42,.04), 0 2px 8px rgba(15,23,42,.05);
  --shadow:      0 4px 12px rgba(15,23,42,.06), 0 12px 32px rgba(15,23,42,.08);
  --shadow-lg:   0 8px 24px rgba(15,23,42,.08), 0 24px 64px rgba(15,23,42,.14);
  --maxw:        1120px;
  --font:        'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-head:   'Lexend', system-ui, -apple-system, sans-serif;
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--wash);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
ul { list-style: none; }

/* ── UTILITIES ──────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--white); padding: 8px 14px;
  border-radius: 8px; font-size: 14px; z-index: 999;
}
.skip:focus { left: 8px; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title.left { text-align: left; }
.section-title.white { color: var(--white); }
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0 auto 56px;
}
.section { padding: 104px 0; text-align: center; }
@media (max-width: 700px) { .section { padding: 72px 0; } }


/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(246,251,253,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  z-index: 100;
  transition: box-shadow .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (min-width: 961px) {
  .site-header .header-inner {
    max-width: none;
    padding-left: clamp(28px, 4.5vw, 72px);
    padding-right: clamp(28px, 4.5vw, 72px);
  }
}
.brand { display: flex; align-items: center; color: var(--ink); }
.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.site-header .brand-logo {
  opacity: 1;
  filter: saturate(.98) contrast(1.02);
}
.brand:hover .brand-logo { transform: translateY(-1px); }
.brand-logo--footer {
  width: 188px;
  padding: 6px 8px;
  background: rgba(246,251,253,.96);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: all .18s;
}
.nav a:hover { background: var(--brand-xlight); color: var(--brand); }
.nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  padding: 10px 20px !important;
}
.nav-cta:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .2s;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;               /* sits above #main so the exit reveals it underneath */
  height: 520vh;            /* scroll track: scrub + hold + tilt-out exit */
}
/* #main is pulled up to overlap the hero's exit, then cross-fades in beneath it */
#main {
  position: relative;
  z-index: 1;
  margin-top: -100vh;
  background: var(--wash);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  perspective: 1400px;      /* depth for the tilt-back exit */
  perspective-origin: 50% 38%;
}
.hero-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img,
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video { transform: scale(1.16); }  /* zoom in to crop the Veo watermark */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 12, 30, .84) 0%,
    rgba(7, 60, 110, .66) 60%,
    rgba(44, 125, 160, .32) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  width: 100%;
}
.hero-text { max-width: 600px; text-align: left; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #AECFE3;
  background: rgba(44,125,160,.20);
  border: 1px solid rgba(111,169,205,.45);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-primary {
  background: var(--brand);
  color: var(--white);
  font-size: 16px;
  padding: 15px 28px;
}
.hero-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,86,111,.45);
}
.hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  font-size: 16px;
  padding: 15px 28px;
}
.hero-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.hero-trust li svg { width: 16px; height: 16px; color: #8FC0DD; flex-shrink: 0; }

/* ── HERO QUOTE BOX ─────────────────────────── */
.hero-quote { width: 100%; max-width: 460px; justify-self: end; }
.hero-quote-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
}
.hero-quote-title {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-quote-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 18px; }
.form-compact { gap: 12px; }
.form-compact label { font-size: 13px; gap: 5px; }
.form-compact input { padding: 9px 12px; font-size: 14px; }
.form-compact .form-submit { width: 100%; justify-content: center; padding: 13px 20px; }
.form-compact .form-foot { flex-direction: column; align-items: stretch; gap: 8px; }
.form-row.form-row-3 { grid-template-columns: 1.5fr .7fr 1fr; }
.hero-scroll-hint {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .18s;
}
.hero-scroll-hint:hover { color: #fff; text-decoration: underline; }

/* ── SERVICES ───────────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.service-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Light-blue tint that deepens toward the bottom so white text stays legible */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(111,169,205,.28) 0%,
    rgba(40,108,145,.40) 38%,
    rgba(7,30,50,.88) 100%
  );
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-photo { transform: scale(1.04); }
.service-photo { transition: transform .5s ease; }
.service-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.65; }
.service-card p a { color: #BDE0F2; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Coming-soon state (Interior Windows) */
.service-card.is-soon .service-photo { filter: saturate(.85) brightness(.95); }
.service-card.is-soon::before {
  background: linear-gradient(
    180deg,
    rgba(60,90,110,.55) 0%,
    rgba(30,70,95,.62) 40%,
    rgba(5,22,38,.90) 100%
  );
}
.service-card.is-soon:hover { transform: none; }
.service-card.is-soon:hover .service-photo { transform: none; }
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: #F0A92B;
  color: #1A1205;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}

/* ── XERO SECTION ───────────────────────────── */
.xero-section { background: var(--brand-xlight); }
.xero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
  text-align: left;
}
.xero-intro { font-size: 17px; color: var(--ink-mid); margin-bottom: 32px; max-width: 520px; }
.xero-steps { display: flex; flex-direction: column; gap: 26px; margin-bottom: 30px; }
.xero-step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.xero-step h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.xero-step p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; }

.xero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.xero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.xero-badge svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; }

/* Xero photo */
.xero-visual { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.xero-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--brand-xlight);
  min-height: 240px;
}
.xero-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.xero-photo-wrap.xero-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border: 2px dashed var(--brand-light);
  color: var(--ink-muted);
  font-size: 14px;
  text-align: center;
  padding: 40px 20px;
}
.xero-photo-wrap.xero-photo-placeholder::after {
  content: 'Add your Xero Pure system photo as assets/xero-pure.jpg';
  white-space: normal;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.xero-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(2,12,30,.78);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 8px 14px;
}
.xero-photo-badge span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.xero-photo-badge small {
  font-size: 11px;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: .04em;
}

.xero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.xero-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.xero-card p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 10px; }
.xero-card em { font-style: normal; font-weight: 600; color: var(--ink); }

.ppm-compare { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.ppm-bar { display: grid; grid-template-columns: 90px 1fr 60px; align-items: center; gap: 10px; }
.ppm-label { font-size: 13px; font-weight: 600; color: var(--ink-mid); }
.ppm-track { background: var(--border); border-radius: 2px; height: 10px; overflow: hidden; }
.ppm-fill {
  height: 100%;
  border-radius: 2px;
  width: 0; /* animated by JS */
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.ppm-fill.bad { background: #F87171; }
.ppm-fill.good { background: var(--brand); }
.ppm-val { font-size: 13px; font-weight: 700; color: var(--ink); text-align: right; }

/* ── BEFORE & AFTER SLIDER ──────────────────── */
.ba-outer { max-width: 1080px; margin: 0 auto; }
.ba-slider {
  position: relative;
  width: 100%;
  height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
}
.ba-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.ba-clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-img-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* overridden by JS to match slider width */
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ba-handle-line {
  flex: 1;
  width: 3px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}
.ba-handle-circle {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  flex-shrink: 0;
  color: var(--brand);
  transition: transform .15s;
}
.ba-slider:active .ba-handle-circle { transform: scale(1.1); }

.ba-tag {
  position: absolute;
  bottom: 22px;
  z-index: 11;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.ba-tag-left { left: 22px; background: rgba(0,0,0,.55); }
.ba-tag-right { right: 22px; background: var(--brand); }

.ba-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-mid);
  font-style: italic;
}

/* ── REAL RESULTS STRIP ──────────────────────── */
.results-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 32px auto 0;
}
.results-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0;
}
.results-shot img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .5s ease;
}
.results-shot:hover img { transform: scale(1.05); }
.results-shot figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 32px 18px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--white);
  text-align: left;
  background: linear-gradient(to top, rgba(2,12,30,.78), transparent);
}
@media (max-width: 640px) {
  .results-strip { grid-template-columns: 1fr; }
  .results-shot img { height: 260px; }
}

/* ── ACTION SHOWCASE BAND ────────────────────── */
.showcase-band {
  position: relative;
  padding: 132px 0;
  background: url('assets/work-pole-reach.jpg') center 28% / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,18,38,.72) 0%, rgba(7,60,110,.62) 100%);
}
.showcase-inner { position: relative; z-index: 1; }
.showcase-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.showcase-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.showcase-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
@media (max-width: 700px) {
  .showcase-band { padding: 88px 0; }
  .showcase-sub { font-size: 15px; }
}

/* ── SERVICE AREA ────────────────────────────── */
.area-section { background: var(--white); }
.area-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  margin-top: 44px;
  text-align: left;
  align-items: stretch;
}
.area-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-height: 460px;
}
.area-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.area-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.area-pin {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brand-xlight);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.area-pin svg { width: 34px; height: 34px; color: var(--brand); flex-shrink: 0; }
.area-pin strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--ink); }
.area-pin span { font-size: 13px; color: var(--ink-mid); }
.area-list-title { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--ink); }
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
}
.area-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-mid);
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 1px;
}
.area-note { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.area-note a { color: var(--brand); font-weight: 600; text-decoration: none; }
.area-note a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .area-grid { grid-template-columns: 1fr; gap: 28px; }
  .area-map { min-height: 320px; }
}

/* ── WHY BLISS ──────────────────────────────── */
.why-section { background: var(--wash); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-sm);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-light); }
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  background: var(--brand-xlight);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; }
.why-item h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.why-item p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

/* ── QUOTE SECTION ──────────────────────────── */
.quote-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(7,18,38,.92) 0%, rgba(7,60,110,.88) 100%),
    url('assets/work-squeegee.jpg') center 30% / cover no-repeat;
  background-attachment: scroll, fixed;
}
.quote-section .container { position: relative; z-index: 1; }
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
  text-align: left;
}
.quote-text .section-eyebrow { color: var(--brand); }
.quote-sub { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 24px; line-height: 1.7; }
.quote-perks { display: flex; flex-direction: column; gap: 12px; }
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.quote-perks li svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
@media (max-width: 960px) { .quote-perks li { justify-content: center; } }

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row > label { min-width: 0; }
label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
input, textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--wash);
  color: var(--ink);
  transition: border-color .18s;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,125,160,.16);
}
textarea { resize: vertical; }
.form-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.form-submit {
  background: var(--brand);
  color: var(--white);
  border: none;
  font-size: 15px;
  padding: 14px 28px;
  cursor: pointer;
}
.form-submit:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.form-status { font-size: 14px; color: var(--success); font-weight: 500; }

/* ── FAQ ────────────────────────────────────── */
.faq-container { max-width: 740px; }
.faq-list { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--brand); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  gap: 14px;
}
.faq-item:hover { border-color: var(--brand-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 18px; font-size: 15px; color: var(--ink-mid); line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--ink); padding: 40px 0; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-brand .brand { justify-content: center; }
.foot-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 6px; }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.65); transition: color .18s; }
.foot-links a:hover { color: var(--brand); }
.foot-cta { background: var(--brand); color: var(--white); margin-bottom: 10px; }
.foot-cta:hover { background: var(--brand-dark); }
.foot-contact { text-align: right; }
.tiny { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── MOBILE NAV ─────────────────────────────── */
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
  box-shadow: var(--shadow);
}
.nav.open a { border-radius: var(--radius-sm); padding: 12px 14px; }
.nav.open .nav-cta { margin-top: 6px; justify-content: center; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 34px; justify-items: center; }
  .hero-text { text-align: center; max-width: 640px; }
  .hero-text .hero-trust { justify-content: center; }
  .hero-quote { justify-self: center; margin: 0 auto; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .xero-grid { grid-template-columns: 1fr; gap: 40px; }
  .xero-visual { position: static; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-text { text-align: center; }
  .quote-perks { align-items: center; }
}
@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-eyebrow { font-size: 11px; margin-bottom: 10px; }
  .section-title {
    font-size: 28px;
    line-height: 1.16;
    margin-bottom: 12px;
  }
  .section-sub {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .nav { display: none; }
  .hamburger { display: flex; }
  .site-header { position: sticky; }
  .header-inner { padding-top: 12px; padding-bottom: 12px; }
  .brand-logo { width: 138px; }
  .nav.open { padding: 12px 18px 18px; }

  .hero {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
  #main {
    margin-top: 0;
    opacity: 1 !important;
  }
  .hero-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    perspective: none;
  }
  .hero-stage {
    position: relative;
    min-height: 0;
    display: block;
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-bg { overflow: hidden; }
  .hero-video {
    transform: scale(1.08);
    object-position: 54% center;
  }
  .hero-content {
    min-height: calc(100svh - 61px);
    padding-top: 34px;
    padding-bottom: 32px;
    gap: 22px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
    padding: 5px 10px;
    margin-bottom: 14px;
  }
  .hero-headline {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 14px;
  }
  .hero-text .hero-sub {
    font-size: 16px;
    line-height: 1.45;
    margin: 0 auto 18px;
    max-width: 330px;
  }
  .hero-text .hero-trust { display: none; }
  .hero-quote {
    width: 100%;
    max-width: 420px;
  }
  .hero-quote-card {
    padding: 18px;
    border-radius: var(--radius);
  }
  .hero-quote-title {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .hero-quote-sub {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .form-compact { gap: 10px; }
  .form-compact .form-row,
  .form-compact .form-row-3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-compact input { min-height: 42px; }
  .form-compact .form-submit {
    min-height: 46px;
    white-space: normal;
  }
  .hero-scroll-hint {
    margin-top: 12px;
    font-size: 12px;
  }

  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-body { padding: 24px; }
  .xero-step { gap: 14px; }
  .xero-badges { gap: 8px; }
  .xero-badge { width: 100%; justify-content: center; }
  .xero-photo { height: 240px; }
  .ppm-bar { grid-template-columns: 78px 1fr 56px; gap: 8px; }
  .ba-slider { height: 420px; }
  .ba-tag {
    bottom: 14px;
    font-size: 11px;
    padding: 6px 12px;
  }
  .ba-tag-left { left: 14px; }
  .ba-tag-right { right: 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { padding: 24px 18px; }
  .area-list { grid-template-columns: 1fr; gap: 9px; }
  .quote-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  input, textarea { font-size: 16px; }
  .form-submit {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
  .foot-inner { flex-direction: column; text-align: center; }
  .foot-links { flex-wrap: wrap; justify-content: center; }
  .foot-contact { text-align: center; }
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
  }
}
@media (max-width: 440px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── FOCUS STATES (A11Y) ────────────────────── */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}
.ba-slider:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
