/* EverCool — lightweight, mobile-first, framework-free stylesheet. */
:root {
  color-scheme: light;
  --navy: #102f39;
  --navy-deep: #0c252e;
  --teal: #087c70;
  --mint: #dff2ec;
  --aqua: #60d3ba;
  --orange: #f2a05e;
  --orange-hover: #f6b37d;
  --ink: #152e35;
  --body: #52666b;
  --muted: #f3f7f5;
  --border: #dce5e1;
  --white: #fff;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-heading: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 12px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
textarea {
  font-family: var(--font-body);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.22;
}
h1,
h2 {
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(29px, 3.2vw, 41px);
  font-weight: 800;
}
h3 {
  font-weight: 750;
}
p {
  color: var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
p a,
.detail-content > a:not(.text-link),
.map-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--teal);
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
svg {
  flex-shrink: 0;
}
.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
:focus-visible {
  outline: 3px solid #087eae;
  outline-offset: 5px;
  border-radius: 3px;
}
::selection {
  background: #a9e3d3;
  color: var(--navy);
}
[hidden] {
  display: none !important;
}
[id] {
  scroll-margin-top: 110px;
}
.container {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin-inline: auto;
}
.section {
  padding-block: 64px;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--teal);
  border-radius: 6px;
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}
.eyebrow.light {
  color: var(--aqua);
}
.eyebrow.light .eyebrow-line {
  background: var(--aqua);
}
.text-teal {
  color: var(--teal);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link .icon {
  width: 18px;
  transition: transform 180ms var(--ease);
}
.button {
  min-height: 52px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  transition:
    transform 160ms var(--ease),
    background-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.button .icon {
  width: 18px;
  height: 18px;
}
.button:active {
  transform: scale(0.97);
}
.button-primary {
  background: var(--orange);
  color: var(--navy-deep);
}
.button-primary:hover {
  background: var(--orange-hover);
  color: var(--navy-deep);
  box-shadow: 0 5px 18px #102f3910;
}
.button-outline {
  border-color: #b8c8c2;
  background: transparent;
  color: var(--navy);
}
.button-outline:hover {
  background: #e5eeea;
  color: var(--navy);
}
.button-dark,
.button-header {
  background: var(--navy);
  color: var(--white);
}
.button-dark:hover,
.button-header:hover {
  background: #1e4954;
  color: var(--white);
}
.button-header {
  font-size: 12px;
  min-height: 46px;
  padding: 11px 15px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #74d5a7;
  flex-shrink: 0;
}
.utility-bar {
  background: var(--navy);
  color: #e4f0ed;
  font-size: 10px;
  line-height: 1.5;
  padding: 9px 0;
}
.utility-inner,
.utility-inner > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.utility-inner {
  justify-content: center;
}
.utility-inner > span:first-child {
  display: none;
}
.utility-inner .icon {
  width: 13px;
  height: 13px;
  color: #9ad7c7;
}
.utility-divider {
  margin: 0 4px;
  color: #527179;
}
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e6ece9;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  min-height: 78px;
}
.brand {
  display: block;
  width: 164px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: 66px;
  object-fit: contain;
}
.header-inner > .button-header {
  display: none;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  padding: 9px;
  border-radius: 6px;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  min-height: 44px;
}
.js .menu-toggle {
  display: inline-flex;
}
.primary-nav {
  display: flex;
  width: 100%;
  gap: 0;
  flex-wrap: wrap;
  padding: 8px 0 14px;
}
.primary-nav a {
  font-size: 12px;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 5px;
}
.primary-nav a:hover,
.primary-nav a[aria-current] {
  color: var(--teal);
  background: #eef6f2;
}
.js .primary-nav {
  display: none;
}
.js .primary-nav.is-open {
  display: flex;
  flex-direction: column;
}
.hero {
  background: var(--muted);
  position: relative;
  overflow: clip;
}
.hero-grid {
  display: grid;
  gap: 38px;
  padding-block: 44px 52px;
}
.hero-copy {
  align-self: center;
}
.hero .eyebrow {
  font-size: 9px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 8.5vw, 58px);
  line-height: 1.14;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.048em;
}
.hero h1 span {
  color: var(--teal);
}
.hero-description {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  max-width: 500px;
}
.desktop-break {
  display: none;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}
