:root {
  --ink: #102033;
  --muted: #5b6f80;
  --line: #d5e4ee;
  --paper: #f7fbff;
  --soft: #eaf5fb;
  --mist: #eef7fc;
  --blue: #0e6fbe;
  --blue-dark: #063d78;
  --teal: #139bd7;
  --yellow: #ffb22b;
  --orange: #ff6a1a;
  --orange-dark: #c94b00;
  --coral: #ff6a1a;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(6, 61, 120, 0.16);
  --mobile-menu-top: 92px;
  --mobile-menu-left: 12px;
  --mobile-menu-width: min(420px, calc(100dvw - 24px));
  --desktop-menu-top: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 4vw, 58px);
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.topbar div,
.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar strong,
.topbar a {
  color: var(--yellow);
  font-weight: 900;
}

.language-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 5px 9px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.language-btn.is-active {
  background: var(--yellow);
  color: var(--ink);
}

.mobile-language-switch {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(251, 253, 252, 0.94);
  border-bottom: 1px solid rgba(217, 228, 232, 0.9);
  backdrop-filter: blur(16px);
}

.menu-toggle {
  display: none;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(6, 61, 120, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, var(--white), var(--mist));
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(6, 61, 120, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle::before {
  content: "";
  width: 18px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
  transition: transform 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 111, 190, 0.42);
  box-shadow: 0 12px 26px rgba(6, 61, 120, 0.16);
}

.nav-open .menu-toggle {
  border-color: rgba(255, 106, 26, 0.42);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--ink);
}

.nav-open .menu-toggle::before {
  transform: rotate(90deg);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 37, 72, 0.94) 0%, rgba(6, 37, 72, 0.74) 48%, rgba(6, 37, 72, 0.24) 100%),
    url("assets/hvac-hero.webp") center / cover no-repeat;
}

.home-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 790px;
  padding: 120px clamp(20px, 5vw, 72px) 64px;
}

.home-hero-copy {
  color: var(--white);
}

.home-hero-copy .eyebrow {
  color: var(--yellow);
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.07rem, 2vw, 1.25rem);
}

.quote-card {
  display: grid;
  gap: 13px;
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: 1.8rem;
}

.quote-card small {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.hero-stats strong {
  color: var(--yellow);
}

.review-ribbon {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--yellow);
  color: var(--ink);
}

.review-ribbon div {
  display: grid;
}

.review-ribbon strong {
  font-size: 1.2rem;
}

.review-ribbon a {
  border: 1px solid rgba(16, 34, 42, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 900;
}

.home-review-slider {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  overflow: hidden;
  padding: 58px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(239, 246, 249, 0.94), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.home-review-slider-head {
  display: grid;
  gap: 14px;
}

.home-review-slider-head h2 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.home-review-slider-head p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.google-review-marquee {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.google-reviews-shortcode {
  overflow: visible;
  min-width: 0;
}

.google-review-marquee.google-reviews-shortcode {
  padding: 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.google-reviews-shortcode > * {
  max-width: 100%;
}

.google-review-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: homeReviewSlide 30s linear infinite;
}

.google-review-marquee:hover .google-review-marquee-track {
  animation-play-state: paused;
}

.home-review-slide {
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(320px, 78vw);
  min-height: 190px;
  border: 1px solid rgba(14, 111, 190, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 31, 55, 0.12);
}

.home-review-slide .stars {
  color: var(--orange);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.home-review-slide strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.home-review-slide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 750;
}

@keyframes homeReviewSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-marquee-track {
    animation: none;
  }
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.section-kicker .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-kicker p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.franks-grid .service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.franks-grid .featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.franks-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.franks-grid .home-service-card {
  position: relative;
  display: grid;
  grid-template-rows: 188px 1fr;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border-color: rgba(14, 111, 190, 0.16);
  background: var(--white);
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.franks-grid .home-service-card.featured {
  background: var(--white);
  color: var(--ink);
}

.franks-grid .home-service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.franks-grid .home-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 111, 190, 0.36);
  box-shadow: 0 24px 48px rgba(8, 31, 55, 0.16);
}

.franks-grid .home-service-card:hover::after {
  transform: scaleX(1);
}

.service-photo {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 61, 120, 0.08), rgba(6, 37, 72, 0.52));
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 320ms ease;
}

.franks-grid .home-service-card:hover .service-photo img {
  transform: scale(1.08);
}

.service-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(6, 37, 72, 0.24);
}

.franks-grid .service-content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.franks-grid .service-label {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.franks-grid .home-service-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.franks-grid .home-service-card p:not(.service-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.franks-grid .home-service-card ul,
.franks-grid .home-service-card.featured ul {
  margin: 4px 0 0;
  color: var(--muted);
}

.franks-grid .home-service-card a {
  align-self: end;
  margin-top: 2px;
  color: var(--blue);
}

.franks-grid .home-service-card a:hover {
  color: var(--orange-dark);
}

@media (prefers-reduced-motion: reduce) {
  .franks-grid .home-service-card,
  .franks-grid .home-service-card::after,
  .service-photo img {
    transition: none;
  }

  .franks-grid .home-service-card:hover,
  .franks-grid .home-service-card:hover .service-photo img {
    transform: none;
  }
}

.specials-band {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 78px clamp(20px, 5vw, 72px);
  background: var(--blue-dark);
  color: var(--white);
}

.specials-band .eyebrow {
  color: var(--yellow);
}

.specials-band p {
  color: rgba(255, 255, 255, 0.78);
}

.specials-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.specials-copy .button {
  justify-self: start;
  margin-top: 6px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coupon-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(6, 37, 72, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.coupon-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.coupon-grid article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 178, 43, 0.42);
  border-radius: 50%;
  opacity: 0.6;
}

.coupon-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 178, 43, 0.62);
  box-shadow: 0 28px 54px rgba(6, 37, 72, 0.32);
}

