:root {
  /* Core HMC palette and shared layout values. */
  --hmc-yellow: #fff000;
  --hmc-yellow-rgb: 255, 240, 0;
  --google-yellow: #fbbc05;
  --hmc-pill-bg: var(--hmc-yellow);
  --hmc-pill-fg: #101a2a;
  --black: #05070a;
  --charcoal: #101720;
  --charcoal-2: #18212c;
  --storm: #172a3d;
  --storm-blue: #7eb7ff;
  --gray: #66717f;
  --gray-light: #eef2f6;
  --white: #ffffff;
  --max-width: 1180px;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  --font-display: "Anton", Arial, Helvetica, sans-serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.55;
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--hmc-yellow);
}

:focus-visible {
  outline: 3px solid var(--hmc-yellow);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  /* Compact black header modeled after the supplied navigation reference. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0;
  background: rgba(5, 7, 10, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(5, 7, 10, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: saturate(130%) blur(8px);
}

.home-page main {
  padding-top: 108px;
}

.homepage-header-page main {
  padding-top: 0;
}

.home-announcement {
  position: relative;
  z-index: 4;
  background: var(--hmc-yellow);
  color: var(--black);
  box-shadow: 0 12px 24px rgba(var(--hmc-yellow-rgb), 0.18);
}

.home-announcement-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.home-announcement p {
  margin: 0;
}

.home-announcement a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-announcement a:hover,
.home-announcement a:focus-visible {
  color: var(--charcoal);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(42px, 5vw, 82px);
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--white);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(86px, 10vw, 128px);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.36));
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-brand {
  align-self: stretch;
  position: relative;
  z-index: 3;
  width: 152px;
  flex: 0 0 152px;
  transition: flex-basis 180ms ease, width 180ms ease;
}

.nav-logo {
  position: absolute;
  left: 0;
  top: 8px;
  width: 152px;
  height: auto;
  overflow: visible;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  transform: none;
  transition:
    background 180ms ease,
    border-radius 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease,
    top 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.2));
}

.home-page .nav-brand {
  width: 152px;
  flex-basis: 152px;
}

.home-page .nav-logo {
  left: 0;
  top: 8px;
  width: 152px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  transform: none;
}

.home-page .nav-logo img {
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.2));
}

.homepage-header-page .nav-brand {
  width: 190px;
  flex-basis: 190px;
}

.homepage-header-page .nav-logo {
  width: 190px;
}

.site-header.is-scrolled .nav-brand {
  width: 80px;
  flex-basis: 80px;
}

.site-header.is-scrolled .nav-logo {
  top: 50%;
  width: 66px;
  padding: 5px;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}

.brand-copy,
.brand-copy small {
  display: block;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 24px;
}

.nav-links,
.footer-links {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 1.75rem 0.9rem 1.62rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--hmc-yellow);
}

.nav-links a.is-active {
  color: var(--white);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 15px;
  height: 2px;
  border-radius: 999px;
  background: rgba(var(--hmc-yellow-rgb), 0.58);
  box-shadow: 0 0 10px rgba(var(--hmc-yellow-rgb), 0.16);
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > a i {
  display: none;
}

.nav-caret {
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid rgba(var(--hmc-yellow-rgb), 0.58);
  transition: transform 180ms ease;
}

.nav-dropdown > a i {
  color: rgba(var(--hmc-yellow-rgb), 0.58);
  font-size: 0.68rem;
  transition: transform 180ms ease;
}

.nav-dropdown:hover > a i,
.nav-dropdown:focus-within > a i,
.nav-dropdown.is-dropdown-open > a i,
.nav-dropdown:hover > a .nav-caret,
.nav-dropdown:focus-within > a .nav-caret,
.nav-dropdown.is-dropdown-open > a .nav-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 55;
  display: grid;
  min-width: 260px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown:hover > .nav-submenu,
.nav-dropdown:focus-within > .nav-submenu,
.nav-dropdown.is-dropdown-open > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu > li:first-child {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(var(--hmc-yellow-rgb), 0.28);
}

.nav-submenu > li:has(> a[href="resources/financing-assessment/index.html"]):not(:nth-child(2)),
.nav-submenu > li:has(> a[href="resources/extended-warranty/index.html"]),
.nav-submenu > li:has(> a[href="about/how-standby-generators-work/index.html"]),
.nav-submenu > li:has(> a[href="services/schedule/index.html"]) {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(var(--hmc-yellow-rgb), 0.28);
}

.nav-submenu a {
  padding: 0.72rem 0.85rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--black);
  background: var(--hmc-yellow);
}

.nav-submenu a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
  margin-left: auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.phone-link > i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--hmc-yellow);
  font-size: 1.35rem;
  line-height: 1;
}

.phone-link span {
  display: block;
  min-width: max-content;
  white-space: nowrap;
}

.phone-link small {
  display: block;
  color: var(--hmc-yellow);
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.phone-link strong {
  display: inline-block;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.1;
  min-width: max-content;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--black);
  background: var(--hmc-yellow);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 240, 0, 0.18);
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -6px;
}

.menu-bars::after {
  top: 6px;
}

.btn,
.button,
button.button {
  --btn-face: var(--hmc-yellow);
  --btn-bed: #b9ae00;
  --btn-text: var(--black);
  --btn-ring: transparent;
  --btn-face-lift: -4px;
  --btn-bed-drop: 4px;
  --btn-content-lift: -2px;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border: 0;
  border-radius: 9px;
  color: var(--btn-text);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0;
  cursor: pointer;
  isolation: isolate;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  outline-offset: 4px;
  touch-action: manipulation;
  user-select: none;
  transition: filter 250ms ease, box-shadow 250ms ease;
}

.btn::before,
.btn::after,
.button::before,
.button::after,
button.button::before,
button.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  pointer-events: none;
}

.btn::before,
.button::before,
button.button::before {
  z-index: -2;
  background: var(--btn-bed);
  transform: translateY(var(--btn-bed-drop));
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.btn::after,
.button::after,
button.button::after {
  z-index: -1;
  background: var(--btn-face);
  box-shadow: inset 0 0 0 2px var(--btn-ring);
  transform: translateY(var(--btn-face-lift));
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.btn > *,
.button > *,
button.button > * {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(var(--btn-content-lift));
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.btn:hover,
.button:hover,
button.button:hover {
  color: var(--btn-text);
  text-decoration: none;
  filter: brightness(1.03);
}

.btn > span,
.button > span,
button.button > span {
  min-height: 1em;
  padding-top: 0.08em;
  text-align: center;
}

.btn:hover::after,
.btn:hover > *,
.button:hover::after,
.button:hover > *,
button.button:hover::after,
button.button:hover > * {
  transform: translateY(-1px);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2);
}

.btn:hover::before,
.button:hover::before,
button.button:hover::before {
  transform: translateY(1px);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2);
}

.btn:active::after,
.btn:active > *,
.button:active::after,
.button:active > *,
button.button:active::after,
button.button:active > * {
  transform: translateY(1px);
  transition: transform 34ms;
}

.btn:active::before,
.button:active::before,
button.button:active::before {
  transform: translateY(0);
  transition: transform 34ms;
}

.btn:focus:not(:focus-visible),
.button:focus:not(:focus-visible),
button.button:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible,
.button:focus-visible,
button.button:focus-visible {
  outline: 2px solid var(--hmc-yellow);
}

.btn-primary {
  --btn-face: var(--hmc-yellow);
  --btn-bed: #b9ae00;
  --btn-text: var(--black);
  --btn-ring: transparent;
  box-shadow: 0 12px 24px rgba(var(--hmc-yellow-rgb), 0.24);
}

.btn-secondary {
  --btn-face: #102032;
  --btn-bed: var(--hmc-yellow);
  --btn-text: var(--white);
  --btn-ring: var(--hmc-yellow);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.btn-dark {
  --btn-face: var(--charcoal);
  --btn-bed: #05070a;
  --btn-text: var(--white);
}

.btn-small {
  min-height: 36px;
  padding: 8px 13px;
  font-size: 0.82rem;
}

.btn-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.btn-arrow:hover i:last-child {
  transform: translate(3px, -1px);
}

.btn-arrow:active i:last-child {
  transform: translate(1px, 1px);
}

.hero {
  /* The hero uses one completed header artwork with the storm, house, generator, and clouds baked in. */
  position: relative;
  min-height: max(680px, 75vh);
  isolation: isolate;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 34% 18%, rgba(175, 225, 255, 0.34), transparent 24%),
    radial-gradient(circle at 67% 16%, rgba(175, 225, 255, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(126, 183, 255, 0.12), transparent 54%);
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.48), transparent 32%),
    linear-gradient(180deg, rgba(204, 235, 255, 0.42), rgba(126, 183, 255, 0.18) 46%, transparent 82%);
  mix-blend-mode: screen;
}

.hero-bg,
.hero-lightning,
.hero-gradient,
.storm-cta-bg,
.storm-cta-overlay {
  position: absolute;
  pointer-events: none;
}

.hero-bg {
  inset: 0;
  z-index: -8;
  background-image: url("../images/hmc-homepage-header.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.hero-gradient,
.storm-cta-bg,
.storm-cta-overlay {
  inset: 0;
}

.hero-lightning {
  z-index: 3;
  opacity: 0;
  filter: saturate(1.15) brightness(1.55) drop-shadow(0 0 22px rgba(175, 225, 255, 0.82));
  mix-blend-mode: screen;
  transform: translateZ(0);
  will-change: opacity;
}

.hero-lightning img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-cloud {
  position: absolute;
  width: clamp(820px, 58vw, 1120px);
  height: clamp(330px, 36vh, 560px);
  opacity: 0.72;
  filter: saturate(0.78) contrast(1.05);
  mix-blend-mode: multiply;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 96%);
  mask-composite: intersect;
  pointer-events: none;
  overflow: hidden;
}

.section-cloud img {
  width: 118%;
  height: 100%;
  object-fit: contain;
}

.services-cloud {
  left: max(-340px, -18vw);
  top: clamp(-145px, -8vw, -95px);
  z-index: 1;
  opacity: 0.46;
  filter: saturate(0.58) contrast(1.08) brightness(1.22);
  mix-blend-mode: screen;
  transform-origin: 38% 58%;
}

.footer-cloud {
  display: none;
}

.services-cloud img {
  transform: translateX(-8%);
}

.footer-cloud img {
  transform: translateX(8%);
}

.hero-lightning-left {
  top: 18px;
  left: clamp(12px, 10vw, 210px);
  width: clamp(330px, 38vw, 640px);
  height: clamp(430px, 66vh, 790px);
}

.hero-lightning-right {
  top: -42px;
  right: clamp(-120px, -5vw, -52px);
  width: clamp(350px, 42vw, 700px);
  height: clamp(460px, 72vh, 860px);
}

.hero-gradient {
  z-index: -6;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 10, 0.24) 0%,
      rgba(5, 7, 10, 0.14) 32%,
      rgba(5, 7, 10, 0.05) 58%,
      rgba(5, 7, 10, 0) 82%
    );
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.55) 70%, transparent 84%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.55) 70%, transparent 84%);
}