.hero-buttons .button {
  flex-grow: 1;
}
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin-top: 20px;
  font-size: 10px;
  color: #526560;
}
.hero-assurance > span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.hero-assurance .icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}
.hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  min-height: 34px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}
.hero-explore .icon {
  width: 16px;
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 15px;
}
.hero-photo {
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  object-position: center 64%;
  border-radius: 14px;
}
.photo-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffffec;
  color: #425447;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.065em;
  padding: 8px 11px;
  border-radius: 5px;
}
.photo-tag .icon {
  width: 14px;
  height: 14px;
}
.availability-card {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 11px;
  align-items: center;
  background: #fff;
  padding: 16px;
  box-shadow: 0 9px 30px #102f3914;
  border-radius: 10px;
}
.availability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5ef;
  color: var(--teal);
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
}
.availability-icon .icon {
  width: 24px;
  height: 24px;
}
.availability-card > div {
  display: flex;
  flex-direction: column;
}
.availability-kicker {
  font-size: 7px;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
}
.availability-kicker .status-dot {
  background: var(--teal);
  width: 4px;
  height: 4px;
}
.availability-card strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  margin-top: 3px;
}
.availability-card div > span:last-child {
  font-size: 10px;
  color: var(--body);
}
.availability-time {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  margin-left: auto;
  letter-spacing: -0.08em;
  white-space: nowrap;
}
.availability-time > span {
  font-size: 18px;
}
.value-bar {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 22px;
  padding-block: 26px;
}
.value-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.value-grid > div > .icon {
  color: var(--teal);
  width: 24px;
  height: 24px;
}
.value-grid strong,
.value-grid small {
  display: block;
}
.value-grid strong {
  font-size: 10px;
  font-weight: 700;
}
.value-grid small {
  font-size: 9px;
  color: var(--body);
  margin-top: 2px;
}
.section-heading {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-heading > p {
  max-width: 365px;
  font-size: 14px;
}
.services-grid {
  display: grid;
  gap: 17px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 180ms var(--ease),
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #9ec8b8;
  box-shadow: 0 12px 28px #12372c0a;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.icon-tile {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eaf5ef;
  color: var(--teal);
  flex-shrink: 0;
}
.icon-tile .icon {
  width: 25px;
  height: 25px;
}
.service-number {
  font-size: 11px;
  color: #5d746b;
  font-weight: 500;
  font-family: var(--font-heading);
}
.service-card h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
  line-height: 1.45;
  margin-bottom: 11px;
  max-width: 220px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 13px;
  margin-top: auto;
  border-top: 1px solid #eaf0ec;
  padding-top: 9px;
  font-size: 11px;
}
.service-links > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal);
  min-height: 35px;
  font-weight: 700;
}
.service-links .icon {
  width: 14px;
  height: 14px;
}
.service-links > .service-request {
  font-weight: 500;
  color: var(--body);
  font-size: 10px;
}
.service-links > a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.services-note {
  margin-top: 30px;
  text-align: center;
  color: var(--body);
  font-size: 12px;
}
.services-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  margin-left: 6px;
  min-height: 32px;
}
.services-note .icon {
  width: 15px;
}
.about-section {
  background: #f4f6f1;
}
.about-grid {
  display: grid;
  gap: 46px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding-bottom: 18px;
}
.about-photo {
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 12px;
}
.about-image-note {
  position: absolute;
  bottom: 0;
  right: 14px;
  left: 20%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 21px 24px;
  background: var(--navy);
  color: #dce9e5;
  border-radius: 8px;
}
.about-image-note .icon {
  width: 32px;
  height: 32px;
  color: var(--aqua);
}
.about-image-note span {
  font-size: 12px;
  line-height: 1.65;
}
.about-image-note strong {
  color: white;
  font-size: 16px;
  font-family: var(--font-heading);
}
.about-copy p {
  font-size: 14px;
  margin-top: 16px;
}
.about-copy .section-intro {
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  margin-top: 22px;
}
.about-copy .text-link {
  margin-top: 15px;
}
.why-section {
  color: white;
  background: var(--navy);
  position: relative;
}
.why-section .section-heading p {
  color: #b9cccb;
}
.why-grid {
  display: grid;
  gap: 25px;
}
.why-card {
  border-top: 1px solid #365059;
  padding-top: 26px;
}
.why-card > .icon {
  width: 30px;
  height: 30px;
  color: var(--aqua);
  margin-bottom: 19px;
}
.why-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.why-card p {
  color: #b9cccb;
  font-size: 13px;
  line-height: 1.9;
}
.details-layout {
  display: grid;
  gap: 34px;
}
.details-intro > p {
  font-size: 14px;
  margin-top: 20px;
  max-width: 415px;
}
.thermostat-photo {
  margin-top: 28px;
  border-radius: 10px;
  max-height: 225px;
  object-fit: cover;
}
.details-intro > .image-caption {
  font-size: 11px;
  margin-top: 10px;
  color: #64726c;
}
.service-details-list {
  border-top: 1px solid var(--border);
}
.service-detail {
  border-bottom: 1px solid var(--border);
}
.service-detail summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 5px;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  min-height: 69px;
}
.service-detail summary::-webkit-details-marker {
  display: none;
}
.service-detail summary > span {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-detail summary > span > .icon {
  color: var(--teal);
  width: 22px;
  height: 22px;
}
.service-detail summary > .icon {
  width: 17px;
  height: 17px;
  color: var(--teal);
  transition: transform 180ms var(--ease);
}
.service-detail[open] summary > .icon {
  transform: rotate(45deg);
}
.service-detail[open] summary {
  color: var(--teal);
}
.detail-content {
  padding: 0 14px 23px 42px;
  font-size: 13px;
}
.detail-content h3 {
  font-size: 14px;
  margin-bottom: 10px;
}
.detail-content p {
  line-height: 1.85;
  margin-bottom: 11px;
}
.detail-content > a {
  color: var(--teal);
}
.detail-content .text-link {
  display: flex;
  font-size: 12px;
  margin-top: 8px;
}
.emergency-banner {
  background: #f6e9d9;
  padding-block: 34px;
}
.emergency-inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 19px;
}
.emergency-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4d8b7;
  color: #80502b;
  border-radius: 50%;
}
.emergency-icon .icon {
  width: 25px;
  height: 25px;
}
.emergency-inner > div {
  flex: 1;
  min-width: 200px;
}
.emergency-inner .eyebrow {
  color: #82502d;
  font-size: 9px;
  margin-bottom: 7px;
}
.emergency-inner h2 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
.emergency-inner p {
  font-size: 12px;
  margin-top: 8px;
}
.emergency-inner .button {
  width: 100%;
}
.area-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.area-grid p {
  font-size: 14px;
  max-width: 420px;
  margin-top: 20px;
}
.area-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.area-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  background: #eaf5ef;
  border-radius: 5px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}