.coupon-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.coupon-top small {
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 850;
}

.coupon-grid span,
.coupon-grid strong,
.coupon-grid a,
.coupon-grid button {
  display: block;
}

.coupon-grid span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.coupon-grid strong {
  margin: 2px 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.coupon-grid p {
  margin: 0;
  line-height: 1.48;
}

.coupon-grid a,
.coupon-grid button {
  align-self: end;
  justify-self: start;
  margin-top: 4px;
  border-radius: 8px;
  padding: 10px 12px;
  border: 0;
  background: rgba(255, 178, 43, 0.14);
  color: var(--yellow);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.coupon-grid a:hover,
.coupon-grid button:hover {
  background: var(--yellow);
  color: var(--ink);
}

.coupon-grid .featured-offer {
  background:
    linear-gradient(160deg, rgba(255, 106, 26, 0.28), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .coupon-grid article {
    transition: none;
  }

  .coupon-grid article:hover {
    transform: none;
  }
}

.big-coupons article {
  border-color: rgba(14, 111, 190, 0.18);
  background:
    linear-gradient(180deg, #ffffff, #f6fbfd),
    var(--white);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(8, 31, 55, 0.12);
}

.big-coupons article::after {
  border-color: rgba(14, 111, 190, 0.18);
}

.big-coupons span {
  color: var(--orange-dark);
}

.big-coupons strong {
  color: var(--blue-dark);
}

.big-coupons p {
  color: var(--muted);
}

.big-coupons .coupon-top small {
  background: rgba(14, 111, 190, 0.1);
  color: var(--blue-dark);
}

.big-coupons a,
.big-coupons button {
  background: var(--blue);
  color: var(--white);
}

.big-coupons a:hover,
.big-coupons button:hover {
  background: var(--orange);
  color: var(--white);
}

.big-coupons .featured-offer {
  border-color: rgba(255, 106, 26, 0.38);
  background:
    linear-gradient(160deg, rgba(255, 106, 26, 0.13), #ffffff 48%, #f6fbfd),
    var(--white);
}

.coupon-modal[hidden] {
  display: none;
}

.coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.coupon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 37, 72, 0.72);
  backdrop-filter: blur(5px);
}

.coupon-sheet {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.coupon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 34, 42, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.coupon-ticket {
  position: relative;
  overflow: hidden;
  margin: 18px;
  border: 2px dashed rgba(14, 111, 190, 0.34);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(239, 246, 249, 0.94), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.coupon-ticket::before,
.coupon-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 2px dashed rgba(14, 111, 190, 0.34);
  transform: translateY(-50%);
}

.coupon-ticket::before {
  left: -19px;
}

.coupon-ticket::after {
  right: -19px;
}

.coupon-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.coupon-brand-row img {
  width: min(240px, 64vw);
  height: auto;
}

.coupon-brand-row span,
.coupon-kicker {
  color: var(--orange-dark);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coupon-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
}

.coupon-ticket h2 {
  max-width: 620px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.coupon-value {
  width: fit-content;
  margin: 22px 0 16px;
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--blue-dark);
  color: var(--yellow);
  font-size: clamp(2.4rem, 9vw, 5rem);
  font-weight: 950;
  line-height: 0.95;
  box-shadow: 0 16px 36px rgba(6, 61, 120, 0.22);
}

.coupon-summary {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 750;
}

.coupon-code {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: fit-content;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--white);
}

.coupon-code span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.coupon-code strong {
  color: var(--blue-dark);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.coupon-terms {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 750;
}

.coupon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body.coupon-open {
  overflow: hidden;
}

@media print {
  body * {
    visibility: hidden;
  }

  .coupon-modal,
  .coupon-modal * {
    visibility: visible;
  }

  .coupon-modal {
    position: static;
    display: block;
    padding: 0;
  }

  .coupon-backdrop,
  .coupon-close,
  .coupon-actions {
    display: none;
  }

  .coupon-sheet {
    width: 100%;
    max-height: none;
    box-shadow: none;
  }
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.mini-proof span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 850;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.06);
}

.process-cards span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.process-cards p,
.why-box span {
  color: var(--muted);
}

.club-band,
.final-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 82px clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.club-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-contact {
  background: var(--blue-dark);
  color: var(--white);
}

.final-contact .eyebrow {
  color: var(--yellow);
}

.final-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods,
.why-box {
  display: grid;
  gap: 10px;
}

.contact-methods a,
.why-box span {
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 850;
}

.contact-methods a {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.contact-methods a strong {
  color: var(--yellow);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.contact-methods a span {
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.contact-methods a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 178, 43, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.social-follow {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.social-follow > span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.social-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-logo {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.social-logo svg {
  display: block;
  width: 31px;
  height: 31px;
}

.social-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.3);
}

.google-logo {
  background: var(--white);
}

.facebook-logo {
  background: var(--white);
}

.instagram-logo {
  background: var(--white);
}

.instagram-logo svg {
  width: 34px;
  height: 34px;
}

@media (prefers-reduced-motion: reduce) {
  .social-logo {
    transition: none;
  }

  .social-logo:hover {
    transform: none;
  }
}

.why-box {
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

.why-box span {
  background: var(--mist);
  color: var(--blue-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.faq-category {
  margin-top: 20px;
  padding-top: 12px;
}

.faq-category:first-child {
  margin-top: 0;
  padding-top: 0;
}

.faq-category h2 {
  margin: 4px 0 2px;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 34, 42, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-list details[open] {
  border-color: rgba(14, 111, 190, 0.28);
  box-shadow: 0 16px 36px rgba(16, 34, 42, 0.08);
}

.faq-list details:hover {
  transform: translateY(-2px);
}

.faq-list p {
  color: var(--muted);
}

.service-depth {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: 86px clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.service-depth.alt {
  background: var(--mist);
}

.service-depth p {
  color: var(--muted);
  font-size: 1.08rem;
}

.quality-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.06);
}

.quality-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.quality-card span {
  color: var(--muted);
}

.services-hero .trust-strip {
  margin-top: 28px;
}

.service-alert-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--yellow);
  color: var(--ink);
}

.service-alert-band div {
  display: grid;
  gap: 3px;
}

.service-alert-band span {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-alert-band strong {
  font-size: clamp(1.05rem, 2vw, 1.42rem);
}

.service-experience {
  background:
    linear-gradient(180deg, rgba(237, 246, 243, 0.72), rgba(251, 253, 252, 0)),
    var(--paper);
}

.service-focus-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
}

.focus-card {
  position: relative;
  display: grid;
  min-height: 440px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 232, 0.72);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 37, 72, 0.12) 0%, rgba(6, 37, 72, 0.9) 78%),
    var(--focus-image) center / cover no-repeat;
  opacity: 0.9;
  transition: transform 520ms ease, opacity 220ms ease;
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--teal));
}

.focus-card > * {
  position: relative;
}

.focus-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 178, 43, 0.7);
  box-shadow: 0 24px 50px rgba(16, 34, 42, 0.22);
}

