/* =========================================================================
   AC1 HEATING & AIR — Design System
   Palette derived from the logo: navy authority, gold sun, red action.
   ========================================================================= */

:root {
  /* Brand */
  --navy-900: #0e1826;
  --navy-800: #132238;
  --navy-700: #1a2f4e;
  --navy-600: #223d64;
  --red-600:  #a3272e;
  --red-500:  #b8323a;
  --gold-500: #e9a021;
  --gold-400: #f2b23e;
  --steel-500:#5b6b80;

  /* Neutrals */
  --ink:      #0e1826;
  --paper:    #f5f7fa;
  --paper-2:  #eaeef4;
  --line:     #dfe5ee;
  --white:    #ffffff;
  --muted:    #64748b;

  /* Typography */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;

  /* FX */
  --shadow-sm: 0 2px 10px rgba(14, 24, 38, .08);
  --shadow-md: 0 14px 40px rgba(14, 24, 38, .14);
  --shadow-lg: 0 30px 80px rgba(14, 24, 38, .28);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  font-size: clamp(.78rem, 1.4vw, .95rem);
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1.display { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2.display { font-size: clamp(2rem, 5vw, 3.6rem); }
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: .01em;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }
.text-gold { color: var(--gold-500); }
.text-red { color: var(--red-500); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }
.section--dark { background: var(--navy-900); color: #dbe4f0; }
.section--paper { background: var(--paper); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }
.section--dark .section-title { color: #fff; }
.section--dark .lead { color: #9fb2ca; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  font-size: 1.05rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 10px 26px rgba(163, 39, 46, .34);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(163, 39, 46, .44); }
.btn--gold { --btn-bg: var(--gold-500); --btn-fg: var(--navy-900); box-shadow: 0 10px 26px rgba(233, 160, 33, .4); }
.btn--gold:hover { background: var(--gold-400); box-shadow: 0 16px 36px rgba(233, 160, 33, .5); }
.btn--ghost {
  background: transparent; color: #fff; box-shadow: none;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--navy { --btn-bg: var(--navy-700); --btn-fg:#fff; box-shadow: 0 10px 26px rgba(26,47,78,.34); }
.btn svg { width: 1.1em; height: 1.1em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header .logo img { height: 72px; width: auto; transition: height .4s var(--ease);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.55)); }
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.site-header.scrolled .logo img { height: 58px; filter: none; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a.navlink {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav a.navlink::after {
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--gold-500);
  transition: width .3s var(--ease);
}
.nav a.navlink:hover::after, .nav a.navlink.active::after { width: 100%; }
.site-header.scrolled .nav a.navlink { color: var(--navy-800); text-shadow: none; }
.site-header.scrolled .nav a.navlink:hover { color: var(--red-600); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phones { display:flex; flex-direction:column; gap:2px; text-align:right; }
.header-phones a { font-family:var(--font-head); font-weight:700; text-transform:uppercase; letter-spacing:.02em;
  font-size:1.02rem; color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.5); display:flex; align-items:center; gap:.4rem; justify-content:flex-end; line-height:1.15; }
.header-phones a small { font-family:var(--font-body); font-weight:600; text-transform:uppercase; letter-spacing:.08em;
  font-size:.62rem; color:var(--gold-400); text-shadow:none; }
.header-phones a svg { width:.95em; height:.95em; color:var(--gold-500); }
.header-phones a:hover { color:var(--gold-400); }
.site-header.scrolled .header-phones a { color:var(--navy-800); text-shadow:none; }
.site-header.scrolled .header-phones a small { color:var(--red-600); }
@media (max-width: 1100px) { .header-phones { display:none; } }
.header-phone {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; font-size: 1.15rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.5);
  display: inline-flex; align-items: center; gap: .5rem;
}
.header-phone svg { width: 1.1em; height: 1.1em; color: var(--gold-500); }
.site-header.scrolled .header-phone { color: var(--navy-800); text-shadow: none; }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; z-index: 120;
  align-items: center; justify-content: center; }
.nav-toggle span { display:block; width: 24px; height: 2.4px; background:#fff; border-radius: 2px; position: relative; transition: .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; width:24px; height:2.4px; background: inherit; border-radius:2px; transition:.3s var(--ease); }
.nav-toggle span::before { top:-7px; } .nav-toggle span::after { top:7px; }
.site-header.scrolled .nav-toggle span, .site-header.scrolled .nav-toggle span::before, .site-header.scrolled .nav-toggle span::after { background: var(--navy-800); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img.hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(105deg, rgba(14,24,38,.86) 0%, rgba(14,24,38,.55) 42%, rgba(14,24,38,.12) 100%),
    linear-gradient(0deg, rgba(14,24,38,.7) 0%, rgba(14,24,38,0) 40%);
}
.hero .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; }
.hero__inner { max-width: 760px; }
.hero .eyebrow { color: var(--gold-400); }
.hero h1 { margin: 1rem 0 1.1rem; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.hero h1 .accent { color: var(--gold-400); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #d7e2f0; max-width: 620px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__trust { display:flex; flex-wrap:wrap; gap: 26px; margin-top: 2.6rem; align-items:center; }
.hero__trust .stars { color: var(--gold-400); letter-spacing: 2px; font-size:1.1rem; }
.hero__trust .t-item { display:flex; flex-direction:column; gap:2px; }
.hero__trust .t-item strong { font-family: var(--font-head); font-size:1.5rem; line-height:1; text-transform:uppercase; }
.hero__trust .t-item span { font-size:.82rem; color:#aebfd4; text-transform:uppercase; letter-spacing:.08em; }
.hero__scroll { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); z-index:2;
  font-family:var(--font-head); text-transform:uppercase; letter-spacing:.2em; font-size:.75rem; color:#cdd9e8;
  display:flex; flex-direction:column; align-items:center; gap:8px; }
.hero__scroll .mouse { width:24px; height:38px; border:2px solid rgba(255,255,255,.5); border-radius:14px; position:relative; }
.hero__scroll .mouse::after { content:""; position:absolute; left:50%; top:7px; width:4px; height:7px; background:#fff; border-radius:2px; transform:translateX(-50%); animation: scrollwheel 1.6s infinite; }
@keyframes scrollwheel { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 60%{opacity:1; transform:translate(-50%,10px)} 100%{opacity:0; transform:translate(-50%,12px)} }

/* ---------- Trust bar (brands) ---------- */
.brandbar { background: var(--white); border-bottom: 1px solid var(--line); }
.brandbar .container { display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap: wrap; padding-block: 26px; }
.brandbar .bb-label { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.12em; font-weight:600; color:var(--muted); font-size:.9rem; }
.brandbar .bb-logos { display:flex; align-items:center; gap: clamp(24px,4vw,54px); flex-wrap:wrap; }
.brandbar .bb-logos img { height: 40px; width:auto; filter: grayscale(1); opacity:.65; transition:.3s; }
.brandbar .bb-logos img:hover { filter:none; opacity:1; }

/* ---------- Stat strip ---------- */
.stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,40px); }
.stat { text-align:center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); line-height:1; color: var(--gold-500); }
.stat .lbl { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.08em; font-weight:600; color:#9fb2ca; font-size:.95rem; margin-top:.4rem; }
.section--dark .stat .lbl { color:#9fb2ca; }

/* ---------- Services ---------- */
.svc-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.4vw,30px); }
.svc-card {
  position:relative; border-radius: var(--radius-lg); overflow:hidden; min-height: 440px;
  display:flex; align-items:flex-end; color:#fff; box-shadow: var(--shadow-md);
  isolation:isolate;
}
.svc-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transition: transform .8s var(--ease); }
.svc-card::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(0deg, rgba(14,24,38,.94) 0%, rgba(14,24,38,.5) 45%, rgba(14,24,38,.08) 100%); }
.svc-card:hover img { transform: scale(1.07); }
.svc-card__body { padding: 30px; width:100%; }
.svc-card__icon { width:52px; height:52px; border-radius:14px; background: var(--gold-500); color: var(--navy-900);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; box-shadow: var(--shadow-sm); }
.svc-card__icon svg { width:26px; height:26px; }
.svc-card h3 { font-family: var(--font-display); text-transform:uppercase; font-size:1.7rem; line-height:1; margin-bottom:.6rem; }
.svc-card p { color:#c8d4e4; font-size:.98rem; margin-bottom:1rem; }
.svc-card .svc-link { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.06em; font-weight:600; color:var(--gold-400);
  display:inline-flex; align-items:center; gap:.4rem; transition:gap .3s var(--ease); }
.svc-card:hover .svc-link { gap:.9rem; }

/* ---------- Why choose us ---------- */
.why-grid { display:grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px,5vw,70px); align-items:center; }
.why-media { position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); }
.why-media img { width:100%; height:100%; object-fit:cover; aspect-ratio: 4/5; }
.why-media .badge {
  position:absolute; left:24px; bottom:24px; background: var(--white); color:var(--navy-900);
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md); display:flex; gap:14px; align-items:center;
}
.why-media .badge .b-num { font-family:var(--font-display); font-size:2.6rem; line-height:.8; color:var(--red-600); }
.why-media .badge .b-txt { font-family:var(--font-head); text-transform:uppercase; font-weight:600; line-height:1.05; font-size:.95rem; }
.feature-list { display:grid; gap: 18px; margin-top: 1.8rem; }
.feature { display:flex; gap:16px; align-items:flex-start; }
.feature .f-ico { flex:0 0 auto; width:46px; height:46px; border-radius:12px; background: rgba(233,160,33,.14); color:var(--gold-500);
  display:flex; align-items:center; justify-content:center; }