.hero.is-sky-striking::before {
  animation: lightning-sky-flash 1650ms linear both;
}

.hero.is-header-striking::after {
  animation: lightning-header-flash 1500ms linear both;
}

.hero.is-header-striking-strong::after {
  animation: lightning-header-flash-strong 1900ms linear both;
}

.hero-lightning-left.is-striking {
  animation: lightning-bolt-left 1650ms linear both;
}

.hero-lightning-right.is-striking {
  animation: lightning-bolt-right 1650ms linear both;
}

@keyframes lightning-bolt-left {
  0%,
  7%,
  68%,
  100% {
    opacity: 0;
  }

  8% {
    opacity: 0.92;
  }

  10% {
    opacity: 0.18;
  }

  13% {
    opacity: 1;
  }

  18% {
    opacity: 0.46;
  }

  22% {
    opacity: 0.74;
  }

  38% {
    opacity: 0.2;
  }

  52% {
    opacity: 0.44;
  }
}

@keyframes lightning-bolt-right {
  0%,
  6%,
  64%,
  100% {
    opacity: 0;
  }

  7% {
    opacity: 0.9;
  }

  9% {
    opacity: 0.12;
  }

  12% {
    opacity: 1;
  }

  17% {
    opacity: 0.44;
  }

  20% {
    opacity: 0.68;
  }

  36% {
    opacity: 0.2;
  }

  48% {
    opacity: 0.42;
  }
}

@keyframes lightning-sky-flash {
  0%,
  7%,
  62%,
  100% {
    opacity: 0;
  }

  8% {
    opacity: 0.34;
  }

  10% {
    opacity: 0.08;
  }

  13% {
    opacity: 0.28;
  }

  18% {
    opacity: 0.12;
  }

  34% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.1;
  }
}

@keyframes lightning-header-flash {
  0%,
  5%,
  34%,
  100% {
    opacity: 0;
  }

  7% {
    opacity: 0.62;
  }

  11% {
    opacity: 0.18;
  }

  16% {
    opacity: 0.78;
  }

  23% {
    opacity: 0.24;
  }

  28% {
    opacity: 0.38;
  }
}

@keyframes lightning-header-flash-strong {
  0%,
  3%,
  58%,
  100% {
    opacity: 0;
  }

  5% {
    opacity: 0.98;
  }

  12% {
    opacity: 0.52;
  }

  18% {
    opacity: 1;
  }

  29% {
    opacity: 0.62;
  }

  40% {
    opacity: 0.78;
  }

  50% {
    opacity: 0.32;
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding-top: clamp(175px, 18vh, 220px);
  padding-bottom: clamp(68px, 8vh, 112px);
}

.home-page .hero-content {
  transform: none;
}

.homepage-header-page .hero {
  min-height: 100vh;
}

.homepage-header-page .hero-content {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding-top: clamp(150px, 18vh, 220px);
  padding-bottom: clamp(78px, 10vh, 130px);
}

.homepage-header-page .hero .eyebrow {
  justify-self: start;
  width: max-content;
  max-width: 100%;
  text-align: left;
}

.homepage-header-page .hero-content > * {
  max-width: 1120px;
}

.homepage-header-page .hero .eyebrow {
  margin-bottom: 1.05rem;
  font-size: 1.24rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.homepage-header-page .hero h1 {
  max-width: 1120px;
  font-size: 8.35rem;
  line-height: 0.92;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.48);
}

.homepage-header-page .hero-copy {
  max-width: 860px;
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.34;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.56);
}

.homepage-header-page .trust-row {
  max-width: 1120px;
  margin-top: 1.7rem;
}

.homepage-header-page .trust-row span {
  grid-template-columns: 66px minmax(0, 1fr);
  min-height: 82px;
  padding: 0 24px;
  column-gap: 14px;
}

.homepage-header-page .trust-row i {
  width: 54px;
  font-size: 3.1rem;
}

.homepage-header-page .trust-row strong {
  font-size: 1rem;
}

.homepage-header-page .trust-row small {
  font-size: 0.84rem;
}

.hero-content > * {
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: var(--hmc-yellow);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--hmc-yellow);
}

.hero h1,
.section h2,
.storm-cta h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5vw, 5.15rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  color: var(--hmc-yellow);
}

.hero-copy {
  max-width: 520px;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.25rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 760px;
  margin-top: 1rem;
}

.trust-row span {
  display: grid;
  flex: 1 1 0;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.trust-row span:first-child {
  padding-left: 0;
}

.trust-row span:last-child {
  border-right: 0;
}

.trust-row i {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 32px;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
}

.trust-row strong {
  align-self: end;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.trust-row small {
  align-self: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.section {
  padding: clamp(76px, 8vw, 120px) 0;
}

.services-section {
  --services-content-lift: clamp(172px, 11vw, 214px);
  position: relative;
  z-index: 2;
  background: var(--white);
  margin-top: 0;
  padding-top: clamp(40px, 4vw, 72px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.services-section > .container {
  position: relative;
  z-index: 2;
  transform: translateY(calc(-1 * var(--services-content-lift)));
  margin-bottom: calc(-1 * var(--services-content-lift));
}

.section-light {
  background: var(--gray-light);
}

.section-light.services-section {
  background: #f5f5f6;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--charcoal);
}

.generator-brand-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(44px, 5vw, 72px);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(120deg, #090d12 0%, #121922 54%, #0b1017 100%);
}

.generator-brand-section::before {
  content: "";
  position: absolute;
  right: clamp(-70px, 2vw, 42px);
  bottom: clamp(64px, 9vw, 150px);
  z-index: 1;
  width: clamp(420px, 52vw, 820px);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  background: url("../images/hmc-generators-logo.webp") center / contain no-repeat;
  filter: grayscale(1) brightness(1.82) contrast(0.8);
  mix-blend-mode: soft-light;
  opacity: 0.16;
}

.generator-brand-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 18%, rgba(190, 225, 255, 0.16), transparent 34%),
    linear-gradient(120deg, rgba(180, 220, 255, 0.06), transparent 62%);
  opacity: 0;
  mix-blend-mode: screen;
}

.generator-brand-section.is-section-flashing::after {
  animation: generator-section-flash 1900ms linear both;
}

@keyframes generator-section-flash {
  0%,
  8%,
  58%,
  100% {
    opacity: 0;
  }

  11% {
    opacity: 0.11;
  }

  17% {
    opacity: 0.025;
  }

  24% {
    opacity: 0.07;
  }

  39% {
    opacity: 0.03;
  }
}

.generator-brand-section > .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.services-section .section-heading {
  margin-bottom: 1.55rem;
}

.services-section .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 22px;
  padding: 0.42rem 0.62rem 0.26rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  margin-bottom: 0.28rem;
  font-size: 0.66rem;
}

.section.services-section h2 {
  max-width: none;
  color: var(--charcoal);
  font-size: clamp(1.45rem, 1.8vw, 1.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section.services-section h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 0.75rem auto 0;
  background: var(--hmc-yellow);
}

.section h2,
.storm-cta h2 {
  max-width: 820px;
  color: inherit;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.section-heading p:not(.eyebrow),
.split p,
.community-copy p,
.storm-cta p {
  color: inherit;
  max-width: 680px;
}

.section-light p {
  color: #46515f;
}

.section-dark p,
.storm-cta p {
  color: rgba(255, 255, 255, 0.78);
}

main > section:not(.hero) .eyebrow {
  width: max-content;
  max-width: 100%;
  min-height: 22px;
  padding: 0.42rem 0.62rem 0.26rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  line-height: 1;
}

main > section:not(.hero) .section-heading.center .eyebrow,
main > section:not(.hero) .proof-heading .eyebrow {
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-section .card-grid.three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
}

.services-section .service-card {
  grid-template-rows: auto 1fr auto;
  min-height: 170px;
}

.services-section .service-card > i {
  grid-row: 1 / span 3;
}

.services-section .service-card a {
  align-self: end;
  margin-top: 1.1rem;
  padding: 0.58rem 1rem;
}

.services-four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.services-four-column .service-card {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.8rem;
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 23, 32, 0.11);
}

.services-four-column .service-card > i {
  grid-row: auto;
  width: 58px;
  height: 58px;
  font-size: 1.65rem;
}

.services-four-column .service-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
}

.services-four-column .service-card p {
  color: #46515f;
  font-size: 0.86rem;
  line-height: 1.5;
}

.services-four-column .service-card a {
  align-self: end;
  margin-top: auto;
}

.services-four-column + .blog-row-list,
.services-four-column + .service-page-grid {
  margin-top: 34px;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, transparent, rgba(16, 23, 32, 0.16), transparent);
}

.services-four-column + .section-divider + .service-page-grid {
  margin-top: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  min-height: 150px;
  padding: 24px 26px;
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 13px 28px rgba(16, 23, 32, 0.12);
}

.service-card > i {
  display: grid;
  place-items: center;
  grid-row: 1 / span 4;
  width: 62px;
  height: 62px;
  margin: 0;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 1.85rem;
}

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  margin: 0 0 0.7rem;
  color: var(--charcoal);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: 0.95rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.service-card a::after {
  content: "\f061";
  margin-left: 0.55rem;
  color: var(--hmc-pill-fg);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.service-card a:hover {
  color: var(--hmc-pill-fg);
  filter: brightness(1.04);
  box-shadow: 0 10px 20px rgba(var(--hmc-yellow-rgb), 0.28);
  transform: translateY(-2px);
}

.service-card a:hover::after {
  animation: service-arrow-slide 520ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.service-card a:active {
  transform: translateY(0);
}

@keyframes service-arrow-slide {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  42% {
    opacity: 0;
    transform: translateX(10px);
  }

  43% {
    opacity: 0;
    transform: translateX(-8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-proof {
  margin-top: clamp(36px, 5vw, 64px);
}

.proof-heading {
  margin-bottom: 1.35rem;
  text-align: center;
}

.proof-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0.42rem 0.62rem 0.26rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  margin-bottom: 0.25rem;
  font-size: 0.66rem;
}

.proof-heading h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 2rem;
}

.proof-strip > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 70px;
  padding: 0 22px;
  border-right: 1px solid rgba(16, 23, 32, 0.18);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip i {
  color: var(--charcoal);
  font-size: 2rem;
}

.proof-strip strong,
.review-author strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.proof-strip small,
.review-author small {
  display: block;
  margin-top: 0.28rem;
  color: #3f4a57;
  font-size: 0.68rem;
  line-height: 1.35;
}

.review-card-inline {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 160px 310px;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 23, 32, 0.11);
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 1.65rem;
}

.review-copy .stars {
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0.45rem;
}

.review-card-inline .stars i {
  background: var(--hmc-yellow);
}

.review-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.72rem;
  line-height: 1.45;
}

.review-author {
  padding-left: 12px;
}

.review-author i {
  color: #19a463;
  margin-left: 4px;
}

.google-rating {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  column-gap: 12px;
  row-gap: 5px;
  padding-left: 28px;
  border-left: 1px solid rgba(16, 23, 32, 0.16);
}

.google-word {
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: 0;
}

.google-word b:nth-child(1),
.google-word b:nth-child(4) {
  color: #4285f4;
}

.google-word b:nth-child(2),
.google-word b:nth-child(6) {
  color: #ea4335;
}

.google-word b:nth-child(3) {
  color: #fbbc05;
}

.google-word b:nth-child(5) {
  color: #34a853;
}

.google-rating > strong {
  color: var(--charcoal);
  font-size: 1.25rem;
  font-weight: 800;
}

.google-rating .compact {
  margin: 0;
  font-size: 0.92rem;
}

.google-rating small {
  grid-column: 2 / 4;
  color: var(--charcoal);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-photo-section {
  position: relative;
  z-index: 2;
  padding-block: clamp(24px, 3vw, 40px) clamp(46px, 5vw, 72px);
  background:
    linear-gradient(180deg, #f5f5f6 0%, #ffffff 100%);
}

.home-photo-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.home-photo-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.home-photo-heading .btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.76rem;
}

.home-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.91fr));
  grid-auto-rows: minmax(168px, 1fr);
  gap: 16px;
}