.focus-card:hover::before {
  transform: scale(1.055);
  opacity: 1;
}

.focus-repair {
  --focus-image: url("assets/air-handler-service.webp");
}

.focus-install {
  --focus-image: url("assets/installation-service.webp");
}

.focus-performance {
  --focus-image: url("assets/comfort-home.webp");
}

.service-number {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: rgba(255, 178, 43, 0.96);
  color: var(--ink);
  font-weight: 950;
}

.focus-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.focus-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.focus-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.focus-card a {
  width: fit-content;
  color: var(--yellow);
  font-weight: 950;
}

.service-link-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--blue-dark);
  color: var(--white);
}

.service-link-board .eyebrow {
  color: var(--yellow);
}

.service-link-board p {
  color: rgba(255, 255, 255, 0.76);
}

.service-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-link-groups article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.service-link-groups article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 178, 43, 0.14), rgba(19, 155, 215, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-link-groups article:hover::before {
  opacity: 1;
}

.service-link-groups h3,
.service-link-groups a {
  position: relative;
}

.service-link-groups h3 {
  margin: 0 0 8px;
  color: var(--white);
}

.service-link-groups a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.service-link-groups a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateX(4px);
}

.service-photo-band {
  background: var(--mist);
}

.diagnostic-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.diagnostic-flow span {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(16, 34, 42, 0.06);
}

.diagnostic-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 10px;
  height: 2px;
  background: var(--yellow);
}

.service-final-cta {
  background: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  .focus-card,
  .focus-card::before,
  .service-link-groups a,
  .detail-list span,
  .detail-list span::before {
    transition: none;
  }

  .focus-card:hover,
  .focus-card:hover::before,
  .service-link-groups a:hover,
  .detail-list span:hover,
  .detail-list span:hover::before {
    transform: none;
  }
}

.service-cta-panel {
  border-radius: 8px;
  padding: 28px;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.service-cta-panel .button {
  margin-top: 10px;
}

.service-seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: 86px clamp(20px, 5vw, 72px);
  background: var(--mist);
}

.service-seo-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-seo-section h2 {
  margin-bottom: 18px;
}

.seo-list,
.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-list {
  margin-top: 24px;
}

.seo-list span,
.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.05);
}

.seo-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.seo-faq summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

.seo-faq p {
  margin: 10px 0 0;
}

.calculator-shell {
  padding: 0 clamp(18px, 5vw, 72px) 88px;
  background:
    linear-gradient(180deg, rgba(238, 247, 252, 0.94), rgba(247, 251, 255, 0.96) 42%, var(--paper)),
    var(--paper);
  color: var(--ink);
}

.calculator-shell * {
  box-sizing: border-box;
}

.calculator-wrap {
  max-width: 1250px;
  margin: auto;
}

.calculator-top,
.calculator-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calculator-top {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border: 0;
  padding: clamp(38px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(6, 37, 72, 0.94) 0%, rgba(6, 61, 120, 0.84) 54%, rgba(14, 111, 190, 0.56) 100%),
    url("assets/hvac-hero.webp") 68% center / cover no-repeat;
  color: var(--white);
}

.calculator-top::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 106, 26, 0.18);
}

.calculator-top > * {
  position: relative;
  z-index: 1;
}

.calculator-brand {
  display: inline-flex;
  border: 1px solid rgba(255, 178, 43, 0.42);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 178, 43, 0.13);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-top h1 {
  max-width: 780px;
  margin: 14px 0 12px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  line-height: 0.94;
}

.calculator-top p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.calculator-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(6, 37, 72, 0.2);
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
}

.calculator-panel {
  overflow: hidden;
}

.calculator-form {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px);
}

