/* ============================================================================
   HEIGHTS PLUMBING, HEATING & COOLING — Design System
   Brand colors preserved from existing Elementor kit:
     Primary navy  #013261   Deep navy #012547   Accent #F64F22   Light #F7F7F7
   Typography preserved: Roboto Slab (display) + Poppins (text), re-scaled.
   ============================================================================ */

:root {
  --navy: #013261;
  --navy-deep: #012547;
  --navy-900: #00182f;
  --navy-700: #0a4a86;
  --navy-100: #e6eef6;
  --navy-50: #f1f6fb;
  --orange: #f64f22;
  --orange-dark: #d63d13;
  --orange-100: #feeae3;
  --orange-50: #fff4f0;
  --ice: #e8f4fb;
  --ice-600: #1f7bb3;
  --ink: #0f1c2b;
  --ink-2: #33414f;
  --muted: #5b6b7b;
  --line: #d9e0e7;
  --grey-50: #f7f7f7;
  --grey-100: #eef1f4;
  --white: #fff;
  --success: #1c8a4b;

  --font-display: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  --font-text: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.1875rem;
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --fs-2xl: clamp(1.875rem, 1.4rem + 1.6vw, 2.625rem);
  --fs-3xl: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem);

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(1, 37, 71, 0.06), 0 1px 3px rgba(1, 37, 71, 0.08);
  --shadow: 0 6px 20px rgba(1, 37, 71, 0.10);
  --shadow-lg: 0 18px 50px rgba(1, 37, 71, 0.18);

  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 76px;
  --topbar-h: 38px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
