/*
Theme Name:   Hurricane HVAC Child
Theme URI:    https://hurricanehvacservices.com
Description:  Custom Hello Elementor child theme for Hurricane HVAC Service, Baltimore MD. Conversion-focused, mobile-first, built for 24/7 emergency HVAC call generation. Every page stays editable in Elementor.
Author:       Hurricane HVAC Service
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hurricane-hvac
License:      GPL-2.0-or-later
*/

/* ==========================================================================
   1. DESIGN SYSTEM  —  tokens
   ========================================================================== */

:root {
  /* Brand palette (from logo) */
  --hvac-navy:      #1B4B72;   /* headings, nav, footer */
  --hvac-red:       #CB2A1F;   /* CALL BUTTON + 24/7 BADGE ONLY. 5.4:1 on white — was #E03127 at 4.53:1, too close to the 4.5 AA floor */
  --hvac-sky:       #4FA3D9;   /* icons, highlights, cooling accents */
  --hvac-pale:      #EAF3FA;   /* section backgrounds, card fills */
  --hvac-charcoal:  #1F2933;   /* body text */
  --hvac-white:     #FFFFFF;   /* page background */

  /* Derived tints — never used for CTAs */
  --hvac-navy-900:  #143857;
  --hvac-red-700:   #B4231B;   /* call button hover/active only */
  --hvac-border:    #D5E4F0;
  --hvac-muted:     #5A6B7A;
  --hvac-warn:      #B54708;   /* form validation only — red stays call-exclusive */
  --hvac-warn-bg:    #FDF1E7;

  /* Type */
  --font-head: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Fluid type scale — Apple-style contrast, mobile floor of 16px body */
  --fs-h1: clamp(2rem, 1.35rem + 3.1vw, 3.75rem);
  --fs-h2: clamp(1.6rem, 1.25rem + 1.7vw, 2.6rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --fs-h4: clamp(1.1rem, 1.03rem + 0.35vw, 1.25rem);
  --fs-body: 1rem;              /* 16px floor, never smaller */
  --fs-lead: clamp(1.06rem, 1rem + 0.4vw, 1.3rem);
  --fs-small: 0.9375rem;        /* 15px, labels only */

  /* Spacing — generous whitespace */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 5.5rem;

  --sec-pad-y: clamp(2.75rem, 1.6rem + 5vw, 5.5rem);
  --wrap: 1180px;
  --wrap-narrow: 760px;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(27,75,114,.06), 0 8px 24px rgba(27,75,114,.08);
  --shadow-card-hover: 0 2px 4px rgba(27,75,114,.08), 0 14px 36px rgba(27,75,114,.14);
  --shadow-header: 0 1px 0 rgba(27,75,114,.10), 0 2px 14px rgba(27,75,114,.06);

  /* Sticky mobile call bar height — reserved so it never covers content */
  --callbar-h: 68px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--hvac-white);
  color: var(--hvac-charcoal);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;            /* no horizontal scroll at any width */
}

/* Reserve space for the sticky call bar so it never covers content */
@media (max-width: 1024px) {
  body { padding-bottom: var(--callbar-h); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--hvac-navy);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: 1.06; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: var(--fs-h4); line-height: 1.25; }

p { margin: 0 0 var(--sp-4); max-width: 68ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--hvac-navy); text-decoration-color: rgba(79,163,217,.55); text-underline-offset: 3px; }
a:hover { color: var(--hvac-sky); }

img { max-width: 100%; height: auto; display: block; }

strong, b { font-weight: 700; color: var(--hvac-navy); }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }
li:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--hvac-border); margin: var(--sp-6) 0; }

/* Visible, high-contrast focus for keyboard users */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--hvac-sky);
  outline-offset: 2px;
  border-radius: 4px;
}

.hh-visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.hh-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--hvac-navy); color: #fff; padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-head); font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.hh-skip-link:focus { left: 0; color: #fff; }

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */

.hh-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
@media (min-width: 768px) { .hh-wrap { padding-inline: var(--sp-6); } }

