/* ============================================================
   Green Air Innovations — site.css
   Mobile-first. CSS custom properties for tokens.
   No framework, no preprocessor.
   ============================================================ */

/* Fonts loaded via <link> tag in each HTML head (Google Fonts with preconnect + display=swap).
   Future optimization: self-host woff2 in assets/fonts/ to eliminate the cross-origin lookup. */

/* ---------- Design tokens ---------- */
:root {
  --bg: #0D2341;
  --bg-deep: #051530;
  --surface: #13325c;
  --surface-2: #0E2347;
  --border: #1e4275;
  --text: #ffffff;
  --muted: #a8b8d0;
  --soft-text: #cdd7e8;
  --accent: #1FC84D;
  --accent-dark: #16A63E;
  --accent-soft: rgba(31, 200, 77, 0.12);
  --accent-glow: rgba(31, 200, 77, 0.35);
  --flame: #FF7A1F;
  --flame-pink: #FF4E6B;
  --blue: #2A5FD8;
  --star: #f5a623;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --pill: 999px;

  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --side-pad: 20px;
  --max-w: 1240px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }

/* Inline icon wrapper — every <span class="ico-svg"> rendered by build.py.
   Sizes from font size by default so icons inherit text scale; specific
   containers (.card .ico, .review .stars, etc.) override below. */