.calculator-section {
  margin: 0;
  border: 1px solid rgba(213, 228, 238, 0.84);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 20px);
  background: linear-gradient(180deg, var(--white), #fbfdff);
}

.calculator-section:last-child {
  margin: 0;
}

.calculator-section h2,
.calculator-head h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-shell label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.calculator-shell input,
.calculator-shell select {
  min-height: 46px;
  border: 1px solid #c8d9e5;
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.calculator-shell input:focus,
.calculator-shell select:focus {
  outline: 3px solid rgba(14, 111, 190, 0.14);
  border-color: var(--blue);
}

.calculator-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator-radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid #c8d9e5;
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--blue-dark);
  line-height: 1.2;
  overflow-wrap: normal;
  white-space: normal;
  word-break: normal;
}

.calculator-radios input[type="radio"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  accent-color: var(--blue);
}

.calculator-shell button {
  min-height: 48px;
  border: 1px solid rgba(201, 75, 0, 0.22);
  border-radius: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.calculator-secondary {
  border-color: var(--line) !important;
  background: var(--soft) !important;
  color: var(--blue-dark) !important;
}

.calculator-results {
  position: sticky;
  top: 106px;
  align-self: start;
}

.calculator-head {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 178, 43, 0.18), transparent 42%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.calculator-head h2,
.calculator-head p,
.calculator-head div {
  color: var(--white);
}

.calculator-cool {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.16), transparent 42%),
    linear-gradient(135deg, var(--teal), var(--blue-dark));
}

.calculator-btu {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.55rem);
  font-weight: 900;
}

.calculator-tons {
  font-size: 18px;
  font-weight: 900;
}

.calculator-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.calculator-stat {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfdff;
}

.calculator-stat span {
  color: var(--muted);
}

.calculator-stat b {
  color: var(--blue-dark);
}

.calculator-note {
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 0.86rem;
}

.calculator-warning {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.calculator-book {
  padding: 0 18px 18px;
}

.calculator-book .hcp-button {
  width: 100%;
  border: 1px solid rgba(201, 75, 0, 0.26);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(255, 106, 26, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 270px);
  max-height: 62px;
  filter: saturate(1.18) contrast(1.08) brightness(1.03) drop-shadow(0 3px 5px rgba(6, 37, 72, 0.16));
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(255, 178, 43, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-mega {
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}

.nav-item > a,
.nav-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.has-dropdown > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  min-width: 260px;
  transform: translateX(-50%) translateY(0);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.nav-item.is-desktop-open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-panel,
.small-panel,
.area-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mega-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr)) minmax(240px, 0.9fr);
  gap: 18px;
  width: min(860px, calc(100vw - 34px));
  padding: 22px;
}

.small-panel {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.area-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(145px, 1fr));
  gap: 14px;
  width: min(1080px, calc(100vw - 34px));
  padding: 20px;
}

@media (min-width: 1041px) {
  .mega-panel,
  .area-panel {
    position: fixed;
    top: var(--desktop-menu-top);
    left: var(--desktop-menu-left, 50vw);
    max-height: min(68vh, 640px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-50%) translateY(8px);
  }

  .has-dropdown:hover > .mega-panel,
  .has-dropdown:focus-within > .mega-panel,
  .nav-item.is-desktop-open > .mega-panel,
  .has-dropdown:hover > .area-panel,
  .has-dropdown:focus-within > .area-panel,
  .nav-item.is-desktop-open > .area-panel {
    transform: translateX(-50%) translateY(0);
  }
}

.menu-column,
.area-panel div {
  display: grid;
  align-content: start;
  gap: 5px;
}

.menu-column h3,
.area-panel h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.dropdown-menu a:not(.button) {
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--muted);
  font-weight: 800;
}

.dropdown-menu a:not(.button):hover {
  background: var(--mist);
  color: var(--blue);
}

.menu-promo {
  display: grid;
  align-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 18px;
  background: var(--blue-dark);
  color: var(--white);
}

.menu-promo strong {
  color: var(--yellow);
  font-size: 1.2rem;
}

.menu-promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a,
.nav-call,
.site-footer a,
.service-card a {
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.nav-call:hover,
.site-footer a:hover,
.service-card a:hover {
  color: var(--blue);
}

.nav-call {
  display: grid;
  min-width: max-content;
  gap: 1px;
  color: var(--blue-dark);
  font-weight: 900;
  text-align: right;
}

.nav-call span {
  color: var(--coral);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0e2d38;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 37, 72, 0.92) 0%, rgba(6, 37, 72, 0.74) 42%, rgba(6, 37, 72, 0.1) 76%),
    linear-gradient(0deg, rgba(6, 37, 72, 0.78) 0%, rgba(6, 37, 72, 0) 46%),
    url("assets/hvac-hero.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(840px, 100%);
  padding: 154px clamp(20px, 5vw, 72px) 54px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow,
.split-band .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5.95rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border: 1px solid rgba(201, 75, 0, 0.22);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(255, 106, 26, 0.24);
  text-shadow: none;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.trust-strip div {
  padding: 18px;
  background: rgba(6, 31, 42, 0.68);
}

.trust-strip dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-contact a {
  padding: 24px clamp(18px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span,
.quick-contact strong {
  display: block;
}

.quick-contact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-contact strong {
  margin-top: 4px;
  color: var(--blue-dark);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-item {
  min-height: 150px;
  padding: 28px;
  background: var(--paper);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.proof-item span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 40px;
}

.compact-heading {
  align-items: start;
}

.compact-heading > p,
.split-band p,
.maintenance-copy p,
.contact-copy p,
.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.compact-heading .eyebrow {
  grid-column: auto;
  margin-bottom: 12px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--soft);
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.review-card,
.check-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.06);
}

.service-card {
  min-height: 254px;
  padding: 24px;
}

.service-card.featured {
  background: var(--blue-dark);
  color: var(--white);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 8px;
  background: #eaf5fb;
  color: var(--teal);
  font-weight: 900;
}

.featured .service-icon {
  background: var(--yellow);
  color: var(--ink);
}

.service-card p,
.review-card blockquote {
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--yellow);
  font-weight: 900;
}

.split-band,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: 80px clamp(20px, 5vw, 72px);
  background: var(--blue-dark);
  color: var(--white);
}