.hh-sec { padding-block: var(--sec-pad-y); }
.hh-sec--tight { padding-block: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }
.hh-sec--pale { background: var(--hvac-pale); }
.hh-sec--navy { background: var(--hvac-navy); color: #E8F1F8; }
.hh-sec--navy h1, .hh-sec--navy h2, .hh-sec--navy h3, .hh-sec--navy h4,
.hh-sec--navy strong { color: #fff; }
.hh-sec--navy a { color: #BFDCF1; }

.hh-sec__head { max-width: var(--wrap-narrow); margin-bottom: var(--sp-6); }
.hh-sec__lead { font-size: var(--fs-lead); color: var(--hvac-muted); }
.hh-sec--navy .hh-sec__lead { color: #C7DCEC; }

/* ==========================================================================
   4. THE CALL BUTTON  —  red is reserved for calling, nothing else
   ========================================================================== */

.hh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 52px; padding: .85rem 1.5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.0625rem;
  line-height: 1.15; text-align: center; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease);
}

/* PRIMARY: the loudest element on any screen. Red. Uppercase. */
.hh-btn--call {
  background: var(--hvac-red); color: #fff;
  text-transform: uppercase; letter-spacing: .02em;
  min-height: 58px; padding: 1rem 1.75rem;
  box-shadow: 0 2px 0 rgba(0,0,0,.10), 0 10px 26px rgba(224,49,39,.30);
}
.hh-btn--call:hover, .hh-btn--call:focus-visible {
  background: var(--hvac-red-700); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 14px 32px rgba(224,49,39,.38);
}
.hh-btn--call:active { transform: translateY(0); }
.hh-btn--call .hh-btn__icon { width: 1.1em; height: 1.1em; flex: none; fill: currentColor; }

/* SECONDARY: never red. Used for form submits and low-priority links. */
.hh-btn--secondary {
  background: transparent; color: var(--hvac-navy); border-color: var(--hvac-navy);
}
.hh-btn--secondary:hover, .hh-btn--secondary:focus-visible {
  background: var(--hvac-navy); color: #fff;
}
.hh-btn--solid { background: var(--hvac-navy); color: #fff; }
.hh-btn--solid:hover, .hh-btn--solid:focus-visible { background: var(--hvac-navy-900); color: #fff; }

.hh-btn--block { display: flex; width: 100%; }
@media (min-width: 560px) { .hh-btn--block { display: inline-flex; width: auto; } }

/* The 24/7 badge — the only other red element on the site */
.hh-badge247 {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--hvac-red); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .8125rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .6rem; border-radius: 999px; white-space: nowrap;
}

/* ==========================================================================
   5. HEADER  —  logo left, red call button right, visible without scrolling
   ========================================================================== */

.hh-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--hvac-white);
  box-shadow: var(--shadow-header);
}

.hh-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  min-height: 68px; padding-block: .5rem;
}
@media (min-width: 1025px) { .hh-header__bar { min-height: 84px; } }

.hh-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex: none; }
.hh-logo img { width: auto; height: 44px; }
@media (min-width: 1025px) { .hh-logo img { height: 58px; } }

/* Text wordmark fallback when no logo has been uploaded yet */
.hh-logo__text { display: flex; flex-direction: column; line-height: 1; }
.hh-logo__text b {
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  letter-spacing: .01em; color: var(--hvac-navy); text-transform: uppercase;
}
.hh-logo__text span {
  font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  letter-spacing: .04em; color: var(--hvac-sky);
}
@media (min-width: 1025px) {
  .hh-logo__text b { font-size: 1.55rem; }
  .hh-logo__text span { font-size: .85rem; }
}

.hh-header__right { display: flex; align-items: center; gap: var(--sp-4); }

.hh-header__call { display: flex; align-items: center; gap: var(--sp-4); }
.hh-header__callmeta { display: none; text-align: right; line-height: 1.25; }
@media (min-width: 1025px) { .hh-header__callmeta { display: block; } }
.hh-header__callmeta .hh-badge247 { margin-bottom: .25rem; }
.hh-header__callmeta small {
  display: block; font-size: .8125rem; color: var(--hvac-muted); font-weight: 600;
}