.ico-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.15em;
  line-height: 0;
}
.ico-svg svg {
  width: 1em;
  height: 1em;
  display: inline-block;
}
.stars-inline {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--star);
}
.stars-inline .ico-svg svg { width: 16px; height: 16px; fill: var(--star); }
.review .stars { display: inline-flex; gap: 2px; }
.review .stars .ico-svg svg { width: 16px; height: 16px; fill: var(--star); }
.card .ico svg,
.areas .grid .item .ico-svg svg, .area-card svg,
.svc-sidebar .trust-card svg,
.includes-grid .include .ico svg, .gal-card svg, .lightbox svg {
  width: auto; height: auto;
}
.card .ico svg { width: 22px; height: 22px; }
.card .ico.sm svg { width: 18px; height: 18px; }
.areas .grid .item .ico-svg svg { width: 14px; height: 14px; color: var(--accent); }
.area-card .ico-svg svg { width: 16px; height: 16px; }
.svc-sidebar .trust-card .ico-svg svg { width: 14px; height: 14px; color: var(--accent); }
.includes-grid .include .ico .ico-svg svg { width: 16px; height: 16px; }
.cta-band a.cta-call .ico-svg svg { width: 18px; height: 18px; color: var(--accent); }
.home-hero .cta-primary .ico-svg svg { width: 18px; height: 18px; }
.home-hero .pill .ico-svg svg { width: 12px; height: 12px; color: var(--accent); }
.site-header .cta-phone .ico-svg svg { width: 14px; height: 14px; }
.nav-toggle .ico-svg svg { width: 22px; height: 22px; }
.sticky-call .sc-pill .ico-svg svg { width: 18px; height: 18px; }
@media (min-width: 640px) { .sticky-call .sc-pill .ico-svg svg { width: 20px; height: 20px; } }
.site-footer .ft-brand a.phone .ico-svg svg,
.mobile-menu .phone .ico-svg svg { width: 14px; height: 14px; }
.hero .eyebrow .ico-svg svg { width: 12px; height: 12px; color: var(--accent); }
.card .more .ico-svg svg { width: 14px; height: 14px; }
.signs-card .ico-svg svg,
.process-row .ico-svg svg { width: auto; height: auto; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 10px 18px;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--bg-deep);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.promo-bar .promo-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.promo-bar .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: var(--pill);
  box-shadow: 0 0 10px var(--accent);
}
.promo-bar strong { color: var(--accent); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 12px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.site-header .logo {
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-shrink: 0;
}
.site-header .logo img { height: 52px; width: auto; }
.site-nav {
  display: none;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 120ms ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.site-header .cta-phone {
  background: var(--accent);
  color: var(--bg-deep);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 24px var(--accent-glow);
  white-space: nowrap;
}
.site-header .cta-phone svg { width: 16px; height: 16px; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { border-color: var(--accent); }

/* Mobile menu (under header) */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 8px var(--side-pad) 16px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.is-active { color: var(--accent); }

@media (min-width: 960px) {
  .site-header { padding: 14px 32px; }
  .site-header .logo img { height: 64px; }
  .site-nav { display: flex; }
  .site-header .cta-phone { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (min-width: 1100px) {
  .site-header { padding: 16px 48px; }
  .site-header .logo img { height: 76px; }
  .site-nav { gap: 28px; font-size: 14px; }
  .site-header .cta-phone { padding: 15px 26px; font-size: 16px; }
  .site-header .cta-phone svg { width: 18px; height: 18px; }
}

/* ---------- Hero (subpages) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px var(--side-pad) 40px;
  border-bottom: 1px solid var(--border);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  top: -180px; right: -180px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
}
.hero::after {
  bottom: -140px; left: -140px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255, 122, 31, 0.12), transparent 70%);
}
.hero > * { position: relative; z-index: 1; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero .eyebrow svg { width: 12px; height: 12px; color: var(--accent); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--text);
}
.hero h1 .green { color: var(--accent); }
.hero .lede {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}
@media (min-width: 960px) {
  .hero { padding: 64px 32px 48px; }
}
@media (min-width: 1100px) {
  .hero { padding: 80px 48px 56px; }
}

/* ---------- Home hero (VariantB) ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
@media (min-width: 640px)  { .home-hero { min-height: 560px; } }
@media (min-width: 960px)  { .home-hero { min-height: 620px; } }
@media (min-width: 1100px) { .home-hero { min-height: 660px; } }
.home-hero .banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-hero .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,35,65,0.72) 0%, rgba(13,35,65,0.45) 38%, rgba(13,35,65,0.20) 60%, rgba(13,35,65,0.60) 100%);
}
.home-hero .banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(13,35,65,0) 0%, var(--bg) 100%);
}
.home-hero .hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 56px var(--side-pad) 80px;
  align-items: center;
}
.home-hero .hero-copy {
  color: #fff;
}
.home-hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,35,65,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.home-hero .pill svg { color: var(--accent); width: 12px; height: 12px; }
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.home-hero h1 .green {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent);
}
.home-hero p.lede {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
  color: #dbe3f0;
  max-width: 520px;
  margin: 0 0 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.home-hero .cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-hero .cta-primary {
  background: var(--accent);
  color: var(--bg-deep);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 40px rgba(31,200,77,0.5);
}
.home-hero .cta-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}


@media (min-width: 960px) {
  .home-hero .hero-inner {
    grid-template-columns: 2.1fr 1fr;
    gap: 56px;
    padding: 72px 32px 96px;
  }
}
@media (min-width: 1100px) {
  .home-hero .hero-inner { padding: 80px 48px 96px; gap: 72px; }
}
@media (min-width: 1280px) {
  .home-hero .hero-inner { gap: 88px; }
}

/* ---------- Hero subhead + price match ---------- */
.home-hero .hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.home-hero .price-match {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(13,35,65,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  backdrop-filter: blur(8px);
}
.home-hero .price-match strong { color: var(--accent); }
.home-hero .price-match .ico-svg { flex-shrink: 0; }
.home-hero .price-match .ico-svg svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- Hero lead form (replaces live panel) ---------- */
.lead-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 24px 22px;
}
.lead-form h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: #fff;
}
.lead-form .lf-sub { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.lead-form .lf-field { display: block; margin-bottom: 10px; }
.lead-form .lf-field span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.lead-form input,
.lead-form select {
  width: 100%;
  background: rgba(5,21,48,0.45);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lead-form select { appearance: none; -webkit-appearance: none; cursor: pointer; color: #fff; }
.lead-form select option { color: #fff; background: #0b1d38; }
.lead-form input::placeholder { color: #c2cee0; }
.lead-form .lf-sub { color: #dbe3f0; }
.lead-form input:focus,
.lead-form select:focus { border-color: var(--accent); }
/* Desktop / tablet: keep the original solid navy panel (transparent glass is mobile-only) */
@media (min-width: 960px) {
  .lead-form {
    background: rgba(13,35,65,0.82);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .lead-form input,
  .lead-form select {
    background: var(--bg-deep);
    border-color: var(--border);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lead-form input::placeholder { color: #6f80a0; }
  .lead-form .lf-sub { color: var(--muted); }
}
.lead-form .lf-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 0 24px var(--accent-glow);
}
.lead-form .lf-success { color: var(--accent); font-weight: 600; font-size: 13px; margin: 12px 0 0; }
.lead-form .lf-fineprint { font-size: 12px; color: var(--muted); margin: 12px 0 0; text-align: center; }
.lead-form .lf-fineprint a { color: var(--accent); font-weight: 600; }

/* Form error message (lead + contact forms) */
.lf-error { color: var(--flame-pink); font-weight: 600; font-size: 13px; margin: 12px 0 0; }
.lf-error a { color: var(--flame-pink); }

/* Honeypot anti-spam field — visually hidden, off-screen, not announced */
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Confirmation modal (form success) ---------- */
.confirm-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.confirm-modal.is-open { display: block; }
.confirm-backdrop { position: absolute; inset: 0; background: rgba(5, 21, 48, 0.74); backdrop-filter: blur(2px); }
.confirm-card {
  position: relative;
  width: calc(100% - 32px);
  max-width: 440px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: confirm-pop 0.28s cubic-bezier(0.18, 0.9, 0.32, 1.2);
}
@keyframes confirm-pop {
  from { opacity: 0; transform: translateY(-50%) scale(0.94); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
.confirm-x {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--muted);
  border-radius: var(--radius-sm); cursor: pointer;
}
.confirm-x:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.confirm-x svg { width: 20px; height: 20px; }
.confirm-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent);
}
.confirm-icon svg { width: 34px; height: 34px; }
.confirm-card h2 { font-size: 24px; margin: 0 0 10px; }
.confirm-msg { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 22px; }
.confirm-actions { display: flex; flex-direction: column; gap: 10px; }
.confirm-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--bg-deep); font-weight: 800;
  padding: 13px 18px; border-radius: var(--radius-sm); text-decoration: none;
}
.confirm-call:hover { background: var(--accent-dark); }
.confirm-call svg { width: 18px; height: 18px; }
.confirm-dismiss {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  font-weight: 600; padding: 12px 18px; border-radius: var(--radius-sm); cursor: pointer;
}
.confirm-dismiss:hover { border-color: var(--muted); }
@media (min-width: 640px) {
  .confirm-actions { flex-direction: row; justify-content: center; }
  .confirm-call, .confirm-dismiss { flex: 1; }
}

/* ---------- Stat bar (merged trust + numbers) ---------- */
.statbar-section {
  padding: 36px var(--side-pad) 8px;
}
.statbar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.statbar .stat {
  background: var(--surface);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.statbar .stat--rating { background: linear-gradient(180deg, rgba(31,200,77,0.10), var(--surface) 70%); }
.statbar .stat-stars { display: inline-flex; gap: 2px; margin-bottom: 6px; }
.statbar .stat-stars .ico-svg svg { width: 13px; height: 13px; fill: var(--star); }
.statbar .stat-n {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.statbar .stat-n span { font-size: 0.5em; color: var(--muted); font-weight: 600; margin-left: 2px; letter-spacing: 0; }
.statbar .stat-l { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 8px; letter-spacing: -0.01em; }
.statbar .stat-s { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (min-width: 640px) {
  .statbar-section { padding: 40px 32px 8px; }
  .statbar { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .statbar { grid-template-columns: repeat(6, 1fr); }
  .statbar .stat { padding: 26px 14px; }
}
@media (min-width: 1100px) { .statbar-section { padding: 48px 48px 8px; } }

/* Credentials ribbon */
.credbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 26px;
  margin-top: 18px;
}
.credbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.credbar span .ico-svg svg { width: 15px; height: 15px; color: var(--accent); }

/* ---------- Marquee stats strip ---------- */
.marquee {
  margin: 0 var(--side-pad);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}
.marquee .m-item .n {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.marquee .m-item .l {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--text);
}
.marquee .m-item .s {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
@media (min-width: 640px) {
  .marquee { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .marquee {
    margin: 0 32px;
    grid-template-columns: repeat(6, 1fr);
    padding: 24px 32px;
    gap: 32px;
  }
  .marquee .m-item .n { font-size: 32px; }
}
@media (min-width: 1100px) {
  .marquee { margin: 0 48px; }
}

/* ---------- Sections ---------- */
.section {
  padding: 48px var(--side-pad);
}
.section.tight { padding: 24px var(--side-pad) 48px; }
.section.tighter { padding: 16px var(--side-pad) 32px; }
.section-head {
  margin-bottom: 24px;
}
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1;
  font-size: clamp(28px, 6vw, 48px);
}
.section-head h2 .green { color: var(--accent); }
.section-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
  margin: 0;
}
@media (min-width: 960px) {
  .section { padding: 56px 32px; }
  .section-head { margin-bottom: 32px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
  .section-head > div:first-child { flex: 1; }
}
@media (min-width: 1100px) {
  .section { padding: 64px 48px; }
  .section.tight { padding: 24px 48px 64px; }
}

/* ---------- Card grids (services, values, verticals) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.card-grid.two { grid-template-columns: 1fr; }
.card-grid.three { grid-template-columns: 1fr; }
.card-grid.four { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .card-grid.two, .card-grid.three, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
  .card-grid.four  { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Card ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.card .ico.sm { width: 36px; height: 36px; border-radius: 10px; }
.card .ico svg { width: 22px; height: 22px; }
.card .ico.sm svg { width: 18px; height: 18px; }
.card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}
.card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.card .tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.card .more svg { width: 14px; height: 14px; }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.review .stars { display: flex; gap: 2px; color: var(--star); margin-bottom: 10px; }
.review .stars svg { width: 16px; height: 16px; fill: var(--star); }
.review p { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 14px; letter-spacing: -0.005em; }
.review .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.review .meta .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-2);
}
.review .meta .name { font-weight: 600; color: var(--text); display: block; line-height: 1.2; }
.review .meta .src { color: var(--muted); display: block; font-size: 12px; margin-top: 2px; }
.review .meta .tag { color: var(--muted); }

/* ---------- Google review links ---------- */
.g-link { color: var(--accent); font-weight: 600; }
.g-link:hover { text-decoration: underline; }
.reviews-cta { display: flex; justify-content: center; margin-top: 24px; }
.g-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 700;
  transition: border-color 160ms ease, transform 160ms ease;
}
.g-button:hover { border-color: var(--accent); transform: translateY(-2px); }
.g-button .ico-svg svg { width: 18px; height: 18px; fill: var(--star); color: var(--star); }

/* ---------- Service areas ---------- */
.areas {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.areas-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.areas-head h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}
.areas-head .sub { font-size: 14px; color: var(--muted); }
.areas-head .link { font-size: 13px; color: var(--accent); font-weight: 600; }
.areas .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
}
.areas .grid .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.areas .grid .item svg { width: 14px; height: 14px; color: var(--accent); }
@media (min-width: 640px) {
  .areas-head { flex-direction: row; justify-content: space-between; align-items: baseline; }
  .areas .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) { .areas .grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- FAQ ---------- */
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq details { border-top: 1px solid var(--border); }
.faq details:first-child { border-top: none; }
.faq summary {
  list-style: none;
  padding: 18px 22px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--accent); }
.faq .answer {
  padding: 0 22px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 720px;
}

/* ---------- About / two-col blocks ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.two-col .lead-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1;
}
.two-col .lead-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.two-col p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 14px;
}
.two-col p:last-child { margin-bottom: 0; }
@media (min-width: 960px) {
  .two-col { grid-template-columns: 1fr 1.3fr; gap: 48px; }
}

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tl-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
}
.tl-row .y {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tl-row .t {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.tl-row .d {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
@media (min-width: 960px) { .tl-row { grid-template-columns: 120px 1fr; padding: 22px 26px; } .tl-row .y { font-size: 32px; } }

/* ---------- CTA band ---------- */
.cta-band {
  margin: 24px var(--side-pad) 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-deep);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 31, 0.31), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  line-height: 1;
}
.cta-band p {
  font-size: 15px;
  margin: 0;
  opacity: 0.85;
}
.cta-band a.cta-call {
  background: var(--bg-deep);
  color: var(--accent);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  white-space: nowrap;
}
.cta-band a.cta-call svg { width: 18px; height: 18px; color: var(--accent); }
@media (min-width: 640px) {
  .cta-band { flex-direction: row; justify-content: space-between; align-items: center; padding: 44px 36px; }
  .cta-band a.cta-call { align-self: auto; }
}
@media (min-width: 1100px) {
  .cta-band { margin: 24px 48px 64px; padding: 48px 44px; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 32px var(--side-pad);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.site-footer .ft-brand .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.site-footer .ft-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 0;
  max-width: 320px;
}
.site-footer .ft-brand a.phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}
.site-footer .ft-col .title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.site-footer .ft-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .ft-col a {
  font-size: 13px;
  color: var(--muted);
}
.site-footer .ft-col a:hover { color: var(--accent); }
.site-footer .ft-bottom {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 640px) {
  .site-footer { grid-template-columns: 1.6fr 1fr 1fr; gap: 28px 24px; padding: 36px 24px; }
  .site-footer .ft-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 960px) {
  .site-footer { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; padding: 40px 32px; }
}
@media (min-width: 1100px) {
  .site-footer { padding: 40px 48px; }
}

/* ---------- Sticky call bar (full-width, all viewports) ---------- */
.sticky-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  z-index: 50;
}
.sticky-call .sc-left { min-width: 0; }
.sticky-call .sc-sub { font-size: 11px; opacity: 0.85; font-weight: 500; line-height: 1.2; }
.sticky-call .sc-main { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-top: 1px; }
.sticky-call .sc-right { display: none; font-size: 12px; opacity: 0.85; font-weight: 500; text-align: right; }
.sticky-call .sc-pill {
  background: var(--bg-deep);
  color: var(--accent);
  padding: 11px 18px;
  border-radius: var(--pill);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(0,0,0,0.04);
  font-variant-numeric: tabular-nums;
}
.sticky-call .sc-pill svg { width: 18px; height: 18px; }
.has-sticky { padding-bottom: 84px; }
@media (min-width: 640px) {
  .sticky-call { grid-template-columns: 1fr auto 1fr; padding: 12px 24px; gap: 16px; }
  .sticky-call .sc-right { display: block; }
  .sticky-call .sc-sub { font-size: 12px; }
  .sticky-call .sc-main { font-size: 17px; }
  .sticky-call .sc-pill { padding: 12px 26px; font-size: 20px; }
  .sticky-call .sc-pill svg { width: 20px; height: 20px; }
  .has-sticky { padding-bottom: 96px; }
}
@media (min-width: 960px) {
  .sticky-call .sc-pill { font-size: 22px; padding: 12px 28px; }
  .has-sticky { padding-bottom: 100px; }
}

/* ---------- Values / 4-up cards ---------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.values-grid .card .ico { margin-bottom: 4px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Pills (tags/filters) ---------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
}

/* ---------- Trusted HVAC brands — hub & spoke ---------- */
.center-head { text-align: center; }
.center-head > div:first-child { flex: initial; }
@media (min-width: 960px) {
  .center-head { display: block; }
  .center-head p { margin: 10px auto 0; }
}
.brands {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, rgba(31,200,77,0.05), var(--surface) 30%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.brands-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: center;
}
.brands-hub {
  order: -1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 10px;
  min-height: 200px;
}
.brands-hub .hub-glow {
  position: absolute;
  width: 340px; max-width: 110%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,200,77,0.22), rgba(31,200,77,0.05) 45%, transparent 70%);
  pointer-events: none;
}
.brands-hub .hub-ring {
  position: absolute;
  width: 300px; max-width: 96%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 50%;
  pointer-events: none;
}
.brands-hub img {
  position: relative;
  width: min(260px, 64vw);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.45));
}
.brands-hub .hub-label {
  position: relative;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  min-height: 76px;
  border-radius: 14px;
  transition: transform 200ms ease;
}
.brand-logo:hover { transform: translateY(-3px); }
.brand-logo img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 200ms ease;
}
.brand-logo.is-badge img { max-height: 62px; }
@media (min-width: 960px) {
  .brands {
    grid-template-columns: 1fr minmax(240px, 0.95fr) 1fr;
    gap: 30px;
    padding: 34px 30px;
  }
  .brands-hub { order: 0; min-height: 250px; padding: 10px; }
  .brands-side {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .brands-hub img { width: min(280px, 20vw); }
  .brand-logo { min-height: 84px; }
  .brand-logo img { max-height: 50px; }
  .brand-logo.is-badge img { max-height: 72px; }
}

/* ---------- Includes / process / signs (service detail) ---------- */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.svc-main { display: flex; flex-direction: column; gap: 40px; }
.svc-overview h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.svc-overview p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--soft-text);
  margin: 0 0 12px;
}
.svc-includes h3,
.svc-process h3,
.svc-pricing h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
.includes-grid .include {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.includes-grid .include .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(31, 200, 77, 0.18);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.includes-grid .include .ico svg { width: 16px; height: 16px; }
.includes-grid .include .t { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--text); }
.includes-grid .include .d { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }

.process-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.process-row .n {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.process-row .t { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.process-row .d { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

.signs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.signs-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.signs-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.signs-card li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--soft-text);
}
.signs-card li::before {
  content: '›';
  color: var(--flame);
  font-size: 18px;
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px 22px;
  position: relative;
}
.price-card.featured { border-color: var(--accent); }
.price-card .badge {
  position: absolute; top: -10px; right: 18px;
  background: var(--accent); color: var(--bg-deep);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: var(--pill);
}
.price-card .tag {
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.price-card .unit { font-size: 13px; color: var(--muted); margin: 4px 0 12px; }
.price-card .desc { font-size: 14px; color: var(--soft-text); line-height: 1.55; margin: 0; }
.price-card .price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  background: var(--accent);
  color: var(--bg-deep);
}
.price-card:not(.featured) .price-cta {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.price-card .price-cta .ico-svg svg { width: 14px; height: 14px; }
.price-card:not(.featured) .price-cta .ico-svg svg { color: var(--accent); }

/* Service detail sidebar */
.svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-sidebar .call-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.svc-sidebar .call-card .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--flame); margin-bottom: 10px;
}
.svc-sidebar .call-card .label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--flame); border-radius: var(--pill);
  box-shadow: 0 0 8px var(--flame);
}
.svc-sidebar .call-card .pitch {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.2;
  margin: 0 0 14px;
}
.svc-sidebar .call-card a.primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--bg-deep);
  padding: 13px 14px; border-radius: 10px;
  font-size: 15px; font-weight: 800; margin-bottom: 10px;
}
.svc-sidebar .call-card a.secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 11px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
}
.svc-sidebar .trust-card,
.svc-sidebar .other-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}
.svc-sidebar .trust-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.svc-sidebar .trust-card li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--soft-text);
}
.svc-sidebar .trust-card svg { color: var(--accent); width: 14px; height: 14px; }
.svc-sidebar .other-card .title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.svc-sidebar .other-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 4px;
}
.svc-sidebar .other-card a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px;
}
.svc-sidebar .other-card a:hover { background: var(--surface-2); }
.svc-sidebar .other-card a span:last-child { color: var(--accent); }

