:root {
  --ink: #071112;
  --ink-soft: #263536;
  --paper: #f4f9fb;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.34);
  --dark-line: rgba(7, 17, 18, 0.12);
  --glass: rgba(255, 255, 255, 0.16);
  --glass-strong: rgba(255, 255, 255, 0.24);
  --glass-dark: rgba(7, 17, 18, 0.34);
  --glass-edge: rgba(255, 255, 255, 0.56);
  --moisture: #65d0bf;
  --cool: #76d4ff;
  --electric: #f4c45a;
  --header-height: 76px;
  --shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
  --glass-shadow: 0 24px 90px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(140deg, rgba(118, 212, 255, 0.12), transparent 38%),
    linear-gradient(210deg, rgba(101, 208, 191, 0.14), transparent 44%),
    var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  top: 250px;
  left: -155px;
  width: clamp(360px, 42vw, 620px);
  aspect-ratio: 421 / 512;
  pointer-events: none;
  background: url("./assets/hvac-it-mark.png") center / contain no-repeat;
  opacity: 0.2;
  filter: saturate(1.12) drop-shadow(0 26px 70px rgba(118, 212, 255, 0.28));
}

.site-header,
main,
.site-footer,
.site-menu,
.site-menu-backdrop {
  position: relative;
  z-index: 1;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: clamp(14px, 3vw, 36px);
  right: clamp(14px, 3vw, 36px);
  height: calc(var(--header-height) - 14px);
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 16px;
  padding: 0 clamp(14px, 3vw, 26px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(7, 17, 18, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.44);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.site-header-solid {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(7, 17, 18, 0.58);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  font-weight: 850;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24));
}

.brand-text {
  color: var(--white);
  font-size: 1.38rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-domain {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.86;
  transition: background 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  opacity: 1;
}

.header-phone,
.header-cta,
.header-whatsapp,
.menu-toggle,
.menu-close,
.hero-button,
.panel-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.header-phone,
.header-cta,
.header-whatsapp,
.menu-toggle {
  justify-self: end;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  box-shadow: none;
}

.header-whatsapp {
  min-width: 42px;
  padding: 0 12px;
}

.header-whatsapp svg,
.menu-whatsapp svg,
.action-with-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.header-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-phone {
  min-width: 174px;
  gap: 8px;
  justify-content: flex-start;
  font-size: 0.92rem;
}

.header-cta {
  min-width: 150px;
  border-color: rgba(255, 255, 255, 0.34);
  border-top-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 26px rgba(0, 0, 0, 0.14);
}

.phone-full,
.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  width: 40px;
  min-width: 40px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 1px 8px rgba(255, 255, 255, 0.22);
}

.phone-kicker {
  display: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.phone-short {
  display: none;
}

.request-contact {
  display: flex;
  margin-top: 26px;
}

.inline-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top-color: #ffffff;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.46);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 48px rgba(33, 84, 90, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.inline-phone span,
.inline-phone strong {
  display: block;
}

.inline-phone span {
  color: #3d6968;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.inline-phone strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1;
}

.header-cta:hover,
.header-cta:focus-visible,
.header-phone:hover,
.header-phone:focus-visible,
.header-whatsapp:hover,
.header-whatsapp:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.inline-phone:hover,
.inline-phone:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.46);
  color: var(--ink);
}

.header-phone:hover .phone-kicker,
.header-phone:focus-visible .phone-kicker {
  color: rgba(7, 17, 18, 0.58);
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(7, 17, 18, 0.34);
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-menu-backdrop.is-open {
  opacity: 1;
}

.site-menu {
  position: fixed;
  z-index: 31;
  top: 14px;
  right: clamp(14px, 3vw, 36px);
  width: min(520px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  overflow: hidden;
  color: var(--white);
  transform: translateX(calc(100% + 48px));
  transition: transform 260ms ease;
}

.site-menu.is-open {
  transform: translateX(0);
}

.menu-shell {
  max-height: calc(100svh - 28px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(7, 17, 18, 0.72);
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}

.menu-brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.24));
}

.menu-close {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}

.menu-grid {
  display: grid;
  gap: 12px;
}

.menu-group {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.menu-group[aria-labelledby="menu-area-title"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
}

.menu-group[aria-labelledby="menu-area-title"] h2 {
  grid-column: 1 / -1;
}

.menu-group[aria-labelledby="menu-area-title"] a {
  min-height: 34px;
  padding: 7px 0;
  font-size: 0.94rem;
}

.menu-group[aria-labelledby="menu-area-title"] a:nth-of-type(-n + 2) {
  border-top: 0;
}

.menu-group h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 760;
  line-height: 1.18;
}

.menu-group a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.menu-group a::after {
  content: "";
  width: 0.44em;
  height: 0.44em;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.5;
  transform: translateX(var(--chevron-shift, 0)) rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-group a:hover,
.menu-group a:focus-visible {
  color: var(--white);
  --chevron-shift: 3px;
}

.menu-group a:hover::after,
.menu-group a:focus-visible::after {
  opacity: 0.82;
}

.menu-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.menu-cta-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-top-color: rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.menu-cta-row .menu-whatsapp {
  gap: 8px;
}

.menu-cta-row a:first-child {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.7);
}

.is-menu-open {
  overflow: hidden;
}

.service-chooser {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1fr);
  background: var(--ink);
}

.intro-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

[data-video-intro].is-poster-active .intro-poster {
  opacity: 1;
}

[data-video-intro] .panel-content,
[data-video-intro] .panel-video,
[data-video-intro] .panel-shade,
[data-video-intro] .service-panel::before {
  transition: opacity 420ms ease, transform 700ms ease, filter 700ms ease;
}

[data-video-intro].is-poster-active .panel-video {
  opacity: 0;
}

[data-video-intro].is-poster-active .panel-shade {
  opacity: 0.38;
}

.home-page.is-poster-active .site-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09)),
    rgba(7, 17, 18, 0.62);
}

.service-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 0 clamp(28px, 4vw, 56px) clamp(36px, 7vh, 76px);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 78%, color-mix(in srgb, var(--accent), transparent 62%), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 28%);
  transition: opacity 420ms ease;
}

.service-panel:hover::after,
.service-panel:focus-visible::after {
  opacity: 1;
}

.service-panel + .service-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.panel-video,
.page-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #151d1c;
}

.panel-video {
  z-index: -3;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}

.service-panel:hover .panel-video,
.service-panel:focus-visible .panel-video {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.panel-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 12, 12, 0.02), rgba(8, 12, 12, 0.08) 36%, rgba(8, 12, 12, 0.34) 100%),
    linear-gradient(90deg, rgba(8, 12, 12, 0.08), rgba(8, 12, 12, 0));
}

.panel-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 430px);
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.52);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(8, 15, 16, 0.022);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.5px) saturate(116%);
  -webkit-backdrop-filter: blur(1.5px) saturate(116%);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72);
}

.panel-content::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%);
}