/* Compact call button in the header on small screens */
.hh-header .hh-btn--call { min-height: 46px; padding: .6rem 1rem; font-size: .95rem; }
@media (min-width: 1025px) { .hh-header .hh-btn--call { min-height: 54px; padding: .85rem 1.4rem; font-size: 1.05rem; } }
.hh-header__call-label-full { display: none; }
@media (min-width: 700px) {
  .hh-header__call-label-full { display: inline; }
  .hh-header__call-label-short { display: none; }
}

/* --- Navigation --- */
.hh-nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; min-width: 46px;
  background: transparent; border: 1px solid var(--hvac-border);
  border-radius: var(--radius-sm); color: var(--hvac-navy); cursor: pointer;
}
@media (min-width: 1025px) { .hh-nav-toggle { display: none; } }
.hh-nav-toggle svg { width: 22px; height: 22px; fill: currentColor; pointer-events: none; }
.hh-nav-toggle__close { display: none; }
.hh-nav-toggle[aria-expanded="true"] .hh-nav-toggle__open { display: none; }
.hh-nav-toggle[aria-expanded="true"] .hh-nav-toggle__close { display: block; }

.hh-nav { display: none; }
@media (min-width: 1025px) {
  .hh-nav { display: block; margin-left: auto; margin-right: var(--sp-5); }
  .hh-nav ul { display: flex; align-items: center; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
  .hh-nav li { position: relative; margin: 0; }
  .hh-nav a {
    display: block; padding: .5rem 0; text-decoration: none;
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
    color: var(--hvac-navy);
  }
  .hh-nav a:hover, .hh-nav .current-menu-item > a { color: var(--hvac-sky); }
  /* dropdowns */
  .hh-nav .sub-menu {
    position: absolute; top: 100%; left: -1rem; min-width: 244px;
    background: #fff; border: 1px solid var(--hvac-border); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card); padding: .5rem; display: none; flex-direction: column; gap: 0;
  }
  .hh-nav li:hover > .sub-menu, .hh-nav li:focus-within > .sub-menu { display: flex; }
  .hh-nav .sub-menu a { padding: .6rem .75rem; border-radius: 6px; font-weight: 600; }
  .hh-nav .sub-menu a:hover { background: var(--hvac-pale); }
}

/* Mobile drawer */
@media (max-width: 1024px) {
  .hh-nav.is-open {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid var(--hvac-border);
    box-shadow: 0 18px 30px rgba(27,75,114,.14);
    max-height: calc(100vh - 68px - var(--callbar-h)); overflow-y: auto;
    padding: var(--sp-4) var(--sp-5) var(--sp-6);
  }
  .hh-nav.is-open ul { list-style: none; margin: 0; padding: 0; }
  .hh-nav.is-open li { margin: 0; border-bottom: 1px solid var(--hvac-pale); }
  .hh-nav.is-open a {
    display: block; padding: .95rem .25rem; text-decoration: none;
    font-family: var(--font-head); font-weight: 700; color: var(--hvac-navy);
    min-height: 44px;
  }
  .hh-nav.is-open .sub-menu { padding-left: var(--sp-4); }
  .hh-nav.is-open .sub-menu a { font-weight: 600; font-size: .95rem; color: var(--hvac-muted); }
}

/* ==========================================================================
   6. STICKY MOBILE TAP-TO-CALL BAR
   ========================================================================== */

.hh-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  height: var(--callbar-h);
  display: flex; align-items: center; gap: var(--sp-3);
  padding: .5rem var(--sp-4);
  padding-bottom: calc(.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--hvac-white);
  border-top: 1px solid var(--hvac-border);
  box-shadow: 0 -4px 18px rgba(27,75,114,.10);
}
@media (min-width: 1025px) { .hh-callbar { display: none; } }