.home-photo-card {
  position: relative;
  min-height: 168px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 32, 0.1);
  border-radius: var(--radius);
  background: #111820;
  box-shadow: 0 18px 38px rgba(16, 23, 32, 0.12);
}

.home-photo-card-featured {
  grid-row: span 2;
  min-height: 352px;
}

.home-photo-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.home-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.home-photo-card-featured img {
  object-position: center 47%;
}

.home-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.72));
}

.home-photo-card-copy,
.home-photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: start;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.home-photo-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--black);
  background: var(--hmc-yellow);
  box-shadow: 0 7px 0 #b9ae00, 0 12px 20px rgba(0, 0, 0, 0.18);
  font-size: 0.64rem;
  line-height: 1;
  text-shadow: none;
}

.home-photo-card:hover img {
  transform: scale(1.035);
}

.home-photo-trigger:focus-visible {
  outline: 3px solid var(--hmc-yellow);
  outline-offset: -5px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.brand-section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  margin-bottom: 1.1rem;
}

.brand-section-top .eyebrow {
  margin-bottom: 0.42rem;
}

.brand-section-top h2 {
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-section-top p:not(.eyebrow) {
  max-width: 690px;
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.brand-section-top .btn {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.72rem;
}

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

.generator-brand-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.generator-brand-actions .btn {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.76rem;
}

.generator-brand-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.82fr) minmax(0, 1fr);
  gap: 16px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    #1b222b;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.generator-brand-card picture {
  display: grid;
  place-items: center;
  align-self: center;
  width: 120px;
  height: 120px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 8px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

.generator-brand-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) - 2px);
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.generator-brand-card h3 {
  margin: 0 0 0.42rem;
  color: var(--white);
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.generator-brand-card ul {
  display: grid;
  gap: 0.24rem;
  padding: 0;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  list-style: none;
}

.generator-brand-card li::before {
  content: "\f00c";
  margin-right: 0.42rem;
  color: var(--hmc-yellow);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.generator-brand-card a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.generator-brand-card a::after {
  content: "\f061";
  margin-left: 0.5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.generator-catalog-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(var(--hmc-yellow-rgb), 0.12), transparent 32%),
    linear-gradient(135deg, #05070a 0%, #101923 48%, #05070a 100%);
}

.catalog-heading {
  margin-bottom: 18px;
}

.catalog-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.catalog-filter-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-filter-nav a:hover {
  color: var(--charcoal);
  background: var(--hmc-yellow);
}

.catalog-source-note {
  max-width: 880px;
  margin: 0 0 clamp(28px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.catalog-group {
  scroll-margin-top: 120px;
}

.catalog-group + .catalog-group {
  margin-top: clamp(42px, 6vw, 74px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-group-heading {
  max-width: 860px;
  margin-bottom: 22px;
}

.catalog-group-heading h3 {
  margin: 0 0 0.45rem;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.catalog-group-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.generator-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    #151d26;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.generator-product-image {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 100%;
  height: 260px;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  background: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.generator-product-image img {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #fff;
}

.generator-product-copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 14px;
  min-width: 0;
  padding: 24px 22px 22px;
}

.generator-product-series {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--hmc-yellow);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.generator-product-copy h3 {
  margin: 0;
  min-height: 3.55em;
  color: var(--white);
  font-size: clamp(1.02rem, 1.08vw, 1.2rem);
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.generator-product-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.generator-product-meta div {
  display: grid;
  gap: 2px;
}

.generator-product-meta dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.generator-product-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.generator-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.generator-product-tags li {
  padding: 0.32rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.1;
}

.generator-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin-top: auto;
  padding: 0.46rem 0.68rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.generator-product-action::after {
  content: "\f061";
  margin-left: 0.5rem;
  color: var(--hmc-pill-fg);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.generator-product-action:hover {
  color: var(--hmc-pill-fg);
  filter: brightness(1.04);
  box-shadow: 0 10px 20px rgba(var(--hmc-yellow-rgb), 0.28);
}

.pdf-resource-section {
  background:
    linear-gradient(180deg, #f5f5f6 0%, #ffffff 100%);
}

.pdf-download-layout {
  display: grid;
  max-width: 720px;
  margin-inline: auto;
}

.pdf-resource-copy {
  border: 1px solid rgba(16, 23, 32, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(16, 23, 32, 0.12);
}

.pdf-resource-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.pdf-resource-copy h2 {
  margin: 0 0 0.75rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.pdf-resource-copy p:not(.eyebrow) {
  color: var(--gray);
  font-size: 1rem;
}

.pdf-resource-copy .hero-cta {
  margin-top: 1.35rem;
}

.gallery-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--hmc-yellow-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
}

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

.gallery-card {
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: #111820;
  box-shadow: 0 18px 42px rgba(13, 20, 29, 0.18);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.72, 0.18, 1), filter 420ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0) 34%, rgba(5, 7, 10, 0.78) 100%),
    linear-gradient(120deg, rgba(5, 7, 10, 0.14), rgba(5, 7, 10, 0));
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.gallery-card:focus-visible {
  outline: 3px solid var(--hmc-yellow);
  outline-offset: 4px;
}

.gallery-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.32rem;
  padding: 18px;
  text-align: left;
}

.gallery-card-copy strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.gallery-card-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.gallery-lightbox {
  width: min(1040px, calc(100vw - 156px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: #070b10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.gallery-lightbox::backdrop {
  background: rgba(3, 5, 8, 0.84);
  backdrop-filter: blur(5px);
}

.gallery-lightbox figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #070b10;
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: min(68vh, 720px);
  object-fit: contain;
  background: #0b1017;
}

.gallery-lightbox figcaption {
  display: grid;
  gap: 0.48rem;
  padding: 22px 26px 26px;
}

.gallery-lightbox h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.45rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.gallery-lightbox p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--hmc-yellow);
  cursor: pointer;
}

.gallery-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
}

.gallery-lightbox-nav {
  top: 45%;
  transform: translateY(-50%);
}

.gallery-lightbox-nav.previous {
  left: -62px;
}

.gallery-lightbox-nav.next {
  right: -62px;
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.customer-testimonials {
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: 22px;
}

.testimonial-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.2rem;
}

.testimonial-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.testimonial-heading p:not(.eyebrow),
.testimonial-heading-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.testimonial-heading-actions {
  display: grid;
  justify-items: end;
  gap: 0.9rem;
  text-align: right;
}

.testimonial-heading-actions .google-review-btn {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.12fr) repeat(2, minmax(0, 0.72fr));
  gap: 18px;
}

.testimonial-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(10, 18, 27, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--hmc-yellow);
  opacity: 0.9;
}

.testimonial-card.featured {
  grid-row: span 2;
  min-height: 438px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(var(--hmc-yellow-rgb), 0.17), rgba(255, 255, 255, 0.055)),
    rgba(7, 13, 20, 0.9);
}

.testimonial-card > i,
.testimonial-card-top > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  font-size: 1.1rem;
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-logo {
  display: block;
  width: clamp(96px, 9vw, 132px);
  margin: 0 auto -0.25rem;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  box-sizing: border-box;
}

.testimonial-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.2));
}

.testimonial-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--hmc-yellow);
  font-size: 0.84rem;
  line-height: 1;
}

.testimonial-stars i::before {
  display: block;
  line-height: 1;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
  line-height: 1.55;
}

.testimonial-card.featured p {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
}

.testimonial-card strong {
  color: var(--hmc-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0.75rem 0;
  color: var(--hmc-yellow);
  line-height: 1;
}

.stars i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 0.72rem;
  line-height: 1;
}

.stars i::before {
  display: block;
  line-height: 1;
}

.service-area-section {
  color: var(--charcoal);
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
  padding-block: clamp(46px, 5.5vw, 78px);
}

.page-hero {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero::before {
  z-index: -2;
  background-image: url("../images/hmc-homepage-header.png");
  background-position: center 40%;
  background-size: cover;
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0.42) 54%, rgba(5, 7, 10, 0.82)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.76));
}

.page-hero .container {
  padding-block: clamp(150px, 18vw, 205px) clamp(54px, 6vw, 76px);
}

.page-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0.54) 54%, rgba(5, 7, 10, 0.88)),
    url("../images/hmc-homepage-header.png") center / cover no-repeat;
}

.thank-you-main {
  display: grid;
  place-items: center;
  padding: clamp(32px, 8vw, 96px) var(--container-pad);
}

.thank-you-panel {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.thank-you-logo {
  display: grid;
  place-items: center;
  width: clamp(110px, 14vw, 150px);
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  box-sizing: border-box;
}

.thank-you-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.2));
}

.thank-you-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.thank-you-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  color: var(--hmc-yellow);
  font-weight: 900;
}

.thank-you-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.thank-you-footer {
  padding: 22px var(--container-pad);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 7, 10, 0.82);
  text-align: center;
}

.thank-you-footer p {
  margin: 0;
}

.breadcrumbs {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--hmc-yellow-rgb), 0.1), transparent 32%),
    linear-gradient(135deg, #05070a 0%, #101923 48%, #05070a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(var(--hmc-yellow-rgb), 0.16);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  align-items: center;
  padding: 0.85rem 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
}

.breadcrumbs li + li::before {
  content: "\f105";
  color: rgba(255, 255, 255, 0.38);
  font-family: "Font Awesome 6 Free";
  font-size: 0.72rem;
  font-weight: 900;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 180ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--hmc-yellow);
}

.breadcrumbs [aria-current="page"] {
  color: var(--hmc-yellow);
}

.page-section {
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--white);
}

.page-section.alt {
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.page-section.dark {
  color: var(--white);
  background: linear-gradient(120deg, #090d12 0%, #121922 54%, #0b1017 100%);
}

main > section.dark:last-child,
main > section.financing-cta:last-child {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 31, 48, 0.98) 0%, rgba(18, 39, 61, 0.96) 46%, rgba(12, 25, 39, 0.98) 100%),
    radial-gradient(circle at 82% 12%, rgba(var(--hmc-yellow-rgb), 0.14), transparent 32%),
    #101f30;
}