.area-list .icon {
  width: 17px;
  height: 17px;
}
.address-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 21px;
  margin-top: 24px;
}
.address-box > .icon {
  color: var(--teal);
}
.address-box strong {
  font-size: 13px;
}
address {
  font-style: normal;
}
.address-box address {
  color: var(--body);
  font-size: 12px;
  max-width: 290px;
  margin-top: 5px;
}
.address-box div > span {
  display: block;
  color: var(--body);
  font-size: 11px;
  margin-top: 6px;
}
.area-grid .text-link {
  margin-top: 12px;
  font-size: 12px;
}
.map-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--muted);
}
.map-heading {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #f5f8f6;
  font-size: 10px;
  font-weight: 600;
}
.map-heading > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-heading .icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.map-status {
  color: var(--teal);
  font-size: 9px;
  white-space: nowrap;
}
.map-status .status-dot {
  background: var(--teal);
  width: 5px;
  height: 5px;
}
#service-map {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  background: #e5ece2;
}
.map-fallback {
  padding: 13px 16px;
  font-size: 10px;
  color: var(--body);
  background: white;
}
.map-fallback a {
  color: var(--teal);
}
.map-fallback .icon {
  width: 12px;
  height: 12px;
}
.faq-section {
  background: var(--muted);
}
.faq-layout {
  display: grid;
  gap: 36px;
}
.faq-intro > p {
  font-size: 14px;
  margin-top: 20px;
  max-width: 290px;
}
.faq-help {
  padding: 25px;
  margin-top: 28px;
  border: 1px solid #d6e3db;
  border-radius: 10px;
  max-width: 340px;
}
.faq-help > .icon {
  color: var(--teal);
  width: 29px;
  height: 29px;
  margin-bottom: 17px;
}
.faq-help h3 {
  font-size: 15px;
  margin-bottom: 10px;
}
.faq-help p {
  font-size: 12px;
}
.faq-help .text-link {
  font-size: 12px;
  margin-top: 9px;
}
.faq-list {
  border-top: 1px solid #d3e0d9;
}
.faq-item {
  border-bottom: 1px solid #d3e0d9;
}
.faq-trigger {
  border: 0;
  background: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}