.split-band p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 20px 20px 20px 72px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  color: rgba(255, 255, 255, 0.76);
}

.maintenance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--mist);
}

.maintenance-copy p {
  max-width: 720px;
  margin-bottom: 28px;
}

.check-panel {
  padding: 28px;
}

.check-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  margin: 0;
  padding: 26px;
}

.review-card blockquote {
  min-height: 138px;
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.review-card figcaption {
  color: var(--blue-dark);
  font-weight: 900;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: 78px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(239, 246, 249, 0.92), rgba(255, 255, 255, 0.96)),
    var(--soft);
}

.service-area-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.service-area-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-area-copy .button {
  justify-self: start;
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-card-grid article {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(14, 111, 190, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 31, 55, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.area-card-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.area-card-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 111, 190, 0.32);
  box-shadow: 0 20px 42px rgba(8, 31, 55, 0.14);
}

.area-card-grid h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.area-list span,
.area-list a {
  display: inline-flex;
  border: 1px solid rgba(14, 111, 190, 0.14);
  border-radius: 8px;
  padding: 9px 11px;
  background: #f7fbfd;
  color: var(--blue-dark);
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.area-list a:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .area-card-grid article,
  .area-list a {
    transition: none;
  }

  .area-card-grid article:hover,
  .area-list a:hover {
    transform: none;
  }
}

.cta-band {
  grid-template-columns: 1fr auto;
  align-items: center;
  background: var(--teal);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  padding: 88px clamp(20px, 5vw, 72px);
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
  font-weight: 850;
}

address a {
  color: var(--blue);
}

.contact-direct {
  gap: 14px;
}

.contact-location {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-methods-light {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-methods-light a {
  border-color: rgba(14, 111, 190, 0.16);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(16, 34, 42, 0.08);
}

.contact-methods-light a strong {
  color: var(--coral);
}

.contact-methods-light a span {
  color: var(--blue-dark);
}

.contact-methods-light a:hover {
  border-color: rgba(14, 111, 190, 0.32);
  background: #f8fbfc;
  box-shadow: 0 16px 34px rgba(16, 34, 42, 0.12);
}

.contact-social {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-social > span {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-social .social-logo {
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(16, 34, 42, 0.13);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7db;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(19, 155, 215, 0.18);
  border-color: var(--teal);
}

.wide,
.form-button,
.form-note,
.consent-stack {
  grid-column: 1 / -1;
}

.consent-stack {
  display: grid;
  gap: 12px;
}

.consent-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.sms-consent {
  background: rgba(14, 111, 190, 0.05);
  border-color: rgba(14, 111, 190, 0.18);
}

.consent-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.consent-check a,
.contact-legal-disclosure a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-legal-disclosure {
  margin: 2px 0 0;
  border: 1px solid rgba(14, 111, 190, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(239, 246, 249, 0.72);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-legal-disclosure strong {
  color: var(--blue-dark);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-sticky-call {
  display: none;
}

.back-to-top-button {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  padding-right: max(clamp(20px, 5vw, 72px), 150px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 850;
}

.site-footer a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  padding: 9px 12px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 64px;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 37, 72, 0.9) 0%, rgba(6, 37, 72, 0.66) 48%, rgba(6, 37, 72, 0.16) 100%),
    var(--page-image) var(--page-position, center) / var(--page-size, cover) no-repeat;
  transform: scale(1.01);
}

.page-hero > div {
  position: relative;
  width: min(820px, 100%);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.service-hero,
.repair-hero {
  --page-image: url("assets/air-handler-service.webp");
}

.install-hero {
  --page-image: url("assets/installation-service.webp");
}

.maintenance-hero,
.contact-hero {
  --page-image: url("assets/comfort-home.webp");
}

.about-hero,
.reviews-hero {
  --page-image: url("assets/hvac-hero.webp");
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.detail-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-list span {
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 18px 20px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.detail-list span::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  transform: scaleY(0.45);
  transform-origin: top;
  transition: transform 180ms ease;
}

.detail-list span:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 111, 190, 0.32);
  box-shadow: 0 18px 36px rgba(8, 31, 55, 0.12);
}

.detail-list span:hover::before {
  transform: scaleY(1);
}

.detail-list span strong {
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.detail-list span small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  font-weight: 700;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 86px clamp(20px, 5vw, 72px);
  background: var(--mist);
}

.photo-band.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.photo-band.reverse img {
  order: 2;
}

.photo-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.financing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: var(--paper);
}

.financing-intro p:not(.eyebrow),
.finance-card p,
.finance-disclosure,
.finance-process p {
  color: var(--muted);
}

.finance-proof-card,
.finance-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.06);
}

.finance-proof-card {
  padding: 26px;
}

.finance-proof-card span,
.provider-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.finance-proof-card strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.financing-options {
  background: var(--mist);
}

.finance-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.finance-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.finance-card.is-featured {
  border-top: 5px solid var(--yellow);
}

.finance-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.provider-logo {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  color: var(--blue-dark);
  line-height: 1;
}

.provider-logo-image {
  max-width: min(240px, 100%);
  border-radius: 8px;
  padding: 8px 0;
}

.provider-logo-image img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 46px;
  object-fit: contain;
}

.provider-logo-image .synchrony-logo-img {
  max-width: 230px;
  max-height: 42px;
}

.provider-badge {
  background: var(--yellow);
  color: var(--ink);
}

.provider-badge.soft {
  background: var(--soft);
  color: var(--blue-dark);
}

.finance-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.finance-feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.finance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.finance-qr {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--mist);
}

.finance-qr img {
  width: 104px;
  height: 104px;
  border-radius: 8px;
  background: var(--white);
}

.finance-qr strong,
.finance-qr span {
  display: block;
}

.finance-qr strong {
  color: var(--blue-dark);
  font-weight: 950;
}

.finance-qr span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.finance-card .button.dark {
  min-height: 48px;
}

.finance-disclosure {
  margin: 4px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.ehl-badge {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.finance-process {
  background: var(--paper);
}

.large-reviews .review-card {
  min-height: 230px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 34, 42, 0.06);
}

.article-card img,
.article-page img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  padding: 24px;
}

.article-card h2 {
  font-size: 1.5rem;
}

.article-card p,
.article-page p,
.policy-page p,
.legal-list {
  color: var(--muted);
  font-size: 1.08rem;
}

.article-card a {
  color: var(--blue);
  font-weight: 900;
}

.wordpress-blog-heading {
  margin-bottom: 28px;
}

.wordpress-article-card h2 a {
  color: inherit;
  text-decoration: none;
}

.wordpress-article-image {
  display: block;
  line-height: 0;
}

.wordpress-post-meta {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.wordpress-post-content {
  font-size: 1.06rem;
  line-height: 1.75;
}

.wordpress-post-content > * {
  max-width: 100%;
}

.wordpress-post-content h2,
.wordpress-post-content h3,
.wordpress-post-content h4 {
  margin-top: 1.6em;
}

.wordpress-post-content img {
  height: auto;
  border-radius: 8px;
}

.wordpress-post-content a {
  color: var(--blue);
  font-weight: 700;
}

.wordpress-post-content blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--orange);
}