main > section.dark:last-child::after,
main > section.financing-cta:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--hmc-yellow-rgb), 0.2), transparent);
  pointer-events: none;
}

.generator-moments-cta {
  padding: clamp(56px, 7vw, 96px) 0;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 248, 0.98)),
    radial-gradient(circle at 8% 0%, rgba(var(--hmc-yellow-rgb), 0.18), transparent 34%);
}

.generator-moments-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.generator-moments-copy h2 {
  max-width: 720px;
  margin: 0 0 0.8rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.generator-moments-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 0 1.6rem;
  color: #33404d;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.generator-moments-photo {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 22px 54px rgba(16, 23, 32, 0.22);
}

.generator-moments-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 7, 10, 0.36));
}

.generator-moments-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.financing-cta {
  padding: clamp(58px, 7vw, 96px) 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 8, 12, 0.94), rgba(14, 24, 34, 0.9)),
    radial-gradient(circle at 78% 16%, rgba(var(--hmc-yellow-rgb), 0.16), transparent 34%),
    #080c12;
}

.financing-cta-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.financing-cta-copy h2 {
  max-width: 680px;
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.financing-cta-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 1.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.financing-cta-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

.financing-cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 10, 0.26));
}

.financing-cta-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.financing-application-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--hmc-yellow-rgb), 0.16), transparent 28%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.financing-application-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(280px, auto);
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    #ffffff;
  box-shadow: 0 22px 54px rgba(13, 20, 29, 0.12);
}

.financing-application-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--hmc-yellow);
  font-size: 2.1rem;
  box-shadow: 0 14px 28px rgba(var(--hmc-yellow-rgb), 0.28);
}

.financing-application-copy {
  min-width: 0;
}

.financing-application-copy h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.financing-application-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0.8rem 0 0;
  color: #46515f;
  font-size: 1rem;
  line-height: 1.65;
}

.financing-application-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.financing-application-actions .btn {
  width: 100%;
  min-width: 280px;
  justify-content: center;
  text-align: center;
}

.financing-next-steps {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.financing-assessment-cta {
  background:
    radial-gradient(circle at 18% 20%, rgba(var(--hmc-yellow-rgb), 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.assessment-cta-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  min-height: 230px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  color: var(--charcoal);
  background:
    linear-gradient(120deg, rgba(255, 240, 0, 0.16), transparent 34%),
    var(--white);
  box-shadow: 0 24px 58px rgba(17, 24, 32, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.assessment-cta-card:hover,
.assessment-cta-card:focus-visible {
  color: var(--charcoal);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(17, 24, 32, 0.16);
}

.assessment-cta-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--hmc-yellow);
  box-shadow: 0 12px 24px rgba(var(--hmc-yellow-rgb), 0.24);
  font-size: 2rem;
}

.assessment-cta-copy {
  display: grid;
  gap: 10px;
}

.assessment-cta-copy strong {
  display: block;
  max-width: 760px;
  color: var(--charcoal);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.assessment-cta-copy small {
  display: block;
  max-width: 680px;
  color: #4a5159;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.financing-next-steps .section-heading {
  max-width: 920px;
}

.assessment-form-heading {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  text-align: left;
}

.assessment-heading-logo {
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}

.assessment-heading-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.2));
}

.assessment-heading-copy {
  display: grid;
  justify-items: start;
  min-width: 0;
}

.financing-next-steps .section-heading h2 {
  white-space: nowrap;
}

.financing-next-steps .section-heading p:not(.eyebrow) {
  white-space: nowrap;
}

.assessment-heading-copy p:not(.eyebrow) {
  justify-self: start;
  text-align: left;
}

.financing-assessment-form {
  display: grid;
  gap: 24px;
  width: 100%;
  margin-top: 38px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 58px rgba(17, 24, 32, 0.12);
}

.assessment-form-section {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 24, 32, 0.1);
}

.assessment-form-section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.assessment-form-section h3 {
  margin: 0;
  color: #111820;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

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

.assessment-form-grid .full {
  grid-column: 1 / -1;
}

.financing-assessment-form .form-field span,
.assessment-checks legend {
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.assessment-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.assessment-checks legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.assessment-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 23, 32, 0.12);
  border-radius: 7px;
  color: #33404d;
  background: #f8fbff;
  font-size: 0.9rem;
  font-weight: 700;
}

.assessment-checks input {
  width: 16px;
  height: 16px;
  accent-color: var(--hmc-yellow);
  flex: 0 0 auto;
}

.assessment-consent {
  max-width: 760px;
  margin: -6px 0 0;
  color: rgba(16, 23, 32, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.assessment-submit {
  justify-self: start;
  margin-top: 2px;
}

.financing-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.financing-step-card {
  padding: 28px;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(17, 24, 32, 0.1);
}

.financing-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: #111820;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 0 10px 0 rgba(17, 24, 32, 0.12);
}

.financing-step-card h3 {
  margin-bottom: 10px;
  color: #111820;
  font-size: 1rem;
  text-transform: uppercase;
}

.financing-step-card p {
  margin: 0;
  color: rgba(17, 24, 32, 0.66);
  line-height: 1.65;
}

.financing-step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.page-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.transfer-switch-copy-block .page-copy {
  max-width: 860px;
}

.page-copy h2,
.page-section h2 {
  margin: 0 0 0.8rem;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.page-copy p,
.page-section p {
  color: inherit;
}

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

.info-card {
  padding: 24px;
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 13px 28px rgba(16, 23, 32, 0.12);
}

.dark .info-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.info-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  font-size: 1.55rem;
}

.info-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  color: #46515f;
  font-size: 0.9rem;
}

.info-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: max-content;
  margin-top: 1rem;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.info-card-link i {
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--hmc-yellow);
  background: transparent;
  font-size: 0.74rem;
  transition: transform 180ms ease;
}

.info-card-link:hover,
.info-card-link:focus-visible {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-card-link:hover i,
.info-card-link:focus-visible i {
  transform: translateY(2px);
}

.info-cta-card {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 222, 0, 0.14), rgba(255, 255, 255, 0.96));
}

.info-cta-card .eyebrow {
  width: max-content;
  margin-bottom: 0.75rem;
}

.info-cta-card h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.info-cta-card p:not(.eyebrow) {
  max-width: 560px;
}

.info-cta-card .btn {
  align-self: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  width: max-content;
  height: 38px;
  min-width: 0;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
}

.info-cta-card .btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 0.88rem;
  line-height: 1;
}

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

.about-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resources-card-section {
  background:
    radial-gradient(circle at 20% 8%, rgba(var(--hmc-yellow-rgb), 0.12), transparent 30%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.about-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1050px;
  margin-inline: auto;
}

.service-page-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 23, 32, 0.11);
}

.services-assessment-card {
  grid-column: span 2;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  align-content: center;
  gap: 22px;
  min-height: 0;
  padding-block: 36px;
  background:
    linear-gradient(135deg, rgba(var(--hmc-yellow-rgb), 0.16), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.services-assessment-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
}

.services-assessment-card p {
  max-width: 650px;
}

.services-assessment-card .btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.services-assessment-card .btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-cta-card,
.services-assessment-card,
.assessment-cta-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--hmc-yellow-rgb), 0.16), transparent 34%),
    linear-gradient(135deg, #0b1119 0%, #142235 58%, #0a0f16 100%);
  box-shadow: 0 24px 56px rgba(5, 7, 10, 0.24);
}

.assessment-cta-card:hover,
.assessment-cta-card:focus-visible {
  color: var(--white);
  box-shadow: 0 30px 70px rgba(5, 7, 10, 0.3);
}

.info-cta-card h3,
.services-assessment-card h3,
.assessment-cta-copy strong {
  color: var(--white);
}

.info-cta-card p:not(.eyebrow),
.services-assessment-card p,
.assessment-cta-copy small {
  color: rgba(255, 255, 255, 0.76);
}

.service-page-card > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  font-size: 1.65rem;
}

.service-page-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-page-card p {
  margin: 0;
  color: #46515f;
  font-size: 0.86rem;
}

.about-overview-grid .service-page-card p {
  color: #293544;
  font-size: 0.95rem;
  line-height: 1.55;
}

.installation-process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.installation-process-note {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--hmc-yellow-rgb), 0.2), transparent 34%),
    var(--white);
  box-shadow: 0 18px 38px rgba(16, 23, 32, 0.12);
}

.installation-process-note i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--hmc-yellow);
  font-size: 1.7rem;
}

.installation-process-note strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.installation-process-note p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.installation-process-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: install-step;
}

.installation-process-list li {
  counter-increment: install-step;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 23, 32, 0.1);
}

.installation-process-list li::before {
  content: counter(install-step);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--hmc-yellow);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 0 #b9ae00;
}

.installation-process-list h3 {
  margin: 0 0 0.45rem;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.installation-process-list p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.installation-process-finale {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--hmc-yellow);
  box-shadow: 0 16px 34px rgba(var(--hmc-yellow-rgb), 0.26);
  text-align: center;
}

.installation-process-finale .eyebrow {
  margin: 0;
  color: var(--hmc-yellow);
  background: var(--charcoal);
}

.installation-process-finale h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.installation-process-finale p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 24, 32, 0.74);
  font-size: 1rem;
  font-weight: 700;
}

.installation-process-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.service-page-card.services-assessment-card h3,
.info-card.info-cta-card h3,
.assessment-cta-card .assessment-cta-copy strong {
  color: var(--white);
}

.service-page-card.services-assessment-card p,
.info-card.info-cta-card p:not(.eyebrow),
.assessment-cta-card .assessment-cta-copy small {
  color: rgba(255, 255, 255, 0.8);
}

.service-page-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  width: max-content;
  margin-top: auto;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.service-card a::before,
.service-page-card a::before,
.generator-brand-card a::before {
  content: "\f0e7";
  margin-right: 0.46rem;
  color: var(--hmc-pill-fg);
  font-family: "Font Awesome 6 Free";
  font-size: 0.82em;
  font-weight: 900;
  line-height: 1;
}