.faq-trigger > .icon {
  width: 17px;
  height: 17px;
  color: var(--teal);
}
.faq-trigger:hover {
  color: var(--teal);
}
.faq-trigger[aria-expanded="true"] > .icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 30px 23px 0;
  font-size: 13px;
  line-height: 1.85;
}
.contact-section {
  background: var(--navy);
  color: white;
}
.contact-grid {
  display: grid;
  gap: 40px;
}
.contact-copy h2 {
  font-size: clamp(32px, 3.3vw, 43px);
  line-height: 1.3;
}
.contact-copy h2 > span {
  color: var(--aqua);
}
.contact-copy > p {
  color: #bdcccd;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 20px;
  max-width: 405px;
}
.contact-phone {
  display: flex;
  gap: 14px;
  margin-top: 37px;
  align-items: center;
}
.contact-phone .icon-tile {
  background: #244954;
  color: var(--aqua);
  width: 50px;
  height: 50px;
}
.contact-phone small {
  display: block;
  color: #b5ccca;
  font-size: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.contact-phone a {
  display: block;
  color: white;
  font-size: 25px;
  font-weight: 750;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}
.contact-phone a:hover {
  color: var(--aqua);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
}
.contact-detail > .icon {
  width: 20px;
  height: 20px;
  color: var(--aqua);
}
.contact-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-detail address,
.contact-detail span {
  font-size: 12px;
  line-height: 1.8;
  color: #b8ccca;
  max-width: 290px;
}
.contact-callout {
  border-top: 1px solid #35515a;
  margin-top: 32px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #bdcccd;
}
.contact-callout > .icon {
  color: var(--orange);
  width: 16px;
}
.contact-callout a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-card {
  background: white;
  color: var(--ink);
  border-radius: 13px;
  padding: 25px 20px;
}
.form-card > h3 {
  font-size: 19px;
  letter-spacing: -0.03em;
}
.form-intro {
  font-size: 12px;
  margin-top: 9px;
}
.form-availability {
  margin-top: 18px;
  padding: 11px 13px;
  background: #f7f2e8;
  border: 1px solid #e8dcc5;
  color: #735224;
  font-size: 11px;
  border-radius: 5px;
  line-height: 1.7;
}
.form-availability a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-fields {
  display: grid;
  gap: 15px;
  margin-top: 21px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field label > span {
  color: var(--teal);
}
.field input,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  background: #fafbf9;
  border: 1px solid #d8e1db;
  border-radius: 5px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}
.field input {
  min-height: 45px;
}
.field textarea {
  resize: vertical;
  min-height: 107px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #76847c;
  font-size: 12px;
}
.field input:focus,
.field textarea:focus {
  background: white;
  border-color: var(--teal);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b32b29;
}
.field-error {
  color: #a32626;
  font-size: 11px;
  display: block;
}
.field-error:not(:empty) {
  margin-top: 5px;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 19px;
}
.consent-field input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.consent-field label {
  font-size: 10px;
  line-height: 1.85;
  color: #58665e;
  cursor: pointer;
}
.button-submit {
  width: 100%;
  margin-top: 21px;
  font-size: 13px;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}
.form-footnote {
  font-size: 10px;
  margin-top: 12px;
  text-align: center;
}
.form-status {
  padding: 12px 14px;
  border-radius: 5px;
  margin-top: 17px;
  font-size: 12px;
  background: #e7f2ec;
  color: #16583c;
}
.form-status[data-state="error"] {
  background: #fff0ec;
  color: #9c3424;
}
.form-status[data-state="pending"] {
  background: #eef5f7;
  color: var(--navy);
}
.site-footer {
  background: #f8faf7;
  padding: 50px 0 104px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 33px 22px;
}
.footer-brand {
  grid-column: 1/-1;
}
.footer-brand img {
  width: 195px;
  height: 78px;
  object-fit: contain;
  margin: -12px 0 9px;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
}
.footer-open {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 10px;
  margin-top: 17px;
}
.footer-open .status-dot {
  background: var(--teal);
}
.footer-main h2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
}
.footer-links a,
.footer-services > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--body);
  min-height: 30px;
}
.footer-links a:hover,
.footer-services > a:hover {
  color: var(--teal);
  text-decoration: underline;
}
.footer-services .icon {
  width: 12px;
  height: 12px;
}
.footer-contact {
  grid-column: 1/-1;
}
.footer-phone {
  font-size: 23px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.footer-contact address {
  color: var(--body);
  font-size: 11px;
  margin-top: 12px;
  max-width: 240px;
}
.footer-contact > .text-link {
  font-size: 11px;
  margin-top: 8px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  color: var(--body);
  font-size: 9px;
}
.footer-bottom > a {
  display: flex;
  gap: 6px;
  align-items: center;
  min-height: 30px;
}
.footer-bottom .icon {
  width: 13px;
  height: 13px;
}
.disclaimer {
  margin-top: 20px;
  border-top: 1px solid #e4e9e3;
  padding-top: 20px;
  font-size: 10px;
  line-height: 1.85;
  color: #67746b;
}
.mobile-call {
  position: fixed;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 20px;
  right: 20px;
  z-index: 35;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  box-shadow: 0 5px 25px #092d3433;
  padding: 11px 17px;
  transition:
    opacity 150ms var(--ease),
    transform 150ms var(--ease);
}
.mobile-call:hover {
  color: white;
  background: #204b54;
}
.mobile-call > .icon {
  width: 19px;
  height: 19px;
  color: var(--aqua);
}
.mobile-call > span {
  font-size: 12px;
}
.mobile-call strong {
  margin-left: 7px;
  font-size: 12px;
}
.mobile-call > .mobile-call-hours {
  color: #9bdac9;
  font-size: 9px;
  border-left: 1px solid #547078;
  padding-left: 12px;
  margin-left: auto;
}
.mobile-call.is-hidden,
body:has(#service-form :focus) .mobile-call {
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
}
@media (min-width: 480px) {
  .container {
    width: calc(100% - 48px);
  }
  .hero-buttons .button {
    flex-grow: 0;
  }
  .hero-assurance {
    font-size: 11px;
  }
  .availability-card {
    left: 22px;
    right: 22px;
    padding: 19px;
  }
  .availability-card strong {
    font-size: 19px;
  }
  .availability-kicker {
    font-size: 8px;
  }
  .availability-card div > span:last-child {
    font-size: 11px;
  }
  .availability-time {
    font-size: 39px;
  }
  .availability-time > span {
    font-size: 24px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-fields {
    grid-template-columns: 1fr 1fr;
  }
  .field-full {
    grid-column: 1/-1;
  }
  .form-card {
    padding: 30px;
  }
  .value-grid strong {
    font-size: 12px;
  }
  .value-grid small {
    font-size: 10px;
  }
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .utility-inner {
    justify-content: space-between;
  }
  .utility-inner > span:first-child {
    display: flex;
  }
  .utility-inner {
    font-size: 10px;
  }
  .section {
    padding-block: 80px;
  }
  .hero-photo {
    aspect-ratio: 1.35;
  }
  .hero-visual {
    max-width: 610px;
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero-grid {
    grid-template-columns: 1.06fr 1fr;
    gap: 28px;
    padding-block: 46px 52px;
  }
  .hero h1 {
    font-size: clamp(34px, 4.1vw, 57px);
  }
  .hero-description {
    font-size: 13px;
    margin-top: 20px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .hero-buttons {
    margin-top: 23px;
    gap: 10px;
  }
  .hero-buttons .button {
    font-size: 11px;
    min-height: 47px;
    padding-inline: 13px;
  }
  .hero-assurance {
    font-size: 9px;
    gap: 11px;
  }
  .hero-photo {
    aspect-ratio: auto;
    height: 490px;
    object-position: center;
  }
  .availability-card {
    left: -12px;
    right: 12px;
    padding: 15px;
    gap: 9px;
  }
  .availability-card strong {
    font-size: 15px;
  }
  .availability-kicker {
    font-size: 6px;
  }
  .availability-card div > span:last-child {
    font-size: 9px;
  }
  .availability-time {
    font-size: 30px;
  }
  .availability-icon {
    width: 37px;
    height: 37px;
  }
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    padding-block: 26px;
  }
  .value-grid > div {
    gap: 10px;
  }
  .value-grid > div:not(:first-child) {
    padding-left: 17px;
    border-left: 1px solid var(--border);
  }
  .value-grid strong {
    font-size: 10px;
  }
  .value-grid small {
    font-size: 8px;
  }
  .value-grid > div > .icon {
    width: 25px;
    height: 25px;
  }
  .section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 35px;
    margin-bottom: 37px;
  }
  .section-heading > p {
    max-width: 285px;
    font-size: 12px;
    padding-bottom: 3px;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-photo {
    aspect-ratio: auto;
    height: 530px;
  }
  .about-copy p {
    font-size: 12px;
    margin-top: 12px;
  }
  .about-copy .section-intro {
    font-size: 15px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .about-image-note {
    padding: 19px;
    left: 15%;
    right: -12px;
  }
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .why-card h3 {
    font-size: 14px;
    line-height: 1.5;
  }
  .why-card p {
    font-size: 12px;
  }
  .details-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }
  .details-intro h2 {
    font-size: 32px;
  }
  .details-intro p {
    font-size: 12px;
  }
  .service-detail summary {
    font-size: 12px;
  }
  .emergency-inner {
    align-items: center;
    flex-wrap: nowrap;
  }
  .emergency-inner .button {
    width: auto;
    font-size: 11px;
    padding-inline: 14px;
  }
  .emergency-inner h2 {
    font-size: 22px;
  }
  .emergency-inner .eyebrow {
    font-size: 8px;
  }
  .emergency-inner p {
    font-size: 11px;
  }
  .area-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
  }
  .area-grid p {
    font-size: 12px;
  }
  #service-map {
    height: 405px;
  }
  .map-heading {
    font-size: 9px;
  }
  .map-fallback {
    font-size: 9px;
  }
  .faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }
  .faq-intro > p {
    font-size: 12px;
  }
  .faq-trigger {
    font-size: 12px;
  }
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }
  .contact-copy {
    padding-top: 22px;
  }
  .contact-copy h2 {
    font-size: 34px;
  }
  .contact-copy > p {
    font-size: 12px;
  }
  .form-card {
    padding: 28px;
  }
  .form-card > h3 {
    font-size: 17px;
  }
  .contact-phone a {
    font-size: 26px;
  }
  .mobile-call {
    display: none;
  }
  .site-footer {
    padding-bottom: 32px;
  }
  .footer-main {
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 30px;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-brand img {
    width: 175px;
    height: 70px;
  }
  .footer-phone {
    font-size: 20px;
  }
}
@media (min-width: 1100px) {
  .container {
    width: calc(100% - 96px);
  }
  .section {
    padding-block: 94px;
  }
  .header-inner {
    min-height: 91px;
    gap: 20px;
    flex-wrap: nowrap;
  }
  .brand {
    width: 188px;
  }
  .brand img {
    height: 75px;
  }
  .js .menu-toggle,
  .menu-toggle {
    display: none;
  }
  .js .primary-nav,
  .js .primary-nav.is-open,
  .primary-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 1px;
    flex-wrap: nowrap;
    margin-left: auto;
  }
  .primary-nav a {
    font-size: 11px;
    padding: 12px 9px;
  }
  .primary-nav a:hover,
  .primary-nav a[aria-current] {
    background: transparent;
  }
  .header-inner > .button-header {
    display: inline-flex;
  }
  .utility-bar {
    padding-block: 9px;
  }
  .utility-inner {
    font-size: 10px;
  }
  .hero-grid {
    gap: 48px;
    grid-template-columns: 1.06fr 1fr;
    padding-block: 58px 62px;
  }
  .hero h1 {
    font-size: clamp(48px, 4.25vw, 62px);
    line-height: 1.12;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 25px;
  }
  .desktop-break {
    display: inline;
  }
  .hero-buttons {
    margin-top: 29px;
    gap: 12px;
  }
  .hero-buttons .button {
    font-size: 12px;
    min-height: 52px;
    padding-inline: 17px;
  }
  .hero-assurance {
    font-size: 10px;
    gap: 18px;
    margin-top: 21px;
  }
  .hero-explore {
    margin-top: 26px;
  }
  .hero-photo {
    height: 550px;
  }
  .hero-visual {
    padding-bottom: 16px;
  }
  .photo-tag {
    top: 23px;
    left: 23px;
    font-size: 9px;
    padding: 9px 12px;
  }
  .availability-card {
    left: -27px;
    right: 24px;
    padding: 22px;
    gap: 15px;
  }
  .availability-icon {
    width: 49px;
    height: 49px;
  }
  .availability-icon .icon {
    width: 28px;
    height: 28px;
  }
  .availability-kicker {
    font-size: 8px;
  }
  .availability-card strong {
    font-size: 20px;
  }
  .availability-card div > span:last-child {
    font-size: 11px;
  }
  .availability-time {
    font-size: 44px;
  }
  .availability-time > span {
    font-size: 27px;
  }
  .value-grid {
    padding-block: 31px;
    gap: 26px;
  }
  .value-grid > div {
    gap: 16px;
  }
  .value-grid > div > .icon {
    width: 28px;
    height: 28px;
  }
  .value-grid > div:not(:first-child) {
    padding-left: 29px;
  }
  .value-grid strong {
    font-size: 12px;
  }
  .value-grid small {
    font-size: 10px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-heading > p {
    max-width: 340px;
    font-size: 13px;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-links {
    gap: 2px 9px;
    font-size: 10px;
  }
  .service-links > .service-request {
    font-size: 9px;
  }
  .about-grid {
    gap: 76px;
    grid-template-columns: 1fr 1fr;
  }
  .about-copy p {
    font-size: 13px;
    margin-top: 16px;
  }
  .about-copy .section-intro {
    font-size: 17px;
  }
  .about-photo {
    height: 520px;
  }
  .about-image-note {
    left: 29%;
    right: -22px;
    padding: 23px 30px;
  }
  .why-grid {
    gap: 38px;
    margin-top: 44px;
  }
  .why-card {
    padding-top: 29px;
  }
  .why-card h3 {
    font-size: 16px;
  }
  .why-card p {
    font-size: 13px;
  }
  .details-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
  }
  .details-intro h2 {
    font-size: 36px;
  }
  .details-intro p {
    font-size: 13px;
  }
  .service-detail summary {
    font-size: 14px;
    padding-block: 23px;
  }
  .thermostat-photo {
    max-height: 245px;
  }
  .emergency-inner {
    gap: 24px;
  }
  .emergency-icon {
    width: 62px;
    height: 62px;
  }
  .emergency-inner h2 {
    font-size: 28px;
  }
  .emergency-inner p {
    font-size: 13px;
  }
  .emergency-inner .eyebrow {
    font-size: 9px;
  }
  .emergency-inner .button {
    font-size: 13px;
    padding-inline: 23px;
  }
  .area-grid {
    gap: 75px;
  }
  .area-grid p {
    font-size: 13px;
  }
  .map-heading {
    font-size: 11px;
    padding: 19px 23px;
  }
  .map-status {
    font-size: 10px;
  }
  #service-map {
    height: 400px;
  }
  .map-fallback {
    font-size: 10px;
    padding: 14px 23px;
  }
  .faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 105px;
  }
  .faq-intro > p {
    font-size: 14px;
  }
  .faq-help {
    margin-top: 34px;
    padding: 26px;
  }
  .faq-trigger {
    font-size: 14px;
    padding-block: 23px;
  }
  .contact-grid {
    gap: 100px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .contact-copy {
    padding-top: 28px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .contact-copy > p {
    font-size: 14px;
  }
  .contact-phone {
    margin-top: 40px;
  }
  .contact-phone a {
    font-size: 32px;
  }
  .contact-phone small {
    font-size: 9px;
  }
  .contact-detail {
    margin-top: 30px;
  }
  .contact-detail strong {
    font-size: 13px;
  }
  .contact-detail address,
  .contact-detail span {
    font-size: 13px;
  }
  .contact-callout {
    font-size: 12px;
    margin-top: 37px;
  }
  .form-card {
    padding: 35px;
  }
  .form-card > h3 {
    font-size: 20px;
  }
  .footer-main {
    gap: 60px;
    grid-template-columns: 1.2fr 0.7fr 1fr 1.15fr;
  }
  .footer-brand img {
    width: 200px;
    height: 80px;
  }
  .footer-phone {
    font-size: 23px;
  }
  .footer-contact address {
    font-size: 12px;
  }
}
@media (min-width: 1440px) {
  .hero-photo {
    height: 590px;
  }
  .hero-grid {
    gap: 62px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .primary-nav a {
    font-size: 12px;
    padding-inline: 12px;
  }
  .button-header {
    font-size: 12px;
    padding-inline: 19px;
  }
  .service-card {
    padding: 26px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise-in 500ms var(--ease) both;
  }
  .hero-visual {
    animation: rise-in 600ms var(--ease) 90ms both;
  }
  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header {
    position: static;
  }
  .utility-bar,
  .mobile-call,
  .menu-toggle,
  #service-map,
  .hero-visual,
  .about-visual,
  .thermostat-photo {
    display: none;
  }
  .section {
    padding-block: 24px;
  }
  .hero-grid,
  .about-grid,
  .details-layout,
  .area-grid,
  .faq-layout,
  .contact-grid {
    display: block;
  }
  .why-section,
  .contact-section {
    background: white;
    color: black;
  }
  .why-card p,
  .contact-copy p {
    color: black;
  }
  .faq-answer[hidden] {
    display: block !important;
  }
}

/* Supplied photography: one unique photo per placement, preserving the full square frame. */
.hero-photo,
.about-photo {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}
.hero-visual {
  align-self: center;
}
.service-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 7px;
  margin-bottom: 22px;
}
.details-tip {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--muted);
}
.details-tip h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.details-tip p {
  font-size: 13px;
  line-height: 1.85;
}
.details-tip .text-link {
  font-size: 12px;
  margin-top: 9px;
}
.footer-wordmark {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: var(--navy);
}
.footer-wordmark > span {
  color: var(--teal);
}
.footer-wordmark small {
  display: block;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.17em;
  font-weight: 700;
}
@media print {
  .service-photo {
    display: none;
  }
}