.hh-callbar__meta { flex: 1 1 auto; min-width: 0; line-height: 1.2; }
.hh-callbar__meta strong {
  display: block; font-family: var(--font-head); font-size: .95rem; color: var(--hvac-navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hh-callbar__meta span { display: block; font-size: .78rem; color: var(--hvac-muted); font-weight: 600; }
.hh-callbar .hh-btn--call { flex: 0 0 auto; min-height: 50px; padding: .75rem 1.15rem; font-size: 1rem; }

/* ==========================================================================
   7. HERO
   ========================================================================== */

.hh-hero { position: relative; background: var(--hvac-pale); overflow: hidden; }
.hh-hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(2.5rem, 1.5rem + 5vw, 5.5rem);
  display: grid; gap: var(--sp-6); align-items: center;
}
@media (min-width: 900px) {
  .hh-hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--sp-8); }
}
.hh-hero__copy { max-width: 44rem; }
.hh-hero h1 { margin-bottom: var(--sp-4); }
.hh-hero__sub {
  font-size: var(--fs-lead); color: var(--hvac-charcoal);
  margin-bottom: var(--sp-6); max-width: 34ch;
}
.hh-hero__cta { display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start; }
@media (min-width: 560px) { .hh-hero__cta { flex-direction: row; align-items: center; flex-wrap: wrap; } }
.hh-hero__reassure {
  font-size: var(--fs-small); color: var(--hvac-muted); font-weight: 600; margin: 0;
}
.hh-hero__media { position: relative; }
.hh-hero__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-card); object-fit: cover;
  aspect-ratio: 4 / 3;                 /* reserved space — protects CLS */
}
/* Photo-free default so the design is complete before images are added */
.hh-hero__media--placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(79,163,217,.30), transparent 60%),
    linear-gradient(150deg, #DCEBF7 0%, #F3F9FD 55%, #E4F0F9 100%);
  border: 1px solid var(--hvac-border);
}
@media (max-width: 899px) { .hh-hero__media { display: none; } }

/* ==========================================================================
   8. TRUST BAR  —  the three proof lines, on every page
   ========================================================================== */

.hh-trustbar { background: var(--hvac-white); border-block: 1px solid var(--hvac-border); }
.hh-trustbar__grid {
  display: grid; gap: var(--sp-4);
  padding-block: var(--sp-5);
}
@media (min-width: 760px) { .hh-trustbar__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } }

.hh-trust { display: flex; align-items: flex-start; gap: var(--sp-3); }
.hh-trust__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--hvac-pale); color: var(--hvac-sky);
  display: grid; place-items: center;
}
.hh-trust__icon svg { width: 18px; height: 18px; fill: currentColor; }
.hh-trust__text { min-width: 0; }
.hh-trust__text b {
  display: block; font-family: var(--font-head); font-size: 1rem;
  color: var(--hvac-navy); line-height: 1.25; margin-bottom: .1rem;
}
.hh-trust__text span { display: block; font-size: var(--fs-small); color: var(--hvac-muted); }

/* ==========================================================================
   9. CARDS  —  Airbnb-style grids
   ========================================================================== */

.hh-grid { display: grid; gap: var(--sp-5); }
.hh-grid--2 { grid-template-columns: 1fr; }
.hh-grid--3 { grid-template-columns: 1fr; }
.hh-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .hh-grid--2, .hh-grid--3, .hh-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .hh-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .hh-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.hh-card {
  display: flex; flex-direction: column;
  background: var(--hvac-white);
  border: 1px solid var(--hvac-border); border-radius: var(--radius);
  padding: var(--sp-5);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.hh-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--hvac-sky); }
.hh-sec--pale .hh-card { background: #fff; }

.hh-card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--hvac-pale); color: var(--hvac-sky);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.hh-card__icon svg { width: 24px; height: 24px; fill: currentColor; }
.hh-card h3 { margin-bottom: var(--sp-2); }
.hh-card p { color: var(--hvac-muted); margin-bottom: var(--sp-4); }
.hh-card__links { list-style: none; margin: 0 0 var(--sp-4); padding: 0; }
.hh-card__links li { margin-bottom: .4rem; }
.hh-card__links a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; text-decoration: none; color: var(--hvac-navy);
  min-height: 32px;
}
.hh-card__links a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hvac-sky); flex: none;
}
.hh-card__links a:hover { color: var(--hvac-sky); text-decoration: underline; }
.hh-card__more {
  margin-top: auto; font-family: var(--font-head); font-weight: 700;
  text-decoration: none; color: var(--hvac-navy); display: inline-flex; gap: .35rem;
  min-height: 44px; align-items: center;
}
.hh-card__more:hover { color: var(--hvac-sky); gap: .6rem; }
.hh-card__more span { transition: transform .18s var(--ease); }
.hh-card__more:hover span { transform: translateX(3px); }