.service-page-card a::after,
.generator-brand-card a::after {
  content: "\f061";
  margin-left: 0.52rem;
  color: var(--hmc-pill-fg);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.service-page-card a:hover,
.generator-brand-card a:hover {
  color: var(--hmc-pill-fg);
  filter: brightness(1.04);
  box-shadow: 0 10px 20px rgba(var(--hmc-yellow-rgb), 0.28);
  transform: translateY(-2px);
}

.service-page-card a:hover::after,
.generator-brand-card a:hover::after {
  animation: service-arrow-slide 520ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.service-page-card a:active,
.generator-brand-card a:active {
  transform: translateY(0);
}

.service-page-card a.btn {
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 9px;
  background: transparent;
  overflow: visible;
}

.service-page-card a.btn::before,
.service-page-card a.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 9px;
  pointer-events: none;
}

.service-page-card a.btn::before {
  z-index: -2;
  background: var(--btn-bed);
  transform: translateY(var(--btn-bed-drop));
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.service-page-card a.btn::after {
  z-index: -1;
  background: var(--btn-face);
  box-shadow: inset 0 0 0 2px var(--btn-ring);
  transform: translateY(var(--btn-face-lift));
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.service-page-card a.btn > * {
  transform: translateY(var(--btn-content-lift));
}

.service-page-card a.btn:hover {
  box-shadow: 0 12px 24px rgba(var(--hmc-yellow-rgb), 0.24);
}

.service-page-card a.btn:hover::before {
  transform: translateY(1px);
}

.service-page-card a.btn:hover::after {
  animation: none;
  transform: translateY(-1px);
}

.service-page-card a.btn:hover > * {
  transform: translateY(-1px);
}

.service-page-card a.btn.btn-arrow:hover i:last-child {
  transform: translate(3px, -1px);
}

.service-page-card a.btn:active::before {
  transform: translateY(0);
}

.service-page-card a.btn:active::after,
.service-page-card a.btn:active > * {
  transform: translateY(1px);
}

.service-page-card a.btn.btn-arrow:active i:last-child {
  transform: translate(1px, 1px);
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(32px, 6vw, 84px);
}

.career-points {
  display: grid;
  gap: 14px;
  margin: 1.5rem 0 1.85rem;
}

.career-points article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-weight: 800;
}

.career-points i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
}

.career-flyer {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 24px 54px rgba(16, 23, 32, 0.24);
}

.career-flyer img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-row-list {
  display: grid;
  gap: 22px;
  margin-top: clamp(32px, 5vw, 56px);
}

.blog-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(16, 23, 32, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 23, 32, 0.1);
}

.blog-row-media {
  display: block;
  min-height: 100%;
  background: var(--charcoal);
}

.blog-row-media picture,
.blog-row-media img {
  width: 100%;
  height: 100%;
}

.blog-row-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-row-body {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(22px, 3vw, 34px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #617080;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-row h3 {
  margin: 0;
  max-width: 760px;
  color: var(--charcoal);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.08;
}

.blog-row p {
  margin: 0;
  max-width: 760px;
  color: #46515f;
  font-size: 0.98rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  color: var(--black);
  background: rgba(var(--hmc-yellow-rgb), 0.22);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  margin-top: 0.25rem;
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-read-more:hover,
.blog-row h3 a:hover {
  color: var(--hmc-yellow);
}

main > .page-section.alt:has(.blog-article-shell) {
  background: #f5f5f6;
}

.service-detail-copy.blog-article-shell {
  max-width: 1040px;
  margin-top: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 23, 32, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16, 23, 32, 0.13);
}

.blog-article-cover {
  margin: 0 0 clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 18px 46px rgba(16, 23, 32, 0.14);
}

.blog-article-cover img {
  display: block;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 0.9rem;
  color: #617080;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.blog-article-shell > .blog-tags {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.blog-article-body {
  display: grid;
  gap: 1.05rem;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(8px, 2vw, 18px) 0;
}

.blog-article-body > p:first-child {
  margin-bottom: 0.2rem;
  padding: clamp(18px, 3vw, 24px);
  border-left: 5px solid var(--hmc-yellow);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: #f7f9fb;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
  font-weight: 700;
  line-height: 1.62;
}

.blog-article-body h2 {
  position: relative;
  margin: clamp(20px, 3vw, 34px) 0 0;
  padding-left: 18px;
  color: var(--charcoal);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.blog-article-body h2::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: var(--hmc-yellow);
}

.blog-article-body p,
.blog-article-body li {
  color: #243140;
}

.blog-article-body p {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.78;
}

.blog-article-body ul,
.blog-article-body ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.25rem;
}

.blog-article-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: #0b1119;
}

.service-detail-intro {
  text-align: center;
}

.service-detail-intro h2 {
  max-width: none;
}

.service-detail-intro h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  margin: 1.1rem auto 0;
  background: var(--hmc-yellow);
}

.service-detail-copy {
  max-width: 1160px;
  margin: 1.8rem auto 0;
  color: var(--black);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.transfer-switch-intro .service-detail-copy {
  color: rgba(255, 255, 255, 0.84);
}

.service-detail-actions {
  justify-content: center;
  margin-top: 1.35rem;
}

.service-logo-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  margin-top: clamp(34px, 5vw, 64px);
}

.service-brand-logo {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 23, 32, 0.1);
}

.service-brand-logo img {
  width: min(100%, 360px);
  height: auto;
}

.service-photo-frame {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.service-photo-frame img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: clamp(280px, 34vw, 420px);
  object-fit: cover;
}

.commercial-photo-square {
  min-height: 0;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: 0 18px 42px rgba(16, 23, 32, 0.22);
}

.commercial-photo-square img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.service-detail-panel {
  padding: clamp(24px, 3vw, 34px);
  border-left: 4px solid var(--hmc-yellow);
  color: var(--charcoal);
  background: #f8fbff;
}

.service-detail-panel p {
  margin: 0;
}

.service-detail-panel-button {
  margin-top: 1.25rem;
}

.service-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 5vw, 56px);
}

.service-feature-list .info-card {
  min-height: 190px;
}

.maintenance-checklist-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--hmc-yellow-rgb), 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.maintenance-checklist-section .section-heading {
  max-width: 860px;
  margin-inline: auto;
}

.maintenance-checklist-section .section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin-inline: auto;
  color: #46515f;
}

.maintenance-checklist-grid .info-card {
  min-height: 220px;
}

.dark .info-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: #111820;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-panel a {
  color: var(--hmc-yellow);
  font-weight: 900;
}

.contact-panel .btn {
  color: var(--btn-text);
}

.contact-panel .btn-primary {
  --btn-face: var(--hmc-yellow);
  --btn-bed: #b9ae00;
  --btn-text: var(--black);
}

.schedule-service-form {
  align-self: start;
  gap: 18px;
}

.schedule-service-form > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.schedule-service-form .form-field.full {
  grid-column: 1 / -1;
}

.schedule-service-form .form-field label {
  color: rgba(255, 255, 255, 0.88);
}

.schedule-service-form .form-field input,
.schedule-service-form .form-field select,
.schedule-service-form .form-field textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: #f8fbff;
}

.schedule-service-form .form-field textarea {
  height: 118px;
  min-height: 118px;
}

.schedule-service-form .btn {
  justify-self: start;
}

.contact-panel-logo {
  display: block;
  width: 118px;
  max-width: 45%;
}

.contact-panel-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-address,
.footer-address {
  color: inherit;
  font-style: normal;
  line-height: 1.45;
}

.contact-address {
  color: rgba(255, 255, 255, 0.82);
}

.footer-address {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.contact-form-section {
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(500px, 1.08fr);
  align-items: start;
  column-gap: clamp(34px, 5vw, 62px);
  row-gap: clamp(26px, 4vw, 42px);
}

.contact-layout > .page-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 8px;
}

.contact-layout > .contact-intro {
  grid-column: 1 / -1;
  max-width: 640px;
}

.contact-layout > .contact-details {
  grid-column: 1;
}

.contact-layout > .contact-form {
  grid-column: 2;
}

.contact-details {
  align-content: start;
  min-height: 300px;
}

.contact-map-panel {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 55px rgba(16, 23, 32, 0.12);
}

.contact-map-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.contact-map-header h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-map-header .eyebrow {
  margin-bottom: 0.55rem;
}

.contact-map-header .contact-address {
  margin: 0;
  color: rgba(16, 23, 32, 0.7);
  font-weight: 700;
  text-align: right;
}

.contact-map-panel .community-map {
  width: 100%;
  min-height: clamp(300px, 30vw, 410px);
}

.contact-map-panel .community-map-directions {
  justify-content: flex-end;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  align-content: start;
  min-width: 0;
  gap: 16px 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(16, 23, 32, 0.16);
}

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field.full,
.contact-form .btn {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 23, 32, 0.16);
  border-radius: 7px;
  color: var(--charcoal);
  background: #f8fbff;
  font: inherit;
  font-size: 0.95rem;
}

.form-field input,
.form-field select {
  height: 46px;
  min-height: 46px;
  padding: 0 0.9rem;
}

.form-field textarea {
  height: 138px;
  min-height: 138px;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--hmc-yellow);
  outline: 3px solid rgba(var(--hmc-yellow-rgb), 0.28);
}

.contact-form .btn {
  align-self: start;
  width: max-content;
  margin-top: 2px;
}

.schedule-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.schedule-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  font-weight: 900;
}

.service-area-section .eyebrow {
  padding: 0;
  border-radius: 0;
  color: var(--hmc-yellow);
  background: transparent;
  font-size: 0.72rem;
  line-height: 1;
}

.community-process-heading {
  margin-bottom: clamp(20px, 2.4vw, 32px);
  text-align: center;
}

.community-process-heading .eyebrow {
  margin-inline: auto;
  margin-bottom: 0.28rem;
}

.community-process-heading h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.community-process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 32px);
  padding: 0;
  margin: 0 0 clamp(34px, 4.4vw, 58px);
  list-style: none;
}

.community-process-row li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 22px 20px 20px 48px;
  border: 1px solid rgba(16, 23, 32, 0.06);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 23, 32, 0.11);
}

.community-process-row li.is-process-jiggling {
  animation: process-card-jiggle 720ms cubic-bezier(0.28, 0.76, 0.36, 1) both;
}

.community-process-row li:not(:last-child)::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: -22px;
  color: #a8afb7;
  font-family: "Font Awesome 6 Free";
  font-size: 0.82rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.process-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.community-process-row i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--charcoal);
  font-size: 2rem;
}

.community-process-row h3 {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.community-process-row p {
  margin: 0;
  color: #4a5159;
  font-size: 0.72rem;
  line-height: 1.28;
}

.process-financing-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin: calc(-1 * clamp(12px, 1.4vw, 18px)) 0 clamp(42px, 5vw, 66px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 48px rgba(16, 23, 32, 0.12);
}

.process-financing-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  box-shadow: 0 10px 0 #b9ae00;
  font-size: 1.8rem;
}

.process-financing-copy {
  min-width: 0;
}

.process-financing-copy .eyebrow {
  margin-bottom: 0.34rem;
  color: var(--hmc-yellow);
}

.process-financing-copy h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.process-financing-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 0.45rem 0 0;
  color: #46515f;
  font-size: 0.95rem;
}

.process-financing-card .btn {
  justify-self: end;
  white-space: nowrap;
}

@keyframes process-card-jiggle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  18% {
    transform: translate3d(-2px, 0, 0) rotate(-0.65deg);
  }

  36% {
    transform: translate3d(2px, -1px, 0) rotate(0.55deg);
  }

  54% {
    transform: translate3d(-1px, 1px, 0) rotate(-0.35deg);
  }

  72% {
    transform: translate3d(1px, 0, 0) rotate(0.25deg);
  }
}

.community-service-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.54fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(16, 23, 32, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 46px rgba(16, 23, 32, 0.12);
}