.section--dark .feature .f-ico { background: rgba(233,160,33,.16); }
.feature .f-ico svg { width:24px; height:24px; }
.feature h4 { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.03em; font-size:1.25rem; font-weight:600; margin-bottom:2px; }
.feature p { color:var(--muted); font-size:.98rem; }
.section--dark .feature p { color:#9fb2ca; }
.section--dark .feature h4 { color:#fff; }

/* ---------- Parallax cinematic band ---------- */
.parallax {
  position: relative; min-height: 90vh; display:flex; align-items:center; color:#fff; overflow:hidden;
}
.parallax__bg { position:absolute; inset:-15% 0; z-index:0; }
.parallax__bg img { width:100%; height:130%; object-fit:cover; }
.parallax::after { content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg, rgba(14,24,38,.9) 0%, rgba(14,24,38,.55) 55%, rgba(14,24,38,.3) 100%); }
.parallax .container { position:relative; z-index:2; }
.parallax__inner { max-width: 640px; }
.parallax blockquote { font-family:var(--font-display); text-transform:uppercase; line-height:1.02;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
.parallax blockquote .accent { color: var(--gold-400); }
.parallax .attribution { margin-top:1.6rem; font-family:var(--font-head); text-transform:uppercase; letter-spacing:.1em; color:#c8d4e4; }

/* ---------- ZIP / service-area checker ---------- */
.zip-check { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border-radius: var(--radius-lg);
  padding: clamp(30px,4vw,56px); box-shadow: var(--shadow-lg); color:#fff; position:relative; overflow:hidden; }
.zip-check::before { content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px;
  background: radial-gradient(circle, rgba(233,160,33,.28), transparent 70%); }
.zip-check .zc-inner { position:relative; z-index:1; display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,4vw,48px); align-items:center; }
.zip-check h3 { font-family:var(--font-display); text-transform:uppercase; font-size: clamp(1.8rem,3.4vw,2.8rem); line-height:1; }
.zip-check p { color:#b9c8dd; margin-top:.8rem; }
.zc-form { display:flex; gap:12px; flex-wrap:wrap; }
.zc-form input {
  flex:1 1 180px; min-width:0; border:2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color:#fff; border-radius:999px; padding: .95rem 1.4rem; font: inherit; font-size:1.05rem; outline:none; transition:.25s;
}
.zc-form input::placeholder { color:#8fa2ba; }
.zc-form input:focus { border-color: var(--gold-500); background: rgba(255,255,255,.14); }
.zc-result { margin-top:18px; min-height:26px; font-family:var(--font-head); text-transform:uppercase; letter-spacing:.04em; font-size:1.1rem; font-weight:600; }
.zc-result.ok { color: var(--gold-400); }
.zc-result.no { color: #f0a0a4; }
.zc-result a { color:#fff; text-decoration:underline; }

/* ---------- Reviews ---------- */
.reviews-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,26px); }
.review-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; gap:14px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--gold-500); letter-spacing:2px; }
.review-card p { color:#334155; font-size:1.02rem; }
.review-card .rc-foot { display:flex; align-items:center; gap:12px; margin-top:auto; }
.review-card .rc-avatar { width:44px; height:44px; border-radius:50%; background: var(--navy-700); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; font-size:1.1rem; }
.review-card .rc-name { font-family:var(--font-head); text-transform:uppercase; font-weight:600; letter-spacing:.03em; }
.review-card .rc-meta { font-size:.8rem; color:var(--muted); }
/* Reviews "See More" — hidden extra cards revealed on click */
.reviews-grid .review-more { display:none; }
.reviews-grid.show-all .review-more { display:flex; opacity:1; transform:none; }
.rating-summary { display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:center; margin-top: 40px; }
.rating-summary .big { font-family:var(--font-display); font-size:3.4rem; line-height:1; color:var(--navy-900); }
.section--dark .rating-summary .big { color:#fff; }

/* ---------- Areas ---------- */
.area-cols { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 10px 24px; margin-top:24px; }
.area-cols a { display:flex; align-items:center; gap:10px; padding:10px 4px; border-bottom:1px solid var(--line);
  font-family:var(--font-head); text-transform:uppercase; letter-spacing:.03em; font-weight:600; color:var(--navy-800); transition:.25s; }
.section--dark .area-cols a { color:#cdd9e8; border-color: rgba(255,255,255,.12); }
.area-cols a:hover { color: var(--red-600); padding-left:10px; }
.section--dark .area-cols a:hover { color: var(--gold-400); }
.area-cols a svg { width:16px; height:16px; color:var(--gold-500); flex:0 0 auto; }

/* ---------- Final CTA ---------- */
.cta-band { position:relative; overflow:hidden; background: linear-gradient(120deg, var(--red-600), #7f1d22); color:#fff; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(233,160,33,.3), transparent 55%); }
.cta-band .container { position:relative; z-index:1; text-align:center; }
.cta-band h2 { color:#fff; margin-bottom: 1rem; }
.cta-band p { color:#ffdcdd; max-width: 620px; margin: 0 auto 2rem; font-size:1.15rem; }
.cta-band .hero__actions { justify-content:center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color:#9fb2ca; padding-top: 80px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,50px); padding-bottom: 56px; }
.site-footer .logo img { height: 64px; filter: brightness(0) invert(1); opacity:.95; margin-bottom:18px; }
.site-footer h5 { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.08em; color:#fff; font-size:1.05rem; margin-bottom:16px; }
.site-footer a { transition:.2s; }
.site-footer .fcol a { display:block; padding: 6px 0; color:#9fb2ca; }
.site-footer .fcol a:hover { color: var(--gold-400); }
.footer-contact li { display:flex; gap:12px; padding:7px 0; align-items:flex-start; }
.footer-contact svg { width:20px; height:20px; color: var(--gold-500); flex:0 0 auto; margin-top:2px; }
.footer-contact a, .footer-contact span { color:#cdd9e8; }
.footer-license { display:inline-block; margin-top:8px; font-family:var(--font-head); letter-spacing:.06em; text-transform:uppercase;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); padding:6px 12px; border-radius:8px; color:#cdd9e8; font-size:.85rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding: 22px 0; display:flex; justify-content:space-between;
  align-items:center; gap:16px; flex-wrap:wrap; font-size:.88rem; }
.footer-bottom .credits img { height:34px; opacity:.8; }

/* ---- "Website by" credit — Frozen words + localized snow flurry ---- */
.vgm-credit { text-decoration:none; display:inline-block; position:relative; padding-bottom:3px; }
.vgm-credit .vgm-text {
  display:inline-block; font-weight:700; letter-spacing:.02em;
  color:#c9d6e6;
  transition: color .45s var(--ease), letter-spacing .45s var(--ease),
              text-shadow .45s var(--ease), transform .45s var(--ease);
}
/* words "freeze": icy blue-white with a cold frosted glow */
.vgm-credit:hover .vgm-text, .vgm-credit:focus-visible .vgm-text {
  color:#eaf6ff;
  letter-spacing:.055em;
  transform: translateY(-1px);
  text-shadow: 0 0 9px rgba(150,212,255,.8), 0 0 2px rgba(255,255,255,.95), 0 1px 0 rgba(255,255,255,.5);
  -webkit-text-stroke:.3px rgba(220,240,255,.5);
}
/* frosty underline draws in */
.vgm-credit::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px; border-radius:2px;
  background: linear-gradient(90deg, #7fd8ff, #ffffff, #7fd8ff);
  box-shadow:0 0 6px rgba(140,210,255,.6);
  transform: scaleX(0); transform-origin:left; transition: transform .45s var(--ease);
}
.vgm-credit:hover::after, .vgm-credit:focus-visible::after { transform: scaleX(1); }
/* falling snowflakes (spawned by JS, contained ~30px around the link) */
.vgm-flake {
  position:absolute; top:0; pointer-events:none; color:#f2fbff; line-height:1;
  will-change:transform,opacity;
  filter: drop-shadow(0 0 3px rgba(160,215,255,.85));
  animation: vgm-fall 1.5s linear forwards;
}
@keyframes vgm-fall {
  0%   { transform: translate(0,-14px) rotate(0deg);            opacity:0; }
  15%  { opacity:1; }
  100% { transform: translate(var(--drift,6px),26px) rotate(200deg); opacity:0; }
}
@media (prefers-reduced-motion: reduce) {
  .vgm-flake { display:none; }
  .vgm-credit .vgm-text { transition:none; }
  .vgm-credit:hover .vgm-text { transform:none; }
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-callbar { position:fixed; left:0; right:0; bottom:0; z-index:90; display:none;
  grid-template-columns:1fr 1fr; box-shadow: 0 -6px 24px rgba(0,0,0,.2); }
.mobile-callbar a { display:flex; align-items:center; justify-content:center; gap:.5rem; padding: 15px 8px;
  font-family:var(--font-head); text-transform:uppercase; letter-spacing:.04em; font-weight:700; font-size:1.05rem; color:#fff; }
.mobile-callbar .mc-call { background: var(--navy-800); }
.mobile-callbar .mc-quote { background: var(--red-600); }
.mobile-callbar svg { width:1.15em; height:1.15em; }

/* ---------- Reveal animation base ---------- */
/* Hidden state only applies when JS is active (html.js) so content is never
   lost if a CDN/script fails to load. */
.js .reveal { opacity:0; transform: translateY(34px); }
.js .reveal.in { opacity:1; transform:none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero { position:relative; padding: 160px 0 70px; color:#fff; overflow:hidden; background: var(--navy-800); }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(14,24,38,.9), rgba(14,24,38,.55)); z-index:1; }
.page-hero img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { margin:.6rem 0; }
.breadcrumb { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.06em; font-size:.9rem; color:#aebfd4; }
.breadcrumb a:hover { color:var(--gold-400); }

/* ---------- Content prose ---------- */
.prose { max-width: 780px; }
.prose h2 { font-family:var(--font-display); text-transform:uppercase; font-size: clamp(1.7rem,3.4vw,2.6rem); margin: 1.6em 0 .5em; line-height:1.05; }
.prose h3 { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.02em; font-size:1.5rem; margin:1.4em 0 .4em; }
.prose p { margin-bottom: 1.1em; color:#334155; font-size:1.08rem; }
/* Check lists — global (used inside and outside .prose) */
ul.check { margin: 1em 0 1.4em; display:grid; gap:12px; }
ul.check li { display:flex; gap:12px; align-items:flex-start; color:#334155; }
ul.check li svg { width:22px; height:22px; min-width:22px; color: var(--gold-500); flex:0 0 auto; margin-top:3px; }
.section--dark ul.check li { color:#c8d4e4; }

/* ---------- FAQ ---------- */
.faq { display:grid; gap:14px; max-width: 860px; margin-inline:auto; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); }
.faq-q { width:100%; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding: 20px 24px; font-family:var(--font-head); text-transform:uppercase; letter-spacing:.02em; font-weight:600; font-size:1.2rem; color:var(--navy-800); }
.faq-q .chev { flex:0 0 auto; width:26px; height:26px; border-radius:50%; background:var(--paper-2); display:flex; align-items:center; justify-content:center; transition: transform .35s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: var(--gold-500); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color:#475569; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,56px); }
.form-field { margin-bottom: 18px; }
.form-field label { display:block; font-family:var(--font-head); text-transform:uppercase; letter-spacing:.04em; font-weight:600; font-size:.92rem; margin-bottom:7px; color:var(--navy-800); }
.form-field input, .form-field select, .form-field textarea {
  width:100%; border:1.5px solid var(--line); border-radius:12px; padding: .85rem 1rem; font:inherit; font-size:1rem; background:#fff; transition:.2s; outline:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(233,160,33,.12); }
.form-field textarea { min-height: 130px; resize: vertical; }
.hp-field { display:none !important; }
.contact-cards { display:grid; gap:16px; }
.contact-card { display:flex; gap:16px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-card .cc-ico { width:48px; height:48px; border-radius:12px; background:var(--navy-700); color:#fff; display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.contact-card h4 { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.03em; font-size:1.2rem; margin-bottom:4px; }
.contact-card a { color: var(--red-600); font-weight:600; }
.map-embed { border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width:100%; height:340px; border:0; display:block; }

/* ---------- Utility ---------- */
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,50px); align-items:center; }
.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.center{text-align:center}
.tag { display:inline-flex; align-items:center; gap:.5rem; background: rgba(233,160,33,.15); color: var(--gold-500);
  font-family:var(--font-head); text-transform:uppercase; letter-spacing:.06em; font-weight:600; font-size:.85rem; padding:6px 14px; border-radius:999px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .svc-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .zip-check .zc-inner, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .why-media img { aspect-ratio: 16/10; }
}
@media (max-width: 860px) {
  .nav.primary, .header-cta .header-phone-text { display: none; }
  .nav-toggle { display:flex; }
  .nav.primary {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); background: var(--navy-900);
    flex-direction: column; align-items:flex-start; justify-content:center; gap: 26px; padding: 40px;
    transform: translateX(100%); transition: transform .45s var(--ease); z-index:110; display:flex;
  }
  .nav.primary.open { transform: none; }
  .nav.primary a.navlink { color:#fff !important; text-shadow:none; font-size:1.5rem; }
  .site-header .nav-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.5); opacity:0; pointer-events:none; transition:.4s; z-index:105; }
  .site-header .nav-backdrop.show { opacity:1; pointer-events:auto; }
  .stats { grid-template-columns: repeat(2,1fr); row-gap: 34px; }
  .mobile-callbar { display:grid; }
  body { padding-bottom: 56px; }
  .hero__scroll { display:none; }
}
@media (max-width: 620px) {
  .svc-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero__trust { gap:18px; }
  .brandbar .container { justify-content:center; text-align:center; }
  .site-header .logo img, .site-header.scrolled .logo img { height: 58px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; }
  * { scroll-behavior:auto !important; }
}