/* Area cards */
.hh-areacard { text-decoration: none; }
.hh-areacard h3 { display: flex; align-items: center; gap: .5rem; }
.hh-areacard__tag {
  display: inline-block; font-family: var(--font-head); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--hvac-pale); color: var(--hvac-navy);
  padding: .18rem .45rem; border-radius: 5px;
}

/* ==========================================================================
   10. NUMBERED STEPS  —  "How It Works"
   ========================================================================== */

.hh-steps { list-style: none; margin: 0; padding: 0; counter-reset: hhstep; display: grid; gap: var(--sp-5); }
@media (min-width: 820px) { .hh-steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }
.hh-steps--3 { }
@media (min-width: 820px) { .hh-steps--3 { grid-template-columns: repeat(3, 1fr); } }

.hh-step { counter-increment: hhstep; position: relative; padding-top: var(--sp-6); margin: 0; }
.hh-step::before {
  content: counter(hhstep);
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--hvac-navy); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  display: grid; place-items: center;
}
.hh-step b { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--hvac-navy); margin-bottom: .2rem; }
.hh-step span { color: var(--hvac-muted); }

/* ==========================================================================
   11. OBJECTION / FAQ  —  accordion, marked up as FAQPage
   ========================================================================== */

.hh-faq { max-width: 860px; border-top: 1px solid var(--hvac-border); }
.hh-faq__item { border-bottom: 1px solid var(--hvac-border); }
.hh-faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  background: none; border: 0; cursor: pointer;
  padding: var(--sp-5) 0; min-height: 56px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.075rem;
  color: var(--hvac-navy); text-align: left; line-height: 1.3;
}
.hh-faq__q:hover { color: var(--hvac-sky); }
.hh-faq__icon { flex: none; width: 22px; height: 22px; margin-top: 2px; position: relative; }
.hh-faq__icon::before, .hh-faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--hvac-sky); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.hh-faq__icon::before { width: 14px; height: 2.5px; }
.hh-faq__icon::after  { width: 2.5px; height: 14px; }
.hh-faq__q[aria-expanded="true"] .hh-faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.hh-faq__a { padding: 0 0 var(--sp-5); max-width: 68ch; color: var(--hvac-charcoal); }
.hh-faq__a p:last-child { margin-bottom: 0; }

/* ==========================================================================
   12. FINAL CTA BAND  —  before the footer on every page
   ========================================================================== */