.community-copy .eyebrow {
  margin-bottom: 0.28rem;
}

.community-copy h2 {
  margin: 0 0 0.48rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.community-copy p {
  margin-bottom: 1rem;
  color: #4a5159;
}

.community-checklist {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.35rem;
  color: #1f2834;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.community-checklist li::before {
  content: "\f00c";
  margin-right: 0.55rem;
  color: var(--hmc-yellow);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.newsletter-section {
  color: var(--charcoal);
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
  padding-block: clamp(14px, 2vw, 28px) clamp(38px, 5vw, 68px);
}

.newsletter-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 18px clamp(20px, 4vw, 36px);
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--hmc-yellow-rgb), 0.18), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(var(--hmc-yellow-rgb), 0.12), transparent 34%),
    linear-gradient(135deg, #0b1119 0%, #142235 58%, #0a0f16 100%);
  box-shadow: 0 24px 58px rgba(5, 7, 10, 0.22);
}

.newsletter-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: var(--hmc-yellow);
  box-shadow: 0 10px 0 #b9ae00;
  font-size: 1.8rem;
}

.newsletter-copy {
  min-width: 0;
}

.newsletter-copy .eyebrow {
  margin-bottom: 0.34rem;
  color: var(--hmc-yellow);
}

.newsletter-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 2.9vw, 2.7rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.newsletter-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.newsletter-form {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  width: 100%;
}

.newsletter-form .form-field span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-form .btn {
  grid-column: 1 / -1;
  height: 46px;
  width: 100%;
  white-space: nowrap;
}

.community-map {
  position: relative;
  min-height: 276px;
  border: 1px solid rgba(16, 23, 32, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  background: #e6e1d8;
  box-shadow: 0 18px 40px rgba(16, 23, 32, 0.1);
}

.community-map-panel {
  display: grid;
  gap: 12px;
}

.community-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.community-map-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.58rem 0.84rem;
  border-radius: 999px;
  color: var(--hmc-pill-fg);
  background: var(--hmc-pill-bg);
  box-shadow: 0 10px 22px rgba(16, 23, 32, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.community-map-link:hover,
.community-map-link:focus-visible {
  color: var(--hmc-pill-fg);
  text-decoration: none;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(16, 23, 32, 0.22);
}

.community-map-directions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.community-direction-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--hmc-pill-bg);
  color: var(--hmc-pill-fg);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 0 #b9ae00, 0 16px 24px rgba(var(--hmc-yellow-rgb), 0.18);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2), box-shadow 180ms ease, filter 180ms ease;
}

.community-direction-link:hover,
.community-direction-link:focus-visible {
  color: var(--hmc-pill-fg);
  text-decoration: none;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b9ae00, 0 16px 26px rgba(var(--hmc-yellow-rgb), 0.22);
}

.community-direction-link:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #b9ae00, 0 10px 18px rgba(var(--hmc-yellow-rgb), 0.16);
}

.storm-cta {
  position: relative;
  min-height: 230px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.storm-cta-bg {
  display: none;
}

.storm-cta-overlay {
  display: none;
}

.storm-cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(38px, 5vw, 58px) 0;
}

.storm-cta-copy .eyebrow {
  margin-bottom: 0.36rem;
}

.storm-cta-copy h2 {
  max-width: none;
  font-size: clamp(2.1rem, 3.8vw, 3.65rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.storm-cta-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.storm-cta-actions {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.storm-cta-actions .hero-cta {
  justify-content: flex-end;
  margin-top: 0;
}

.storm-cta-actions .btn {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.cta-meta-row {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
  max-width: 620px;
}

.cta-meta-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-meta-item:first-child {
  padding-left: 0;
}

.cta-meta-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.cta-meta-item i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--hmc-yellow);
  font-size: 1.45rem;
}

.cta-meta-item strong,
.cta-meta-item small {
  display: block;
  line-height: 1.05;
}

.cta-meta-item strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-meta-item small {
  margin-top: 0.16rem;
  color: var(--hmc-yellow);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

main > section:not(.hero) .btn-primary,
main > section:not(.hero) .btn-secondary {
  --btn-face: var(--hmc-pill-bg);
  --btn-bed: #b9ae00;
  --btn-text: var(--hmc-pill-fg);
  --btn-ring: transparent;
}

.site-footer {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.46), rgba(5, 7, 10, 0.06) 52%, rgba(5, 7, 10, 0.44)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.04) 0%, rgba(5, 7, 10, 0.14) 48%, rgba(5, 7, 10, 0.72) 82%, var(--black) 100%),
    url("../images/footer-storm-background.png") center top / cover no-repeat;
  filter: contrast(1.16) saturate(1.12);
}

.site-footer::after {
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 1), transparent 18%),
    radial-gradient(circle at 72% 12%, rgba(198, 235, 255, 1), transparent 26%),
    radial-gradient(circle at 48% 38%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(198, 235, 255, 1), rgba(145, 205, 255, 0.57) 46%, transparent 88%);
  mix-blend-mode: screen;
  will-change: opacity, filter;
}

.site-footer.is-footer-flashing::before {
  animation: footer-background-flash 1500ms linear both;
}

.site-footer.is-footer-flashing::after {
  animation: footer-sky-flash 1500ms linear both;
}

@keyframes footer-background-flash {
  0%,
  7%,
  62%,
  100% {
    filter: brightness(1) saturate(1);
  }

  9% {
    filter: brightness(2.72) saturate(1.27);
  }

  13% {
    filter: brightness(1.48) saturate(1.12);
  }

  18% {
    filter: brightness(2.35) saturate(1.24);
  }

  36% {
    filter: brightness(1.63) saturate(1.15);
  }
}

@keyframes footer-sky-flash {
  0%,
  7%,
  62%,
  100% {
    opacity: 0;
    filter: brightness(1) blur(0);
  }

  9% {
    opacity: 1;
    filter: brightness(1.57) blur(0);
  }

  13% {
    opacity: 0.27;
    filter: brightness(1.18) blur(1px);
  }

  18% {
    opacity: 0.93;
    filter: brightness(1.39) blur(0);
  }

  25% {
    opacity: 0.18;
    filter: brightness(1.12) blur(1px);
  }

  36% {
    opacity: 0.6;
    filter: brightness(1.24) blur(0);
  }
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto auto;
  gap: 36px;
  align-items: start;
  padding: 46px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(var(--hmc-yellow-rgb), 0.22);
}

.footer-actions {
  grid-column: 3 / 5;
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: end;
  justify-items: end;
}

.footer-bbb-only {
  padding-top: 0;
  align-self: start;
  align-content: start;
  transform: translateY(clamp(-128px, -7vw, -82px));
}

.footer-grid-bbb {
  grid-template-columns: 1fr;
  justify-items: end;
  padding-top: 0;
  border-top: 0;
  box-shadow: none;
}

.footer-grid-bbb .footer-bbb-only {
  grid-column: auto;
  padding-top: 0;
}

.footer-action-row {
  display: flex;
  align-items: start;
  justify-content: flex-end;
  gap: 18px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  width: 132px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  box-sizing: border-box;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, max-content));
  gap: clamp(24px, 4vw, 56px);
  align-content: start;
}

.footer-link-column {
  display: grid;
  align-content: start;
  gap: 0.78rem;
}