@media (min-width: 1100px) {
  .svc-layout { grid-template-columns: 1fr 300px; gap: 40px; }
  .svc-sidebar { position: sticky; top: 24px; }
}

/* ---------- Gallery ---------- */
.gal-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.gal-tabs {
  display: flex;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 5px;
  align-self: flex-start;
  flex-wrap: wrap;
}
.gal-tab {
  background: transparent;
  border: none;
  color: var(--text);
  padding: 9px 18px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 160ms ease, color 160ms ease;
}
.gal-tab .count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.08);
  color: var(--muted);
}
.gal-tab.is-active { background: var(--accent); color: var(--bg-deep); }
.gal-tab.is-active .count { background: rgba(5,21,48,0.18); color: var(--bg-deep); }
.gal-subfilters { display: flex; flex-wrap: wrap; gap: 8px; }
.gal-sub {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 14px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 600;
}
.gal-sub.is-active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
.gal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  color: inherit;
  display: block;
  width: 100%;
  padding: 0;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.gal-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 12px 32px rgba(0,0,0,0.32); }
.gal-card .imgwrap {
  aspect-ratio: 3 / 2;
  background: #0A1B33;
  position: relative;
  overflow: hidden;
}
.gal-card .imgwrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 380ms ease;
}
.gal-card:hover .imgwrap img { transform: scale(1.04); }
.gal-card .imgwrap .chip {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--pill);
  background: rgba(31,200,77,0.92);
  color: var(--bg-deep);
}
.gal-card[data-cat="Commercial"] .imgwrap .chip {
  background: rgba(255,126,43,0.92);
  color: #1F0D14;
}
.gal-card .body { padding: 16px 18px 18px; }
.gal-card .body .row {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 6px;
  font-size: 11px;
}
.gal-card .body .row .svc {
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}
.gal-card .body .row .date {
  color: var(--muted); font-variant-numeric: tabular-nums;
}
.gal-card .body .label { font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: -0.015em; margin-bottom: 6px; line-height: 1.3; }
.gal-card .body .loc { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.gal-card .body .loc::before { content: ''; width: 5px; height: 5px; border-radius: var(--pill); background: var(--muted); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,15,32,0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox .lb-inner {
  max-width: 1100px; width: 100%; max-height: 90vh;
  background: #0A1B33;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.lightbox .lb-imgwrap {
  background: var(--bg-deep);
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .lb-imgwrap img { width: 100%; height: 100%; object-fit: cover; }
.lightbox .lb-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--soft-text);
  overflow: auto;
}
.lightbox .lb-meta .lb-row { display: flex; justify-content: space-between; align-items: center; }
.lightbox .lb-meta .chip {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--pill);
  background: rgba(31,200,77,0.18); color: var(--accent);
}
.lightbox .lb-meta .chip.commercial { background: rgba(255,126,43,0.18); color: var(--flame); }
.lightbox .lb-meta .progress { font-size: 12px; color: #7a8aa3; font-variant-numeric: tabular-nums; }
.lightbox .lb-meta h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
  margin: 0; color: #fff;
}
.lightbox .lb-meta .desc { font-size: 14.5px; line-height: 1.7; margin: 0; color: var(--soft-text); }
.lightbox .lb-meta .info {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lightbox .lb-meta .info div { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #9aa8c0; }
.lightbox .lb-meta .info div .ic { color: var(--accent); font-weight: 700; }
.lightbox .lb-meta .actions {
  margin-top: auto;
  display: flex; gap: 10px; padding-top: 14px;
  flex-wrap: wrap;
}
.lightbox .lb-meta .actions a {
  flex: 1; text-align: center;
  padding: 12px 14px; border-radius: var(--pill);
  font-size: 13px; font-weight: 700;
}
.lightbox .lb-meta .actions a.primary { background: var(--accent); color: var(--bg-deep); }
.lightbox .lb-meta .actions a.secondary { border: 1px solid rgba(255,255,255,0.18); color: #fff; }
.lightbox .lb-nav {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 22px;
  display: grid; place-items: center;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox .lb-nav.prev { left: 12px; }
.lightbox .lb-nav.next { right: 12px; }
.lightbox .lb-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; font-size: 18px; display: grid; place-items: center; }
@media (min-width: 960px) {
  .lightbox .lb-inner { grid-template-columns: 1.4fr 1fr; }
  .lightbox .lb-imgwrap { min-height: 480px; }
  .lightbox .lb-meta { padding: 32px 36px; }
}

/* ---------- Quote wizard ---------- */
.quote-wrap { max-width: 780px; margin: 0 auto; }
.progress-bar { margin-bottom: 28px; }
.progress-bar .pb-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress-bar .pb-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.progress-bar .pb-pct { font-size: 12px; color: var(--muted); }
.progress-bar .track {
  height: 6px; background: var(--bg); border-radius: var(--pill);
  border: 1px solid var(--border); overflow: hidden;
}
.progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 12px var(--accent);
  transition: width 0.4s ease;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.quote-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.05;
}
.quote-card .sub { font-size: 15px; color: var(--muted); margin: 0 0 22px; max-width: 560px; }
.q-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) { .q-grid.two { grid-template-columns: repeat(2, 1fr); } }
.q-option {
  text-align: left;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background 120ms ease, border-color 120ms ease;
}
.q-option .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.q-option .ico svg { width: 18px; height: 18px; }
.q-option .t { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.q-option .d { font-size: 13px; color: var(--muted); line-height: 1.5; }
.q-option.is-selected { background: var(--accent-soft); border-color: var(--accent); }
.q-option.is-selected .ico { background: var(--accent); color: var(--bg-deep); }
.q-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  color: var(--text);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}
.q-pill.is-selected { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.q-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.q-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}
.q-back {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
}
.q-next {
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 24px var(--accent-glow);
}
.q-next:disabled, .q-next[aria-disabled="true"] {
  background: var(--border); color: var(--muted);
  cursor: not-allowed; box-shadow: none;
  opacity: 0.6;
}
.q-field { margin-bottom: 18px; }
.q-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}
.q-input, .q-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.q-textarea { resize: vertical; min-height: 90px; }
.q-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 14px; }
@media (min-width: 640px) { .q-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Estimate output (quote step 4) ---------- */
.estimate-body .est-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.estimate-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.05;
}
.estimate-body .sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 620px;
  line-height: 1.6;
}
.est-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.est-head {
  padding: 12px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.est-row {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}
.est-row:last-of-type { border-bottom: none; }
.est-row.flame .est-l { color: var(--flame); font-weight: 600; }
.est-row .est-v { font-weight: 600; color: var(--text); text-align: right; }
.est-total {
  padding: 18px;
  background: var(--bg);
  border-top: 2px solid var(--accent);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}
.est-total > span:first-child {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.est-total > span:first-child small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.est-total .est-v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-align: right;
}
.est-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 8px;
  margin: 0 0 24px;
}

/* ---------- Generic form (contact) ---------- */
.contact-form .row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
@media (min-width: 640px) { .contact-form .row { grid-template-columns: 1fr 1fr; } }
.contact-form label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px; display: block;
}
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 13px;
  font-size: 14px; color: var(--text);
  outline: none; resize: vertical;
}

/* ---------- Service-areas page extras ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.area-card .n { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.area-card .d { font-size: 13px; color: var(--muted); margin-top: 4px; }
.area-card .dot {
  width: 10px; height: 10px;
  border-radius: var(--pill);
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

/* ---------- Cofounder / about extras handled by .card ---------- */

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-content { max-width: 820px; }
.legal-content .updated { font-size: 13px; color: var(--muted); margin: 0 0 24px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft-text);
  margin: 0 0 16px;
}
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft-text);
  margin-bottom: 6px;
}
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* Footer legal links */
.site-footer .ft-legal a { color: var(--muted); }
.site-footer .ft-legal a:hover { color: var(--accent); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.flame { color: var(--flame); }
.hidden { display: none !important; }
.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;
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
