/* ClearSky Comfort — single-page, framework-free styles.
   Typography: Bricolage Grotesque / DM Sans. Images are supplied separately.
   Native anchors remain functional without JavaScript. */
:root {
  --ink: #142f36;
  --navy: #102e36;
  --teal: #087f80;
  --teal-dark: #06676c;
  --mint: #b7e4d4;
  --aqua: #bdebe6;
  --orange: #e99262;
  --body: #58676b;
  --muted: #72837f;
  --paper: #f7f9f6;
  --line: #dce4df;
  --white: #fff;
  --display: "Bricolage Grotesque", sans-serif;
  --font: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
  flex-shrink: 0;
}
.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h2 {
  font-size: 46px;
}
h3 {
  letter-spacing: -0.025em;
}
address {
  font-style: normal;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #cf6b34;
  outline-offset: 5px;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.wrap {
  width: min(1240px, calc(100% - 100px));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.65px;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--teal-dark);
}
.muted-heading {
  color: #6e8580;
}
.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;
  top: 8px;
  left: 8px;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
[id] {
  scroll-margin-top: 110px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
  line-height: 1.25;
  border: 1px solid transparent;
  transition:
    transform 160ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.button:active {
  transform: scale(0.97);
}
.button .icon {
  width: 18px;
  height: 18px;
}
.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 9px #087f8010;
}
.button.primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 7px 18px #087f8024;
}
.button.secondary {
  background: transparent;
  border-color: #c5d3cd;
  color: var(--ink);
}
.button.secondary:hover {
  background: #eaf0eb;
  border-color: #9ab6aa;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 0;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease);
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #93dbb0;
  border-radius: 50%;
  flex-shrink: 0;
}
.utility-bar {
  background: var(--navy);
  color: #e8efeb;
  font-size: 10px;
  letter-spacing: 0.4px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}