.footer-link-column h3 {
  margin: 0;
  color: var(--hmc-yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-link-column .footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-content: start;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  justify-items: start;
  align-content: start;
  width: max-content;
  margin-right: 14px;
}

.social-links a {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  aspect-ratio: 1 / 1;
  flex: 0 0 46px;
  border: 0;
  border-radius: var(--radius);
  color: var(--hmc-pill-fg);
  background: transparent;
  isolation: isolate;
  transition: filter 180ms ease;
}

.social-links a::before,
.social-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.social-links a::before {
  z-index: -2;
  background: #b9ae00;
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.social-links a::after {
  z-index: -1;
  background: var(--hmc-pill-bg);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.social-links a i {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.social-links a:hover {
  color: var(--hmc-pill-fg);
  filter: brightness(1.03);
}

.social-links a:hover::after,
.social-links a:hover i {
  transform: translateY(-1px);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2);
}

.social-links a:hover::before {
  transform: translateY(1px);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2);
}

.social-links a:active::after,
.social-links a:active i {
  transform: translateY(1px);
  transition: transform 34ms;
}

.social-links a:active::before {
  transform: translateY(0);
  transition: transform 34ms;
}

.sound-widget {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: start;
}

.bbb-seal-link {
  display: block;
  width: min(176px, 100%);
  margin-top: clamp(28px, 3.4vw, 52px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-bbb-only .bbb-seal-link {
  margin-top: 0;
}

.bbb-seal-link:hover,
.bbb-seal-link:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.3));
}

.bbb-seal-link img {
  display: block;
  width: 100%;
  height: auto;
}

.sound-toggle,
.sound-credit-trigger {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 900;
  cursor: pointer;
}

.sound-toggle {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 8px;
  width: 106px;
  height: 106px;
  min-width: 106px;
  min-height: 106px;
  padding: 13px 12px;
  border: 0;
  color: var(--hmc-pill-fg);
  background: transparent;
  isolation: isolate;
  transition: filter 180ms ease;
}

.sound-toggle::before,
.sound-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.sound-toggle::before {
  z-index: -2;
  background: #b9ae00;
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.sound-toggle::after {
  z-index: -1;
  background: var(--hmc-pill-bg);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.sound-toggle i {
  position: relative;
  z-index: 1;
  width: auto;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.sound-toggle span {
  position: relative;
  z-index: 1;
  max-width: 82px;
  font-size: 0.76rem;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.sound-toggle:hover {
  color: var(--hmc-pill-fg);
  filter: brightness(1.03);
}

.sound-toggle:hover::after,
.sound-toggle:hover i,
.sound-toggle:hover span {
  transform: translateY(-1px);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2);
}

.sound-toggle:hover::before {
  transform: translateY(1px);
  transition: transform 180ms cubic-bezier(0.3, 0.7, 0.4, 1.2);
}

.sound-toggle:active::after,
.sound-toggle:active i,
.sound-toggle:active span {
  transform: translateY(1px);
  transition: transform 34ms;
}

.sound-toggle:active::before {
  transform: translateY(0);
  transition: transform 34ms;
}

.sound-credit-trigger {
  padding: 0;
  color: rgba(255, 255, 255, 0.38);
  background: transparent;
  border: 0;
  font-size: 0.68rem;
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.sound-credit-trigger:hover,
.sound-credit-trigger:focus-visible {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.sound-credit-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(310px, calc(100vw - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 7, 10, 0.96);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.34);
  font-size: 0.78rem;
  line-height: 1.45;
}

.sound-credit-popover p {
  margin: 0;
}

.sound-credit-popover p + p {
  margin-top: 8px;
}

.sound-credit-popover a {
  color: var(--hmc-yellow);
  font-weight: 800;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-header-preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-right: 12px;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1;
  vertical-align: middle;
}

.footer-header-preview-link:hover,
.footer-header-preview-link:focus-visible {
  color: var(--hmc-yellow);
  text-shadow: 0 0 12px rgba(255, 234, 0, 0.5);
}

.footer-header-preview-link + a {
  margin-left: 0;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  color: inherit;
  font: inherit;
}

.powered-by::before {
  content: "|";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

.powered-by-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  font: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.powered-by-link img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  border-radius: 4px;
  flex: 0 0 auto;
}

.powered-by-link:hover,
.powered-by-link:focus-visible {
  color: var(--hmc-yellow);
  text-decoration-color: currentColor;
}

.footer-bottom a + a {
  margin-left: 16px;
}

@media (max-width: 1120px) {
  .nav-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav-panel {
    gap: 12px;
  }

  .nav-links a {
    padding-inline: 0.5rem;
  }

  .phone-link span {
    display: none;
  }

  .services-four-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-four-column .service-card {
    grid-template-columns: 1fr;
    min-height: 250px;
    padding: 24px;
  }

  .generator-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .financing-application-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .financing-application-icon {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }

  .financing-application-actions {
    grid-column: 1 / -1;
    justify-self: start;
    width: min(100%, 660px);
  }

  .financing-application-actions .btn {
    min-width: 0;
  }

  .home-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-photo-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }

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

}

@media (max-width: 900px) {
  body.menu-open .site-header .nav-brand {
    width: 80px;
    flex-basis: 80px;
  }

  body.menu-open .site-header .nav-logo {
    top: 50%;
    width: 66px;
    padding: 5px;
    border-radius: 9px;
    transform: translateY(-50%);
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 35;
    pointer-events: none;
    background: rgba(5, 7, 10, 0.72);
    backdrop-filter: blur(2px);
  }

  .financing-step-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
    gap: 30px 34px;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 34px;
  }

  .footer-actions {
    grid-column: 2;
    justify-self: center;
    justify-items: center;
    transform: none;
    margin-top: 0;
  }

  .social-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 46px);
    grid-auto-flow: column;
    justify-self: center;
    justify-items: center;
    align-items: center;
    gap: 16px;
    width: max-content;
    margin: 4px auto 0;
  }

  .sound-widget {
    grid-column: 1 / -1;
    justify-self: center;
    justify-items: center;
    margin-top: 10px;
  }

  .sound-toggle {
    width: 170px;
    height: 170px;
    min-width: 170px;
    min-height: 170px;
    padding: 18px;
  }

  .sound-toggle i {
    font-size: 2.2rem;
  }

  .bbb-seal-link {
    width: min(161px, 100%);
    margin: 0 auto;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .powered-by {
    margin-left: 0;
  }

  .powered-by::before {
    content: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    font-size: 1.1rem;
  }

  .nav-panel {
    position: absolute;
    z-index: 70;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(100dvh - 128px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 7, 10, 0.98);
    box-shadow: var(--shadow);
  }

  .no-js .nav-panel,
  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    display: grid;
    gap: 8px;
  }

  .nav-links > li {
    display: grid;
    gap: 6px;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    border-radius: 6px;
    color: var(--black);
    background: var(--hmc-yellow);
    text-align: center;
  }

  .nav-dropdown > a {
    justify-content: center;
  }

  .nav-dropdown > a i {
    display: none;
  }

  .nav-caret {
    display: none;
  }

  .nav-submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:not(.is-dropdown-open) > .nav-submenu {
    display: none;
  }

  .nav-dropdown.is-dropdown-open > .nav-submenu,
  .no-js .nav-dropdown > .nav-submenu {
    display: grid;
  }

  .nav-dropdown:hover > .nav-submenu,
  .nav-dropdown:focus-within > .nav-submenu,
  .nav-dropdown.is-dropdown-open > .nav-submenu {
    transform: none;
  }

  .nav-submenu a {
    display: flex;
    width: 100%;
    min-width: 0;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    justify-content: center;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    color: var(--black);
    background: var(--hmc-yellow);
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: var(--black);
    background: var(--hmc-yellow);
    box-shadow: 0 10px 24px rgba(255, 240, 0, 0.18);
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav-actions .phone-link,
  .nav-actions .btn {
    width: 100%;
    height: 54px;
    min-height: 54px;
    padding: 0.9rem 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--black);
    background: var(--hmc-yellow);
    box-shadow: 0 10px 24px rgba(255, 240, 0, 0.18);
    text-align: center;
  }

  .nav-actions .btn::before,
  .nav-actions .btn::after {
    display: none;
  }

  .nav-actions .btn > * {
    transform: none;
  }

  .nav-actions .phone-link > i,
  .nav-actions .phone-link strong,
  .nav-actions .phone-link small {
    color: var(--black);
  }

  .phone-link span {
    display: block;
  }

  .hero {
    min-height: max(650px, 75vh);
  }

  .hero-bg {
    background-position: 58% bottom;
  }

  .hero-lightning-left {
    left: -40px;
    width: 360px;
    height: 460px;
  }

  .hero-lightning-right {
    top: -34px;
    right: -118px;
    width: 400px;
    height: 520px;
  }

  .section-cloud {
    width: min(900px, 118vw);
    height: 360px;
  }

  .services-cloud {
    left: -280px;
    top: -120px;
  }

  .footer-cloud {
    right: -280px;
    top: -130px;
  }

  .generator-brand-section .services-cloud {
    display: none;
  }

  .generator-brand-section {
    background:
      radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.06), transparent 28%),
      linear-gradient(120deg, #05070a 0%, #0d141d 56%, #05070a 100%);
  }

  .brand-section-top h2 {
    color: var(--charcoal);
    text-shadow: none;
  }

  .brand-section-top p:not(.eyebrow) {
    color: var(--gray);
  }

  .hero-gradient {
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(5, 7, 10, 0.26) 0%,
      rgba(5, 7, 10, 0.16) 42%,
      rgba(5, 7, 10, 0) 78%
    );
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.55) 70%, transparent 84%);
    mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.55) 70%, transparent 84%);
  }

  .card-grid.three,
  .community-process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-proof {
    padding: 28px 24px;
    border: 1px solid rgba(16, 23, 32, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(16, 23, 32, 0.12);
  }

  .services-proof .proof-heading {
    margin-bottom: 24px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 0;
  }

  .proof-strip > div,
  .proof-strip > div:nth-child(2) {
    border-right: 0;
    padding: 0;
  }

  .trust-row {
    justify-content: flex-start;
    justify-items: start;
    text-align: left;
  }

  .trust-row span {
    justify-items: start;
    text-align: left;
  }

  #quote .btn-secondary {
    --btn-face: #102032;
    --btn-bed: var(--hmc-yellow);
    --btn-text: var(--white);
    --btn-ring: var(--hmc-yellow);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  }

  .review-card-inline {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .review-author,
  .google-rating {
    grid-column: 2;
  }

  .google-rating {
    padding-left: 0;
    border-left: 0;
  }

  .community-process-row li:nth-child(2)::after {
    display: none;
  }

  .process-financing-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .process-financing-icon {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .process-financing-card .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .newsletter-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .newsletter-icon {
    width: 64px;
    height: 64px;
    font-size: 1.55rem;
  }

  .newsletter-form {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .assessment-cta-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .assessment-cta-card > .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .assessment-cta-icon {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
  }

  .brand-section-top,
  .split,
  .page-split,
  .installation-process-intro,
  .generator-moments-layout,
  .financing-cta-layout,
  .career-layout,
  .contact-layout,
  .community-service-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 26px;
    border: 1px solid rgba(16, 23, 32, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(16, 23, 32, 0.12);
  }

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

  .service-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-assessment-card {
    grid-column: 1 / -1;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .services-assessment-card .btn {
    grid-column: 2;
    justify-self: start;
  }

  .blog-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .service-logo-split {
    grid-template-columns: 1fr;
  }

  .brand-section-top .btn {
    width: max-content;
  }

  .contact-map-panel {
    grid-column: 1;
  }

  .contact-layout > .contact-intro,
  .contact-layout > .contact-details,
  .contact-layout > .contact-form {
    grid-column: 1;
  }

  .contact-map-header {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .contact-map-header .contact-address {
    text-align: left;
  }

  .generator-brand-grid {
    grid-template-columns: 1fr;
  }

  .generator-brand-card {
    grid-template-columns: 190px minmax(0, 1fr);
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .testimonial-heading,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-heading-actions {
    justify-items: start;
    text-align: left;
  }

  .testimonial-card.featured {
    grid-row: auto;
    min-height: auto;
  }

  .storm-cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .storm-cta-actions,
  .storm-cta-actions .hero-cta,
  .cta-meta-row {
    justify-content: flex-start;
    justify-items: start;
  }

  .site-footer .storm-cta-actions .btn-secondary {
    --btn-face: #102032;
    --btn-bed: var(--hmc-yellow);
    --btn-text: var(--white);
    --btn-ring: var(--hmc-yellow);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding: 0;
  }

  .home-announcement-inner {
    display: flex;
    flex-wrap: wrap;
    min-height: 38px;
    column-gap: 6px;
    row-gap: 2px;
    padding-block: 6px;
    font-size: 0.72rem;
  }

  .home-announcement-inner i {
    flex: 0 0 auto;
  }

  .home-announcement-inner p {
    flex: 0 1 auto;
    max-width: calc(100% - 22px);
    text-align: left;
  }

  .home-announcement-inner a {
    flex: 0 0 100%;
  }

  .home-page main {
    padding-top: 114px;
  }

  .brand-logo {
    width: 80px;
  }

  .nav-brand {
    width: 122px;
    flex-basis: 122px;
  }

  .nav-logo {
    top: 8px;
    width: 122px;
    height: auto;
    padding: 8px;
    border-radius: 12px;
    transform: none;
  }

  .nav-logo img {
    width: 100%;
    height: auto;
  }

  .home-page .nav-brand {
    width: 122px;
    flex-basis: 122px;
  }

  .home-page .nav-logo {
    top: 8px;
    width: 122px;
    padding: 8px;
    border-radius: 12px;
  }

  .site-header.is-scrolled .nav-brand,
  body.menu-open .site-header .nav-brand {
    width: 64px;
    flex-basis: 64px;
  }

  .site-header.is-scrolled .nav-logo,
  body.menu-open .site-header .nav-logo {
    top: 50%;
    width: 54px;
    padding: 4px;
    border-radius: 8px;
    transform: translateY(-50%);
  }

  .brand-copy {
    display: none;
  }

  .nav-panel {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    max-height: calc(100dvh - 148px);
  }

  .hero {
    min-height: max(660px, 75vh);
  }

  .hero-bg {
    background-position: 63% bottom;
  }

  .hero-lightning-left {
    left: -130px;
    width: 340px;
    height: 420px;
  }

  .hero-lightning-right {
    top: -22px;
    right: -155px;
    width: 370px;
    height: 470px;
  }

  .section-cloud {
    width: 128vw;
    height: 270px;
    opacity: 0.72;
  }

  .services-cloud {
    left: -48vw;
    top: -92px;
  }

  .footer-cloud {
    right: -48vw;
    top: -96px;
  }

  .hero-gradient {
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(5, 7, 10, 0.28) 0%,
      rgba(5, 7, 10, 0.16) 54%,
      rgba(5, 7, 10, 0) 92%
    );
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.52) 68%, transparent 82%);
    mask-image: linear-gradient(180deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.52) 68%, transparent 82%);
  }

  .hero-content {
    padding-top: 144px;
    padding-bottom: 80px;
  }

  .home-page .hero-content {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.25rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-cta,
  .trust-row {
    display: grid;
  }

  .trust-row {
    width: 100%;
    justify-content: stretch;
    gap: 14px;
  }

  .trust-row span {
    grid-template-columns: 42px minmax(0, 1fr);
    width: 100%;
    padding: 0;
    border-right: 0;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .storm-cta {
    min-height: auto;
  }

  .storm-cta-content {
    padding: 44px 0;
  }

  .storm-cta-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .storm-cta-actions .hero-cta {
    width: 100%;
  }

  .cta-meta-row {
    display: grid;
    max-width: none;
  }

  .cta-meta-item {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .cta-meta-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 70px;
  }

  .home-photo-section {
    padding-block: 28px 48px;
  }

  .home-photo-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-photo-heading .btn {
    width: 100%;
  }

  .home-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .home-photo-card,
  .home-photo-card-featured {
    grid-column: auto;
    min-height: 230px;
  }

  .home-photo-card-featured {
    min-height: 280px;
  }

  .services-section {
    --services-content-lift: 108px;
    padding-top: 56px;
  }

  .card-grid.three,
  .community-process-row,
  .info-grid,
  .assessment-form-grid,
  .contact-form,
  .schedule-form-grid,
  .service-page-grid,
  .about-page-grid,
  .service-feature-list,
  .blog-row {
    grid-template-columns: 1fr;
  }

  .blog-row-media img {
    max-height: 260px;
  }

  .info-cta-card {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }

  .info-cta-card .btn {
    width: 100%;
  }

  .services-assessment-card {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .services-assessment-card .btn {
    grid-column: auto;
    width: 100%;
  }

  .assessment-cta-card {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
    padding: 26px 22px;
  }

  .assessment-cta-card > .btn {
    width: 100%;
  }

  .assessment-form-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .assessment-heading-copy {
    justify-items: center;
  }

  .assessment-heading-copy p:not(.eyebrow) {
    justify-self: center;
    text-align: center;
  }

  .assessment-heading-logo {
    width: 134px;
    height: 134px;
  }

  .financing-next-steps .section-heading h2 {
    white-space: normal;
  }

  .financing-next-steps .section-heading p:not(.eyebrow) {
    white-space: normal;
  }

  .financing-application-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .financing-application-icon {
    width: 64px;
    height: 64px;
    font-size: 1.48rem;
  }

  .financing-application-actions {
    width: 100%;
  }

  .financing-application-actions .btn {
    width: 100%;
  }

  .services-section .card-grid.three {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .services-section .service-card {
    min-height: 0;
  }

  .services-four-column {
    grid-template-columns: 1fr;
  }

  .services-four-column .service-card {
    grid-template-columns: 1fr;
    min-height: 250px;
    padding: 24px;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .newsletter-icon {
    width: 62px;
    height: 62px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .installation-process-actions {
    width: 100%;
  }

  .installation-process-actions .btn {
    width: 100%;
  }

  .assessment-checks {
    grid-template-columns: 1fr;
  }

  .assessment-submit {
    width: 100%;
  }

  .community-process-row li::after {
    display: none;
  }

  .brand-section-top .btn {
    width: 100%;
  }

  .generator-brand-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .generator-brand-card picture {
    width: min(100%, 280px);
    height: auto;
    max-width: 280px;
    justify-self: center;
  }

  .generator-brand-card ul {
    justify-items: center;
  }

  .generator-brand-card li {
    text-align: center;
  }

  .generator-brand-card a {
    justify-self: center;
  }

  .catalog-filter-nav {
    gap: 8px;
  }

  .catalog-filter-nav a {
    min-height: 34px;
    padding: 0.5rem 0.72rem;
    font-size: 0.66rem;
  }

  .generator-product-grid {
    grid-template-columns: 1fr;
  }

  .pdf-resource-copy {
    padding: 24px 20px;
  }

  .generator-product-image {
    height: 220px;
    padding: 20px;
  }

  .generator-product-copy {
    gap: 12px;
    padding: 20px;
  }

  .generator-product-copy h3 {
    min-height: 0;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    aspect-ratio: 16 / 11;
  }

  .gallery-card-copy {
    padding: 16px;
  }

  .gallery-lightbox {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    overflow: hidden;
  }

  .gallery-lightbox figcaption {
    padding: 18px;
  }

  .gallery-lightbox-close,
  .gallery-lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox-nav.previous {
    left: 8px;
  }

  .gallery-lightbox-nav.next {
    right: 8px;
  }

  .gallery-lightbox-close {
    top: 14px;
    right: 14px;
  }

  .customer-testimonials {
    margin-top: 34px;
    padding-top: 30px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    border-right: 0;
    padding: 0;
  }

  .review-card-inline {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .review-author,
  .google-rating {
    grid-column: auto;
  }

  .google-rating {
    grid-template-columns: auto auto;
  }

  .google-rating .compact,
  .google-rating small {
    grid-column: 1 / -1;
  }

  .service-card,
  .community-process-row li {
    min-height: auto;
  }

  .installation-process-list li {
    grid-template-columns: 1fr;
  }

  .community-service-layout {
    gap: 26px;
    padding: 24px 18px;
  }

  .community-map {
    min-height: 240px;
  }

  .community-map-directions {
    justify-content: stretch;
  }

  .community-direction-link {
    flex: 1 1 160px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .sound-widget {
    grid-column: 1 / -1;
    justify-self: center;
    justify-items: center;
  }

  .social-links {
    grid-column: 1 / -1;
  }

  .footer-actions {
    grid-column: auto;
    justify-self: center;
    justify-items: center;
    transform: none;
    margin-top: 0;
  }

  .footer-action-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .bbb-seal-link {
    margin: 10px auto 0;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}

.homepage-header-page main {
  padding-top: 0;
}

.homepage-header-page .hero {
  min-height: 100vh;
}

.homepage-header-page .hero-content {
  min-height: 100vh;
}

@media (max-width: 1120px) {
  .homepage-header-page .hero h1 {
    font-size: 5.8rem;
  }

  .homepage-header-page .hero-copy {
    max-width: 680px;
    font-size: 1.28rem;
  }

  .homepage-header-page .trust-row {
    max-width: 820px;
  }

  .homepage-header-page .trust-row span {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 66px;
    padding: 0 16px;
  }

  .homepage-header-page .trust-row i {
    width: 42px;
    font-size: 2.3rem;
  }
}

@media (max-width: 640px) {
  .homepage-header-page .hero h1 {
    font-size: 4.15rem;
  }

  .homepage-header-page .hero .eyebrow {
    font-size: 0.84rem;
  }

  .homepage-header-page .hero-copy {
    font-size: 1rem;
    font-weight: 700;
  }

  .homepage-header-page .trust-row span {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Keep the scene complete while removing motion-sensitive effects. */
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .btn {
    transition: none !important;
  }

  .btn::before,
  .social-links a::before,
  .sound-toggle::before,
  .button::before,
  button.button::before {
    transform: translateY(var(--btn-bed-drop, 4px)) !important;
    transition: none !important;
  }

  .btn::after,
  .btn > *,
  .social-links a::after,
  .social-links a i,
  .sound-toggle::after,
  .sound-toggle i,
  .sound-toggle span,
  .button::after,
  .button > *,
  button.button::after,
  button.button > * {
    transition: none !important;
  }

  .btn::after,
  .button::after,
  button.button::after {
    transform: translateY(var(--btn-face-lift, -4px)) !important;
  }

  .btn > *,
  .button > *,
  button.button > * {
    transform: translateY(var(--btn-content-lift, -2px)) !important;
  }

  .social-links a::after,
  .social-links a i,
  .sound-toggle::after,
  .sound-toggle i,
  .sound-toggle span {
    transform: translateY(-4px) !important;
  }

  .btn:hover::after,
  .btn:hover > *,
  .social-links a:hover::after,
  .social-links a:hover i,
  .sound-toggle:hover::after,
  .sound-toggle:hover i,
  .sound-toggle:hover span,
  .button:hover::after,
  .button:hover > *,
  button.button:hover::after,
  button.button:hover > * {
    transform: translateY(-1px) !important;
  }

  .btn:hover::before,
  .social-links a:hover::before,
  .sound-toggle:hover::before,
  .button:hover::before,
  button.button:hover::before {
    transform: translateY(1px) !important;
  }

  .btn:active::after,
  .btn:active > *,
  .social-links a:active::after,
  .social-links a:active i,
  .sound-toggle:active::after,
  .sound-toggle:active i,
  .sound-toggle:active span,
  .button:active::after,
  .button:active > *,
  button.button:active::after,
  button.button:active > * {
    transform: translateY(1px) !important;
  }

  .btn:active::before,
  .social-links a:active::before,
  .sound-toggle:active::before,
  .button:active::before,
  button.button:active::before {
    transform: translateY(0) !important;
  }

  .btn-arrow:hover i {
    transform: translate(3px, -1px) !important;
  }

  .btn-arrow:active i {
    transform: translate(1px, 1px) !important;
  }

  .service-card a,
  .service-card a::after,
  .service-page-card a,
  .service-page-card a::after,
  .generator-brand-card a,
  .generator-brand-card a::after {
    transform: none !important;
    transition: none !important;
  }

  .hero.is-sky-striking::before {
    animation: lightning-sky-flash 1650ms linear both !important;
  }

  .hero.is-header-striking::after {
    animation: lightning-header-flash 1500ms linear both !important;
  }

  .hero.is-header-striking-strong::after {
    animation: lightning-header-flash-strong 1900ms linear both !important;
  }

  .hero-lightning-left.is-striking {
    animation: lightning-bolt-left 1650ms linear both !important;
  }

  .hero-lightning-right.is-striking {
    animation: lightning-bolt-right 1650ms linear both !important;
  }

  .site-footer.is-footer-flashing::before {
    animation: footer-background-flash 1500ms linear both !important;
  }

.site-footer.is-footer-flashing::after {
  animation: footer-sky-flash 1500ms linear both !important;
}

}

body.home-page .btn.btn-secondary {
  --btn-face: #102032;
  --btn-bed: var(--hmc-yellow);
  --btn-text: var(--white);
  --btn-ring: var(--hmc-yellow);
  min-height: 42px;
  padding: 10px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
}

body.home-page .btn.btn-secondary::before {
  background: var(--hmc-yellow);
  transform: translateY(5px);
}

body.home-page .btn.btn-secondary::after {
  background: var(--btn-face);
  box-shadow: inset 0 0 0 2px var(--hmc-yellow);
  backdrop-filter: blur(2px);
}