.panel-title {
  position: relative;
  font-size: 2.88rem;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.is-featured .panel-title {
  font-size: 3.2rem;
}

.panel-copy {
  position: relative;
  max-width: 360px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.panel-button {
  position: relative;
  min-width: 190px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-top-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(1.5px) saturate(112%);
  -webkit-backdrop-filter: blur(1.5px) saturate(112%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.panel-button::after,
.hero-button::after {
  content: "";
  width: 0.44em;
  height: 0.44em;
  flex: 0 0 auto;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.58;
  transform: translateX(var(--chevron-shift, 0)) rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.panel-button {
  text-shadow: none;
}

.panel-button:hover,
.panel-button:focus-visible,
.hero-button:hover,
.hero-button:focus-visible {
  --chevron-shift: 3px;
}

.panel-button:hover::after,
.panel-button:focus-visible::after,
.hero-button:hover::after,
.hero-button:focus-visible::after {
  opacity: 0.84;
}

.panel-button-primary {
  border-color: rgba(118, 212, 255, 0.62);
  border-top-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(118, 212, 255, 0.055)),
    rgba(118, 212, 255, 0.035);
}

.service-panel:hover .panel-button,
.service-panel:focus-visible .panel-button {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48));
  color: var(--ink);
}

.panel-moisture {
  --accent: var(--moisture);
}

.panel-ac {
  --accent: var(--cool);
}

.panel-electrical {
  --accent: var(--electric);
}

.service-panel::before {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  bottom: 28px;
  width: 82px;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent), transparent 20%);
}

.request-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 247, 249, 0.94) 48%, rgba(246, 252, 253, 0.98)),
    #f2fafb;
}

.request-section::before {
  content: "";
  position: absolute;
  inset: 24px clamp(14px, 4vw, 48px);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top-color: #ffffff;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.request-copy,
.request-form,
.section-heading {
  position: relative;
  z-index: 1;
}

.request-copy,
.section-heading {
  max-width: 580px;
}

.section-label {
  margin: 0 0 12px;
  color: #2e796f;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.request-copy h2,
.section-heading h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 850;
}

.request-copy p:not(.section-label),
.section-heading p:not(.section-label),
.cta-band p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.62;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top-color: #ffffff;
  border-radius: 30px;
  box-shadow:
    0 30px 90px rgba(33, 84, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}

.request-form label {
  display: grid;
  gap: 9px;
  color: rgba(7, 17, 18, 0.64);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.46);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 24px rgba(33, 84, 90, 0.06);
  font-weight: 650;
}

.request-form textarea {
  min-height: 124px;
  line-height: 1.5;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #268f7d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(38, 143, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.request-section .request-form label:nth-of-type(3) {
  grid-column: 1 / -1;
}

.form-wide,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

.submit-button {
  min-height: 56px;
  margin-top: 2px;
  border: 1px solid rgba(7, 17, 18, 0.14);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 54%),
    linear-gradient(135deg, #071112, #132426);
  cursor: pointer;
  box-shadow:
    0 18px 46px rgba(7, 17, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #1c2a28;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #2f6f64;
  font-size: 0.92rem;
  line-height: 1.4;
}

.request-form.is-submitted > :not(.form-confirmation),
.estimate-wizard.is-submitted > :not(.form-confirmation) {
  display: none;
}

.form-confirmation {
  grid-column: 1 / -1;
  align-self: center;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top-color: #ffffff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(101, 208, 191, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow:
    0 26px 82px rgba(33, 84, 90, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  outline: none;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.confirmation-mark {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent),
    #268f7d;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(38, 143, 125, 0.28);
}

.form-confirmation h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.04;
}

.form-confirmation p {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.48;
}

.form-confirmation p a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-confirmation .section-label {
  color: #2e796f;
}

.confirmation-reference,
.confirmation-upload-note {
  padding: 12px 14px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.46);
  font-weight: 750;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.confirmation-actions a {
  display: grid;
  gap: 7px;
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.48);
  color: var(--ink);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.confirmation-actions span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 17, 18, 0.52);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.confirmation-actions strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 56px) clamp(20px, 6vw, 84px) clamp(48px, 8vw, 92px);
  color: var(--white);
  background: var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 72%, rgba(118, 212, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(8, 12, 12, 0.18), rgba(8, 12, 12, 0.34) 44%, rgba(8, 12, 12, 0.82)),
    linear-gradient(90deg, rgba(8, 12, 12, 0.7), rgba(8, 12, 12, 0.18));
}

.page-video {
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(8, 15, 16, 0.028);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(1.5px) saturate(116%);
  -webkit-backdrop-filter: blur(1.5px) saturate(116%);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72);
}

.page-hero-content .section-label {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero h1 {
  margin: 0;
  font-size: 4.3rem;
  line-height: 0.98;
  font-weight: 880;
}

.page-hero p:not(.section-label) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero-button {
  margin-top: 28px;
  min-width: 190px;
  padding: 0 20px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-button-row .hero-button {
  margin-top: 0;
}

.hero-button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 44px rgba(0, 0, 0, 0.14);
}

.hero-button-dark {
  color: var(--white);
  border-color: rgba(7, 17, 18, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent),
    var(--ink);
  box-shadow: 0 18px 46px rgba(7, 17, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.ac-hero-with-menu {
  min-height: max(78svh, 720px);
}

.electrical-hero-with-menu {
  min-height: max(78svh, 720px);
}

.electrical-hero-with-menu::before {
  background:
    radial-gradient(circle at 18% 72%, rgba(244, 196, 90, 0.22), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(118, 212, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 12, 12, 0.12), rgba(8, 12, 12, 0.34) 44%, rgba(8, 12, 12, 0.82)),
    linear-gradient(90deg, rgba(8, 12, 12, 0.72), rgba(8, 12, 12, 0.18));
}

.moisture-hero-with-panel {
  min-height: max(78svh, 690px);
}

.moisture-hero-with-panel::before {
  background:
    radial-gradient(circle at 16% 72%, rgba(101, 208, 191, 0.22), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(244, 196, 90, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 12, 12, 0.12), rgba(8, 12, 12, 0.34) 44%, rgba(8, 12, 12, 0.82)),
    linear-gradient(90deg, rgba(8, 12, 12, 0.72), rgba(8, 12, 12, 0.18));
}

.ac-hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
}

.electrical-hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
}

.moisture-hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
}

.ac-hero-layout .page-hero-content {
  max-width: 680px;
}

.electrical-hero-layout .page-hero-content {
  max-width: 760px;
}

.moisture-hero-layout .page-hero-content {
  max-width: 780px;
}

.hero-service-menu {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-top-color: rgba(255, 255, 255, 0.56);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(8, 15, 16, 0.12);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
}

.hero-menu-label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-service-card:hover,
.hero-service-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
}

.hero-service-card span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
}

.hero-service-card strong {
  font-size: 1rem;
  line-height: 1.12;
}

.hero-service-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.38;
}

.moisture-diagnostic-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-top-color: rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 15, 16, 0.13);
  color: var(--white);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.moisture-panel-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.moisture-checklist,
.warning-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.moisture-checklist {
  display: grid;
  gap: 10px;
}

.moisture-checklist li {
  min-width: 0;
}

.moisture-checklist a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.moisture-checklist a:hover,
.moisture-checklist a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
}

.moisture-checklist span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(101, 208, 191, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
}

.moisture-checklist strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  line-height: 1.28;
}