.utility-inner > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.utility-inner .icon {
  width: 13px;
  height: 13px;
  color: var(--mint);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5ebe6;
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: block;
  flex-shrink: 0;
  width: 208px;
}
.brand img {
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding: 14px 0;
}
.main-nav a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}
.main-nav a:hover,
.main-nav a[aria-current="location"] {
  color: var(--teal);
}
.main-nav a:hover:after,
.main-nav a[aria-current="location"]:after {
  transform: scaleX(1);
}
.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header-call-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf5ed;
  color: var(--teal);
  display: grid;
  place-items: center;
}
.header-call-icon .icon {
  height: 17px;
  width: 17px;
}
.header-call small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.8px;
  color: var(--body);
  line-height: 1.6;
}
.header-call strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  color: var(--ink);
}
.hero {
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, #e5eece60, transparent 65%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 52px;
  padding-top: 56px;
  padding-bottom: 65px;
  position: relative;
}
.hero-copy {
  padding: 4px 0 10px;
}
.hero-copy > .eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.short-line {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--teal);
}
h1 {
  font-size: clamp(58px, 5.65vw, 82px);
  line-height: 1.005;
  letter-spacing: -4.6px;
  font-weight: 600;
  margin-bottom: 23px;
}
.cool-text {
  color: var(--teal);
  position: relative;
  display: inline-block;
}
.cool-text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 98%;
  height: 6px;
  border-radius: 50%;
  border-top: 3px solid #a6d9bd;
  transform: rotate(-2deg);
}
.hero-brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.15px;
  margin-bottom: 8px;
}
.hero-description {
  font-size: 15px;
  line-height: 1.8;
  max-width: 430px;
  color: var(--body);
  margin-bottom: 27px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-actions .primary {
  flex-wrap: wrap;
  column-gap: 7px;
  max-width: 240px;
}
.button-phone {
  font-size: 12px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  margin-top: 25px;
  color: var(--body);
}
.hero-footnote > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-footnote .status-dot {
  background: var(--teal);
  width: 5px;
  height: 5px;
}
.hero-footnote a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  border-bottom: 1px solid #abc7ba;
}
.hero-footnote .icon {
  width: 12px;
  height: 12px;
}
.hero-visual {
  position: relative;
  margin: 0 0 0 4px;
}
.hero-image-wrap {
  height: 565px;
  border-radius: 12px 120px 12px 12px;
  overflow: hidden;
  position: relative;
  background: #d5d6c8;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
}
.image-label {
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  top: 23px;
  left: 22px;
  background: #123139d9;
  color: white;
  padding: 8px 12px;
  border: 1px solid #ffffff2c;
  border-radius: 5px;
  font-size: 8px;
  letter-spacing: 1.1px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.image-label .icon {
  width: 12px;
  height: 12px;
}
.comfort-card {
  position: absolute;
  bottom: 25px;
  left: -33px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 24px 19px 17px;
  background: #fff;
  border: 1px solid #f1f3eb;
  border-radius: 9px;
  box-shadow: 0 10px 30px #0d342619;
}
.comfort-card-icon {
  display: grid;
  place-items: center;
  background: #edf6ec;
  border-radius: 7px;
  width: 43px;
  height: 43px;
  color: var(--teal);
}
.comfort-card strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.35px;
  line-height: 1.3;
}
.comfort-card span:not(.comfort-card-icon) {
  display: block;
  font-size: 10px;
  color: var(--body);
  margin-top: 3px;
}
.hero-orbit {
  position: absolute;
  right: -26px;
  top: -22px;
  background: #d9edb7;
  color: #30442f;
  width: 108px;
  height: 108px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transform: rotate(12deg);
  font-size: 9px;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0.7px;
  font-weight: 700;
}
.hero-orbit .icon {
  width: 22px;
  height: 22px;
}
.value-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0;
}
.value-grid > span,
.value-grid > a {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 0 28px;
}
.value-grid > :first-child {
  padding-left: 0;
}
.value-grid > :last-child {
  border: 0;
  padding-right: 0;
}
.value-grid .icon {
  grid-row: span 2;
  width: 25px;
  height: 25px;
  color: var(--teal);
}
.value-grid strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.value-grid small {
  font-size: 10px;
  color: var(--body);
  line-height: 1.7;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 37px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-intro {
  color: var(--body);
  max-width: 330px;
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.85;
}
.services-section {
  padding-bottom: 66px;
}
.service-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}
.service-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.filter {
  background: transparent;
  border: 1px solid transparent;
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--body);
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease);
}
.filter .icon {
  width: 15px;
  height: 15px;
}
.filter.active {
  background: var(--navy);
  color: white;
}
.filter:not(.active):hover {
  background: #edf3ee;
}
.filter > span {
  font-size: 8px;
  background: #ffffff21;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 3px;
}
.urgent-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--teal-dark);
  font-weight: 600;
}
.urgent-link .icon {
  width: 15px;
  height: 15px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 27px 28px 23px;
  display: flex;
  flex-direction: column;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
  background: #fff;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px #133d3510;
  border-color: #a7c9bc;
}
.service-card[hidden] {
  display: none;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ecf5ef;
  color: var(--teal);
}
.icon-box .icon {
  width: 23px;
  height: 23px;
}
.service-number {
  color: #85938a;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
}
.service-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 13px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--body);
  margin: 0 0 19px;
  max-width: 315px;
}
.service-card .text-link {
  align-self: flex-start;
  font-size: 11px;
  margin-top: auto;
}
.service-card .text-link .icon {
  width: 16px;
  height: 16px;
}
.service-card.warm .icon-box {
  background: #fbeee5;
  color: #b96736;
}
.service-card.urgent {
  background: #f4f7f3;
}
.service-card.urgent .icon-box {
  background: #e2eee0;
}
.services-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.services-bottom p {
  font-size: 12px;
  color: var(--body);
  margin: 0;
}
.services-bottom .text-link {
  font-size: 12px;
}
.about-section {
  background: #f5f7f2;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual > img {
  width: 100%;
  height: 433px;
  object-fit: cover;
  border-radius: 10px 10px 80px 10px;
}
.about-caption {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: 20px;
  background: #fffffff5;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 5px 20px #00000008;
}
.about-caption .icon {
  width: 18px;
  height: 18px;
  color: var(--teal);
}
.about-copy h2 {
  font-size: 40px;
  margin-bottom: 23px;
}
.about-copy p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 17px;
}
.about-copy > .eyebrow {
  margin-bottom: 18px;
}
.about-copy > .text-link {
  margin-top: 1px;
}
.why-section {
  padding: 81px 0 75px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-section:after {
  content: "";
  width: 480px;
  height: 480px;
  border: 1px solid #ffffff07;
  position: absolute;
  right: -230px;
  top: -240px;
  border-radius: 50%;
  box-shadow:
    0 0 0 70px #ffffff03,
    0 0 0 140px #ffffff02;
  pointer-events: none;
}
.why-section .eyebrow {
  color: #a5d6c6;
}
.why-section h2 {
  font-size: 45px;
}
.why-section h2 span {
  color: #9cb5ad;
}
.why-section .section-intro {
  color: #c1cfca;
  font-size: 13px;
  max-width: 310px;
}
.why-section .section-heading {
  margin-bottom: 47px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.why-card {
  border-top: 1px solid #ffffff25;
  padding-top: 25px;
}
.why-card > .icon {
  color: #bde4b0;
  width: 27px;
  height: 27px;
  margin-bottom: 23px;
}
.why-card:nth-child(3) > .icon {
  color: #edb087;
}
.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.25px;
}
.why-card p {
  font-size: 12px;
  line-height: 1.9;
  color: #c1cfca;
  margin: 0;
}
.detail-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
}
.detail-intro h2 {
  font-size: 43px;
  margin-bottom: 23px;
}
.detail-intro > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  color: var(--body);
  max-width: 360px;
}
.help-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #f4f7f1;
  padding: 23px;
  border-radius: 7px;
  margin: 31px 0 20px;
  max-width: 350px;
}
.help-note > .icon {
  color: var(--teal);
  width: 22px;
  height: 22px;
}
.help-note strong {
  font-size: 12px;
}
.help-note p {
  font-size: 11px;
  color: var(--body);
  margin: 2px 0 8px;
}
.help-note a {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-dark);
}
.detail-intro p.small-note {
  font-size: 10px;
  line-height: 1.8;
  max-width: 340px;
}
.service-details {
  border-top: 1px solid var(--line);
}
.service-detail {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.service-detail summary {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 72px;
  padding: 17px 0;
}
.detail-num {
  color: #71827b;
  font-size: 10px;
  font-family: var(--display);
}
.service-detail summary h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}
.expand-icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms var(--ease);
  color: var(--teal);
}
details[open] > summary > .expand-icon {
  transform: rotate(45deg);
}
.detail-copy {
  padding: 0 23px 21px 31px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--body);
}
.detail-copy p {
  margin-bottom: 15px;
}
.detail-copy p > a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.detail-copy .text-link {
  font-size: 12px;
}
.service-detail:target {
  background: #f5faf4;
}
.service-detail:target summary {
  padding-left: 12px;
  padding-right: 12px;
}
.detail-copy:empty {
  display: none;
}
.area-section {
  background: #f4f7f2;
}
.area-layout {
  display: grid;
  grid-template-columns: 0.77fr 1.23fr;
  gap: 95px;
  align-items: center;
}
.area-copy h2 {
  font-size: 46px;
  margin-bottom: 24px;
}
.area-copy > p:not(.eyebrow) {
  color: var(--body);
  font-size: 13px;
  line-height: 1.9;
  max-width: 345px;
}
.coverage-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.coverage-list .icon {
  width: 27px;
  height: 27px;
  padding: 5px;
  background: #deeddd;
  border-radius: 50%;
  color: var(--teal);
}
.coverage-list strong {
  display: block;
  font-size: 13px;
}
.coverage-list small {
  display: block;
  font-size: 10px;
  color: var(--body);
}
.area-copy .area-note {
  font-size: 11px !important;
  margin-bottom: 21px;
}
.area-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--teal-dark);
  font-weight: 600;
}
.area-copy .button {
  font-size: 12px;
  min-height: 47px;
}
.map-card {
  border: 1px solid #d5dfd4;
  background: #fff;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 10px 30px #294d2110;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 21px;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 0.7px;
}
.map-header > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}
.map-header > span:last-child {
  font-size: 10px;
  letter-spacing: 0;
  color: var(--body);
}
.map-header .status-dot {
  background: var(--teal);
}
.map-wrap {
  height: 340px;
  background: #e5eddf;
  position: relative;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-noscript {
  position: absolute;
  inset: 20px;
  display: grid;
  place-content: center;
  background: #e8eee2;
  color: var(--ink);
  padding: 24px;
}
.map-noscript a {
  text-decoration: underline;
}
.map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 7px;
  gap: 15px;
  font-size: 10px;
}
.map-footer > span,
.map-footer > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-footer > a {
  color: var(--teal-dark);
  font-weight: 600;
}
.map-footer .icon {
  width: 14px;
  height: 14px;
}
.map-fallback {
  font-size: 9px;
  color: var(--body);
  padding: 0 20px;
  margin-bottom: 14px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 95px;
}
.faq-intro h2 {
  font-size: 54px;
  margin-bottom: 23px;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--body);
  max-width: 290px;
  line-height: 1.85;
}
.faq-callout {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 31px;
  max-width: 260px;
}
.faq-callout > .icon {
  color: var(--teal);
  width: 26px;
  height: 26px;
  margin-bottom: 15px;
}
.faq-callout h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.faq-callout p {
  font-size: 12px;
  color: var(--body);
  margin-bottom: 5px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 19px 0;
}
.faq summary h3 {
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: -0.1px;
  font-weight: 600;
}
.faq summary:hover h3 {
  color: var(--teal);
}
.faq-answer {
  padding: 0 30px 23px 0;
  font-size: 12px;
  line-height: 1.9;
  color: var(--body);
}
.faq-answer p {
  margin-bottom: 12px;
}
.faq-permalink {
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--teal-dark);
}
.faq:target {
  background: #f5faf4;
  outline: 1px solid #c8dfcf;
  outline-offset: 8px;
}
.contact-section {
  background: var(--navy);
  color: #fff;
  padding: 88px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
  align-items: start;
}
.contact-copy {
  padding-top: 16px;
}
.contact-copy > .eyebrow {
  color: #b8decb;
  margin-bottom: 23px;
}
.contact-copy h2 {
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 22px;
}
.contact-copy h2 span {
  color: #b5deaf;
}
.contact-lead {
  font-size: 14px;
  color: #c7d7d1;
  max-width: 330px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 31px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -1px;
}
.contact-phone .icon {
  width: 24px;
  height: 24px;
  color: #b8decb;
}
.contact-availability {
  font-size: 10px;
  color: #d1dfd7;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0 37px;
}
.contact-divider {
  height: 1px;
  background: #ffffff25;
  margin: 37px 0 29px;
  max-width: 345px;
}
.contact-copy > h3 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.1px;
}
.contact-copy address p:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #d3dfd9;
  margin-bottom: 10px;
}
.contact-copy address .icon {
  width: 15px;
  height: 15px;
}
.full-address {
  font-size: 11px;
  line-height: 1.9;
  color: #c7d7d1;
  max-width: 320px;
  margin-bottom: 12px;
}
.address-note {
  font-size: 10px;
  line-height: 1.8;
  color: #b5c7c0;
  max-width: 330px;
}
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 34px;
  color: var(--ink);
  box-shadow: 0 14px 40px #00000010;
}
.form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 21px;
}
.form-heading .icon-box {
  width: 41px;
  height: 41px;
}
.form-heading h3 {
  font-size: 23px;
  margin-bottom: 4px;
}
.form-heading p {
  font-size: 11px;
  color: var(--body);
  margin: 0;
}
.form-notice {
  background: #f1f6ef;
  border: 1px solid #d9e5d5;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 10px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: #43584d;
}
.form-notice strong {
  display: block;
  font-weight: 600;
}
.form-notice a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  color: var(--teal-dark);
}
fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  margin-bottom: 14px;
}
.field > label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field label span {
  color: var(--teal);
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1px solid #d7dfd8;
  background: #fafbf8;
  border-radius: 5px;
  padding: 11px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
input::placeholder,
textarea::placeholder {
  color: #7c8981;
  opacity: 1;
}
textarea {
  resize: vertical;
  min-height: 93px;
}
input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px #087f8012;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b54731;
  background: #fff9f7;
}
.field-error {
  display: block;
  color: #a73525;
  font-size: 10px;
  line-height: 1.5;
}
.field-error:not(:empty) {
  margin-top: 4px;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 3px;
}
.consent-field input {
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 2px 0 0;
  cursor: pointer;
}
.consent-field label {
  font-size: 9px;
  line-height: 1.75;
  color: #58665d;
  cursor: pointer;
  min-height: 44px;
}
.submit-button {
  width: 100%;
  margin-top: 19px;
  justify-content: space-between;
}
.submit-button .icon {
  height: 20px;
  width: 20px;
}
.form-status {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}
.form-status:not(:empty) {
  padding: 12px;
  margin-top: 12px;
  border-radius: 5px;
  background: #fdf2e9;
  color: #844321;
}
.form-status[data-state="success"] {
  background: #edf8ed;
  color: #295e3d;
}
.form-small {
  text-align: center;
  font-size: 9px;
  color: var(--body);
  margin: 13px 0 0;
}
.form-small a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer {
  background: #f8f9f5;
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1.5fr auto;
  gap: 50px;
  align-items: start;
}
.footer-brand .brand {
  width: 220px;
}
.footer-brand > p {
  font-size: 11px;
  color: var(--body);
  margin: 15px 0 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10px;
  color: var(--body);
}
.footer-contact > strong {
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer-contact > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
}
.footer-contact > address {
  font-size: 10px;
  max-width: 420px;
  line-height: 1.8;
  margin-top: 4px;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  padding: 8px 0;
  white-space: nowrap;
}
.back-top .icon {
  width: 16px;
  height: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 27px 0 23px;
  margin-top: 10px;
  border-bottom: 1px solid var(--line);
}
.footer-nav a {
  font-size: 10px;
  padding: 5px 0;
}
.footer-nav a:hover {
  color: var(--teal);
}
.disclaimer {
  font-size: 9px;
  line-height: 1.9;
  color: #657268;
  margin: 22px 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 9px;
  color: #657268;
}
.mobile-call {
  display: none;
}
html:not(.js) .service-filters {
  display: none;
}
@media (min-width: 1600px) {
  .wrap {
    width: min(1320px, calc(100% - 120px));
  }
  .hero-layout {
    gap: 85px;
  }
  .hero-image-wrap {
    height: 600px;
  }
  .hero-description {
    max-width: 470px;
  }
  .hero-actions .primary {
    max-width: none;
  }
  .hero-orbit {
    right: -24px;
  }
  .hero-footnote {
    font-size: 11px;
  }
  .main-nav a {
    font-size: 13px;
  }
}
@media (max-width: 1250px) {
  .wrap {
    width: calc(100% - 70px);
  }
  .main-nav {
    gap: 16px;
  }
  .main-nav a {
    font-size: 11px;
  }
  .brand {
    width: 184px;
  }
  .header-inner {
    gap: 17px;
  }
  .header-call strong {
    font-size: 16px;
  }
  .header-call-icon {
    width: 30px;
    height: 30px;
  }
  .header-call small {
    font-size: 7px;
  }
  .hero-layout {
    gap: 36px;
  }
  .hero-image-wrap {
    height: 537px;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .primary {
    max-width: 193px;
  }
  .hero-actions .primary .button-phone {
    width: 100%;
    font-size: 11px;
  }
  .hero-actions .button {
    padding: 12px 18px;
  }
  .hero-actions .secondary {
    font-size: 12px;
  }
  .hero-footnote {
    gap: 12px;
    font-size: 9px;
  }
  .hero-brand {
    font-size: 13px;
  }
  .hero-orbit {
    width: 96px;
    height: 96px;
    right: -17px;
  }
  .value-grid > span,
  .value-grid > a {
    padding: 0 20px;
    column-gap: 7px;
  }
  .about-layout {
    gap: 50px;
  }
  .contact-layout {
    gap: 65px;
  }
  .detail-layout,
  .area-layout,
  .faq-layout {
    gap: 65px;
  }
  .contact-copy h2 {
    font-size: 48px;
  }
  .why-grid {
    gap: 25px;
  }
}
@media (max-width: 1060px) {
  .header-inner {
    min-height: 80px;
  }
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    font-size: 10px;
  }
  .header-call-icon {
    display: none;
  }
  .brand {
    width: 169px;
  }
  .header-inner {
    gap: 14px;
  }
  .header-call strong {
    font-size: 14px;
  }
  .header-call small {
    font-size: 6px;
  }
  .hero-layout {
    gap: 30px;
    padding-top: 49px;
    padding-bottom: 51px;
  }
  h1 {
    font-size: 65px;
    letter-spacing: -3.5px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
    gap: 9px;
  }
  .hero-image-wrap {
    height: 510px;
  }
  .comfort-card {
    left: -19px;
    padding: 16px 19px 16px 14px;
    gap: 10px;
  }
  .comfort-card strong {
    font-size: 15px;
  }
  .comfort-card span:not(.comfort-card-icon) {
    font-size: 9px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions .button {
    padding: 12px 13px;
  }
  .hero-actions .secondary {
    font-size: 11px;
  }
  .hero-footnote {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  .value-grid small {
    font-size: 9px;
  }
  .value-grid strong {
    font-size: 11px;
  }
  .value-grid > span,
  .value-grid > a {
    padding: 0 13px;
    column-gap: 5px;
  }
  .value-grid .icon {
    width: 23px;
    height: 23px;
  }
  h2 {
    font-size: 40px;
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    gap: 40px;
  }
  .section-intro {
    font-size: 12px;
    max-width: 280px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 11px;
  }
  .about-copy h2 {
    font-size: 34px;
  }
  .about-copy p:not(.eyebrow) {
    font-size: 12px;
  }
  .about-visual > img {
    height: 430px;
  }
  .about-layout {
    gap: 40px;
  }
  .why-card h3 {
    font-size: 18px;
  }
  .why-card p {
    font-size: 11px;
  }
  .why-section h2 {
    font-size: 40px;
  }
  .detail-layout,
  .area-layout,
  .faq-layout {
    gap: 45px;
  }
  .detail-intro h2,
  .area-copy h2 {
    font-size: 37px;
  }
  .service-detail summary h3 {
    font-size: 17px;
  }
  .faq-intro h2 {
    font-size: 47px;
  }
  .contact-layout {
    gap: 40px;
  }
  .contact-copy h2 {
    font-size: 44px;
  }
  .contact-phone {
    font-size: 27px;
  }
  .form-card {
    padding: 26px;
  }
  .form-heading h3 {
    font-size: 21px;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-brand .brand {
    width: 200px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .header-inner {
    gap: 20px;
    min-height: 77px;
  }
  .brand {
    width: 190px;
  }
  .header-call {
    margin-left: auto;
  }
  .header-call strong {
    font-size: 16px;
  }
  .header-call small {
    font-size: 8px;
  }
  .header-call-icon {
    display: grid;
    width: 34px;
    height: 34px;
  }
  .menu-toggle {
    display: flex;
    order: 3;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px 24px;
    box-shadow: 0 10px 20px #102e3610;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .main-nav a {
    font-size: 14px;
    padding: 12px 0;
  }
  .js .main-nav {
    display: none;
  }
  .js .main-nav.is-open {
    display: grid;
  }
  .hero-layout {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-image-wrap {
    height: 485px;
    border-top-right-radius: 95px;
  }
  h1 {
    font-size: 57px;
    letter-spacing: -3px;
  }
  .hero-copy > .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .short-line {
    width: 17px;
  }
  .hero-brand {
    font-size: 11px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 270px;
    gap: 8px;
  }
  .hero-actions .primary {
    max-width: none;
    min-height: 48px;
    flex-wrap: nowrap;
  }
  .hero-actions .primary .button-phone {
    width: auto;
  }
  .hero-actions .secondary {
    min-height: 44px;
    font-size: 11px;
  }
  .hero-actions .button {
    justify-content: center;
  }
  .hero-orbit {
    width: 80px;
    height: 80px;
    font-size: 7px;
    top: -18px;
    right: -13px;
    gap: 2px;
  }
  .hero-orbit .icon {
    width: 19px;
    height: 19px;
  }
  .comfort-card {
    left: -19px;
    right: 15px;
    bottom: 22px;
    padding: 14px;
    gap: 10px;
  }
  .comfort-card-icon {
    width: 33px;
    height: 33px;
  }
  .comfort-card-icon .icon {
    width: 20px;
    height: 20px;
  }
  .comfort-card strong {
    font-size: 13px;
  }
  .comfort-card span:not(.comfort-card-icon) {
    font-size: 8px;
  }
  .value-grid > span,
  .value-grid > a {
    grid-template-columns: 22px 1fr;
    column-gap: 7px;
    padding: 0 10px;
  }
  .value-grid .icon {
    width: 20px;
    height: 20px;
  }
  .value-grid strong {
    font-size: 10px;
  }
  .value-grid small {
    font-size: 8px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 30px;
  }
  .section-intro {
    max-width: 245px;
    font-size: 11px;
    padding-top: 37px;
  }
  h2 {
    font-size: 36px;
  }
  .service-card {
    padding: 23px 20px 18px;
  }
  .service-grid {
    gap: 13px;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card p {
    font-size: 11px;
  }
  .filter {
    padding: 8px 12px;
    font-size: 10px;
  }
  .service-filters {
    gap: 5px;
  }
  .urgent-link {
    font-size: 10px;
  }
  .about-layout {
    gap: 33px;
  }
  .about-copy h2 {
    font-size: 32px;
  }
  .about-copy p:not(.eyebrow) {
    font-size: 11px;
  }
  .about-visual > img {
    height: 430px;
  }
  .about-caption {
    font-size: 8px;
    left: 14px;
    right: 14px;
    padding: 12px 11px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
  .why-section h2 {
    font-size: 36px;
  }
  .why-section .section-intro {
    font-size: 11px;
    max-width: 235px;
  }
  .detail-layout {
    gap: 35px;
  }
  .detail-intro h2,
  .area-copy h2 {
    font-size: 32px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .detail-intro > p:not(.eyebrow) {
    font-size: 11px;
  }
  .help-note {
    padding: 19px;
    gap: 10px;
  }
  .help-note strong {
    font-size: 11px;
  }
  .help-note a {
    font-size: 18px;
  }
  .service-detail summary h3 {
    font-size: 15px;
  }
  .service-detail summary {
    gap: 11px;
    min-height: 66px;
  }
  .detail-copy {
    font-size: 11px;
    padding-left: 25px;
  }
  .area-layout {
    gap: 30px;
  }
  .area-copy > p:not(.eyebrow) {
    font-size: 11px;
  }
  .map-wrap {
    height: 335px;
  }
  .map-header {
    padding: 15px;
    font-size: 8px;
  }
  .map-footer {
    font-size: 8px;
    padding: 14px 14px 7px;
  }
  .map-fallback {
    padding: 0 14px;
    font-size: 8px;
  }
  .faq-layout {
    gap: 40px;
  }
  .faq-intro h2 {
    font-size: 43px;
  }
  .faq-intro > p:not(.eyebrow) {
    font-size: 12px;
  }
  .faq summary h3 {
    font-size: 12px;
  }
  .contact-layout {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-lead {
    font-size: 12px;
  }
  .contact-phone {
    font-size: 22px;
    gap: 9px;
  }
  .contact-phone .icon {
    width: 20px;
    height: 20px;
  }
  .contact-availability {
    margin-left: 29px;
    font-size: 9px;
  }
  .contact-copy > h3 {
    font-size: 11px;
  }
  .form-card {
    padding: 24px;
  }
  .form-heading {
    gap: 10px;
  }
  .form-heading h3 {
    font-size: 19px;
  }
  .form-heading .icon-box {
    width: 35px;
    height: 35px;
  }
  .form-heading p {
    font-size: 9px;
  }
  .consent-field label {
    font-size: 8px;
  }
  .footer-top {
    grid-template-columns: 0.9fr 1.4fr auto;
    gap: 24px;
  }
  .footer-brand .brand {
    width: 170px;
  }
  .footer-contact > strong {
    font-size: 10px;
  }
  .footer-contact {
    font-size: 9px;
  }
  .back-top {
    font-size: 9px;
  }
  .footer-contact > address {
    font-size: 9px;
  }
  .footer-brand > p {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 8px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 84px;
  }
  [id] {
    scroll-margin-top: 84px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .utility-inner {
    min-height: 30px;
    font-size: 8px;
  }
  .utility-inner > span {
    gap: 6px;
  }
  .utility-inner .icon {
    width: 11px;
    height: 11px;
  }
  .header-inner {
    min-height: 74px;
    gap: 12px;
  }
  .brand {
    width: 181px;
  }
  .header-call {
    margin-left: auto;
  }
  .header-call-icon {
    display: none;
  }
  .header-call small {
    font-size: 6px;
  }
  .header-call strong {
    font-size: 12px;
  }
  .menu-toggle {
    width: 37px;
    height: 37px;
    min-width: 37px;
  }
  .menu-toggle .icon {
    width: 20px;
    height: 20px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 41px;
    padding-bottom: 45px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
    margin-bottom: 24px;
  }
  h1 {
    font-size: clamp(54px, 10.5vw, 70px);
    line-height: 1.04;
    letter-spacing: -3.4px;
    margin-bottom: 22px;
  }
  .hero-brand {
    font-size: 13px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .hero-actions {
    flex-direction: row;
    max-width: none;
    gap: 10px;
  }
  .hero-actions .primary {
    font-size: 12px;
    flex-wrap: wrap;
    max-width: 230px;
    gap: 6px;
  }
  .hero-actions .primary .button-phone {
    font-size: 10px;
  }
  .hero-actions .secondary {
    font-size: 12px;
    padding: 13px 16px;
  }
  .hero-footnote {
    flex-direction: row;
    gap: 20px;
    margin-top: 22px;
    font-size: 9px;
    align-items: center;
  }
  .hero-visual {
    margin: 0 5px 0 0;
  }
  .hero-image-wrap {
    height: 420px;
    border-radius: 10px 100px 10px 10px;
  }
  .hero-image {
    object-position: 50% 62%;
  }
  .comfort-card {
    left: 15px;
    right: auto;
    padding: 15px 19px;
    bottom: 20px;
    gap: 12px;
  }
  .comfort-card-icon {
    width: 39px;
    height: 39px;
  }
  .comfort-card strong {
    font-size: 16px;
  }
  .comfort-card span:not(.comfort-card-icon) {
    font-size: 9px;
  }
  .hero-orbit {
    right: -12px;
    top: -17px;
    width: 91px;
    height: 91px;
    font-size: 8px;
  }
  .image-label {
    top: 19px;
    left: 18px;
    font-size: 7px;
    padding: 7px 10px;
  }
  .value-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .value-grid > span,
  .value-grid > a {
    padding: 21px 0 !important;
    grid-template-columns: 28px 1fr;
    column-gap: 9px;
  }
  .value-grid > :nth-child(2) {
    border-right: 0;
    padding-left: 22px !important;
  }
  .value-grid > :nth-child(3),
  .value-grid > :nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .value-grid > :nth-child(4) {
    padding-left: 22px !important;
  }
  .value-grid .icon {
    width: 23px;
    height: 23px;
  }
  .value-grid strong {
    font-size: 11px;
  }
  .value-grid small {
    font-size: 9px;
  }
  .section {
    padding: 62px 0;
  }
  .section-heading {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 27px;
  }
  .section-heading .eyebrow {
    margin-bottom: 16px;
  }
  .section-intro {
    padding: 0;
    max-width: 450px;
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
  }
  h2 {
    font-size: 36px;
    line-height: 1.14;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .service-toolbar {
    display: block;
    margin-bottom: 22px;
  }
  .service-filters {
    gap: 4px;
  }
  .filter {
    padding: 8px 11px;
    min-height: 39px;
    font-size: 10px;
    gap: 6px;
  }
  .filter .icon {
    width: 13px;
    height: 13px;
  }
  .filter > span {
    font-size: 8px;
  }
  .urgent-link {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .service-card {
    padding: 22px 19px;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .icon-box {
    width: 42px;
    height: 42px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.75;
  }
  .service-card .text-link {
    font-size: 11px;
  }
  .services-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding-top: 22px;
  }
  .services-bottom p {
    font-size: 11px;
  }
  .services-bottom .text-link {
    font-size: 11px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-visual > img {
    height: 350px;
    border-bottom-right-radius: 70px;
  }
  .about-caption {
    font-size: 10px;
    padding: 14px 16px;
    left: 18px;
    right: 18px;
  }
  .about-copy h2 {
    font-size: 36px;
  }
  .about-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.85;
  }
  .about-copy .text-link {
    font-size: 12px;
  }
  .why-section {
    padding: 60px 0;
  }
  .why-section .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }
  .why-section h2 {
    font-size: 36px;
  }
  .why-section .section-intro {
    font-size: 12px;
    max-width: 400px;
  }
  .why-grid {
    gap: 29px 24px;
  }
  .why-card {
    padding-top: 22px;
  }
  .why-card > .icon {
    margin-bottom: 20px;
  }
  .why-card h3 {
    font-size: 21px;
  }
  .why-card p {
    font-size: 12px;
  }
  .detail-layout,
  .area-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-intro h2,
  .area-copy h2 {
    font-size: 36px;
  }
  .detail-intro > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 470px;
  }
  .help-note {
    max-width: none;
    margin: 24px 0 15px;
    padding: 20px;
  }
  .help-note strong {
    font-size: 12px;
  }
  .help-note a {
    font-size: 20px;
  }
  .detail-intro p.small-note {
    max-width: 470px;
    font-size: 10px;
    margin-bottom: 0;
  }
  .service-detail summary {
    min-height: 69px;
    gap: 15px;
  }
  .service-detail summary h3 {
    font-size: 18px;
  }
  .detail-copy {
    font-size: 12px;
    padding-left: 29px;
  }
  .area-copy > p:not(.eyebrow) {
    max-width: 470px;
    font-size: 12px;
  }
  .coverage-list {
    margin: 23px 0;
  }
  .area-copy .area-note {
    max-width: 410px;
    font-size: 11px !important;
  }
  .map-wrap {
    height: 310px;
  }
  .map-header {
    padding: 17px 18px;
    font-size: 9px;
  }
  .map-footer {
    font-size: 10px;
    padding: 14px 18px 7px;
  }
  .map-fallback {
    font-size: 9px;
    padding: 0 18px;
  }
  .faq-intro h2 {
    font-size: 44px;
  }
  .faq-intro > p:not(.eyebrow) {
    max-width: 420px;
    margin-bottom: 0;
  }
  .faq-callout {
    display: none;
  }
  .faq summary {
    min-height: 73px;
    padding: 20px 0;
  }
  .faq summary h3 {
    font-size: 13px;
  }
  .faq-answer {
    font-size: 12px;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-layout {
    gap: 34px;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact-copy h2 {
    font-size: 46px;
  }
  .contact-lead {
    font-size: 13px;
    max-width: 400px;
  }
  .contact-phone {
    font-size: 31px;
    gap: 13px;
  }
  .contact-phone .icon {
    width: 24px;
    height: 24px;
  }
  .contact-availability {
    margin-left: 37px;
    font-size: 10px;
  }
  .contact-divider {
    max-width: none;
    margin: 30px 0 25px;
  }
  .contact-copy > h3 {
    font-size: 13px;
  }
  .full-address {
    font-size: 12px;
    max-width: 430px;
  }
  .address-note {
    font-size: 10px;
    max-width: 440px;
    margin-bottom: 0;
  }
  .form-card {
    padding: 27px 24px;
  }
  .form-heading h3 {
    font-size: 23px;
  }
  .form-heading p {
    font-size: 11px;
  }
  .form-heading .icon-box {
    width: 41px;
    height: 41px;
  }
  .form-heading {
    gap: 13px;
  }
  .field > label {
    font-size: 12px;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    font-size: 16px;
    padding: 12px;
    min-height: 46px;
  }
  .field {
    margin-bottom: 17px;
  }
  .consent-field label {
    font-size: 10px;
  }
  .consent-field input {
    width: 19px;
    height: 19px;
    min-width: 19px;
  }
  .form-notice {
    font-size: 11px;
    padding: 11px 12px;
  }
  .form-small {
    font-size: 10px;
  }
  .form-status {
    font-size: 12px;
  }
  .field-error {
    font-size: 11px;
  }
  .submit-button {
    min-height: 53px;
    font-size: 13px;
  }
  .site-footer {
    padding: 38px 0 95px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand .brand {
    width: 210px;
  }
  .footer-brand > p {
    font-size: 11px;
    margin-top: 10px;
  }
  .footer-contact > strong {
    font-size: 12px;
  }
  .footer-contact {
    font-size: 11px;
    gap: 5px;
  }
  .footer-contact > address {
    font-size: 10px;
  }
  .back-top {
    font-size: 11px;
    justify-self: start;
  }
  .footer-nav {
    gap: 14px 25px;
    padding-top: 15px;
    margin-top: 2px;
  }
  .footer-nav a {
    font-size: 11px;
    min-height: 32px;
  }
  .disclaimer {
    font-size: 10px;
    line-height: 1.9;
  }
  .footer-bottom {
    font-size: 9px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-call {
    position: fixed;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 12px;
    background: var(--teal-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-height: 52px;
    border: 1px solid #ffffff2f;
    box-shadow: 0 6px 24px #102e363d;
    border-radius: 8px;
    transition:
      transform 180ms var(--ease),
      opacity 180ms var(--ease);
  }
  .mobile-call .icon {
    width: 18px;
    height: 18px;
  }
  .mobile-call .icon:last-child {
    margin-left: auto;
  }
  .mobile-call .icon:first-child {
    margin-right: auto;
  }
  .mobile-call.is-hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
  }
  .contact-section {
    padding-bottom: 82px;
  }
  html:not(.js) .main-nav {
    position: static;
    grid-column: 1/-1;
    box-shadow: none;
    padding: 10px 0;
    width: 100%;
  }
  html:not(.js) .header-inner {
    flex-wrap: wrap;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
}
@media (max-width: 430px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .utility-inner {
    font-size: 7px;
  }
  .utility-inner > span {
    gap: 5px;
  }
  .header-inner {
    min-height: 70px;
    gap: 10px;
  }
  .brand {
    width: 172px;
  }
  .header-call {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .hero-layout {
    padding-top: 34px;
    gap: 32px;
  }
  .hero-copy > .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
    gap: 9px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-brand {
    font-size: 12px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .primary {
    max-width: none;
    flex-direction: row;
    font-size: 11px;
    padding: 11px 13px;
    flex: 1;
  }
  .hero-actions .primary .button-phone {
    width: 100%;
    font-size: 10px;
  }
  .hero-actions .primary > .icon {
    width: 13px;
    height: 13px;
  }
  .hero-actions .secondary {
    font-size: 11px;
    padding: 12px;
    gap: 7px;
  }
  .hero-actions .secondary .icon {
    width: 16px;
    height: 16px;
  }
  .hero-footnote {
    font-size: 8px;
    gap: 12px;
    justify-content: space-between;
  }
  .hero-image-wrap {
    height: 375px;
    border-top-right-radius: 90px;
  }
  .hero-orbit {
    width: 82px;
    height: 82px;
    font-size: 7px;
  }
  .comfort-card {
    left: 12px;
    right: 12px;
    padding: 14px;
    gap: 10px;
  }
  .comfort-card strong {
    font-size: 15px;
  }
  .comfort-card span:not(.comfort-card-icon) {
    font-size: 9px;
  }
  .value-grid strong {
    font-size: 10px;
  }
  .value-grid small {
    font-size: 8px;
  }
  .value-grid > :nth-child(2),
  .value-grid > :nth-child(4) {
    padding-left: 14px !important;
  }
  .value-grid > span,
  .value-grid > a {
    grid-template-columns: 23px 1fr;
    gap: 0 7px;
  }
  .value-grid .icon {
    width: 21px;
    height: 21px;
  }
  .section {
    padding: 54px 0;
  }
  .service-filters {
    gap: 4px;
  }
  .filter {
    padding: 8px 9px;
    font-size: 9px;
    gap: 5px;
    min-height: 39px;
  }
  .filter .icon {
    width: 12px;
    height: 12px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .card-top {
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card p {
    font-size: 13px;
    line-height: 1.8;
    max-width: none;
  }
  .service-card .text-link {
    font-size: 12px;
  }
  .service-number {
    font-size: 12px;
  }
  .services-bottom p {
    font-size: 11px;
  }
  .about-visual > img {
    height: 295px;
  }
  .about-caption {
    font-size: 8px;
    left: 13px;
    right: 13px;
    bottom: 18px;
    padding: 13px 12px;
    gap: 8px;
  }
  h2,
  .about-copy h2,
  .why-section h2,
  .detail-intro h2,
  .area-copy h2 {
    font-size: 32px;
  }
  .about-copy p:not(.eyebrow) {
    font-size: 12px;
  }
  .why-grid {
    gap: 25px 19px;
  }
  .why-card h3 {
    font-size: 19px;
  }
  .why-card p {
    font-size: 11px;
  }
  .map-header {
    font-size: 8px;
    padding: 15px;
  }
  .map-header > span:last-child {
    font-size: 9px;
  }
  .map-footer {
    font-size: 9px;
    padding: 14px 14px 7px;
    gap: 6px;
  }
  .map-fallback {
    padding: 0 14px;
    font-size: 8px;
  }
  .map-wrap {
    height: 300px;
  }
  .faq summary h3 {
    font-size: 12px;
  }
  .faq-intro h2 {
    font-size: 42px;
  }
  .contact-copy h2 {
    font-size: 43px;
  }
  .contact-phone {
    font-size: 28px;
  }
  .contact-copy > h3 {
    font-size: 12px;
  }
  .form-card {
    padding: 24px 19px;
  }
  .form-heading h3 {
    font-size: 21px;
  }
  .form-heading p {
    font-size: 10px;
  }
  .form-heading .icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .form-heading {
    gap: 10px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .consent-field label {
    font-size: 10px;
  }
  .form-small {
    font-size: 9px;
  }
  .footer-nav {
    gap: 10px 20px;
  }
  .footer-bottom {
    font-size: 8px;
  }
  .mobile-call {
    font-size: 11px;
    left: 12px;
    right: 12px;
    gap: 7px;
  }
}
@media (max-width: 350px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .utility-inner {
    font-size: 6px;
    letter-spacing: 0;
  }
  .brand {
    width: 166px;
  }
  h1 {
    font-size: 50px;
    letter-spacing: -2.8px;
  }
  .hero-copy > .eyebrow {
    font-size: 6px;
    letter-spacing: 0.9px;
  }
  .hero-brand {
    font-size: 11px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-footnote {
    font-size: 7px;
    gap: 8px;
  }
  .hero-image-wrap {
    height: 325px;
  }
  .comfort-card {
    padding: 12px;
    gap: 8px;
  }
  .comfort-card strong {
    font-size: 13px;
  }
  .comfort-card span:not(.comfort-card-icon) {
    font-size: 8px;
  }
  .filter {
    padding: 8px 7px;
    font-size: 8px;
    gap: 4px;
  }
  .filter .icon {
    width: 11px;
    height: 11px;
  }
  .value-grid strong {
    font-size: 9px;
  }
  .value-grid small {
    font-size: 7px;
  }
  .value-grid > :nth-child(2),
  .value-grid > :nth-child(4) {
    padding-left: 10px !important;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card h3 {
    font-size: 22px;
  }
  .why-card p {
    font-size: 12px;
  }
  .form-heading h3 {
    font-size: 18px;
  }
  .form-heading p {
    font-size: 9px;
  }
  .form-heading .icon-box {
    display: none;
  }
  .contact-phone {
    font-size: 26px;
  }
  .contact-copy h2 {
    font-size: 40px;
  }
  .mobile-call {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .service-card:hover,
  .text-link:hover .icon {
    transform: none;
  }
}
@media print {
  .site-header,
  .utility-bar,
  .mobile-call,
  .hero-visual,
  .service-toolbar,
  .map-card,
  .form-card,
  .back-top {
    display: none !important;
  }
  .wrap {
    width: 100%;
  }
  .section,
  .why-section,
  .contact-section {
    padding: 24px 0;
  }
  body,
  .why-section,
  .contact-section {
    background: #fff;
    color: #000;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  .hero-layout,
  .about-layout,
  .detail-layout,
  .area-layout,
  .faq-layout,
  .contact-layout {
    display: block;
  }
  .service-card {
    break-inside: avoid;
  }
  .why-card p,
  .contact-lead,
  .contact-copy p {
    color: #333;
  }
  .site-footer {
    padding-bottom: 0;
  }
}

/* Keep the wrapped phone line centered within compact call buttons. */
.button-phone {
  text-align: center;
}

/* Small numbering remains readable at WCAG AA contrast on white and off-white. */
.service-number,
.detail-num {
  color: #5f7267;
}

/* User-supplied photo update: each photograph has one DOM placement only.
   Preserve the complete square composition instead of cropping source photos. */
.hero-visual.user-photo .hero-image-wrap {
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px 64px 12px 12px;
}
.hero-visual.user-photo .hero-image {
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.hero-visual.user-photo .comfort-card {
  bottom: -18px;
  left: 20px;
}
.about-visual.user-photo > img {
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
}
.about-visual.user-photo .about-caption {
  position: static;
  margin-top: 12px;
  background: transparent;
  box-shadow: none;
  padding: 5px 0;
}
.photo-section {
  padding: 68px 0 86px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.photo-section .section-intro a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 20px;
}
.hvac-photo {
  min-width: 0;
  margin: 0;
}
.hvac-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 9px;
  background: var(--paper);
}
.hvac-photo figcaption {
  padding: 12px 1px 0;
  color: var(--body);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}
.footer-wordmark > span {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.footer-wordmark > small {
  display: block;
  color: var(--teal-dark);
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: 8px;
}
@media (max-width: 1060px) {
  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-wordmark > span {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .hero-visual.user-photo .comfort-card {
    left: 12px;
    right: 12px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-section {
    padding: 58px 0 66px;
  }
}
@media (max-width: 700px) {
  .hero-visual.user-photo {
    margin-bottom: 16px;
  }
  .hero-visual.user-photo .hero-image-wrap {
    border-top-right-radius: 44px;
  }
  .photo-section {
    padding: 54px 0;
  }
  .photo-grid {
    gap: 22px 14px;
  }
  .hvac-photo figcaption {
    font-size: 10px;
    padding-top: 10px;
  }
  .about-visual.user-photo .about-caption {
    font-size: 10px;
  }
}
@media (max-width: 350px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .hvac-photo figcaption {
    font-size: 12px;
  }
}