strong { font-weight: 600; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 8px; top: -60px; background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 1000; font-weight: 600; }
.skip-link:focus { top: 8px; color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); font-weight: 600; }
h5, h6 { font-family: var(--font-text); font-size: var(--fs-md); color: var(--navy); margin: 0 0 0.4em; font-weight: 600; }
.lead { font-size: var(--fs-md); color: var(--ink-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--orange); border-radius: 2px; }
.eyebrow.eyebrow--center { justify-content: center; }
.eyebrow.eyebrow--center::before { display: none; }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark p, .on-dark li { color: #fff; }
.on-dark .muted, .on-dark .lead { color: rgba(255, 255, 255, 0.82); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.mw-prose { max-width: 72ch; }
.mw-narrow { max-width: 56ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 900px; }
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--grey { background: var(--grey-50); }
.section--navy { background: var(--navy); }
.section--deep { background: var(--navy-deep); }
.section--ice { background: var(--navy-50); }
.section--warm { background: var(--orange-50); }
.section-head { max-width: 760px; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.4em; }
.section-head p { margin: 0; color: var(--ink-2); }
.on-dark .section-head p { color: rgba(255, 255, 255, 0.85); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 639px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }
.flex { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0.85rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: var(--fs-sm);
  line-height: 1.2; letter-spacing: 0.01em; white-space: nowrap; border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(246, 79, 34, 0.32); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; box-shadow: 0 8px 20px rgba(246, 79, 34, 0.36); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--navy-100); color: var(--navy); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: var(--fs-base); min-height: 56px; }
.btn--sm { padding: 0.55rem 1rem; min-height: 40px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: center; }
@media (max-width: 640px) { .btn-row { flex-direction: column; align-items: stretch; gap: 0.6rem; } .btn-row > .btn, .btn-row > .phone-big { width: 100%; justify-content: center; } }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); }
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.18s var(--ease); }
.link-arrow:hover { color: var(--orange); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--light { color: #fff; }
.link-arrow--light:hover { color: #ffd0c2; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-deep); color: #fff; font-size: var(--fs-xs); height: var(--topbar-h); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.topbar a { color: rgba(255, 255, 255, 0.9); }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__hours { display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__hours svg { width: 14px; height: 14px; color: var(--orange); flex: none; }
.topbar__links { display: flex; gap: 1.25rem; white-space: nowrap; }
@media (max-width: 899px) { .topbar { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; height: var(--header-h); gap: 1rem; position: relative; max-width: 1480px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }
.brand:focus-visible { outline-offset: 4px; }

.primary-nav { display: flex; align-items: center; margin-left: auto; height: 100%; }
.primary-nav > ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; height: 100%; }
.primary-nav > ul > li { position: static; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; border-radius: 8px; white-space: nowrap;
  font-weight: 600; font-size: var(--fs-sm); color: var(--navy);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav-link svg.chev { width: 14px; height: 14px; transition: transform 0.2s var(--ease); opacity: 0.7; }
.nav-link:hover, li.is-open > .nav-link, .nav-link[aria-expanded="true"] { background: var(--navy-50); color: var(--navy); }
li.is-open > .nav-link svg.chev, .nav-link[aria-expanded="true"] svg.chev { transform: rotate(180deg); }
.nav-link--commercial { background: var(--orange); color: #fff; }
.nav-link--commercial:hover, li.is-open > .nav-link--commercial, .nav-link--commercial[aria-expanded="true"] { background: var(--orange-dark); color: #fff; }
.header-cta { display: flex; align-items: center; gap: 0.75rem; margin-left: 0.5rem; flex: none; }
.header-phone { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1; color: var(--navy); }
.header-phone small { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.header-phone strong { font-size: 1.2rem; font-weight: 700; font-family: var(--font-display); display: inline-flex; align-items: center; gap: 6px; }
.header-phone strong svg { width: 18px; height: 18px; color: var(--orange); }
.header-phone:hover strong { color: var(--orange); }
.nav-toggle, .mobile-call { display: none; }
@media (max-width: 1499px) { .nav-link { padding: 9px 7px; font-size: 0.85rem; } .nav-link svg.chev { display: none; } .header-phone small { display: none; } .header-phone strong { font-size: 1.1rem; } .brand img { height: 46px; } .header-cta .btn { padding: 0.7rem 1rem; font-size: 0.85rem; } .header-cta { gap: 0.5rem; } }
@media (max-width: 1279px) {
  :root { --header-h: 66px; }
  .primary-nav, .header-cta .btn, .header-phone { display: none; }
  .brand img { height: 44px; }
  .header-cta { margin-left: auto; gap: 8px; }
  .mobile-call, .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 10px;
  }
  .mobile-call { background: var(--orange); color: #fff; }
  .mobile-call svg { width: 20px; height: 20px; }
  .nav-toggle { background: var(--navy-50); color: var(--navy); }
  .nav-toggle svg { width: 24px; height: 24px; }
}

/* ---------- Mega menu ---------- */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 10px; right: 10px; bottom: -17px; height: 3px; border-radius: 3px 3px 0 0;
  background: var(--orange); opacity: 0; transform: scaleX(0.4); transition: opacity 0.2s var(--ease), transform 0.25s var(--ease);
}
li.is-open > .nav-link::after { opacity: 1; transform: scaleX(1); }
.nav-link--commercial::after { background: var(--navy); }
.mega {
  position: absolute; top: calc(100% - 1px); left: 50%; transform: translate(-50%, 0);
  background: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: 0 30px 60px -20px rgba(1, 37, 71, 0.35), 0 12px 24px -12px rgba(1, 37, 71, 0.2);
  border: 1px solid var(--line); border-top: 3px solid var(--orange);
  padding: 1.75rem 1.75rem 0; display: none; z-index: 950; min-width: 560px; text-align: left;
}
.mega--wide { min-width: 0; width: min(1280px, calc(100vw - 2rem)); }
.mega--right { left: auto; right: 0; transform: none; max-width: 820px; }
li.is-open > .mega { display: block; animation: megaIn 0.22s var(--ease); }
@keyframes megaIn { from { opacity: 0; transform: translate(-50%, -8px); } to { opacity: 1; transform: translate(-50%, 0); } }
.mega--right { animation-name: megaInRight !important; }
@keyframes megaInRight { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mega__cols { display: grid; gap: 0 1.5rem; }
.mega__cols--2 { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.mega__cols--3 { grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(240px, 0.9fr); }
.mega__cols--4 { grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 0.9fr); }
.mega__cols--5 { grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(240px, 0.9fr); }
.mega__col + .mega__col { border-left: 1px solid var(--grey-100); padding-left: 1.5rem; }
.mega__col { animation: colIn 0.4s var(--ease) both; }
.mega__col:nth-child(2) { animation-delay: 0.04s; } .mega__col:nth-child(3) { animation-delay: 0.08s; } .mega__col:nth-child(4) { animation-delay: 0.12s; } .mega__col:nth-child(5) { animation-delay: 0.16s; }
.mega__promo { animation: colIn 0.4s 0.18s var(--ease) both; }
@keyframes colIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.mega h4 {
  display: flex; align-items: center; gap: 10px; font-family: var(--font-text); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--navy); margin: 0 0 0.75rem; font-weight: 700; line-height: 1.2;
}
.mega__h-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--orange-100); color: var(--orange-dark); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.mega__h-icon svg { width: 15px; height: 15px; }
.mega ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.mega li { margin: 0; }
.mega ul a {
  display: flex; align-items: center; gap: 10px; padding: 6px 8px 6px 6px; margin-left: -6px; border-radius: 8px; font-size: 0.85rem; color: var(--ink); line-height: 1.3;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.mega ul a::after {
  content: ''; width: 7px; height: 7px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); transform: rotate(45deg) translateX(-4px);
  margin-left: auto; opacity: 0; transition: opacity 0.15s var(--ease), transform 0.2s var(--ease); flex: none;
}
.mega ul a:hover { background: var(--navy-50); color: var(--navy); }
.mega ul a:hover::after { opacity: 1; transform: rotate(45deg) translateX(0); }
.mega__ico { width: 30px; height: 30px; border-radius: 8px; background: var(--grey-100); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: none; transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.2s var(--ease); }
.mega__ico svg { width: 16px; height: 16px; }
.mega ul a:hover .mega__ico { background: var(--orange); color: #fff; transform: scale(1.06); }
.mega__list--rich a { align-items: flex-start; padding: 8px; }
.mega__list--rich a > span:last-child { display: flex; flex-direction: column; gap: 1px; }
.mega__list--rich strong { font-weight: 600; }
.mega__list--rich small { font-size: 0.75rem; color: var(--muted); }
.mega__list--rich .mega__ico { width: 34px; height: 34px; }
.mega__list--plain a { padding: 5px 8px 5px 10px; margin-left: -10px; }
.mega__list--plain a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; }
.mega__list--2col { columns: 2; column-gap: 1rem; }
.mega__list--2col li { break-inside: avoid; }
.mega__all { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.875rem; color: var(--navy); margin: -0.75rem 0 1.5rem; }
.mega__all svg { width: 16px; height: 16px; transition: transform 0.18s var(--ease); }
.mega__all:hover { color: var(--orange); } .mega__all:hover svg { transform: translateX(4px); }
.mega__col--stack ul { margin-bottom: 1.25rem; }
.mega__col--stack .mega__promo { padding: 1.1rem 1.2rem; }
.mega__promo {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 1.4rem 1.4rem 1.3rem; margin-bottom: 1.5rem; color: #fff;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-700) 100%); display: flex; flex-direction: column; gap: 0.55rem; align-self: start;
}
.mega__promo::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px); pointer-events: none; }
.mega__promo::after { content: ''; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(closest-side, rgba(246, 79, 34, 0.45), transparent); pointer-events: none; }
.mega__promo > * { position: relative; }
.mega__promo-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #ffb59a; }
.mega__promo h4 { font-family: var(--font-display); font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: #fff; margin: 0; line-height: 1.3; display: block; }
.mega__promo p { color: rgba(255, 255, 255, 0.82); font-size: 0.82rem; margin: 0 0 0.25rem; line-height: 1.5; }
.mega__promo-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; }
.mega__promo-phone svg { width: 18px; height: 18px; color: #ffb59a; }
.mega__promo-phone:hover { color: #ffd0c2; }
.mega__promo .btn { align-self: flex-start; margin-top: 0.25rem; }
.mega__promo--orange { background: linear-gradient(150deg, var(--orange-dark) 0%, var(--orange) 70%, #ff7a52 100%); }
.mega__promo--orange::after { background: radial-gradient(closest-side, rgba(255, 255, 255, 0.35), transparent); }
.mega__promo--orange .mega__promo-eyebrow, .mega__promo--orange .mega__promo-phone svg { color: #fff; }
.mega__promo--orange .btn--light { color: var(--orange-dark); }
.mega__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin: 0 -1.75rem; padding: 0.9rem 1.75rem; background: var(--grey-50); border-top: 1px solid var(--grey-100); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.mega__footer-meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; }
.mega__footer-meta svg { width: 15px; height: 15px; color: var(--orange); }
.mega__footer-meta a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy); font-family: var(--font-display); font-size: 0.95rem; margin-left: 0.5rem; }
.mega__footer-meta a:hover { color: var(--orange); }
/* Commercial: dark variant */
.mega--commercial { background: var(--navy-900); border-color: var(--navy-900); }
.mega--commercial h4 { color: #fff; }
.mega--commercial .mega__h-icon { background: var(--orange); color: #fff; }
.mega--commercial ul a { color: rgba(255, 255, 255, 0.9); }
.mega--commercial ul a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.mega--commercial .mega__ico { background: rgba(255, 255, 255, 0.1); color: #ffb59a; }
.mega--commercial .mega__list--rich small { color: rgba(255, 255, 255, 0.6); }
.mega--commercial .mega__col + .mega__col { border-color: rgba(255, 255, 255, 0.1); }
.mega--commercial .mega__footer { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); }
.mega--commercial .mega__footer-meta { color: rgba(255, 255, 255, 0.7); }
.mega--commercial .mega__footer-meta a { color: #fff; }
.mega--commercial .mega__footer .btn--navy { background: var(--orange); }
.mega--commercial .mega__footer .btn--navy:hover { background: var(--orange-dark); }
/* Areas */
/* ---------- Service Areas mega menu ---------- */
.mega--areas { max-width: none; width: min(1060px, calc(100vw - 2rem)); }
.areas-menu { display: grid; gap: 1.25rem; padding-bottom: 1.5rem; }
.areas-menu__home { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 1rem; }
.areas-menu__county { background: var(--navy-50); border: 1px solid var(--navy-100); border-radius: var(--radius-lg); padding: 1rem 1.1rem 0.95rem; animation: colIn 0.4s var(--ease) both; }
.areas-menu__county:nth-child(2) { animation-delay: 0.05s; }
.areas-menu__head { display: flex; align-items: center; gap: 10px; color: var(--navy); margin-bottom: 0.7rem; }
.areas-menu__head strong { display: block; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; }
.areas-menu__head small { display: block; font-size: 0.74rem; color: var(--muted); margin-top: 2px; }
.areas-menu__head:hover strong { color: var(--orange); }
.mega .areas-menu__county .city-chips { margin: 0 0 0.8rem; gap: 6px; }
.mega .areas-menu__county .city-chips a { display: inline-block; margin: 0; padding: 5px 11px; background: #fff; border: 1px solid var(--navy-100); color: var(--navy); font-size: 0.8rem; font-weight: 600; border-radius: 999px; }
.mega .areas-menu__county .city-chips a::after { content: none; }
.mega .areas-menu__county .city-chips a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.areas-menu__county .mega__all { margin: 0; font-size: 0.85rem; }
.areas-menu__more h4 { margin-bottom: 0.75rem; }
.areas-menu__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.7rem; }
.areas-menu__tile { display: flex; flex-direction: column; gap: 0.35rem; border: 1px solid var(--line); border-radius: var(--radius); padding: 0.75rem 0.85rem; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease); animation: colIn 0.4s var(--ease) both; }
.areas-menu__tile:nth-child(n+2) { animation-delay: 0.04s; } .areas-menu__tile:nth-child(n+4) { animation-delay: 0.08s; } .areas-menu__tile:nth-child(n+6) { animation-delay: 0.12s; } .areas-menu__tile:nth-child(n+8) { animation-delay: 0.16s; }
.areas-menu__tile:hover { border-color: var(--navy-100); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.areas-menu__tile-name { display: flex; flex-direction: column; font-weight: 700; color: var(--navy); font-size: 0.9rem; line-height: 1.2; }
.areas-menu__tile-name small { font-weight: 500; color: var(--muted); font-size: 0.72rem; margin-top: 2px; }
.areas-menu__tile-name:hover { color: var(--orange); }
.mega .areas-menu__towns { margin: 0; display: flex; flex-direction: column; gap: 3px; }
.mega .areas-menu__towns a { display: inline; padding: 0; margin: 0; font-size: 0.8rem; color: var(--ink-2); border-radius: 0; }
.mega .areas-menu__towns a::after { content: none; }
.mega .areas-menu__towns a:hover { background: none; color: var(--orange); }
.areas-menu__more-link { display: inline-flex; align-items: center; gap: 4px; margin-top: auto; padding-top: 0.2rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.areas-menu__more-link svg { width: 14px; height: 14px; transition: transform 0.18s var(--ease); }
.areas-menu__more-link:hover { color: var(--orange); } .areas-menu__more-link:hover svg { transform: translateX(3px); }
@media (max-width: 1240px) { .areas-menu__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 1100; display: none;
}
.drawer.is-open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(0, 24, 47, 0.6); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.28s var(--ease); box-shadow: var(--shadow-lg);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.drawer__head img { height: 40px; }
.drawer__close { width: 44px; height: 44px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: var(--grey-100); color: var(--navy); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__body { overflow-y: auto; flex: 1; padding: 8px 0 24px; }
.drawer__body > ul { list-style: none; margin: 0; padding: 0; }
.drawer__body > ul > li { border-bottom: 1px solid var(--grey-100); }
.drawer__item, .drawer__acc {
  display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 15px 20px;
  font-weight: 600; font-size: 1.05rem; color: var(--navy); text-align: left;
}
.drawer__acc > svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease); color: var(--muted); }
.drawer__lbl { display: inline-flex; align-items: center; gap: 12px; }
.drawer__ico { width: 36px; height: 36px; border-radius: 10px; background: var(--navy-50); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.drawer__ico svg { width: 18px; height: 18px; }
.drawer__ico--orange { background: var(--orange); color: #fff; }
.drawer__acc[aria-expanded="true"] .drawer__ico { background: var(--navy); color: #fff; }
.drawer__acc[aria-expanded="true"] > svg { transform: rotate(180deg); color: var(--orange); }
.drawer__acc[aria-expanded="true"] { background: var(--navy-50); }
.drawer__sub { display: none; padding: 4px 8px 12px 20px; background: var(--grey-50); }
.drawer__acc[aria-expanded="true"] + .drawer__sub { display: block; }
.drawer__sub h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); margin: 12px 0 4px; }
.drawer__sub ul { list-style: none; margin: 0; padding: 0; }
.drawer__sub a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; color: var(--ink); border-radius: 6px; font-size: 0.95rem; }
.drawer__sub a::after { content: ''; width: 7px; height: 7px; border-top: 2px solid var(--line); border-right: 2px solid var(--line); transform: rotate(45deg); flex: none; }
.drawer__sub a.is-all::after { border-color: var(--orange); }
.drawer__sub a:hover { background: #fff; color: var(--navy); }
.drawer__sub a.is-all { font-weight: 600; color: var(--navy); margin-top: 6px; }
.drawer__item--commercial { color: var(--orange-dark); }
.drawer__foot { padding: 16px 20px 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; background: #fff; }
.drawer__foot .hours { font-size: var(--fs-xs); color: var(--muted); text-align: center; margin: 0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 890; display: none;
  grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.sticky-cta .btn { min-height: 50px; font-size: 0.95rem; }
@media (max-width: 1279px) { .sticky-cta { display: grid; } body { padding-bottom: 72px; } }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.55; filter: saturate(0.95); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(1, 37, 71, 0.96) 0%, rgba(1, 37, 71, 0.82) 45%, rgba(1, 50, 97, 0.35) 100%); }
.hero .container { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 440px); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero h1 em { font-style: normal; color: #ffb59a; }
.hero .lead { color: rgba(255, 255, 255, 0.88); max-width: 60ch; margin-bottom: 1.75rem; }
.hero__pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); padding: 6px 12px 6px 8px; border-radius: 999px; font-size: var(--fs-xs); font-weight: 600; margin-bottom: 1.25rem; }
.hero__pill svg { width: 16px; height: 16px; color: #ffb59a; }
.hero__quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.75rem; }
.hero__quick a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; font-size: var(--fs-xs); font-weight: 600; transition: background 0.18s var(--ease); }
.hero__quick a:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.hero__quick svg { width: 16px; height: 16px; color: #ffb59a; }
.hero__quick a.is-commercial { background: var(--orange); border-color: var(--orange); }
.hero__quick a.is-commercial svg { color: #fff; }
.hero__card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-lg); }
.hero__card h3 { font-size: var(--fs-lg); margin-bottom: 0.25rem; }
.hero__card p.small { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 1rem; }
@media (max-width: 899px) { .hero .container { grid-template-columns: 1fr; } .hero__card { display: none; } }
/* Home hero: leave the right edge of the photo clear of the form so the people in it read */
.hero--home .hero__bg img { opacity: 0.9; filter: saturate(1); object-position: center 30%; }
.hero--home::before { background: linear-gradient(95deg, rgba(1, 37, 71, 0.96) 0%, rgba(1, 37, 71, 0.88) 30%, rgba(1, 37, 71, 0.45) 52%, rgba(1, 37, 71, 0.05) 72%, rgba(1, 37, 71, 0) 100%); }
/* Home hero: text on the left, the photo (tech on the right) stays visible */
.hero--home .container { grid-template-columns: minmax(0, 34rem) 1fr; min-height: clamp(480px, 58vh, 640px); }
.hero--home .lead { max-width: 40ch; font-size: var(--fs-md); }
.hero--home h1 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
@media (max-width: 899px) {
  .hero--home { display: flex; flex-direction: column; }
  .hero--home .container { grid-template-columns: 1fr; min-height: 0; order: 1; padding-bottom: 2rem; }
  .hero--home::before { display: none; }
  .hero--home .hero__bg { position: relative; inset: auto; order: 2; z-index: 0; height: clamp(300px, 88vw, 460px); }
  .hero--home .hero__bg img { object-position: 78% 22%; opacity: 1; }
  .hero--home .hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(1, 37, 71, 0) 22%); }
  .hero--home .lead { max-width: none; }
}
.hero--sub { background: var(--navy); }
.hero--sub .container { grid-template-columns: minmax(0, 40rem) 1fr; padding-top: clamp(2.25rem, 4vw, 3.75rem); padding-bottom: clamp(2.25rem, 4vw, 3.75rem); min-height: clamp(340px, 42vh, 460px); }
.hero--sub .hero__bg img { opacity: 1; object-position: center 40%; filter: saturate(1); }
.hero--sub::before { background: linear-gradient(95deg, rgba(1, 50, 97, 0.96) 0%, rgba(1, 50, 97, 0.88) 32%, rgba(1, 50, 97, 0.45) 55%, rgba(1, 50, 97, 0.06) 75%, rgba(1, 50, 97, 0) 100%); }
.hero--sub h1 { font-size: var(--fs-2xl); }
.hero--sub .lead { margin-bottom: 1.25rem; max-width: 44ch; }
@media (max-width: 899px) { .hero--sub .container { min-height: 0; } .hero--sub::before { background: linear-gradient(180deg, rgba(1, 50, 97, 0.94) 0%, rgba(1, 50, 97, 0.82) 100%); } }
.hero--commercial { background: var(--navy-900); }
.hero--commercial::before { background: linear-gradient(95deg, rgba(0, 24, 47, 0.97) 0%, rgba(0, 24, 47, 0.88) 32%, rgba(0, 24, 47, 0.45) 55%, rgba(0, 24, 47, 0.08) 75%, rgba(214, 61, 19, 0.12) 100%); }
@media (max-width: 899px) { .hero--commercial::before { background: linear-gradient(180deg, rgba(0, 24, 47, 0.95) 0%, rgba(0, 24, 47, 0.84) 100%); } }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-strip li { display: flex; align-items: center; gap: 12px; padding: 1.1rem 1rem; font-size: var(--fs-sm); font-weight: 600; color: var(--navy); border-right: 1px solid var(--line); }
.trust-strip li:last-child { border-right: 0; }
.trust-strip svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
@media (max-width: 899px) { .trust-strip ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } .trust-strip li:nth-child(2) { border-right: 0; } .trust-strip li:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 479px) { .trust-strip li { font-size: 0.8rem; padding: 0.85rem 0.75rem; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.75); margin-bottom: 1rem; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: '/'; margin-right: 6px; opacity: 0.5; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs [aria-current] { color: #fff; font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c7d3e0; }
.card h3 { font-size: var(--fs-lg); margin-bottom: 0.35em; }
.card h3 a { color: inherit; }
.card p { color: var(--ink-2); font-size: var(--fs-sm); }
.card .icon { width: 56px; height: 56px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: var(--navy-50); color: var(--navy); }
.card .icon svg { width: 30px; height: 30px; }
.card--cat .icon { background: var(--navy); color: #fff; }
.card--heating .icon { background: var(--orange); color: #fff; }
.card--ac .icon { background: var(--ice-600); color: #fff; }
.card--commercial { background: var(--navy-deep); border-color: var(--navy-deep); }
.card--commercial h3, .card--commercial p, .card--commercial li a { color: #fff; }
.card--commercial p { color: rgba(255, 255, 255, 0.8); }
.card--commercial .icon { background: var(--orange); color: #fff; }
.card__list { list-style: none; margin: 0.25rem 0 1.25rem; padding: 0; display: grid; gap: 6px; }
.card__list a { display: flex; align-items: flex-start; gap: 8px; color: var(--ink); font-size: var(--fs-sm); padding: 2px 0; line-height: 1.45; }
.card__list a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; margin-top: 0.55em; }
.card__list a:hover { color: var(--orange); }
.card--commercial .card__list a { color: rgba(255, 255, 255, 0.9); }
.card__foot { margin-top: auto; padding-top: 0.5rem; }
.card__foot .btn { width: 100%; white-space: normal; text-align: center; line-height: 1.3; padding-left: 0.6rem; padding-right: 0.6rem; }
.card--media { padding: 0; overflow: hidden; }
.card--media img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card--media .card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.service-tile {
  display: flex; align-items: center; gap: 14px; padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--navy); font-weight: 600; font-size: var(--fs-sm); transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.service-tile svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
.service-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #c7d3e0; color: var(--navy); }
.service-tile--dark { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.16); color: #fff; }
.service-tile--dark:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.service-tile--dark svg { color: #ffb59a; }

/* ---------- Emergency section ---------- */
.emergency { background: var(--orange); color: #fff; position: relative; overflow: hidden; }
.emergency::after { content: ''; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%; background: radial-gradient(closest-side, rgba(255, 255, 255, 0.14), transparent); pointer-events: none; }
.emergency .container { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.emergency h2, .emergency p { color: #fff; }
.emergency .eyebrow { color: #fff; } .emergency .eyebrow::before { background: #fff; }
.emergency__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.emergency__list li { display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3); padding: 12px 14px; border-radius: var(--radius); font-weight: 600; font-size: var(--fs-sm); }
.emergency__list svg { width: 20px; height: 20px; flex: none; }
.emergency .btn--light { color: var(--orange-dark); }
.emergency .btn--light:hover { background: var(--navy); color: #fff; }
.emergency__phone { font-family: var(--font-display); font-size: var(--fs-2xl); color: #fff; display: inline-flex; align-items: center; gap: 12px; margin-top: 0.75rem; }
.emergency__phone svg { width: 32px; height: 32px; }
.emergency__phone:hover { color: var(--navy-deep); }
@media (max-width: 899px) { .emergency .container { grid-template-columns: 1fr; } }
@media (max-width: 479px) { .emergency__list { grid-template-columns: 1fr; } }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.why-item { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 1.5rem; }
.why-item .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-item .icon svg { width: 26px; height: 26px; }
.why-item h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.4em; }
.why-item p { color: rgba(255, 255, 255, 0.82); font-size: var(--fs-sm); margin: 0; }
@media (max-width: 1023px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Feature (category) sections ---------- */
.feature { position: relative; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--navy-100); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media--placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); color: #fff; text-align: center; padding: 2rem; }
.feature__media--placeholder svg { width: 96px; height: 96px; opacity: 0.85; margin: 0 auto 1rem; }
.feature__media--placeholder span { display: block; font-size: var(--fs-xs); opacity: 0.75; max-width: 30ch; margin: 0 auto; }
.feature__media--heating.feature__media--placeholder { background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%); }
.feature__media--ac.feature__media--placeholder { background: linear-gradient(135deg, var(--ice-600) 0%, #6fb4dc 100%); }
.feature__badge { position: absolute; left: 16px; bottom: 16px; background: #fff; color: var(--navy); border-radius: 10px; padding: 10px 14px; font-size: var(--fs-xs); font-weight: 600; box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: 8px; }
.feature__badge svg { width: 18px; height: 18px; color: var(--orange); }
.feature__services { list-style: none; margin: 1.25rem 0 1.75rem; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; }
.feature__services a { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 500; font-size: var(--fs-sm); padding: 6px 0; border-bottom: 1px dashed var(--line); }
.feature__services a svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.feature__services a:hover { color: var(--orange); }
@media (max-width: 479px) { .feature__services { grid-template-columns: 1fr; } }

/* ---------- Commercial section ---------- */
.commercial { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.commercial::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 14px); pointer-events: none; }
.commercial .container { position: relative; }
.commercial h2, .commercial h3, .commercial p { color: #fff; }
.commercial .lead { color: rgba(255, 255, 255, 0.85); }
.commercial__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; margin: 2rem 0; }
.commercial__item { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; color: #fff; transition: background 0.18s var(--ease), transform 0.18s var(--ease); }
.commercial__item:hover { background: rgba(246, 79, 34, 0.9); transform: translateY(-3px); color: #fff; }
.commercial__item svg { width: 34px; height: 34px; color: #ffb59a; }
.commercial__item:hover svg { color: #fff; }
.commercial__item h3 { font-size: 1.05rem; margin: 0.35rem 0 0; }
.commercial__item p { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.78); margin: 0; }
.commercial__item:hover p { color: rgba(255, 255, 255, 0.92); }
@media (max-width: 1023px) { .commercial__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 639px) { .commercial__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 419px) { .commercial__grid { grid-template-columns: 1fr; } }

/* ---------- Reviews / social proof ---------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.review-card .stars { color: #f5b301; display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-card .stars svg { width: 20px; height: 20px; }
.review-card blockquote { margin: 0 0 1rem; font-size: var(--fs-md); color: var(--ink); line-height: 1.55; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; font-size: var(--fs-sm); color: var(--muted); }
.review-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-pill { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-weight: 600; font-size: var(--fs-sm); color: var(--navy); }
.badge-pill svg { width: 20px; height: 20px; color: var(--orange); }

/* ---------- Service areas ---------- */
.county-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; }
.county-card h3 { display: flex; align-items: center; gap: 10px; }
.county-card h3 svg { width: 26px; height: 26px; color: var(--orange); }
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0 1.25rem; padding: 0; list-style: none; }
.city-chips a { display: inline-block; padding: 7px 12px; border-radius: 999px; background: var(--navy-50); color: var(--navy); font-size: var(--fs-xs); font-weight: 600; border: 1px solid transparent; transition: all 0.15s var(--ease); }
.city-chips a:hover { background: var(--navy); color: #fff; }
.city-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px 16px; }
.city-grid a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; color: var(--ink); font-size: var(--fs-sm); }
.city-grid a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; }
.city-grid a:hover { background: var(--navy-50); color: var(--navy); }
@media (max-width: 899px) { .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 599px) { .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Content pages (service / city) ---------- */
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.page-layout--contact { grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); }
@media (max-width: 1023px) { .page-layout, .page-layout--contact { grid-template-columns: 1fr; } }
.prose h2 { font-size: var(--fs-xl); margin-top: 2.25rem; }
.prose h2:first-child { margin-top: 0; }
.prose > section + section { margin-top: 2.75rem; } /* sectioned articles (service + town pages): keep a gap even though each h2 is a first-child */
.prose h3 { font-size: var(--fs-lg); margin-top: 1.75rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul.checks { list-style: none; padding: 0; display: grid; gap: 8px; }
.prose ul.checks li { display: flex; gap: 10px; align-items: flex-start; }
.prose ul.checks svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 3px; }
.prose ul.checks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 639px) { .prose ul.checks--2 { grid-template-columns: 1fr; } }
.callout { background: var(--orange-50); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.callout p:last-child { margin: 0; }
.callout--navy { background: var(--navy-50); border-color: var(--navy); }

.steps { list-style: none; margin: 1.25rem 0; padding: 0; display: grid; gap: 12px; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.steps li::before { counter-increment: step; content: counter(step); width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.steps h3, .steps h4 { margin: 0 0 0.25rem; font-size: 1.05rem; font-family: var(--font-text); }
.steps p { margin: 0; font-size: var(--fs-sm); }

.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 1.25rem 0; }
.option { background: var(--grey-50); border-radius: var(--radius); padding: 1.1rem 1.25rem; border: 1px solid var(--line); }
.option h4, .option h3 { font-family: var(--font-text); font-size: 1rem; margin: 0 0 0.3rem; }
.option p { margin: 0; font-size: var(--fs-sm); }
@media (max-width: 639px) { .option-grid { grid-template-columns: 1fr; } }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; font-weight: 600; color: var(--navy); font-size: var(--fs-base); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; line-height: 1; color: var(--orange); flex: none; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--orange-50); transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 0 0 1.1rem; color: var(--ink-2); padding-right: 2.5rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 899px) { .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .related-grid { grid-template-columns: 1fr; } }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 1.25rem; }
@media (max-width: 1023px) { .sidebar { position: static; } }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.side-card--navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.side-card--navy h3, .side-card--navy p { color: #fff; }
.side-card--navy p { color: rgba(255, 255, 255, 0.85); font-size: var(--fs-sm); }
.side-card--navy .phone-big { color: #fff; }
.side-card--navy .phone-big svg { color: #ffb59a; }
.side-card--navy ul.checks li { color: #fff; }
.side-card--navy ul.checks svg { color: #ffb59a; }
.phone-big { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: 0.25rem 0 0.75rem; }
.phone-big svg { width: 24px; height: 24px; color: var(--orange); }
.phone-big:hover { color: var(--orange); }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li { border-bottom: 1px solid var(--grey-100); }
.side-links li:last-child { border-bottom: 0; }
.side-links a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; color: var(--ink); font-size: var(--fs-sm); font-weight: 500; }
.side-links a[aria-current="page"] { color: var(--orange); font-weight: 600; }
.side-links a svg { width: 16px; height: 16px; color: var(--orange); flex: none; }
.side-links a:hover { color: var(--orange); }
ul.checks { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 8px; }
ul.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); }
ul.checks svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 2px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 479px) { .form__row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: var(--fs-xs); font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; font-size: 1rem; color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease); min-height: 50px;
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23013261' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form textarea { min-height: 110px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(1, 50, 97, 0.15); }
.form input:user-invalid, .form select:user-invalid { border-color: #c62828; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.75rem; color: var(--muted); line-height: 1.45; }
.form .consent input { width: 18px; height: 18px; min-height: 0; margin-top: 2px; flex: none; accent-color: var(--orange); }
.form .consent label { font-weight: 400; color: var(--muted); margin: 0; font-size: 0.75rem; }
.form__status { font-size: var(--fs-sm); font-weight: 600; margin: 0; display: none; }
.form__status.is-error { display: block; color: #c62828; }
.form__status.is-success { display: block; color: var(--success); }
.form .honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form--dark label { color: #fff; }
.form--dark .consent, .form--dark .consent label { color: rgba(255, 255, 255, 0.75); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band h2 { color: #fff; margin: 0 0 0.25em; font-size: var(--fs-xl); }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-band--orange { background: var(--orange); }
.cta-band--orange .btn--light { color: var(--orange-dark); }
.cta-band--orange .btn--ghost-light:hover { color: var(--orange-dark); }

/* ---------- Request service section (home) ---------- */
.request { background: var(--navy); }
.request .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.request h2, .request p, .request li { color: #fff; }
.request .lead { color: rgba(255, 255, 255, 0.85); }
.request__form { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-lg); }
.request__form h3 { font-size: var(--fs-lg); margin-bottom: 0.25rem; }
.request__form p.small { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 1rem; }
@media (max-width: 899px) { .request .container { grid-template-columns: 1fr; } }

/* ---------- Coupon / financing ---------- */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 799px) { .offer { grid-template-columns: 1fr; } }
.offer__coupon { border: 2px dashed var(--orange); border-radius: var(--radius-lg); padding: 1.75rem; background: var(--orange-50); display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; }
.offer__amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--orange); line-height: 1; }
.offer__coupon small { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.4; }
.offer__fin { border-radius: var(--radius-lg); padding: 1.75rem; background: var(--navy); color: #fff; display: flex; flex-direction: column; gap: 0.75rem; }
.offer__fin h3 { color: #fff; margin: 0; }
.offer__fin p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: var(--fs-sm); }
.offer__fin .btn { align-self: flex-start; }
@media (max-width: 479px) { .offer__coupon { grid-template-columns: 1fr; } }

/* ---------- 21 Coupons Grid & Cards ---------- */
.coupons-wrapper { margin-top: 2rem; }
.coupon-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.coupon-tab { background: #f0f4f8; color: var(--navy-800); border: 1px solid #d0deeb; padding: 0.5rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: all 0.2s ease; }
.coupon-tab:hover { background: #e1ebf5; color: var(--navy); }
.coupon-tab.is-active { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 4px 12px rgba(240, 83, 35, 0.25); }

.coupon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 767px) { .coupon-grid { grid-template-columns: 1fr; } }

.coupon-box { background: #092648; border-radius: var(--radius-lg); padding: 8px; box-shadow: 0 6px 20px rgba(9, 38, 72, 0.15); transition: transform 0.2s ease, box-shadow 0.2s ease; position: relative; }
.coupon-box:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(9, 38, 72, 0.25); }
.coupon-box.is-hidden { display: none !important; }

.coupon-box__inner { border: 2px dashed rgba(255, 255, 255, 0.45); border-radius: calc(var(--radius-lg) - 4px); padding: 1.75rem 1.25rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: space-between; height: 100%; }
.coupon-box__header { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; background: rgba(255, 255, 255, 0.1); padding: 4px 12px 4px 6px; border-radius: 999px; }
.coupon-box__badge { width: 32px; height: 32px; border-radius: 50%; background: #ffffff; padding: 3px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.coupon-box__badge img { width: 100%; height: 100%; object-fit: contain; }
.coupon-box__cat { font-size: 0.725rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #bfe0ff; }

.coupon-box__amount { font-family: var(--font-display); font-size: clamp(2.75rem, 4vw, 3.5rem); font-weight: 800; color: #ffffff; line-height: 1; margin: 0.5rem 0; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
.coupon-box__title { font-size: 1.25rem; font-weight: 700; color: #ffffff; margin: 0.25rem 0 1.25rem; line-height: 1.35; min-height: 3rem; display: flex; align-items: center; justify-content: center; text-align: center; }

.coupon-box__btn { width: 100%; max-width: 260px; background: var(--orange); color: #ffffff; border: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.75rem 1.5rem; border-radius: var(--radius-md); box-shadow: 0 4px 12px rgba(240, 83, 35, 0.3); margin-bottom: 1.25rem; transition: background 0.15s ease, transform 0.15s ease; }
.coupon-box__btn:hover { background: #e0451a; color: #ffffff; transform: translateY(-1px); }

.coupon-box__fine { font-size: 0.685rem; color: rgba(255, 255, 255, 0.75); line-height: 1.45; margin: 0; max-width: 420px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.82); font-size: var(--fs-sm); }
.footer__top { padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(6, minmax(0, 1fr)); gap: 2rem 1.5rem; }
.footer__brand img { height: 48px; width: auto; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer__brand p { margin: 1rem 0; color: rgba(255, 255, 255, 0.75); font-size: var(--fs-xs); }
.footer__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer__phone svg { width: 20px; height: 20px; color: var(--orange); }
.footer__phone:hover { color: #ffb59a; }
.footer__meta { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.7); display: grid; gap: 6px; }
.footer__meta a { color: rgba(255, 255, 255, 0.85); }
.footer__meta a:hover { color: #fff; text-decoration: underline; }
.site-footer h3 { font-family: var(--font-text); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: #ffb59a; margin-bottom: 1rem; font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.site-footer li a { color: rgba(255, 255, 255, 0.82); font-size: 0.875rem; line-height: 1.4; display: inline-block; }
.site-footer li a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--orange); }
.footer__bottom { padding: 1.25rem 0; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6); }
.footer__bottom a { color: rgba(255, 255, 255, 0.75); }
.footer__bottom a:hover { color: #fff; }
.social { display: flex; gap: 8px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); color: #fff; transition: background 0.15s var(--ease); }
.social a:hover { background: var(--orange); color: #fff; }
.social svg { width: 18px; height: 18px; }
.footer__pay { margin-top: 1rem; }
.footer__pay img { height: 26px; width: auto; }
@media (max-width: 1099px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 699px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 419px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Misc ---------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; margin-top: 1.5rem; }
.stat-row div strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--orange); line-height: 1.1; }
.stat-row div span { font-size: var(--fs-xs); color: var(--muted); }
.on-dark .stat-row div span { color: rgba(255, 255, 255, 0.75); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--navy-50); color: var(--navy); font-weight: 600; font-size: var(--fs-xs); }
.pill:hover { background: var(--navy); color: #fff; }
.pill svg { width: 16px; height: 16px; }
.divider { height: 1px; background: var(--line); margin: 2rem 0; }
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame { aspect-ratio: 4 / 3; }
/* Real job photos */
.photo-figure { margin: 1.75rem 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy-100); }
.photo-figure img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.photo-figure figcaption { font-size: var(--fs-xs); color: var(--muted); padding: 0.7rem 1rem; background: #fff; border-top: 1px solid var(--line); }
.prose .photo-figure img { aspect-ratio: 3 / 2; }
.work-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.work-strip .photo-figure { margin: 0; }
@media (max-width: 720px) { .work-strip { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--grey-100); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius-lg); }
.blog-list article { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.blog-list h2 { font-size: var(--fs-lg); }
.blog-list h2 a { color: var(--navy); }
.blog-list h2 a:hover { color: var(--orange); }
.article-body h2 { font-size: var(--fs-xl); margin-top: 2rem; }
.article-body h3 { font-size: var(--fs-lg); margin-top: 1.5rem; }
.article-body p, .article-body li { color: var(--ink-2); }
.notfound { text-align: center; padding: 5rem 0; }
.notfound h1 { font-size: 5rem; color: var(--orange); margin: 0; }

@media print { .site-header, .topbar, .sticky-cta, .drawer, .site-footer .footer__top { display: none !important; } }

/* ---------- Homepage coupon ticker ---------- */
.offers-section { overflow: hidden; }
.offers-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.offers-section__head .section-head { margin-bottom: 0; }
.offers-section__actions { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; }
.ticker__toggle { width: 44px; height: 44px; border-radius: 10px; background: #fff; border: 1px solid var(--line); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.ticker__toggle svg { width: 18px; height: 18px; }
.ticker__toggle svg:last-child { display: none; }
.ticker__toggle[aria-pressed="true"] svg:first-child { display: none; }
.ticker__toggle[aria-pressed="true"] svg:last-child { display: block; }
.ticker__toggle:hover { border-color: var(--navy); }
.ticker { margin: 2rem 0 1.75rem; padding: 0.5rem 0 1rem; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.ticker__track { display: flex; width: max-content; animation: tickerScroll 70s linear infinite; will-change: transform; }
.ticker:hover .ticker__track, .ticker:focus-within .ticker__track, .ticker.is-paused .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; gap: 1rem; padding-right: 1rem; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }
.ticket {
  position: relative; width: 250px; flex: none; background: #fff; border: 2px dashed var(--orange); border-radius: 14px; padding: 1.1rem 1.25rem 1rem;
  display: flex; flex-direction: column; gap: 0.3rem; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.ticket::before, .ticket::after { content: ""; position: absolute; top: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--grey-50); transform: translateY(-50%); border: 2px dashed var(--orange); }
.ticket::before { left: -11px; border-left-color: transparent; border-top-color: transparent; border-bottom-color: transparent; }
.ticket::after { right: -11px; border-right-color: transparent; border-top-color: transparent; border-bottom-color: transparent; }
.ticket:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--orange-50); color: var(--ink); }
.ticket__cat { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); opacity: 0.75; }
.ticket__amount { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--orange); font-weight: 700; }
.ticket__title { font-size: 0.9rem; font-weight: 600; color: var(--navy); line-height: 1.35; min-height: 2.4em; }
.ticket__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--orange-dark); margin-top: 0.25rem; }
.ticket__cta svg { width: 14px; height: 14px; transition: transform 0.18s var(--ease); }
.ticket:hover .ticket__cta svg { transform: translateX(4px); }
.offers-section__fin { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1.25rem; }
.offers-section__fin > svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
.offers-section__fin p { margin: 0; flex: 1 1 320px; font-size: var(--fs-sm); color: var(--ink-2); }
@media (prefers-reduced-motion: reduce) {
  .ticker { -webkit-mask-image: none; mask-image: none; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.25rem; }
  .ticker__track { animation: none; }
  .ticker__group[aria-hidden="true"] { display: none; }
  .ticket { scroll-snap-align: start; }
}

/* ---------- Step form (Request Service wizard) ---------- */
.form--steps { gap: 12px; }
.fprog { height: 6px; background: var(--grey-100); border-radius: 3px; overflow: hidden; }
.fprog__bar { display: block; height: 100%; background: linear-gradient(90deg, var(--orange-dark), var(--orange)); border-radius: 3px; transition: width 0.35s var(--ease); }
.fprog__label { font-size: var(--fs-xs); color: var(--muted); margin: -4px 0 0; }
.fprog__label [data-step-title] { color: var(--navy); font-weight: 600; }
.fstep { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.fstep.is-active { display: grid; gap: 12px; animation: stepIn 0.25s var(--ease); }
.fstep.is-shake { animation: shake 0.35s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes shake { 0%, 100% { transform: none; } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice-grid--1 { grid-template-columns: 1fr; }
@media (max-width: 419px) { .choice-grid { grid-template-columns: 1fr; } }
.form .choice {
  position: relative; display: flex; align-items: center; gap: 10px; padding: 10px 12px; margin: 0; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; background: #fff;
  font-size: var(--fs-sm); font-weight: 500; color: var(--ink); min-height: 54px; transition: border-color 0.15s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
}
.form .choice input { position: absolute; opacity: 0; width: 1px; height: 1px; min-height: 0; padding: 0; margin: 0; pointer-events: none; }
.choice__ico { width: 34px; height: 34px; border-radius: 9px; background: var(--navy-50); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: none; transition: background 0.15s var(--ease), color 0.15s var(--ease); }
.choice__ico svg { width: 18px; height: 18px; }
.choice__txt { display: flex; flex-direction: column; line-height: 1.25; }
.choice__txt strong { font-weight: 600; }
.choice__txt small { font-size: 0.72rem; color: var(--muted); font-weight: 400; margin-top: 2px; }
.form .choice:hover { border-color: var(--navy); transform: translateY(-1px); }
.form .choice:has(input:checked), .form .choice.is-selected { border-color: var(--orange); background: var(--orange-50); box-shadow: 0 0 0 3px rgba(246, 79, 34, 0.16); }
.form .choice:has(input:checked) .choice__ico, .form .choice.is-selected .choice__ico { background: var(--orange); color: #fff; }
.form .choice:has(input:focus-visible) { outline: 3px solid var(--orange); outline-offset: 2px; }
.fnav { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 2px; }
.fnav [data-next] { margin-left: auto; }
.fnav [data-prev] svg { transform: rotate(180deg); }
.fstep--choice .fnav [data-next] { visibility: hidden; }
.fstep--choice.is-answered .fnav [data-next] { visibility: visible; }
.field-hint { display: block; font-size: 0.72rem; color: var(--muted); margin: 0; }
.field-error { display: none; font-size: 0.74rem; color: #c62828; margin: 5px 0 0; font-weight: 600; line-height: 1.35; }
.field-error.is-visible { display: block; }
.field-error.is-ok { display: block; color: var(--success); }
.form .is-invalid { border-color: #c62828 !important; box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12) !important; }
.form input[readonly] { background: var(--grey-50); color: var(--muted); }
.form__row--city { grid-template-columns: 1.6fr 0.55fr 1fr; }
@media (max-width: 479px) { .form__row--city { grid-template-columns: 1fr 1fr; } .form__row--city > :first-child { grid-column: 1 / -1; } }
.fsummary { display: flex; flex-wrap: wrap; gap: 6px; }
.fsummary:empty { display: none; }
.fsummary span { display: inline-flex; align-items: center; gap: 6px; background: var(--navy-50); color: var(--navy); border-radius: 999px; padding: 5px 10px; font-size: 0.72rem; font-weight: 600; }
.fsummary button { color: var(--orange-dark); font-size: 0.72rem; font-weight: 700; text-decoration: underline; }

/* ---------- County compact cards + unlinked town chips (service areas) ---------- */
.county-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.county-mini { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.2rem; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.county-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.county-mini h3 { font-size: var(--fs-md); display: flex; align-items: center; gap: 8px; margin-bottom: 0.15rem; }
.county-mini h3 svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.county-mini .muted { font-size: var(--fs-xs); margin-bottom: 0.4rem; }
.county-mini__towns { font-size: var(--fs-xs); color: var(--navy); margin-bottom: 0.6rem; }
.county-mini .link-arrow { font-size: var(--fs-xs); }
.city-chips--plain li span { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--grey-50); border: 1px solid var(--line); font-size: var(--fs-xs); color: var(--muted); }
.city-chips a small { font-weight: 400; opacity: 0.75; }
@media (max-width: 1100px) { .county-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .county-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Full-screen request page (/request-service/) ---------- */
.quote-body { background: var(--grey-50); }
.quote { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.quote__bar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem var(--gutter); background: #fff; border-bottom: 1px solid var(--line); }
.quote__logo img { display: block; height: 40px; width: auto; }
.quote__bar-right { display: flex; align-items: center; gap: 0.75rem; }
.quote__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.quote__phone svg { width: 20px; height: 20px; color: var(--orange); }
.quote__phone small { display: block; font-family: var(--font-text); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.quote__phone:hover { color: var(--orange); }
.quote__close { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--grey-100); color: var(--navy); transition: background 0.15s var(--ease), color 0.15s var(--ease); }
.quote__close svg { width: 18px; height: 18px; }
.quote__close:hover { background: var(--navy); color: #fff; }
.quote__main { flex: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3.5rem) var(--gutter) clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; align-content: start; }
.quote__side { position: sticky; top: 92px; }
.quote__side h1 { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.6rem); margin: 0.35rem 0 0.6rem; }
.quote__side .lead { color: var(--ink-2); margin-bottom: 1.25rem; }
.quote__checks { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 10px; }
.quote__checks li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); font-size: var(--fs-sm); }
.quote__checks svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 2px; }
.quote__talk { color: var(--muted); font-size: var(--fs-sm); }
.quote__talk a { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.quote__talk a:hover { color: var(--orange); }
.quote__panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.25rem, 3vw, 2.25rem); }
/* Bigger, calmer form inside the panel */
.quote .form--steps { gap: 16px; }
.quote .fprog { height: 8px; }
.quote .fprog__label { display: flex; flex-direction: column; gap: 4px; margin: 4px 0 6px; font-size: 0; letter-spacing: 0.04em; text-transform: uppercase; } /* font-size 0 hides the " · " separator text node */
.quote .fprog__label [data-step-label] { font-size: var(--fs-xs); color: var(--muted); }
.quote .fprog__label [data-step-title] { font-family: var(--font-display); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); text-transform: none; letter-spacing: 0; line-height: 1.2; color: var(--navy); }
.quote .fstep.is-active { gap: 14px; }
.quote .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.quote .choice-grid--1 { grid-template-columns: 1fr; }
.quote .form .choice { min-height: 68px; padding: 14px 14px; border-radius: 12px; font-size: var(--fs-base); }
.quote .choice__ico { width: 42px; height: 42px; border-radius: 11px; }
.quote .choice__ico svg { width: 22px; height: 22px; }
.quote .choice__txt small { font-size: 0.78rem; }
.quote .form input, .quote .form select, .quote .form textarea { min-height: 52px; font-size: 1rem; }
.quote .fnav { margin-top: 6px; }
.quote .fnav .btn { min-height: 48px; }
.quote .fsummary { background: var(--navy-50); border-radius: 10px; padding: 10px 12px; }
@media (max-width: 899px) {
  .quote__main { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 1.25rem; }
  .quote__side { position: static; }
  .quote__side h1 { font-size: 1.6rem; margin-bottom: 0.4rem; }
  .quote__side .lead { font-size: var(--fs-sm); margin-bottom: 0.75rem; }
  .quote__side ul.quote__checks { display: none; }
  .quote__talk { display: none; }
  .quote .choice-grid { grid-template-columns: 1fr 1fr; }
  .quote__phone span { display: none; }
  .quote__phone { width: 42px; height: 42px; justify-content: center; border-radius: 50%; background: var(--orange); color: #fff; }
  .quote__phone svg { color: #fff; }
}
@media (max-width: 419px) { .quote .choice-grid { grid-template-columns: 1fr; } }