.detail-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at 16% 10%, rgba(118, 212, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-list article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top-color: #ffffff;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    0 20px 70px rgba(33, 84, 90, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.service-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-list p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.moisture-inspection-grid,
.moisture-service-grid,
.process-timeline,
.business-path-grid {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

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

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

.process-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.moisture-insight-card,
.moisture-service-card,
.business-path-card,
.process-step,
.moisture-alert,
.compliance-note {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.52);
  box-shadow:
    0 24px 76px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.moisture-insight-card,
.moisture-service-card,
.business-path-card,
.process-step {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
}

.moisture-insight-card span,
.moisture-service-card span,
.business-path-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(101, 208, 191, 0.15);
  color: #2e796f;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.business-path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.business-path-card:hover,
.business-path-card:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 30px 82px rgba(33, 84, 90, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.business-path-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

.business-path-card small {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.48;
}

.process-step span {
  width: 38px;
  justify-content: center;
  padding: 0;
  background: rgba(7, 17, 18, 0.08);
  color: rgba(7, 17, 18, 0.58);
}

.moisture-insight-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.moisture-service-card h3,
.process-step h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.moisture-insight-card p,
.moisture-service-card p,
.process-step p,
.moisture-alert p,
.compliance-note p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.process-step {
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(101, 208, 191, 0.7), rgba(118, 212, 255, 0.5));
}

.moisture-alert-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(244, 196, 90, 0.15), transparent 28%),
    linear-gradient(180deg, #ffffff, #f2fafb);
}

.moisture-business-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(101, 208, 191, 0.18), transparent 26%),
    linear-gradient(180deg, #ffffff, #f4fafb);
}

.moisture-alert {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 32px;
}

.moisture-alert h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 870;
}

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

.warning-list li {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.54);
  color: var(--ink);
  font-weight: 750;
  line-height: 1.32;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.compliance-note {
  margin-top: 18px;
  padding: 24px;
  border-color: rgba(244, 196, 90, 0.3);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 246, 222, 0.48)),
    rgba(244, 196, 90, 0.11);
}

.compliance-note h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.16;
}

.moisture-cta .hero-button-row {
  margin-top: 26px;
}

.compact-hero {
  min-height: 58svh;
}

.estimate-grid,
.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.estimate-option,
.calculator-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-top-color: #ffffff;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 78px rgba(33, 84, 90, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.estimate-option h3,
.calculator-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
}

.estimate-option p,
.calculator-copy p,
.calculator-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.estimate-option .hero-button {
  align-self: flex-start;
  box-shadow: 0 14px 40px rgba(7, 17, 18, 0.14);
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.decision-card {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.5);
  color: var(--ink);
  text-decoration: none;
  box-shadow:
    0 20px 58px rgba(33, 84, 90, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.decision-card:hover,
.decision-card:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 26px 70px rgba(33, 84, 90, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.decision-card span,
.guide-index {
  margin: 0;
  color: #2e796f;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.14;
}

.decision-card small {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.onsite-form {
  margin-top: 22px;
}

.onsite-form[hidden] {
  display: none;
}

.calculator-panel {
  justify-content: flex-start;
  min-height: auto;
}

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

.calculator-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.calculator-form input,
.calculator-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(7, 17, 18, 0.12);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 11px 13px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.calculator-form input:focus,
.calculator-form select:focus {
  border-color: #268f7d;
  box-shadow: 0 0 0 3px rgba(38, 143, 125, 0.14);
}

.calculator-form .submit-button,
.seer-form label:nth-of-type(5),
.seer-form label:nth-of-type(6) {
  grid-column: 1 / -1;
}

.calculator-result {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 17, 18, 0.1);
  border-top-color: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.56);
  color: var(--ink);
  line-height: 1.55;
}

.result-main {
  display: block;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 850;
}

.result-sub {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
}

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

.result-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.result-metric span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.result-metric strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.45rem;
}

.calculator-note {
  font-size: 0.86rem;
}

.guide-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(118, 212, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.guide-section-light {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 247, 249, 0.96)),
    #f4fafb;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

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

.guide-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    0 24px 78px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.guide-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.12;
}

.guide-card p:not(.guide-index) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #166a61;
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-left: 8px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.6;
  transform: translateX(var(--chevron-shift, 0)) rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  --chevron-shift: 3px;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  opacity: 0.88;
}

.article-hero {
  min-height: 62svh;
}

.article-hero .page-hero-content {
  max-width: 820px;
}

.article-section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at 14% 8%, rgba(118, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f2fafb);
}

.article-section-alt {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 247, 249, 0.96)),
    #f4fafb;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.article-copy {
  min-width: 0;
  max-width: 820px;
}

.article-panel {
  min-width: 0;
}

.article-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 870;
}

.article-copy h3 {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.12;
}

.article-copy p,
.article-copy li,
.article-panel p,
.faq-list p,
.source-list li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.68;
}

.article-copy p {
  margin: 18px 0 0;
}

.article-copy ul,
.article-copy ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-copy li + li {
  margin-top: 8px;
}

.article-panel,
.shock-card,
.fact-card,
.related-card,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 72px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.article-panel {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding: 24px;
  border-radius: 28px;
}

.article-panel h2,
.article-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.12;
}

.article-panel p {
  margin: 14px 0 0;
}

.article-panel .hero-button {
  width: 100%;
}

.shock-card {
  margin: 26px 0;
  padding: 24px;
  border-radius: 28px;
}

.shock-card span,
.fact-card span,
.source-kicker {
  display: block;
  color: #2e796f;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.shock-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.06;
}

.shock-card p {
  margin: 14px 0 0;
}

.fact-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.fact-card,
.related-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
}

.fact-card strong,
.related-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.12;
}

.fact-card p,
.related-card p {
  margin: 12px 0 0;
}

.related-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 28px 78px rgba(33, 84, 90, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 72px rgba(33, 84, 90, 0.1);
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--ink);
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(7, 17, 18, 0.08);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: rgba(7, 17, 18, 0.68);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--ink-soft);
  line-height: 1.55;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

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

.faq-list details {
  padding: 20px;
  border-radius: 22px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.source-list {
  margin-top: 26px;
  padding-left: 20px;
}

.source-list a {
  color: #166a61;
  font-weight: 750;
}

.estimate-page {
  overflow: hidden;
}

.estimate-page main {
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
}

.estimate-wizard-section {
  height: 100svh;
  min-height: 0;
  display: flex;
  align-items: stretch;
  padding: calc(var(--header-height) + 10px) clamp(16px, 3vw, 42px) 14px;
  background:
    radial-gradient(circle at 14% 8%, rgba(118, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f2fafb);
  overflow: hidden;
}

.estimate-shell {
  width: 100%;
  max-width: 1240px;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.98fr);
  gap: clamp(16px, 3vw, 44px);
  align-items: stretch;
}

.wizard-intro {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wizard-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.85rem);
  line-height: 1.04;
  font-weight: 870;
}

.wizard-intro p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.62;
}

.estimate-wizard {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto auto;
  min-height: 0;
  height: 100%;
  gap: 12px;
  padding: clamp(16px, 2.3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 30px 90px rgba(33, 84, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}

.estimate-wizard .wizard-progress {
  grid-row: 1;
}

.estimate-wizard .wizard-step-count {
  grid-row: 2;
}

.estimate-wizard .wizard-auto-advance {
  grid-row: 3;
}

.estimate-wizard .wizard-step-stage {
  grid-row: 4;
}

.estimate-wizard .wizard-error {
  grid-row: 5;
}

.estimate-wizard .wizard-actions {
  grid-row: 6;
}

.estimate-wizard .form-status {
  grid-row: 7;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(var(--wizard-step-count, 6), minmax(0, 1fr));
  gap: 8px;
}

.wizard-progress [data-progress-dot] {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(7, 17, 18, 0.48);
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wizard-progress [data-progress-dot]:hover,
.wizard-progress [data-progress-dot]:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(38, 143, 125, 0.34);
  outline: none;
}

.wizard-progress [data-progress-dot].is-active,
.wizard-progress [data-progress-dot].is-complete {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.5)),
    rgba(101, 208, 191, 0.24);
}