.hh-finalcta { background: var(--hvac-navy); color: #E8F1F8; }
.hh-finalcta__inner {
  padding-block: clamp(2.5rem, 1.7rem + 3.6vw, 4.5rem);
  display: grid; gap: var(--sp-5); align-items: center;
}
@media (min-width: 900px) {
  .hh-finalcta__inner { grid-template-columns: minmax(0,1fr) auto; gap: var(--sp-8); }
}
.hh-finalcta h2 { color: #fff; margin-bottom: var(--sp-3); }
.hh-finalcta p { color: #C7DCEC; margin: 0; font-size: var(--fs-lead); }
.hh-finalcta__actions { display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start; }
@media (min-width: 900px) { .hh-finalcta__actions { align-items: flex-end; } }
.hh-finalcta__note { font-size: var(--fs-small); color: #A9C8E0; margin: 0; }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.hh-footer { background: var(--hvac-navy-900); color: #C7DCEC; }
.hh-footer a { color: #C7DCEC; text-decoration: none; }
.hh-footer a:hover { color: #fff; text-decoration: underline; }

.hh-footer__top { padding-block: var(--sp-8) var(--sp-7); display: grid; gap: var(--sp-7); }
@media (min-width: 760px)  { .hh-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .hh-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-6); } }

.hh-footer h2, .hh-footer h3 { color: #fff; }
.hh-footer__coltitle {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .09em; color: #7FB3D8;
  margin: 0 0 var(--sp-4);
}
.hh-footer ul { list-style: none; margin: 0; padding: 0; }
.hh-footer li { margin-bottom: .55rem; }
.hh-footer li a { display: inline-block; min-height: 30px; line-height: 30px; }

.hh-footer__brand { max-width: 34ch; }
.hh-footer__logo { margin-bottom: var(--sp-4); }
.hh-footer__logo img { height: 54px; width: auto; }
/* Text wordmark fallback defaults to navy for the light header — invisible on
   the footer's dark background, so repaint it here. */
.hh-footer__logo .hh-logo__text b { color: #fff; }
.hh-footer__logo .hh-logo__text span { color: var(--hvac-sky); }
.hh-footer__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.15rem;
  color: #fff !important; text-decoration: none; margin-bottom: var(--sp-2);
  min-height: 44px;
}
.hh-footer__phone .hh-btn__icon { width: 1.2em; height: 1.2em; flex: none; }
.hh-footer__phone:hover { color: #fff !important; text-decoration: underline; }
.hh-footer__hours { display: flex; align-items: center; gap: .5rem; margin-bottom: var(--sp-4); }
.hh-footer address { font-style: normal; line-height: 1.7; margin-bottom: var(--sp-3); }

.hh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  font-size: var(--fs-small);
}
.hh-footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* ==========================================================================
   14. FORMS  —  contact form stays visually subordinate to the phone
   ========================================================================== */

.hh-form { max-width: 620px; }
.hh-form--compact { max-width: 540px; }

.hh-field { margin-bottom: var(--sp-4); }
.hh-field label {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: .9375rem; color: var(--hvac-navy); margin-bottom: .35rem;
}
.hh-field .hh-req { color: var(--hvac-muted); font-weight: 600; }

.hh-field input[type="text"],
.hh-field input[type="tel"],
.hh-field input[type="email"],
.hh-field input[type="date"],
.hh-field select,
.hh-field textarea {
  width: 100%; min-height: 48px; padding: .7rem .85rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--hvac-charcoal);
  background: #fff; border: 1px solid var(--hvac-border); border-radius: var(--radius-sm);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.hh-field textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
.hh-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231B4B72' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center; background-size: 22px;
  padding-right: 2.4rem;
}
.hh-field :is(input, select, textarea):focus {
  outline: none; border-color: var(--hvac-sky);
  box-shadow: 0 0 0 3px rgba(79,163,217,.22);
}
.hh-field--error :is(input, select, textarea) { border-color: var(--hvac-warn); }
.hh-field__error { display: none; font-size: .875rem; color: var(--hvac-warn); margin-top: .3rem; font-weight: 600; }
.hh-field--error .hh-field__error { display: block; }

.hh-field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) { .hh-field-row--2 { grid-template-columns: 1fr 1fr; } }

/* Honeypot — hidden from people, reachable by bots */
.hh-hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.hh-form__submit { margin-top: var(--sp-5); }
.hh-form__note { font-size: var(--fs-small); color: var(--hvac-muted); margin-top: var(--sp-3); }
.hh-form__status { margin-top: var(--sp-4); padding: var(--sp-4); border-radius: var(--radius-sm); display: none; }
.hh-form__status.is-visible { display: block; }
.hh-form__status--ok { background: var(--hvac-pale); border: 1px solid var(--hvac-sky); color: var(--hvac-navy); }
.hh-form__status--err { background: var(--hvac-warn-bg); border: 1px solid var(--hvac-warn); color: var(--hvac-warn); }
.hh-form.is-busy .hh-btn { opacity: .65; pointer-events: none; }

/* The contact form is deliberately quieter than the phone number */
.hh-contactform-wrap { background: var(--hvac-pale); border-radius: var(--radius); padding: var(--sp-6); }
.hh-contactform-wrap h2 { font-size: var(--fs-h3); }

.grecaptcha-badge { visibility: hidden; }   /* replaced by inline notice, per Google's terms */
.hh-recaptcha-notice { font-size: .8125rem; color: var(--hvac-muted); margin-top: var(--sp-3); }
.hh-recaptcha-notice a { color: var(--hvac-muted); }

/* ==========================================================================
   15. CONTACT / SPLIT BLOCKS
   ========================================================================== */

.hh-split { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) { .hh-split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.hh-split--callfirst { align-items: start; }

.hh-contactoption { display: flex; gap: var(--sp-4); padding-block: var(--sp-4); border-bottom: 1px solid var(--hvac-border); }
.hh-contactoption:last-child { border-bottom: 0; }
.hh-contactoption__icon { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--hvac-pale); color: var(--hvac-sky); display: grid; place-items: center; }
.hh-contactoption__icon svg { width: 20px; height: 20px; fill: currentColor; }
.hh-contactoption b { display: block; font-family: var(--font-head); color: var(--hvac-navy); margin-bottom: .15rem; }
.hh-contactoption a { font-weight: 600; }

.hh-bigphone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem);
  color: var(--hvac-navy); text-decoration: none; min-height: 44px;
}
.hh-bigphone:hover { color: var(--hvac-sky); }

/* ==========================================================================
   16. BLOG
   ========================================================================== */

.hh-postgrid { display: grid; gap: var(--sp-6); }
@media (min-width: 700px)  { .hh-postgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .hh-postgrid { grid-template-columns: repeat(3, 1fr); } }

.hh-postcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hvac-border); border-radius: var(--radius); overflow: hidden; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.hh-postcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.hh-postcard__thumb { aspect-ratio: 16 / 9; background: var(--hvac-pale); overflow: hidden; }
.hh-postcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hh-postcard__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.hh-postcard h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.hh-postcard h3 a { text-decoration: none; }
.hh-postcard p { color: var(--hvac-muted); font-size: .9375rem; margin-bottom: var(--sp-4); }
.hh-postcard__more { margin-top: auto; font-family: var(--font-head); font-weight: 700; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }

.hh-cattag {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .07em;
  background: var(--hvac-pale); color: var(--hvac-navy);
  padding: .22rem .5rem; border-radius: 5px; margin-bottom: var(--sp-3);
  text-decoration: none;
}
a.hh-cattag:hover { background: var(--hvac-sky); color: #fff; }

.hh-catnav { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hh-catnav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .5rem 1rem; border: 1px solid var(--hvac-border); border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  color: var(--hvac-navy); text-decoration: none; background: #fff;
}
.hh-catnav a:hover, .hh-catnav a.is-current { background: var(--hvac-navy); color: #fff; border-color: var(--hvac-navy); }

/* Single post */
.hh-article { max-width: 760px; margin-inline: auto; }
.hh-article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); color: var(--hvac-muted); font-size: var(--fs-small); margin-bottom: var(--sp-5); }
.hh-article__hero { border-radius: var(--radius); overflow: hidden; margin-bottom: var(--sp-6); aspect-ratio: 16/9; }
.hh-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.hh-article__body h2 { font-size: var(--fs-h3); margin-top: var(--sp-7); }
.hh-article__body h3 { margin-top: var(--sp-6); }
.hh-article__body ul, .hh-article__body ol { padding-left: 1.35rem; }
.hh-article__body blockquote {
  margin: var(--sp-6) 0; padding: var(--sp-5); background: var(--hvac-pale);
  border-left: 4px solid var(--hvac-sky); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.hh-article__body blockquote p:last-child { margin-bottom: 0; }

.hh-softcta {
  margin-top: var(--sp-7); padding: var(--sp-6);
  background: var(--hvac-pale); border-radius: var(--radius); border: 1px solid var(--hvac-border);
}
.hh-softcta h2 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.hh-softcta p { margin-bottom: var(--sp-5); }

.hh-pagination { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-7); }
.hh-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 .75rem;
  border: 1px solid var(--hvac-border); border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; text-decoration: none; color: var(--hvac-navy);
}
.hh-pagination .page-numbers.current,
.hh-pagination .page-numbers:hover { background: var(--hvac-navy); color: #fff; border-color: var(--hvac-navy); }

/* ==========================================================================
   17. BREADCRUMBS / MISC
   ========================================================================== */

.hh-breadcrumbs { padding-block: var(--sp-4); font-size: var(--fs-small); color: var(--hvac-muted); }
.hh-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.hh-breadcrumbs li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.hh-breadcrumbs li + li::before { content: "/"; color: var(--hvac-border); }
.hh-breadcrumbs a { color: var(--hvac-muted); text-decoration: none; }
.hh-breadcrumbs a:hover { color: var(--hvac-sky); text-decoration: underline; }

.hh-prose { max-width: 760px; }
.hh-prose h2 { margin-top: var(--sp-7); font-size: var(--fs-h3); }
.hh-prose h2:first-child { margin-top: 0; }

.hh-checklist { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.hh-checklist li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .6rem; }
.hh-checklist li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
  background: var(--hvac-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234FA3D9' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/13px no-repeat;
}

.hh-404 { text-align: center; padding-block: var(--sp-9); }

/* ==========================================================================
   18. ELEMENTOR INTEROP
   Elementor sections carry our classes; neutralise its default gutters so the
   theme's own spacing system stays authoritative.
   ========================================================================== */

/* Sections carry the theme's own horizontal rhythm, not Elementor's. */
.elementor-section.hh-sec > .elementor-container,
.elementor-section.hh-hero > .elementor-container {
  max-width: var(--wrap);
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) {
  .elementor-section.hh-sec > .elementor-container,
  .elementor-section.hh-hero > .elementor-container { padding-inline: var(--sp-6); }
}

/* The trust bar draws its own full-width band. */
.elementor-section.hh-trustbar-wrap > .elementor-container { max-width: 100%; padding-inline: 0; }
.elementor-section.hh-trustbar-wrap { padding: 0; }

/* Vertical rhythm between widgets inside a section. */
.hh-sec .elementor-widget:not(:last-child),
.hh-hero .elementor-widget:not(:last-child) { margin-bottom: var(--sp-4); }
.hh-sec .elementor-widget-container > :last-child { margin-bottom: 0; }
.hh-sec .elementor-widget-shortcode:not(:last-child) { margin-bottom: var(--sp-5); }

.hh-sec .elementor-heading-title { color: inherit; }
.hh-sec--navy .elementor-heading-title,
.hh-finalcta .elementor-heading-title { color: #fff; }

/* Constrain running prose; grids and shortcodes stay full width. */
.hh-sec .elementor-widget-text-editor { max-width: 68ch; }
.hh-sec .elementor-widget-shortcode,
.hh-hero .elementor-widget-shortcode { max-width: none; }

/* Hero built from Elementor widgets (no fixed markup wrapper). */
.hh-hero { background: var(--hvac-pale); }
.hh-hero .hh-hero__title .elementor-heading-title { max-width: 20ch; }
.hh-hero .elementor-widget-text-editor { max-width: none; }
.hh-hero .hh-hero__sub { margin-bottom: 0; }
.hh-hero .elementor-widget-shortcode { margin-top: var(--sp-2); }

/* Hero photograph. Aspect ratio is reserved up front so it cannot shift layout. */
.hh-hero__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
@media (max-width: 767px) {
  /* On a phone the picture must never push the call button below the fold. */
  .hh-hero__img { display: none; }
}

/* Section headings and lead text inside Elementor widgets. */
.hh-sec .hh-sec__lead .elementor-widget-container,
.hh-sec .hh-sec__lead p { font-size: var(--fs-lead); color: var(--hvac-muted); }
.hh-cta-line { font-family: var(--font-head); font-weight: 700; }
.hh-cta-line a { text-decoration: none; }
/* Elementor editor: keep the sticky call bar out of the way while editing */
body.elementor-editor-active .hh-callbar { display: none; }
body.elementor-editor-active { padding-bottom: 0; }

/* ==========================================================================
   19. PRINT
   ========================================================================== */

@media print {
  .hh-callbar, .hh-nav, .hh-nav-toggle, .hh-finalcta, .hh-skip-link { display: none !important; }
  .hh-header { position: static; box-shadow: none; }
  body { padding-bottom: 0; }
}