.wordpress-post-back {
  margin-top: 36px;
}

.language-content.lang-es {
  display: none;
}

html[lang="es"] .language-content.lang-en {
  display: none;
}

html[lang="es"] .language-content.lang-es {
  display: block;
}

.seo-article {
  line-height: 1.75;
}

.seo-article .article-lead {
  color: var(--ink);
  font-size: 1.22rem;
}

.seo-article h2 {
  margin-top: 46px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.seo-article h3 {
  margin: 30px 0 8px;
  font-size: 1.3rem;
}

.seo-article a:not(.button) {
  color: var(--blue);
  font-weight: 800;
}

.article-summary {
  display: grid;
  gap: 10px;
  margin: 30px 0 44px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #f7fbfe;
}

.article-summary strong {
  font-size: 1.15rem;
}

.article-cta {
  margin-top: 52px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
}

.article-cta h2 {
  margin-top: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.84);
}

@media (min-width: 1024px) {
  .article-grid .article-card > img,
  .article-grid .wordpress-article-image img {
    height: 280px !important;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }
}

.article-page,
.policy-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.article-page h1,
.policy-page h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.policy-page h2 {
  margin: 34px 0 10px;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-page h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.policy-page ul {
  margin: 10px 0 22px;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-page li + li {
  margin-top: 8px;
}

.policy-page a {
  color: var(--blue);
  font-weight: 850;
}

.article-page img {
  margin: 28px 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.legal-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.legal-list dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.legal-list dd {
  margin: 4px 0 0;
}

.google-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--mist);
}

.calendar-placeholder {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 8px;
  border: 1px dashed #aabcc2;
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.calendar-placeholder strong {
  color: var(--blue-dark);
  font-size: 1.2rem;
}

.hcp-booking-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 111, 190, 0.2);
  border-left: 5px solid var(--coral);
  background:
    linear-gradient(135deg, rgba(255, 111, 32, 0.08), rgba(14, 111, 190, 0.07)),
    var(--white);
  text-align: left;
}

.hcp-booking-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(14, 111, 190, 0.08);
}

.hcp-booking-card > * {
  position: relative;
  z-index: 1;
}

.hcp-booking-card .hcp-button {
  justify-self: start;
  margin-top: 12px;
}

.calendar-placeholder iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
}

.google-review-sync,
.home-google-reviews,
.review-setup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.google-review-sync,
.home-google-reviews {
  background:
    linear-gradient(135deg, rgba(239, 246, 249, 0.95), rgba(255, 255, 255, 0.96)),
    var(--mist);
}

.google-review-copy,
.review-setup-copy {
  display: grid;
  gap: 16px;
}

.review-trust-points,
.setup-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-trust-points li,
.setup-steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 850;
}

.google-review-actions,
.sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.google-review-widget {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(14, 111, 190, 0.18);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(8, 31, 55, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.google-review-widget::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.google-review-widget:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 111, 190, 0.32);
  box-shadow: 0 22px 48px rgba(8, 31, 55, 0.16);
}

.review-sync-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.google-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
  font-size: 1.25rem;
}

.review-sync-top strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.review-sync-top small {
  color: var(--muted);
  font-weight: 750;
}