.wizard-step-count {
  margin: 0;
  color: #2e796f;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.wizard-auto-advance {
  display: grid;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-top-color: #ffffff;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    0 12px 34px rgba(33, 84, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.wizard-auto-advance[hidden] {
  display: none;
}

.wizard-auto-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
  font-weight: 800;
}

.wizard-auto-row button {
  min-height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 0 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.48);
  color: #235f57;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wizard-auto-track {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 17, 18, 0.08);
}

.wizard-auto-track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, #2dc0ad, #7ed8ff);
  box-shadow: 0 0 18px rgba(45, 192, 173, 0.42);
}

.wizard-step-stage {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px 4px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 143, 125, 0.42) transparent;
}

.wizard-step-stage::-webkit-scrollbar {
  width: 6px;
}

.wizard-step-stage::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(38, 143, 125, 0.34);
}

.wizard-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step legend {
  max-width: 720px;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  font-weight: 870;
}

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

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

.choice-card {
  position: relative;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top-color: #ffffff;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.48);
  color: var(--ink);
  cursor: pointer;
  box-shadow:
    0 18px 48px rgba(33, 84, 90, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.choice-card:hover,
.choice-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(38, 143, 125, 0.38);
}

.choice-card:has(input:checked) {
  border-color: rgba(38, 143, 125, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(230, 250, 247, 0.58)),
    rgba(101, 208, 191, 0.18);
  box-shadow:
    0 22px 62px rgba(33, 84, 90, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.choice-card input {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 18px;
  height: 18px;
  accent-color: #268f7d;
}

.choice-card span {
  max-width: calc(100% - 28px);
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.12;
  font-weight: 850;
}

.choice-card small {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.choice-card-button {
  width: 100%;
  min-height: 132px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.82);
  appearance: none;
  font-family: inherit;
  text-align: left;
}

.choice-card-button:focus-visible {
  outline: none;
  border-color: rgba(38, 143, 125, 0.5);
  box-shadow:
    0 0 0 4px rgba(38, 143, 125, 0.12),
    0 22px 62px rgba(33, 84, 90, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wizard-help,
.wizard-summary {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-top-color: #ffffff;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wizard-help strong,
.wizard-summary strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.wizard-help p,
.wizard-optional-copy,
.wizard-contact-note,
.wizard-summary span {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.48;
}

.wizard-summary span {
  display: block;
}

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

.wizard-fields label {
  display: grid;
  gap: 9px;
  color: rgba(7, 17, 18, 0.64);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.field-optional {
  color: rgba(7, 17, 18, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wizard-fields input,
.wizard-fields select,
.wizard-fields textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.46);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 24px rgba(33, 84, 90, 0.06);
  font-weight: 650;
}

.request-form input[type="file"],
.wizard-fields input[type="file"] {
  padding: 11px 13px;
  font-size: 0.9rem;
}

.wizard-fields textarea {
  min-height: 124px;
  line-height: 1.5;
  resize: vertical;
}

.wizard-fields input:focus,
.wizard-fields select:focus,
.wizard-fields textarea:focus {
  border-color: #268f7d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(38, 143, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wizard-fields input:invalid:not(:placeholder-shown),
.wizard-fields select:invalid,
.wizard-fields textarea:invalid {
  border-color: rgba(159, 50, 30, 0.42);
}

.wizard-contact-note {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-top-color: #ffffff;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.address-status {
  margin: -2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-top-color: #ffffff;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.36);
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.address-status[data-tone="success"] {
  color: #1f6f62;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(225, 250, 246, 0.48)),
    rgba(101, 208, 191, 0.14);
}

.address-status[data-tone="warning"] {
  color: #8a4d19;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 238, 202, 0.48)),
    rgba(244, 177, 71, 0.14);
}

.pac-container {
  z-index: 10000;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 254, 255, 0.78)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 62px rgba(33, 84, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.pac-item {
  padding: 10px 14px;
  border-top: 1px solid rgba(7, 17, 18, 0.06);
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.35;
  cursor: pointer;
}

.pac-item:first-child {
  border-top: 0;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(101, 208, 191, 0.14);
}

.pac-item-query {
  color: var(--ink);
  font-weight: 850;
}

.consent-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  text-transform: none !important;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: #268f7d;
}

.consent-check span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 650;
}

.wizard-error {
  min-height: 20px;
  color: #9f321e;
  font-weight: 750;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.wizard-actions .hero-button,
.wizard-actions .submit-button {
  margin-top: 0;
}

.wizard-actions .hero-button::after {
  content: none;
  margin-left: 0;
}

.estimate-wizard .hero-button-ghost {
  color: var(--ink);
  border-color: rgba(7, 17, 18, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.46);
}

.wizard-submit[hidden],
.wizard-back[hidden],
.wizard-next[hidden] {
  display: none;
}

.estimate-wizard.is-submitted {
  border-color: rgba(38, 143, 125, 0.34);
  grid-template-rows: minmax(0, 1fr);
}

.estimate-wizard.is-submitted .form-confirmation {
  align-self: center;
  max-height: 100%;
  overflow-y: auto;
}

.cta-band {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 84px);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 16%, rgba(118, 212, 255, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(101, 208, 191, 0.16)),
    #edf8fa;
}

.cta-band .hero-button {
  box-shadow: none;
}

.home-service-area {
  position: relative;
  padding: clamp(62px, 8vw, 108px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at 82% 12%, rgba(118, 212, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 247, 249, 0.96)),
    #f4fafb;
}

.service-area-panel,
.site-footer-shell,
.location-card,
.coverage-card,
.portfolio-card,
.guide-directory-card,
.why-card,
.city-service-panel {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    0 24px 78px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.service-area-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 34px;
}

.service-area-panel h2,
.directory-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  font-weight: 870;
}

.service-area-panel p,
.directory-copy p,
.coverage-card p,
.location-card p,
.portfolio-card p,
.guide-directory-card p,
.why-card p,
.city-service-panel p {
  color: var(--ink-soft);
  line-height: 1.62;
}

.service-area-panel p {
  margin: 18px 0 0;
}

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

.service-area-links a,
.city-link-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.48);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-area-links a::after,
.city-link-chip::after {
  content: "";
  width: 0.44em;
  height: 0.44em;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.45;
  transform: translateX(var(--chevron-shift, 0)) rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-area-links a:hover,
.service-area-links a:focus-visible,
.city-link-chip:hover,
.city-link-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(38, 143, 125, 0.34);
  --chevron-shift: 3px;
}

.service-area-links a:hover::after,
.service-area-links a:focus-visible::after,
.city-link-chip:hover::after,
.city-link-chip:focus-visible::after {
  opacity: 0.76;
}

.location-zone-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 56px) clamp(20px, 5vw, 76px) clamp(54px, 7vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 251, 252, 0.98), rgba(226, 242, 246, 0.94) 44%, rgba(249, 251, 249, 0.98)),
    #eef7f8;
}

.location-zone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.54)),
    linear-gradient(90deg, rgba(101, 208, 191, 0.12), transparent 36%, rgba(118, 212, 255, 0.1));
}

.location-zone-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 250px;
  left: -155px;
  width: clamp(360px, 42vw, 620px);
  aspect-ratio: 421 / 512;
  pointer-events: none;
  background: url("./assets/hvac-it-mark.png") center / contain no-repeat;
  opacity: 0.24;
  filter: saturate(1.12) drop-shadow(0 26px 70px rgba(118, 212, 255, 0.28));
}

.location-zone-copy,
.zone-status-strip,
.zone-map-layout {
  position: relative;
  z-index: 1;
}

.location-zone-copy {
  max-width: 1060px;
}

.location-zone-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  font-weight: 890;
  letter-spacing: 0;
}

.location-zone-copy p:not(.section-label) {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(7, 17, 18, 0.72);
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.6;
}

.location-zone-copy .hero-button-row {
  margin-top: 24px;
}

.location-zone-copy .hero-button {
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 56px rgba(33, 84, 90, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.location-zone-copy .hero-button:first-child {
  color: #062928;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(101, 208, 191, 0.28)),
    rgba(255, 255, 255, 0.72);
}

.zone-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.zone-status-card,
.zone-map-card,
.map-route-panel,
.route-hours-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-top-color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 24px 76px rgba(33, 84, 90, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.zone-status-card {
  min-height: 172px;
  padding: 20px;
  border-radius: 28px;
}

.zone-status-card span,
.route-hours-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #062928;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 860;
  text-transform: uppercase;
}

.zone-status-green span {
  background: rgba(32, 177, 104, 0.16);
  color: #11653f;
}

.zone-status-blue span {
  background: rgba(47, 126, 234, 0.15);
  color: #1f5fae;
}

.zone-status-red span {
  background: rgba(225, 75, 66, 0.14);
  color: #a93631;
}

.zone-status-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.1;
  font-weight: 860;
}

.zone-status-card p {
  margin: 10px 0 0;
  color: rgba(7, 17, 18, 0.68);
  line-height: 1.52;
}

.zone-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  gap: 16px;
  align-items: stretch;
  margin-top: clamp(24px, 3.4vw, 38px);
}

.zone-map-card,
.map-route-panel {
  border-radius: 34px;
}

.zone-map-card {
  min-width: 0;
  padding: clamp(12px, 1.6vw, 16px);
}

.service-zone-map {
  position: relative;
  width: 100%;
  height: clamp(430px, 46vw, 630px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(226, 242, 246, 0.7)),
    #e8f3f5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 48px rgba(33, 84, 90, 0.12);
}

.service-zone-map.is-loaded .map-fallback {
  display: none;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  color: rgba(7, 17, 18, 0.64);
  text-align: center;
  line-height: 1.55;
  z-index: 1;
}

.service-zone-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(7, 17, 18, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(7, 17, 18, 0.12);
}

.service-zone-map .leaflet-control-zoom a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.service-zone-map .leaflet-control-attribution {
  border-radius: 999px 0 0 0;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(7, 17, 18, 0.7);
  font-size: 0.66rem;
}

.service-zone-map .leaflet-popup-content-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 42px rgba(7, 17, 18, 0.18);
}

.service-zone-map .leaflet-popup-content {
  margin: 13px 14px;
  min-width: 176px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.36;
}

.service-zone-map .leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.86);
}

.location-popup strong,
.location-popup span,
.location-popup a {
  display: block;
}

.location-popup strong {
  font-size: 0.98rem;
}

.location-popup span {
  margin-top: 4px;
  color: rgba(7, 17, 18, 0.58);
  font-size: 0.78rem;
  font-weight: 760;
}

.location-popup a {
  margin-top: 9px;
  color: #197264;
  font-weight: 860;
  text-decoration: none;
}

.zone-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.zone-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(7, 17, 18, 0.72);
  font-size: 0.82rem;
  font-weight: 780;
}

.zone-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.56);
}

.zone-dot-green {
  background: #20b168;
}

.zone-dot-blue {
  background: #2f7eea;
}

.zone-dot-red {
  background: #e14b42;
}

.map-route-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 30px);
}

.map-route-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.04;
  font-weight: 880;
}

.route-hours-card {
  margin-top: 20px;
  padding: 17px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(101, 208, 191, 0.1);
}

.route-hours-card span {
  background: rgba(7, 17, 18, 0.07);
  color: rgba(7, 17, 18, 0.62);
}

.route-hours-card strong {
  display: block;
  margin-top: 11px;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
  line-height: 1.15;
}

.route-hours-card p,
.route-factor-list dd {
  color: rgba(7, 17, 18, 0.66);
  line-height: 1.52;
}

.route-hours-card p {
  margin: 8px 0 0;
}

.route-factor-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
}

.route-factor-list div {
  padding: 15px;
  border: 1px solid rgba(7, 17, 18, 0.06);
  border-top-color: rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.38);
}

.route-factor-list dt {
  color: var(--ink);
  font-weight: 860;
}

.route-factor-list dd {
  margin: 6px 0 0;
}

.map-route-panel .service-area-note {
  margin-top: auto;
}

@media (min-width: 1181px) {
  .location-zone-hero {
    display: grid;
    grid-template-columns: minmax(330px, 0.46fr) minmax(0, 0.88fr);
    grid-template-areas:
      "copy map"
      "status map";
    gap: 16px;
    align-items: start;
  }

  .location-zone-copy {
    grid-area: copy;
    max-width: none;
  }

  .location-zone-copy h1 {
    font-size: clamp(3rem, 4.4vw, 4.9rem);
  }

  .zone-map-layout {
    grid-area: map;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .service-zone-map {
    height: min(62svh, 640px);
    min-height: 520px;
  }

  .zone-status-strip {
    grid-area: status;
    grid-template-columns: 1fr;
  }

  .zone-status-card {
    min-height: auto;
  }

  .map-route-panel h2 {
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  }
}

.site-footer {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(118, 212, 255, 0.2), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(101, 208, 191, 0.18), transparent 28%),
    linear-gradient(145deg, #071112, #102224);
}

.site-footer-shell {
  display: grid;
  grid-template-columns:
    minmax(220px, 0.95fr)
    minmax(150px, 0.78fr)
    minmax(280px, 1.34fr)
    minmax(150px, 0.78fr)
    minmax(150px, 0.78fr);
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.46);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 24px 86px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 850;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.footer-brand p,
.footer-col p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-brand .footer-hours {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 780;
}

.footer-brand .footer-chat-note a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-col h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 720;
  line-height: 1.22;
}

.footer-col[aria-labelledby="footer-locations-title"],
.footer-col[aria-label="Locations"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  align-content: start;
}

.footer-col[aria-labelledby="footer-locations-title"] h2,
.footer-col[aria-label="Locations"] h2 {
  grid-column: 1 / -1;
}

.footer-col[aria-labelledby="footer-locations-title"] a,
.footer-col[aria-label="Locations"] a {
  padding: 5px 0;
  font-size: 0.92rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-bottom span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.directory-section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at 14% 8%, rgba(118, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f2fafb);
}

.directory-section-alt {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 247, 249, 0.96)),
    #f4fafb;
}

.directory-copy {
  max-width: 760px;
}

.directory-grid,
.coverage-grid,
.portfolio-grid,
.guide-directory-grid,
.why-grid,
.city-service-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

.coverage-grid,
.portfolio-grid,
.guide-directory-grid,
.why-grid,
.city-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card,
.coverage-card,
.portfolio-card,
.guide-directory-card,
.why-card,
.city-service-panel {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
}