.review-filter-badge {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 106, 26, 0.12);
  color: var(--orange-dark);
  font-weight: 900;
  white-space: nowrap;
}

.review-preview-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-preview-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdff;
}

.review-preview-strip strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.review-preview-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.sync-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.review-setup-panel {
  background: var(--blue-dark);
  color: var(--white);
}

.review-setup-panel .eyebrow,
.review-setup-panel h2,
.review-setup-panel p {
  color: var(--white);
}

.review-setup-panel .setup-steps li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.review-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: var(--white);
}

.review-request-copy {
  display: grid;
  gap: 14px;
}

.review-qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(14, 111, 190, 0.2);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  box-shadow: 0 14px 34px rgba(8, 31, 55, 0.12);
  text-align: center;
}

.review-qr-card img {
  width: min(190px, 100%);
  height: auto;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 34, 42, 0.12);
}

.review-qr-card strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.review-qr-card span {
  color: var(--muted);
  font-weight: 750;
}

@media (prefers-reduced-motion: reduce) {
  .google-review-widget {
    transition: none;
  }

  .google-review-widget:hover {
    transform: none;
  }

  .faq-list details {
    transition: none;
  }

  .faq-list details:hover {
    transform: none;
  }

  .main-nav,
  .dropdown-menu,
  .has-dropdown > a::after,
  .back-to-top-button {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .google-review-sync,
  .home-google-reviews,
  .review-setup-panel,
  .review-request-panel {
    grid-template-columns: 1fr;
  }

  .review-sync-top,
  .review-preview-strip {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .mobile-sticky-call {
    position: fixed;
    left: 12px;
    right: 86px;
    bottom: 12px;
    z-index: 40;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 14px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(16, 34, 42, 0.28);
    font-size: clamp(0.84rem, 3.4vw, 0.95rem);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    z-index: 1000;
  }

  .menu-toggle {
    order: 1;
    display: inline-flex;
    position: relative;
    z-index: 10002;
    align-items: center;
    justify-content: center;
  }

  .brand {
    order: 2;
    justify-self: start;
  }

  .nav-call {
    order: 3;
    justify-self: end;
  }

  .main-nav {
    order: 4;
    position: fixed;
    top: var(--mobile-menu-top);
    left: var(--mobile-menu-left);
    right: auto;
    z-index: 10001;
    display: grid;
    box-sizing: border-box;
    width: var(--mobile-menu-width) !important;
    min-width: 0 !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    max-height: calc(100dvh - var(--mobile-menu-top) - 14px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: left;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top left;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-open .main-nav {
    display: grid !important;
    align-content: start;
    gap: 8px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-open .site-header {
    z-index: 10002;
  }

  .nav-item > a,
  .nav-link {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 900;
    text-align: left;
  }

  .main-nav > .nav-item,
  .main-nav > .nav-link {
    min-width: 0;
    width: 100%;
  }

  .dropdown-menu a:not(.button) {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .dropdown-menu,
  .mega-panel,
  .small-panel,
  .area-panel {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    box-shadow: none !important;
  }

  .nav-item.has-dropdown::after {
    display: none;
  }

  .has-dropdown > a::after {
    transition: transform 180ms ease;
  }

  .nav-item.is-open > .dropdown-menu {
    display: grid !important;
    margin: 4px 0 8px;
    animation: mobileSubmenuIn 180ms ease-out;
  }

  .nav-item.is-open > a::after {
    transform: rotate(180deg);
  }

  @keyframes mobileSubmenuIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mega-panel,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .menu-column,
  .area-panel div {
    min-width: 0;
  }

  .dropdown-menu a:not(.button) {
    white-space: normal;
    overflow-wrap: anywhere;
    justify-content: flex-start;
    text-align: left;
  }

  .menu-promo {
    display: none;
  }

  .section-heading,
  .section-kicker,
  .intro,
  .split-band,
  .maintenance,
  .service-area,
  .contact-section,
  .detail-layout,
  .photo-band,
  .photo-band.reverse,
  .home-hero-content,
  .specials-band,
  .club-band,
  .final-contact,
  .service-depth,
  .service-link-board,
  .service-seo-section,
  .calculator-grid,
  .financing-intro {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    position: static;
  }

  .photo-band.reverse img {
    order: 0;
  }

  .section-heading .eyebrow {
    margin-bottom: -4px;
  }

  .compact-heading .eyebrow {
    margin-bottom: 12px;
  }

  .proof-band,
  .service-grid,
  .review-grid,
  .article-grid,
  .google-panel,
  .process-cards,
  .coupon-grid,
  .quality-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-focus-grid,
  .service-link-groups,
  .area-card-grid {
    grid-template-columns: 1fr;
  }

  .home-review-slider {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 66px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  .hcp-booking-card.is-booking-launching {
    overflow: visible;
    z-index: 120;
  }

  .hcp-booking-card.is-booking-launching::after,
  .hcp-booking-card.is-booking-fullscreen::after {
    display: none;
  }

  .hcp-booking-card.is-booking-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 2147482000;
    display: block;
    width: auto;
    height: 100dvh;
    min-height: 100dvh;
    overflow: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: var(--white);
  }

  .hcp-booking-card.is-booking-fullscreen > strong,
  .hcp-booking-card.is-booking-fullscreen > span,
  .hcp-booking-card.is-booking-fullscreen > .hcp-button {
    display: none;
  }

  .hcp-booking-card.is-booking-fullscreen iframe,
  .socra-hcp-mobile-frame {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147482001 !important;
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .brand small,
  .nav-call span {
    display: none;
  }

  .brand-logo {
    width: clamp(138px, 42vw, 190px);
    max-height: 50px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .nav-call {
    font-size: 0.88rem;
  }

  .main-nav {
    max-height: calc(100dvh - var(--mobile-menu-top) - 12px);
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(6, 37, 72, 0.94) 0%, rgba(6, 37, 72, 0.7) 58%, rgba(6, 37, 72, 0.25) 100%),
      url("assets/hvac-hero.webp") 63% center / cover no-repeat;
  }

  .hero-content {
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  label,
  summary,
  .button,
  .calculator-stat,
  .finance-qr,
  .contact-methods a {
    overflow-wrap: anywhere;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .button,
  .calculator-shell button,
  .hcp-button {
    width: 100%;
    min-height: 50px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions,
  .finance-actions,
  .sync-actions,
  .coupon-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .trust-strip,
  .quick-contact,
  .proof-band,
  .service-grid,
  .review-grid,
  .contact-form,
  .cta-band,
  .detail-list,
  .article-grid,
  .google-panel,
  .process-cards,
  .coupon-grid,
  .review-ribbon,
  .quality-card-grid,
  .finance-card-grid {
    grid-template-columns: 1fr;
  }

  .service-alert-band {
    grid-template-columns: 1fr;
  }

  .service-alert-band .button {
    width: 100%;
  }

  .quote-card,
  .contact-form,
  .calendar-placeholder,
  .finance-card,
  .coupon-card,
  .service-card,
  .focus-card,
  .calculator-panel,
  .why-box {
    min-width: 0;
    width: 100%;
  }

  .focus-card {
    min-height: 340px;
  }

  .diagnostic-flow span:not(:last-child)::after {
    display: none;
  }

  .finance-qr {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .finance-qr img {
    width: 88px;
    height: 88px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .calculator-shell {
    padding: 0 14px 78px;
  }

  .calculator-top {
    padding: 32px 18px;
  }

  .calculator-top h1 {
    font-size: 2rem;
  }

  .calculator-trust {
    display: grid;
    width: 100%;
    font-size: 0.82rem;
  }

  .calculator-radios {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .calculator-radios label {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 12px 14px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .calculator-radios input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }

  .calculator-stat {
    align-items: flex-start;
  }

  .topbar {
    display: none;
  }

  .mobile-language-switch {
    order: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(6, 61, 120, 0.16);
    border-radius: 8px;
    padding: 3px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(6, 61, 120, 0.12);
  }

  .mobile-language-btn {
    min-height: 34px;
    border: 0;
    border-radius: 7px;
    padding: 6px 9px;
    background: transparent;
    color: var(--blue-dark);
    font-size: 0.78rem;
    line-height: 1;
  }

  .mobile-language-btn.is-active {
    background: var(--yellow);
    color: var(--ink);
  }

  .home-hero-content {
    min-height: auto;
    padding-top: 90px;
  }

  .quote-card {
    margin-top: 12px;
  }

  .page-hero {
    min-height: 530px;
    padding-top: 120px;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact a:last-child {
    border-bottom: 0;
  }

  .section,
  .split-band,
  .maintenance,
  .service-area,
  .contact-section,
  .cta-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .review-card blockquote {
    min-height: auto;
  }

  .mobile-sticky-call {
    position: fixed;
    left: 12px;
    right: 86px;
    bottom: 12px;
    z-index: 40;
    display: flex;
    padding: 0 14px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(16, 34, 42, 0.28);
    font-size: clamp(0.84rem, 3.4vw, 0.95rem);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .back-to-top-button {
    position: fixed;
    left: 18px;
    bottom: 82px;
    z-index: 42;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(14, 111, 190, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-dark);
    box-shadow: 0 10px 24px rgba(6, 61, 120, 0.16);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(14px) scale(0.94);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, box-shadow 180ms ease;
    backdrop-filter: blur(10px);
  }

  .housecall-chat-open .mobile-sticky-call,
  .housecall-chat-open .back-to-top-button {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .back-to-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .back-to-top-button:focus-visible,
  .back-to-top-button:hover {
    border-color: rgba(255, 106, 26, 0.42);
    color: var(--blue);
    box-shadow: 0 14px 28px rgba(6, 61, 120, 0.2);
    transform: translateY(-1px) scale(1);
  }

  .back-to-top-icon {
    position: relative;
    width: 21px;
    height: 23px;
  }

  .back-to-top-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 4px;
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-radius: 2px 0 0 0;
    transform: translateX(-50%) rotate(45deg);
  }

  .back-to-top-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 2px;
    height: 16px;
    border-radius: 99px;
    background: currentColor;
    transform: translateX(-50%);
  }

  .site-footer,
  .site-footer div {
    display: grid;
  }

  .site-footer {
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 12px 14px;
  }

  .brand-logo {
    width: min(62vw, 170px);
    max-height: 46px;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .menu-toggle::before {
    width: 16px;
    height: 11px;
  }

  .nav-call {
    display: none;
  }

  .main-nav {
    max-height: calc(100dvh - var(--mobile-menu-top) - 12px);
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .hero {
    min-height: 680px;
  }

  .hero-content,
  .home-hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-hero {
    min-height: 500px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .section,
  .split-band,
  .maintenance,
  .service-area,
  .contact-section,
  .cta-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .finance-qr {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .finance-qr img {
    margin: auto;
  }

  .social-logo {
    width: 48px;
    height: 48px;
  }

  .calculator-btu {
    font-size: clamp(1.65rem, 10vw, 2.2rem);
  }
}