.location-card,
.portfolio-card,
.guide-directory-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-card:hover,
.location-card:focus-visible,
.portfolio-card:hover,
.portfolio-card:focus-visible,
.guide-directory-card:hover,
.guide-directory-card:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 30px 82px rgba(33, 84, 90, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.location-card span,
.coverage-card span,
.portfolio-card span,
.guide-directory-card span,
.why-card span,
.city-service-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(101, 208, 191, 0.15);
  color: #2e796f;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.location-card strong,
.coverage-card strong,
.portfolio-card strong,
.guide-directory-card strong,
.why-card h2,
.city-service-panel strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.9vw, 1.65rem);
  line-height: 1.1;
}

.location-card p,
.coverage-card p,
.portfolio-card p,
.guide-directory-card p,
.city-service-panel p {
  margin: 12px 0 0;
}

.city-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-link-chip {
  flex: 0 1 auto;
}

.city-page .article-panel .city-link-cloud {
  margin-top: 18px;
}

.city-page .article-panel .city-link-chip {
  width: 100%;
}

.service-area-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(244, 196, 90, 0.3);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 222, 0.42)),
    rgba(244, 196, 90, 0.1);
  color: var(--ink-soft);
  line-height: 1.58;
}

body.estimate-page .site-footer {
  display: none;
}

.blog-page .article-hero::before,
.blog-post-page .article-hero::before {
  background:
    radial-gradient(circle at 18% 72%, rgba(101, 208, 191, 0.2), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(118, 212, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 12, 12, 0.12), rgba(8, 12, 12, 0.34) 44%, rgba(8, 12, 12, 0.82)),
    linear-gradient(90deg, rgba(8, 12, 12, 0.72), rgba(8, 12, 12, 0.18));
}

.blog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.blog-stats span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-stats strong {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.54);
  color: inherit;
  text-decoration: none;
  box-shadow:
    0 24px 78px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 30px 82px rgba(33, 84, 90, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #102224;
}

.blog-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.blog-card-meta,
.article-meta-list,
.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-card-meta span,
.article-meta-list span,
.article-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(101, 208, 191, 0.15);
  color: #2e796f;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.7vw, 1.5rem);
  line-height: 1.12;
}

.blog-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.blog-feature-card {
  grid-column: span 2;
}

.blog-feature-card h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.blog-post-page .article-hero {
  min-height: 68svh;
}

.article-hero-image {
  position: relative;
  z-index: 2;
  width: min(38vw, 540px);
  min-width: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.article-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-hero.article-with-image {
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 70px);
}

.article-reading-section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at 14% 8%, rgba(118, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f2fafb);
}

.article-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.44fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.article-post {
  min-width: 0;
  max-width: 840px;
}

.article-post h2 {
  margin: 36px 0 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 870;
}

.article-post h2:first-child {
  margin-top: 0;
}

.article-post h3 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.14;
}

.article-post p,
.article-post li,
.article-side-panel p,
.article-side-panel li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.article-post p {
  margin: 16px 0 0;
}

.article-post ul,
.article-post ol,
.article-side-panel ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-post li + li,
.article-side-panel li + li {
  margin-top: 8px;
}

.article-callout,
.article-save-card,
.article-side-panel {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: #ffffff;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 72px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.article-callout,
.article-save-card {
  margin: 28px 0;
  padding: 24px;
}

.article-callout span,
.article-save-card span {
  display: block;
  color: #2e796f;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.article-callout strong,
.article-save-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.article-side-panel {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding: 22px;
}

.article-side-panel h2,
.article-side-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.12;
}

.article-side-panel .hero-button {
  width: 100%;
}

.article-side-panel .text-link {
  display: flex;
}

.article-tag-list {
  margin-top: 18px;
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(118, 212, 255, 0.2), transparent 32%),
    radial-gradient(circle at 84% 14%, rgba(101, 208, 191, 0.22), transparent 30%),
    linear-gradient(145deg, #edf8fa, #f8fbfc 44%, #eef6f8);
}

.admin-topbar {
  position: sticky;
  z-index: 15;
  top: 14px;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(7, 17, 18, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top-color: rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.admin-topbar-title {
  display: grid;
  justify-items: center;
  gap: 2px;
  line-height: 1.1;
}

.admin-topbar-title span,
.admin-session span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-topbar-title strong {
  font-size: 1.08rem;
}

.admin-session {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-mode-pill,
.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-mode-pill[data-mode="live"] {
  background: rgba(101, 208, 191, 0.22);
}

.admin-status-pill {
  min-height: 26px;
  color: #143233;
  border-color: rgba(7, 17, 18, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.admin-status-pill[data-status="new"] {
  color: #113f75;
  background: rgba(118, 212, 255, 0.34);
}

.admin-status-pill[data-status="contacted"],
.admin-status-pill[data-status="quoted"],
.admin-status-pill[data-status="dispatched"],
.admin-status-pill[data-status="partial"] {
  color: #5d4610;
  background: rgba(255, 227, 145, 0.48);
}

.admin-status-pill[data-status="scheduled"],
.admin-status-pill[data-status="won"],
.admin-status-pill[data-status="sent"] {
  color: #115146;
  background: rgba(101, 208, 191, 0.36);
}

.admin-status-pill[data-status="lost"],
.admin-status-pill[data-status="spam"],
.admin-status-pill[data-status="failed"] {
  color: #6d2b2b;
  background: rgba(255, 211, 211, 0.64);
}

.admin-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.admin-login-panel {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.admin-login-panel h1 {
  margin: 0;
  max-width: 660px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
}

.admin-login-panel p:not(.section-label) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.62;
}

.admin-login-card,
.admin-card,
.admin-metric {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top-color: #ffffff;
  box-shadow:
    0 28px 80px rgba(33, 84, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(30px) saturate(175%);
  -webkit-backdrop-filter: blur(30px) saturate(175%);
}

.admin-login-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
}

.admin-login-card label,
.admin-detail-form label,
.admin-job-form label {
  display: grid;
  gap: 8px;
  color: rgba(7, 17, 18, 0.64);
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-login-card input,
.admin-detail-form select,
.admin-detail-form textarea,
.admin-job-form input,
.admin-job-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.5);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.admin-detail-form textarea,
.admin-job-form textarea {
  min-height: 112px;
  line-height: 1.5;
  resize: vertical;
}

.admin-ghost-button,
.admin-danger-button,
.admin-filter-row button {
  min-height: 38px;
  border: 1px solid rgba(7, 17, 18, 0.12);
  border-top-color: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-danger-button {
  color: #762d2d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.36)),
    rgba(255, 211, 211, 0.52);
}

.admin-danger-button[data-confirming="true"] {
  color: #ffffff;
  border-color: rgba(118, 45, 45, 0.22);
  background:
    linear-gradient(180deg, rgba(184, 64, 64, 0.92), rgba(118, 45, 45, 0.86)),
    #762d2d;
  box-shadow: 0 12px 24px rgba(118, 45, 45, 0.2);
}

.admin-topbar .admin-ghost-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.admin-login-card .hero-button-ghost {
  color: var(--ink);
  border-color: rgba(7, 17, 18, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
}

.admin-page .hero-button::after {
  content: none;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-metric {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-radius: 24px;
}

.admin-metric span {
  color: rgba(7, 17, 18, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-metric strong {
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: start;
}

.admin-card {
  border-radius: 28px;
  padding: 18px;
}

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

.admin-card-head h2,
.admin-card-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.1;
}

.admin-card-head .section-label {
  margin-bottom: 6px;
}

.admin-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-filter-row button.is-active {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    #102326;
}

.admin-search {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-search label {
  color: rgba(7, 17, 18, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.admin-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.5);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.admin-search input:focus {
  border-color: rgba(38, 143, 125, 0.35);
  box-shadow:
    0 0 0 4px rgba(38, 143, 125, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.admin-search button {
  min-height: 42px;
  border: 1px solid rgba(7, 17, 18, 0.1);
  border-top-color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.52);
  color: rgba(7, 17, 18, 0.72);
  padding: 0 13px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-search button[hidden] {
  display: none;
}

.admin-lead-list,
.admin-job-list {
  display: grid;
  gap: 10px;
}

.admin-lead-item {
  width: 100%;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.admin-lead-item.is-active,
.admin-lead-item:hover {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(38, 143, 125, 0.22);
  box-shadow:
    0 12px 30px rgba(33, 84, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.admin-lead-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.admin-lead-item span:not(.admin-status-pill),
.admin-lead-item small {
  color: rgba(7, 17, 18, 0.64);
  line-height: 1.35;
}

.admin-lead-item strong {
  color: var(--ink);
}

.admin-detail-panel {
  min-height: 520px;
}

.admin-detail,
.admin-detail-block,
.admin-detail-form,
.admin-job-form {
  display: grid;
  gap: 14px;
}

.admin-detail-block {
  padding: 15px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.admin-detail-block h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.admin-detail-block p,
.admin-empty {
  margin: 0;
  color: rgba(7, 17, 18, 0.66);
  line-height: 1.55;
}

.admin-contact-grid,
.admin-action-row,
.admin-data-grid,
.admin-job-form,
.admin-detail-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-action-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-action-row button {
  min-width: 0;
  padding-inline: 12px;
}

.admin-contact-grid a,
.admin-contact-grid button {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.46);
  text-decoration: none;
  text-align: left;
}

.admin-contact-grid span,
.admin-data-list dt {
  color: rgba(7, 17, 18, 0.52);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-contact-grid strong,
.admin-data-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.admin-contact-grid .is-disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.admin-contact-grid a.is-disabled {
  pointer-events: none;
}

.admin-action-notice {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(101, 208, 191, 0.24);
  border-radius: 18px;
  color: #115146;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    rgba(101, 208, 191, 0.16);
  font-weight: 800;
}

.admin-attachment-list {
  display: grid;
  gap: 10px;
}

.admin-attachment-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-top-color: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
}

.admin-attachment-item strong,
.admin-attachment-item small {
  display: block;
  overflow-wrap: anywhere;
}

.admin-attachment-item strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.admin-attachment-item small {
  margin-top: 4px;
  color: rgba(7, 17, 18, 0.58);
  font-weight: 720;
}

.admin-data-list {
  margin: 0;
}

.admin-data-list div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(7, 17, 18, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.34);
}

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

.notification-event {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(33, 84, 90, 0.08);
}

.notification-event strong,
.notification-event p,
.notification-event small {
  margin: 0;
}

.notification-event small {
  color: var(--ink-muted);
  font-weight: 700;
}

.admin-job-form,
.admin-detail-form {
  padding: 15px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.admin-job-form .admin-card-head,
.admin-detail-form .submit-button,
.admin-job-form .hero-button,
.admin-job-form .form-wide,
.admin-detail-form .form-wide {
  grid-column: 1 / -1;
}

.admin-jobs-panel {
  grid-column: 1 / -1;
}

.admin-job-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(7, 17, 18, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.admin-job-item p {
  grid-column: 2 / -1;
  margin: 0;
  color: rgba(7, 17, 18, 0.62);
}

.admin-job-item small {
  color: rgba(7, 17, 18, 0.58);
  font-weight: 750;
}

button:disabled {
  cursor: progress;
  opacity: 0.64;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
  }

  .site-nav a {
    padding: 0 11px;
  }

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

  .brand-text {
    font-size: 1.22rem;
  }

  .header-phone {
    min-width: 166px;
  }

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

  .header-cta {
    min-width: 126px;
  }

  .phone-kicker {
    display: none;
  }

  .panel-title {
    font-size: 2.48rem;
  }

  .is-featured .panel-title {
    font-size: 2.75rem;
  }

  .panel-copy {
    font-size: 0.98rem;
  }

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

  .ac-hero-layout,
  .electrical-hero-layout,
  .moisture-hero-layout {
    grid-template-columns: 1fr;
  }

  .moisture-inspection-grid,
  .moisture-service-grid,
  .business-path-grid,
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-menu-label {
    grid-column: 1 / -1;
  }

  .decision-strip,
  .guide-grid,
  .guide-grid-three,
  .fact-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .estimate-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .wizard-intro {
    position: static;
    justify-content: flex-start;
  }

  .estimate-page .wizard-intro {
    text-align: center;
  }

  .estimate-page .wizard-intro h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .estimate-page .wizard-intro p:not(.section-label) {
    max-width: 620px;
    margin: 10px auto 0;
  }

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

  .article-panel {
    position: static;
  }

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

  .service-area-panel,
  .site-footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zone-map-layout {
    grid-template-columns: 1fr;
  }

  .map-route-panel .service-area-note {
    margin-top: 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .directory-grid,
  .coverage-grid,
  .portfolio-grid,
  .guide-directory-grid,
  .why-grid,
  .city-service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-hero.article-with-image,
  .article-reading-layout {
    grid-template-columns: 1fr;
  }

  .article-hero-image {
    width: min(100%, 640px);
  }

  .admin-login-panel,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  body::before {
    top: 118px;
    left: auto;
    right: -210px;
    width: 430px;
    opacity: 0.18;
  }

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

  .admin-topbar {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 62px;
    padding: 9px 12px;
    border-radius: 20px;
  }

  .admin-topbar-title {
    display: none;
  }

  .admin-shell {
    width: min(100% - 24px, 1180px);
    padding: 24px 0 52px;
  }

  .admin-login-panel {
    min-height: auto;
    align-items: start;
  }

  .admin-login-panel h1 {
    font-size: 2.4rem;
  }

  .admin-login-card,
  .admin-card {
    padding: 15px;
    border-radius: 22px;
  }

  .admin-metrics,
  .admin-contact-grid,
  .admin-action-row,
  .admin-data-grid,
  .admin-job-form,
  .admin-detail-form,
  .admin-job-item,
  .admin-attachment-item {
    grid-template-columns: 1fr;
  }

  .admin-job-item p {
    grid-column: auto;
  }

  .header-actions {
    gap: 4px;
    padding: 4px;
  }

  .header-phone {
    min-width: 54px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .header-whatsapp {
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
  }

  .phone-kicker,
  .phone-full {
    display: none;
  }

  .phone-short {
    display: inline;
  }

  .brand {
    gap: 7px;
  }

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

  .brand-text {
    display: none;
    font-size: 1rem;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-width: 108px;
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .site-menu {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .menu-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .menu-grid {
    gap: 10px;
  }

  .menu-group {
    padding: 12px;
    border-radius: 20px;
  }

  .menu-group h2 {
    margin-bottom: 8px;
  }

  .menu-group a {
    min-height: 34px;
    padding: 6px 0;
    font-size: 0.95rem;
  }

  .menu-group[aria-labelledby="menu-area-title"] {
    grid-template-columns: 1fr;
  }

  .menu-group[aria-labelledby="menu-area-title"] a:nth-of-type(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .footer-col[aria-labelledby="footer-locations-title"],
  .footer-col[aria-label="Locations"] {
    grid-template-columns: 1fr;
  }

  .menu-cta-row,
  .service-area-panel,
  .service-area-links,
  .site-footer-shell,
  .zone-status-strip,
  .directory-grid,
  .coverage-grid,
  .portfolio-grid,
  .guide-directory-grid,
  .why-grid,
  .city-service-grid,
  .blog-grid,
  .blog-stats {
    grid-template-columns: 1fr;
  }

  .blog-feature-card {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .service-chooser {
    min-height: max(100svh, 680px);
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .intro-poster {
    display: none;
  }

  [data-video-intro].is-poster-active .panel-content,
  [data-video-intro].is-poster-active .panel-video,
  [data-video-intro].is-poster-active .panel-shade,
  [data-video-intro].is-poster-active .service-panel::before {
    opacity: 1;
  }

  .service-panel {
    min-height: 0;
    padding: 18px 20px;
    align-items: flex-end;
  }

  .service-panel:first-of-type {
    padding-top: 76px;
  }

  .service-panel + .service-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .service-panel::before {
    left: 20px;
    bottom: 16px;
    width: 48px;
  }

  .panel-content {
    max-width: 480px;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
  }

  .panel-title,
  .is-featured .panel-title {
    font-size: 1.52rem;
    line-height: 1.04;
  }

  .panel-copy {
    max-width: 320px;
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .panel-button {
    min-width: 158px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .request-section {
    grid-template-columns: 1fr;
    padding: 56px 18px;
  }

  .request-copy h2,
  .section-heading h2,
  .cta-band h2 {
    font-size: 2rem;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .form-confirmation {
    padding: 18px;
    border-radius: 22px;
  }

  .form-confirmation h2 {
    font-size: 1.75rem;
  }

  .confirmation-actions {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 68svh;
    padding: calc(var(--header-height) + 40px) 20px 42px;
  }

  .article-hero {
    min-height: 62svh;
  }

  .estimate-hero {
    min-height: 58svh;
  }

  .ac-hero-with-menu,
  .electrical-hero-with-menu {
    min-height: auto;
  }

  .moisture-hero-with-panel {
    min-height: auto;
  }

  .ac-hero-layout,
  .electrical-hero-layout,
  .moisture-hero-layout {
    gap: 18px;
  }

  .hero-service-menu {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 24px;
  }

  .hero-service-card {
    padding: 12px;
    border-radius: 18px;
  }

  .hero-service-card small {
    font-size: 0.8rem;
  }

  .page-hero h1 {
    font-size: 2.72rem;
  }

  .page-hero p:not(.section-label) {
    font-size: 1rem;
  }

  .location-zone-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 18px 52px;
  }

  .location-zone-hero::after {
    top: 118px;
    left: auto;
    right: -210px;
    width: 430px;
    opacity: 0.2;
  }

  .location-zone-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.94;
  }

  .location-zone-copy p:not(.section-label) {
    font-size: 0.98rem;
  }

  .location-zone-copy .hero-button-row {
    align-items: stretch;
  }

  .zone-status-card,
  .zone-map-card,
  .map-route-panel,
  .route-hours-card {
    border-radius: 22px;
  }

  .zone-status-card {
    min-height: auto;
    padding: 17px;
  }

  .service-zone-map {
    height: min(68svh, 430px);
    border-radius: 18px;
  }

  .zone-legend {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zone-legend span {
    justify-content: flex-start;
    border-radius: 16px;
  }

  .map-route-panel {
    padding: 18px;
  }

  .map-route-panel h2 {
    font-size: 1.74rem;
  }

  .detail-section,
  .article-section,
  .directory-section,
  .article-reading-section,
  .home-service-area,
  .estimate-wizard-section,
  .cta-band {
    padding: 56px 18px;
  }

  .estimate-page .estimate-wizard-section {
    height: 100svh;
    padding: calc(var(--header-height) + 8px) 18px 12px;
  }

  .estimate-page .estimate-shell {
    gap: 8px;
  }

  .estimate-page .wizard-intro {
    text-align: left;
  }

  .estimate-page .wizard-intro .section-label {
    display: none;
  }

  .estimate-page .wizard-intro h1 {
    font-size: 1.38rem;
    line-height: 1.02;
  }

  .estimate-page .wizard-intro p:not(.section-label) {
    display: none;
  }

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

  .service-list article {
    min-height: auto;
  }

  .moisture-diagnostic-panel {
    padding: 12px;
    border-radius: 24px;
  }

  .moisture-checklist {
    gap: 8px;
  }

  .moisture-checklist li {
    padding: 12px;
    border-radius: 18px;
  }

  .moisture-checklist strong {
    font-size: 0.86rem;
  }

  .moisture-inspection-grid,
  .moisture-service-grid,
  .business-path-grid,
  .process-timeline,
  .warning-list {
    grid-template-columns: 1fr;
  }

  .moisture-insight-card,
  .moisture-service-card,
  .business-path-card,
  .process-step {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .moisture-alert {
    padding: 18px;
    border-radius: 24px;
  }

  .warning-list li {
    min-height: auto;
  }

  .compliance-note {
    padding: 18px;
    border-radius: 22px;
  }

  .estimate-grid,
  .calculator-grid,
  .calculator-form,
  .decision-strip,
  .guide-grid,
  .guide-grid-three,
  .choice-grid,
  .choice-grid-four,
  .wizard-fields {
    grid-template-columns: 1fr;
  }

  .fact-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .estimate-option,
  .calculator-panel,
  .guide-card,
  .decision-card,
  .fact-card,
  .related-card,
  .location-card,
  .coverage-card,
  .portfolio-card,
  .guide-directory-card,
  .why-card,
  .city-service-panel,
  .blog-card-body,
  .article-callout,
  .article-save-card,
  .article-side-panel,
  .article-panel,
  .shock-card,
  .estimate-wizard,
  .choice-card {
    padding: 18px;
    border-radius: 22px;
  }

  .article-hero.article-with-image {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .article-hero-image {
    width: 100%;
    min-width: 0;
    border-radius: 24px;
  }

  .article-side-panel {
    position: static;
  }

  .estimate-page .estimate-wizard {
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
  }

  .estimate-page .wizard-step legend {
    font-size: 1.46rem;
  }

  .estimate-page .choice-grid,
  .estimate-page .choice-grid-four {
    gap: 10px;
    margin-top: 12px;
  }

  .estimate-page .choice-card {
    min-height: 0;
    gap: 6px;
    padding: 12px;
  }

  .estimate-page .choice-card span {
    font-size: 1.02rem;
  }

  .estimate-page .choice-card small {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .estimate-page .wizard-help {
    margin-top: 10px;
    padding: 12px;
  }

  .estimate-page .wizard-help p,
  .estimate-page .wizard-help .text-link {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .wizard-progress {
    gap: 6px;
  }

  .wizard-progress [data-progress-dot] {
    min-height: 30px;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-actions .hero-button,
  .wizard-actions .submit-button {
    width: 100%;
  }

  .guide-card,
  .decision-card {
    min-height: auto;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .panel-title,
  .is-featured .panel-title {
    font-size: 1.5rem;
  }

  .panel-copy {
    font-size: 0.84rem;
  }

  .panel-button {
    min-width: 144px;
  }
}

@media (max-width: 340px) {
  .header-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
