/* ELITE BREEZE — portable, mobile-first stylesheet. No framework required. */
:root {
  --ink: #173d3b;
  --ink-deep: #102d2c;
  --teal: #30675e;
  --muted: #5c6b68;
  --mint: #edf3ef;
  --mint-dark: #dce9e1;
  --orange: #fb854f;
  --orange-hover: #ff9b6b;
  --paper: #fafbf8;
  --white: #fff;
  --border: #dce3de;
  --radius-sm: 8px;
  --radius-md: 16px;
  --shadow-soft: 0 12px 36px #16382e0d;
  --container-width: 1240px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 750;
  line-height: 1.2;
}
h2 {
  font-size: clamp(30px, 3.4vw, 43px);
  letter-spacing: -1.7px;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
}
p {
  color: var(--muted);
}
address {
  font-style: normal;
}
.wrap {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 68px 0;
}
section[id],
details[id] {
  scroll-margin-top: 115px;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.eyebrow {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.8px;
  line-height: 1.5;
  color: var(--teal);
  margin-bottom: 20px;
}
.short-line {
  width: 25px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  transition:
    background 0.18s var(--ease-out),
    transform 0.16s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn:active,
button:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--orange);
  color: var(--ink-deep);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 5px 15px #fb854f29;
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover {
  background: #24544e;
}
.btn-outline {
  border-color: #acbeb5;
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover {
  background: #ffffff9e;
  border-color: var(--teal);
}
.btn-light {
  border-color: #5b7873;
  color: white;
  background: transparent;
}
.btn-light:hover {
  background: #ffffff0d;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 44px;
}
.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.18s var(--ease-out);
}
.text-link:hover {
  color: #287065;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #92cfaf;
  border-radius: 100%;
  flex-shrink: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #be4c13;
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  background: white;
  padding: 12px 20px;
  color: var(--ink);
  z-index: 500;
  border-radius: 6px;
}
.skip-link:focus {
  top: 12px;
}
/* Header */
.utility {
  background: var(--ink);
  color: #e8f0e9;
  font-size: 11px;
  padding: 9px 0;
}
.utility .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.utility .wrap > span,
.utility .wrap > a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.utility .wrap > span:first-child,
.utility .wrap > a {
  display: none;
}
.utility .icon {
  width: 13px;
  height: 13px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5eae6;
}
.header-inner {
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  width: 178px;
  flex-shrink: 0;
}
.brand img {
  width: 178px;
  height: auto;
}
.header-inner > .btn {
  display: none;
}
.menu-toggle {
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--paper);
}
#main-nav {
  display: none;
  position: absolute;
  top: 83px;
  left: 0;
  right: 0;
  padding: 14px 20px 22px;
  background: white;
  box-shadow: 0 14px 22px #173d3b12;
  border-top: 1px solid var(--border);
}
#main-nav.open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}
#main-nav a {
  font-size: 14px;
  padding: 12px 5px;
  font-weight: 550;
}
#main-nav a:hover,
#main-nav a.active {
  color: var(--teal);
}
#main-nav a.active {
  box-shadow: inset 0 -2px var(--teal);
}
/* Hero */
.hero {
  background: var(--mint);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-grid {
  padding-top: 45px;
  padding-bottom: 52px;
  display: grid;
  gap: 36px;
}
.hero-arc {
  position: absolute;
  z-index: -1;
  border: 1px solid #cfded549;
  border-radius: 100%;
  width: 880px;
  height: 880px;
  left: -400px;
  top: 180px;
}
.hero-arc::after {
  content: "";
  inset: 65px;
  border: 1px solid #cfded560;
  border-radius: 100%;
  position: absolute;
}
.hero-copy {
  position: relative;
}
.hero-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 23px;
  letter-spacing: 1.4px;
}
h1 {
  font-size: clamp(36px, 5.1vw, 65px);
  letter-spacing: -1.7px;
  line-height: 1.14;
  font-weight: 800;
}
h1 span {
  color: #397466;
}
.hero-lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
}
.hero-description {
  font-size: 15px;
  max-width: 440px;
  line-height: 1.8;
  margin-top: 10px;
}
.hero-copy .button-row {
  margin-top: 26px;
}
.hero-copy .btn {
  font-size: 12px;
  padding-inline: 14px;
  min-height: 50px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  margin-top: 22px;
  color: #52695e;
}
.check-round {
  width: 17px;
  height: 17px;
  border-radius: 100%;
  border: 1px solid #74a28b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-round .icon {
  width: 11px;
  height: 11px;
}
.note-divider {
  height: 11px;
  width: 1px;
  background: #bacbbf;
  margin-inline: 3px;
}
.explore-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 600;
  padding-block: 7px;
}
.explore-link .icon {
  width: 14px;
  height: 14px;
}
.hero-visual {
  position: relative;
  min-width: 0;
  margin-bottom: 10px;
}
.hero-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: 52% center;
  border-radius: 14px;
}
.availability {
  position: absolute;
  top: 17px;
  left: 17px;
  background: #ffffffed;
  border-radius: 5px;
  box-shadow: 0 3px 15px #00000006;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1px;
  padding: 10px 12px;
}
.availability .status-dot {
  background: #4c9671;
  width: 6px;
  height: 6px;
}
.visual-corner {
  position: absolute;
  right: 17px;
  top: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: #ffffffed;
  border-radius: 5px;
  padding: 10px;
}
.visual-corner .icon {
  width: 14px;
  height: 14px;
}
.tiny-divider {
  height: 12px;
  width: 1px;
  background: #cbd8cf;
}
.comfort-card {
  position: absolute;
  bottom: -13px;
  left: 15px;
  right: 15px;
  background: #fff;
  border: 1px solid #e8eee8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px;
  box-shadow: 0 9px 30px #183a3012;
}
.comfort-icon {
  background: var(--mint);
  border-radius: 7px;
  padding: 12px;
  color: var(--teal);
  display: flex;
}
.comfort-icon .icon {
  width: 22px;
  height: 22px;
}
.comfort-card strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.2px;
}
.comfort-card div > span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}
.comfort-arrow {
  margin-left: auto;
  display: none;
}
.comfort-arrow .icon {
  width: 18px;
}
.image-caption {
  position: absolute;
  bottom: 90px;
  right: 12px;
  color: #fff;
  font-size: 8px;
  padding: 3px 6px;
  border-radius: 3px;
  background: #102d2cb3;
}
/* Value row */
.value-strip {
  background: white;
  border-bottom: 1px solid var(--border);
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 15px;
  padding-block: 29px;
}
.values > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.values > div > .icon {
  width: 24px;
  height: 24px;
  color: var(--teal);
}
.values strong {
  font-size: 11px;
  display: block;
  font-weight: 650;
}
.values small {
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
/* Services */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.section-head .eyebrow {
  margin-bottom: 13px;
}
.section-head > p {
  font-size: 14px;
  line-height: 1.8;
}
.desktop-break {
  display: none;
}
.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 100px;
  padding: 9px 14px;
  min-height: 42px;
  font-size: 12px;
  font-weight: 550;
  transition: background 0.18s var(--ease-out);
}
.filter.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.filter:not(.active):hover {
  background: var(--mint);
}
.filter span {
  font-size: 9px;
  background: #ffffff20;
  border-radius: 20px;
  padding: 2px 5px;
  margin-left: 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: #98b0a2;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 21px;
}
.icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf3ef;
  color: #367768;
}
.icon-tile.cooling {
  background: #edf4f4;
  color: #3c7c81;
}
.icon-tile.heating,
.icon-tile.urgent {
  background: #fdf0e7;
  color: #b7622e;
}
.service-no {
  font-family: Manrope, sans-serif;
  font-size: 10px;
  color: #829189;
}
.service-card h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.8;
  margin: 12px 0 16px;
  max-width: 330px;
}
.service-card .text-link {
  margin-top: auto;
  font-size: 12px;
}
.service-help {
  background: var(--mint-dark);
  border: 1px solid #ccdccf;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-help::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid #bdcfc2;
  pointer-events: none;
}
.service-help .icon-tile {
  background: #ffffff75;
}
.service-help h3 {
  font-size: 26px;
  margin: 20px 0 12px;
  letter-spacing: -1px;
}
.service-help p {
  font-size: 13px;
  color: #4e675b;
  margin-bottom: 14px;
}
.service-help .text-link {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.service-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 21px;
}
.service-bottom > span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.service-bottom .icon {
  width: 16px;
  height: 16px;
}
/* About */
.about-section {
  background: white;
}
.about-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual > img {
  width: 100%;
  aspect-ratio: 1.13;
  object-fit: cover;
  border-radius: 12px;
}
.about-image-label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 17px 21px;
  background: var(--ink);
  color: white;
  border-radius: 7px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 650;
}
.about-image-label .icon {
  width: 29px;
  height: 29px;
  color: #b6d9c3;
}
.about-copy .eyebrow {
  margin-bottom: 15px;
}
.section-lead {
  color: var(--ink);
  font-size: 19px;
  font-weight: 550;
  line-height: 1.6;
  margin-top: 21px;
  margin-bottom: 18px;
}
.about-copy > p:not(.section-lead) {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 15px;
}
.about-copy .text-link {
  margin-top: 16px;
}
/* Why */
.why-section {
  background: #f0f4ef;
}
.why-grid {
  display: grid;
  gap: 38px;
}
.why-grid > div > p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 23px;
}
.why-grid > div > .text-link {
  margin-top: 17px;
}
.reasons {
  display: grid;
  gap: 26px;
}
.reason {
  display: flex;
  gap: 16px;
}
.reason-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #d7e2d7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #366a59;
}
.reason h3 {
  font-size: 16px;
  letter-spacing: -0.4px;
}
.reason p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 8px;
  max-width: 260px;
}
/* Availability and steps */
.emergency-section {
  background: var(--ink);
  color: white;
  padding: 45px 0;
}
.emergency-inner {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.emergency-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #66887b;
  border-radius: 50%;
  flex-shrink: 0;
  color: #a3d1b5;
}
.emergency-icon .icon {
  width: 32px;
  height: 32px;
}
.emergency-inner .eyebrow {
  color: #b6d0be;
  font-size: 9px;
  margin-bottom: 12px;
}
.emergency-inner h2 {
  font-size: clamp(27px, 2.6vw, 34px);
  letter-spacing: -1px;
}
.emergency-inner p {
  color: #c0d0c5;
  font-size: 12px;
  margin-top: 15px;
  max-width: 470px;
}
.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.process-grid {
  display: grid;
  gap: 30px;
  margin-top: 35px;
}
.step-number {
  font-family: Manrope, sans-serif;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4d8c9;
  background: #eaf1e9;
  font-size: 13px;
  font-weight: 650;
  border-radius: 50%;
  margin-bottom: 20px;
}
.process-step h3 {
  font-size: 17px;
}
.process-step p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 12px;
  max-width: 250px;
}
/* Service details */
.detail-section {
  background: #f0f4ef;
}
.detail-grid {
  display: grid;
  gap: 30px;
}
.detail-intro > p {
  font-size: 14px;
  max-width: 345px;
  margin-top: 22px;
}
.detail-intro > .text-link {
  margin-top: 15px;
}
.safety-note {
  display: flex;
  gap: 12px;
  max-width: 345px;
  border-top: 1px solid #cedbce;
  padding-top: 24px;
  margin-top: 30px;
}
.safety-note > .icon {
  width: 20px;
  margin-top: 3px;
}
.safety-note p {
  font-size: 11px;
  line-height: 1.8;
}
.safety-note strong {
  color: var(--ink);
}
details > summary {
  list-style: none;
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none;
}
.service-detail {
  border-bottom: 1px solid #cddcce;
}
.service-detail:first-child {
  border-top: 1px solid #cddcce;
}
.service-detail > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 650;
  min-height: 65px;
}
.detail-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}
.detail-heading .icon {
  color: var(--teal);
  width: 19px;
  height: 19px;
}
.expand-icon {
  width: 17px;
  height: 17px;
  transition: transform 0.18s var(--ease-out);
}
details[open] > summary > .expand-icon {
  transform: rotate(45deg);
}
.detail-body {
  padding: 0 10px 23px 35px;
}
.detail-body h3 {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.detail-body p {
  font-size: 13px;
  line-height: 1.85;
}
.detail-body .text-link {
  font-size: 12px;
  margin-top: 14px;
}
.service-detail:target {
  background: #ffffff60;
}
/* Service area */
.area-section {
  background: white;
}
.area-grid {
  display: grid;
  gap: 35px;
  align-items: center;
}
.area-copy > p:not(.section-lead) {
  font-size: 14px;
  line-height: 1.9;
  max-width: 385px;
}
.address-box {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.address-box > .icon {
  color: var(--teal);
  margin-top: 3px;
}
.address-box strong {
  font-size: 12px;
}
.address-box address {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.9;
}
.address-box small {
  display: block;
  font-size: 10px;
  max-width: 280px;
  color: var(--muted);
  margin-top: 9px;
}
.area-copy .btn {
  font-size: 13px;
}
.map-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}
.map-toolbar {
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  font-size: 9px;
  gap: 10px;
}
.map-toolbar > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 600;
}
.map-toolbar .icon {
  width: 13px;
  height: 13px;
}
.map-toolbar > span:last-child {
  color: #d5e1d8;
  font-size: 9px;
}
.map-stage {
  height: 310px;
  background: #e6eee6;
  position: relative;
}
.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    repeating-linear-gradient(
      28deg,
      transparent,
      transparent 80px,
      #ffffff6b 81px,
      #ffffff6b 86px,
      transparent 87px
    ),
    repeating-linear-gradient(
      118deg,
      transparent,
      transparent 75px,
      #ffffff60 76px,
      #ffffff60 81px,
      transparent 82px
    );
}
.map-pin-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px #213e2910;
  margin-bottom: 12px;
}
.map-pin-large > .icon {
  width: 22px;
  height: 22px;
}
.map-placeholder h3 {
  font-size: 24px;
  letter-spacing: -1px;
}
.map-placeholder p {
  font-size: 11px;
  margin-top: 8px;
}
.map-placeholder .btn {
  min-height: 40px;
  font-size: 11px;
  padding: 11px 15px;
  margin-top: 16px;
}
.map-placeholder small {
  font-size: 9px;
  margin-top: 8px;
  color: #425a4e;
}
.map-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 13px 14px 0;
}
.map-options button {
  font-size: 10px;
  border: 1px solid #d5dfd5;
  border-radius: 4px;
  padding: 9px 8px;
  background: white;
  min-height: 36px;
}
.map-options button.selected {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.map-description {
  font-size: 10px;
  padding: 10px 16px 0;
  line-height: 1.7;
}
.map-fallback {
  font-size: 10px;
  padding: 8px 16px 14px;
}
.map-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}
.map-fallback .icon {
  width: 11px;
  height: 11px;
}
.area-note {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  text-align: center;
}
.area-note a {
  font-weight: 650;
  text-decoration: underline;
  color: var(--ink);
}
/* Frequently asked questions */
.faq-section {
  background: var(--paper);
}
.faq-grid {
  display: grid;
  gap: 35px;
}
.faq-intro h2 {
  font-size: clamp(30px, 2.8vw, 37px);
}
.faq-intro > p {
  font-size: 13px;
  line-height: 1.9;
  margin: 22px 0;
}
.faq-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
  max-width: 340px;
}
.faq-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  min-height: 38px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.faq-index .icon {
  width: 11px;
  height: 11px;
}
.faq-index a:hover {
  text-decoration: underline;
}
.more-questions {
  margin-top: 28px;
  font-size: 12px;
}
.more-questions > strong {
  display: block;
}
.more-questions > .text-link {
  font-size: 11px;
  min-height: 35px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item > summary {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 74px;
  padding: 23px 0;
  font-family: Manrope, sans-serif;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.7;
}
.faq-number {
  font-size: 10px;
  line-height: 2.3;
  color: #718878;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
.faq-item summary > span:nth-child(2) {
  flex: 1;
}
.faq-item summary > .icon {
  margin-top: 4px;
}
.faq-answer {
  padding: 0 25px 23px 30px;
}
.faq-answer p {
  font-size: 12px;
  line-height: 1.9;
}
.faq-item:target {
  background: #edf3e9;
}
/* Request form */
.contact-section {
  background: #e9f0ea;
}
.contact-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}
.contact-copy > p {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 22px;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: Manrope, sans-serif;
  font-size: 27px;
  letter-spacing: -1px;
  font-weight: 750;
  margin-top: 28px;
}
.contact-phone > .icon {
  width: 22px;
  height: 22px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  font-size: 12px;
}
.contact-detail > .icon {
  width: 19px;
  height: 19px;
  color: #4a745e;
  margin-top: 3px;
}
.contact-detail strong {
  font-size: 12px;
  font-weight: 650;
  display: block;
}
.contact-detail span,
.contact-detail address {
  display: block;
  font-size: 12px;
  color: #556c5b;
  margin-top: 3px;
  line-height: 1.8;
}
.contact-tip {
  border-top: 1px solid #c7d8c7;
  margin-top: 32px;
  padding-top: 23px;
  display: flex;
  gap: 13px;
  max-width: 360px;
}
.contact-tip > .icon {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}
.contact-tip p {
  font-size: 11px;
  line-height: 1.9;
}
.contact-tip strong {
  color: var(--ink);
}
.form-card {
  background: white;
  border: 1px solid #dbe6dc;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 30px #173d3b04;
}
.form-card-heading h3 {
  font-size: 19px;
}
.form-card-heading > span {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 7px;
}
.form-notice {
  padding: 12px 14px;
  background: #f5f5ee;
  border-radius: 5px;
  font-size: 10px;
  line-height: 1.75;
  color: #596151;
  border: 1px solid #e9e9db;
  margin-top: 18px;
}
.form-notice strong {
  font-weight: 700;
}
.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field label span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d9e0d9;
  border-radius: 5px;
  padding: 12px 13px;
  font-size: 13px;
  background: #fcfdfb;
  color: var(--ink);
  line-height: 1.5;
  min-height: 45px;
  transition: border-color 0.18s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7c867d;
  opacity: 1;
}
.field textarea {
  resize: vertical;
  min-height: 115px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid #9fc3ab;
  outline-offset: 1px;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b34124;
}
.field-error {
  display: block;
  color: #a33219;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 5px;
}
.field-error:empty {
  margin: 0;
}
.consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 21px;
}
.consent-field input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin: 2px 0 0;
  accent-color: var(--teal);
  cursor: pointer;
}
.consent-field label {
  font-size: 9px;
  color: #59665b;
  line-height: 1.8;
  cursor: pointer;
}
.submit-btn {
  width: 100%;
  margin-top: 20px;
  font-size: 13px;
  justify-content: space-between;
  padding-inline: 20px;
}
.form-footnote {
  font-size: 10px;
  margin-top: 14px;
  text-align: center;
}
.form-footnote a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
}
.form-status {
  font-size: 12px;
  line-height: 1.7;
  padding: 15px;
  margin-top: 17px;
  background: #edf4ee;
  border: 1px solid #9cbea5;
  border-radius: 6px;
  color: #254b35;
  overflow-wrap: anywhere;
}
.form-status.error {
  background: #fff2ee;
  border-color: #d99c8d;
  color: #8c301e;
}
.form-status strong {
  display: block;
  margin-bottom: 6px;
}
.form-status a {
  font-weight: 700;
  text-decoration: underline;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
/* Final CTA and footer */
.final-cta {
  background: var(--paper);
  padding: 52px 0;
}
.final-cta > .wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.final-cta .eyebrow {
  font-size: 9px;
  margin-bottom: 13px;
}
.final-cta h2 {
  font-size: 29px;
  letter-spacing: -1px;
}
.final-cta p {
  font-size: 12px;
  margin-top: 12px;
}
.final-cta .btn {
  font-size: 12px;
}
.site-footer {
  background: var(--ink-deep);
  color: #e7eee8;
  padding: 48px 0 100px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 18px;
  padding-bottom: 35px;
}
.footer-brand {
  grid-column: 1/-1;
}
.footer-brand img {
  width: 194px;
  background: #f9fcf8;
  padding: 8px 12px;
  border-radius: 5px;
}
.footer-brand p {
  font-size: 11px;
  color: #b3c8bc;
  line-height: 1.8;
  margin-top: 17px;
}
.footer-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  margin-top: 15px;
}
.footer-links h3,
.footer-contact h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 650;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-links a {
  font-size: 11px;
  color: #b3c8bc;
  min-height: 34px;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: white;
  text-decoration: underline;
}
.footer-contact {
  grid-column: 1/-1;
}
.footer-phone {
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.5px;
}
.footer-contact address {
  font-size: 11px;
  color: #b3c8bc;
  line-height: 1.9;
  margin-top: 12px;
}
.footer-contact p {
  font-size: 11px;
  color: #b3c8bc;
  margin-top: 9px;
}
.footer-bottom {
  border-top: 1px solid #3b5550;
  padding-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: #acc1b5;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 35px;
}
.footer-bottom .icon {
  width: 13px;
  height: 13px;
}
.disclaimer {
  font-size: 9px;
  color: #a7bdb1;
  line-height: 1.85;
  border-top: 1px solid #2e4841;
  padding-top: 19px;
  margin-top: 20px;
  max-width: 1170px;
}
.mobile-call {
  position: fixed;
  z-index: 90;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 20px;
  right: 20px;
  min-height: 52px;
  padding: 10px 17px;
  background: var(--orange);
  box-shadow: 0 5px 22px #102d2c30;
  border: 1px solid #fff7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}
.mobile-call > span {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.mobile-call small {
  font-size: 10px;
  font-weight: 500;
}
.mobile-call > .icon {
  width: 18px;
  height: 18px;
}
body.form-in-view .mobile-call {
  display: none;
}
@media (min-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-help {
    grid-column: span 2;
  }
  .hero-image {
    height: 420px;
  }
  .hero-copy .btn {
    font-size: 13px;
    padding-inline: 19px;
  }
  .comfort-card strong {
    font-size: 14px;
  }
  .comfort-card div > span {
    font-size: 11px;
  }
  .comfort-arrow {
    display: block;
  }
  .comfort-card {
    left: 25px;
    right: 25px;
    padding: 20px;
  }
  .values strong {
    font-size: 12px;
  }
  .values small {
    font-size: 10px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reasons {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field.full {
    grid-column: 1/-1;
  }
  .form-card {
    padding: 30px;
  }
  .contact-phone {
    font-size: 32px;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-brand {
    grid-column: auto;
  }
  .utility .wrap > span:first-child {
    display: flex;
  }
  .utility .wrap {
    justify-content: space-between;
  }
  .hero-note {
    font-size: 11px;
  }
}
@media (min-width: 768px) {
  .wrap {
    width: min(var(--container-width), calc(100% - 64px));
  }
  .section {
    padding: 85px 0;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: center;
    padding-top: 58px;
    padding-bottom: 67px;
  }
  .hero-image {
    height: 480px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-description {
    font-size: 13px;
  }
  h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }
  .hero-copy .button-row {
    gap: 8px;
  }
  .hero-copy .btn {
    font-size: 11px;
    padding: 12px;
    min-height: 45px;
  }
  .hero-copy .btn .icon {
    width: 14px;
    height: 14px;
  }
  .hero-note {
    font-size: 9px;
    gap: 6px;
  }
  .comfort-card {
    left: 15px;
    right: 15px;
    padding: 15px;
    gap: 10px;
  }
  .comfort-card strong {
    font-size: 11px;
  }
  .comfort-card div > span {
    font-size: 8px;
  }
  .comfort-icon {
    padding: 9px;
  }
  .comfort-icon .icon {
    width: 20px;
    height: 20px;
  }
  .comfort-arrow {
    display: none;
  }
  .values {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-block: 31px;
  }
  .values > div {
    border-right: 1px solid var(--border);
    padding-right: 10px;
    gap: 10px;
  }
  .values > div:last-child {
    border: 0;
  }
  .values strong {
    font-size: 11px;
  }
  .values small {
    font-size: 9px;
  }
  .values > div > .icon {
    width: 22px;
    height: 22px;
  }
  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 34px;
  }
  .section-head > p {
    font-size: 13px;
    padding-bottom: 4px;
  }
  .desktop-break {
    display: block;
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-help {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0 30px;
    padding: 28px 35px;
  }
  .service-help .icon-tile {
    display: none;
  }
  .service-help h3 {
    font-size: 30px;
    grid-row: span 2;
    margin: 0;
  }
  .service-help p {
    margin: 0;
  }
  .service-help > .text-link {
    margin: 6px 0 0;
  }
  .service-help::after {
    width: 300px;
    height: 300px;
    right: -40px;
    bottom: -140px;
  }
  .service-card {
    padding: 24px;
  }
  .service-card h3 {
    font-size: 15px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .service-bottom > span {
    font-size: 10px;
  }
  .service-bottom > .text-link {
    font-size: 11px;
    white-space: nowrap;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .about-visual > img {
    aspect-ratio: auto;
    height: 530px;
  }
  .about-copy h2 {
    font-size: 32px;
  }
  .about-copy .section-lead {
    font-size: 17px;
  }
  .about-copy > p:not(.section-lead) {
    font-size: 12px;
  }
  .about-image-label {
    font-size: 14px;
    padding: 15px;
    left: 19px;
    bottom: 22px;
  }
  .why-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }
  .reasons {
    gap: 36px 26px;
  }
  .reason {
    gap: 13px;
  }
  .reason-icon {
    width: 37px;
    height: 37px;
  }
  .reason-icon .icon {
    width: 19px;
    height: 19px;
  }
  .reason h3 {
    font-size: 14px;
  }
  .reason p {
    font-size: 11px;
  }
  .emergency-inner {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .emergency-icon {
    display: none;
  }
  .emergency-inner > div:nth-child(2) {
    flex: 1;
  }
  .emergency-actions {
    flex-direction: column;
    flex-shrink: 0;
  }
  .emergency-actions .btn {
    font-size: 12px;
  }
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    position: relative;
    margin-top: 45px;
  }
  .process-step {
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: "";
    height: 1px;
    background: #d9e1d6;
    position: absolute;
    top: 20px;
    left: 57px;
    right: -12px;
  }
  .process-step h3 {
    font-size: 15px;
  }
  .process-step p {
    font-size: 11px;
  }
  .detail-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }
  .detail-intro {
    position: sticky;
    top: 120px;
    align-self: start;
  }
  .detail-intro h2 {
    font-size: 34px;
  }
  .area-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }
  .area-copy h2 {
    font-size: 34px;
  }
  .area-copy .section-lead {
    font-size: 16px;
  }
  .area-copy > p:not(.section-lead) {
    font-size: 12px;
  }
  .map-toolbar {
    padding-inline: 20px;
  }
  .map-stage {
    height: 330px;
  }
  .faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }
  .faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
  }
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }
  .contact-copy h2 {
    font-size: 34px;
  }
  .contact-copy > p {
    font-size: 12px;
  }
  .form-card {
    padding: 27px;
  }
  .form-grid {
    gap: 16px 14px;
  }
  .contact-phone {
    font-size: 28px;
  }
  .footer-main {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 30px;
  }
  .site-footer {
    padding-bottom: 35px;
  }
  .mobile-call {
    display: none;
  }
}
@media (min-width: 1100px) {
  .utility .wrap > a {
    display: flex;
  }
  .utility {
    font-size: 10px;
    padding: 8px 0;
  }
  .header-inner {
    height: 92px;
    gap: 24px;
  }
  .brand,
  .brand img {
    width: 195px;
  }
  .menu-toggle {
    display: none;
  }
  #main-nav,
  #main-nav.open {
    display: flex;
    position: static;
    align-items: center;
    gap: 22px;
    padding: 0;
    box-shadow: none;
    border: 0;
    background: none;
    margin-left: auto;
  }
  #main-nav a {
    font-size: 12px;
    padding: 11px 0;
    white-space: nowrap;
  }
  .header-inner > .btn {
    display: inline-flex;
    font-size: 12px;
    min-height: 45px;
    padding: 12px 17px;
  }
  .header-inner > .btn .icon {
    width: 15px;
    height: 15px;
  }
  .hero-grid {
    grid-template-columns: 1.04fr 1fr;
    gap: 54px;
    padding-top: 66px;
    padding-bottom: 75px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 1.55px;
    margin-bottom: 24px;
  }
  h1 {
    font-size: 59px;
    letter-spacing: -2.8px;
  }
  .hero-lead {
    font-size: 18px;
    margin-top: 24px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 435px;
    margin-top: 10px;
  }
  .hero-copy .button-row {
    margin-top: 29px;
    gap: 11px;
  }
  .hero-copy .btn {
    font-size: 12px;
    padding: 16px 18px;
    min-height: 53px;
  }
  .hero-copy .btn .icon {
    width: 16px;
    height: 16px;
  }
  .hero-note {
    font-size: 10px;
    gap: 9px;
    margin-top: 23px;
  }
  .explore-link {
    font-size: 11px;
    margin-top: 30px;
  }
  .hero-image {
    height: 480px;
    object-position: 54% center;
  }
  .availability {
    top: 21px;
    left: 21px;
    font-size: 8px;
    padding: 12px;
  }
  .visual-corner {
    right: 21px;
    top: 21px;
    padding: 12px;
  }
  .comfort-card {
    left: 26px;
    right: 26px;
    padding: 20px;
    bottom: -16px;
    gap: 14px;
  }
  .comfort-card strong {
    font-size: 14px;
  }
  .comfort-card div > span {
    font-size: 10px;
  }
  .comfort-icon {
    padding: 12px;
  }
  .comfort-icon .icon {
    width: 24px;
    height: 24px;
  }
  .comfort-arrow {
    display: block;
  }
  .image-caption {
    bottom: 83px;
    font-size: 8px;
  }
  .values {
    padding-block: 32px;
    gap: 35px;
  }
  .values > div {
    gap: 17px;
  }
  .values > div > .icon {
    width: 27px;
    height: 27px;
  }
  .values strong {
    font-size: 12px;
  }
  .values small {
    font-size: 10px;
  }
  .section {
    padding: 95px 0;
  }
  .section-head > p {
    font-size: 14px;
  }
  .service-filters {
    margin-bottom: 28px;
  }
  .service-grid {
    gap: 19px;
  }
  .service-card {
    padding: 27px 28px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 13px;
    max-width: 290px;
  }
  .service-card .text-link {
    font-size: 12px;
  }
  .service-help h3 {
    font-size: 32px;
  }
  .service-help p {
    font-size: 14px;
  }
  .service-bottom > span {
    font-size: 12px;
  }
  .service-bottom > .text-link {
    font-size: 12px;
  }
  .about-grid {
    gap: 83px;
  }
  .about-visual > img {
    height: 540px;
  }
  .about-copy h2 {
    font-size: 39px;
  }
  .about-copy .section-lead {
    font-size: 19px;
  }
  .about-copy > p:not(.section-lead) {
    font-size: 13px;
  }
  .about-image-label {
    font-size: 17px;
    left: 28px;
    bottom: 28px;
    padding: 20px 25px;
  }
  .why-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
  }
  .reasons {
    gap: 39px 38px;
  }
  .reason h3 {
    font-size: 16px;
  }
  .reason p {
    font-size: 12px;
  }
  .reason-icon {
    width: 44px;
    height: 44px;
  }
  .reason-icon .icon {
    width: 22px;
    height: 22px;
  }
  .emergency-section {
    padding: 50px 0;
  }
  .emergency-icon {
    display: flex;
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
  .emergency-inner {
    gap: 26px;
  }
  .emergency-actions .btn {
    font-size: 13px;
    min-width: 220px;
  }
  .process-grid {
    gap: 36px;
    margin-top: 48px;
  }
  .process-step h3 {
    font-size: 17px;
  }
  .process-step p {
    font-size: 13px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 14px;
    margin-bottom: 23px;
  }
  .process-step:not(:last-child)::after {
    top: 22px;
  }
  .detail-grid {
    grid-template-columns: 0.83fr 1.17fr;
    gap: 100px;
  }
  .detail-intro h2 {
    font-size: 39px;
  }
  .service-detail > summary {
    font-size: 14px;
    padding: 21px 0;
  }
  .detail-body {
    padding-left: 35px;
  }
  .area-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 80px;
  }
  .area-copy h2 {
    font-size: 39px;
  }
  .area-copy .section-lead {
    font-size: 18px;
  }
  .area-copy > p:not(.section-lead) {
    font-size: 14px;
  }
  .map-stage {
    height: 365px;
  }
  .map-options {
    padding: 15px 20px 0;
    gap: 8px;
  }
  .map-options button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .map-description,
  .map-fallback {
    padding-inline: 20px;
  }
  .area-note {
    font-size: 12px;
  }
  .faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
  }
  .faq-item > summary {
    font-size: 14px;
    gap: 18px;
    padding: 25px 0;
  }
  .faq-answer {
    padding-left: 33px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
  }
  .contact-copy h2 {
    font-size: 40px;
  }
  .contact-copy > p {
    font-size: 14px;
  }
  .contact-phone {
    font-size: 34px;
    margin-top: 35px;
  }
  .form-card {
    padding: 35px;
  }
  .field label {
    font-size: 12px;
  }
  .field input,
  .field textarea {
    font-size: 13px;
  }
  .consent-field label {
    font-size: 10px;
  }
  .form-notice {
    font-size: 11px;
  }
  .form-grid {
    gap: 18px;
  }
  .final-cta {
    padding-block: 57px;
  }
  .final-cta > .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .final-cta .button-row {
    flex-wrap: nowrap;
  }
  .final-cta .btn {
    font-size: 12px;
    padding-inline: 17px;
  }
  .footer-main {
    grid-template-columns: 1.5fr 0.85fr 0.85fr 1fr;
    gap: 50px;
  }
  .footer-brand img {
    width: 210px;
  }
  .footer-links a,
  .footer-contact address,
  .footer-brand p {
    font-size: 12px;
  }
  .footer-links h3,
  .footer-contact h3 {
    font-size: 13px;
  }
  .footer-phone {
    font-size: 22px;
  }
  .footer-bottom {
    font-size: 10px;
  }
  .disclaimer {
    font-size: 10px;
  }
  .footer-main {
    padding-bottom: 43px;
  }
  .site-footer {
    padding-top: 57px;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 65px;
  }
  .hero-grid {
    gap: 65px;
  }
  .hero-image {
    height: 490px;
  }
  .hero-copy .btn {
    font-size: 13px;
    padding-inline: 21px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
  #main-nav {
    gap: 26px;
  }
  .brand,
  .brand img {
    width: 210px;
  }
  .header-inner > .btn {
    font-size: 13px;
  }
  .hero-grid {
    padding-block: 70px 79px;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 32px);
  }
  h1 {
    font-size: 32px;
    letter-spacing: -1.4px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-note {
    font-size: 9px;
    gap: 5px;
  }
  .hero-copy .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-copy .btn {
    width: 100%;
  }
  .hero-image {
    height: 290px;
  }
  .visual-corner {
    display: none;
  }
  .comfort-card {
    padding: 12px;
    gap: 9px;
  }
  .comfort-icon {
    padding: 8px;
  }
  .comfort-card strong {
    font-size: 11px;
  }
  .comfort-card div > span {
    font-size: 8px;
  }
  .values strong {
    font-size: 10px;
  }
  .values small {
    font-size: 8px;
  }
  .values > div {
    gap: 7px;
  }
  .values > div > .icon {
    width: 20px;
    height: 20px;
  }
  .contact-phone {
    font-size: 25px;
  }
  .form-card {
    padding: 20px;
  }
  .map-toolbar {
    font-size: 8px;
    padding-inline: 12px;
  }
  .map-toolbar > span:last-child {
    font-size: 8px;
  }
  .utility {
    font-size: 10px;
  }
  .footer-main {
    gap: 27px 12px;
  }
  .map-options button {
    font-size: 9px;
    padding-inline: 6px;
  }
  .final-cta .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mobile-call {
    left: 16px;
    right: 16px;
  }
  .hero-visual {
    margin-bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .service-card:hover,
  .text-link:hover .icon {
    transform: none;
  }
}
@media print {
  .site-header,
  .utility,
  .mobile-call,
  .hero-visual,
  .about-visual,
  .map-stage,
  .service-filters {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
  .section {
    padding: 20px 0;
  }
  details > div {
    display: block !important;
  }
  .wrap {
    width: 100%;
  }
  .hero-grid,
  .about-grid,
  .why-grid,
  .area-grid,
  .faq-grid,
  .contact-grid,
  .detail-grid {
    display: block;
  }
  .site-footer {
    background: white;
    color: black;
    padding: 20px 0;
  }
  .site-footer p,
  .site-footer address,
  .site-footer a {
    color: black;
  }
  .form-card {
    break-inside: avoid;
  }
  .btn {
    border: 1px solid #777;
  }
  .hero {
    background: white;
  }
  .disclaimer {
    color: black;
  }
}

/* Without JavaScript, keep anchor navigation available and hide inactive enhancement controls. */
html:not(.js) .service-filters,
html:not(.js) .menu-toggle,
html:not(.js) .map-options,
html:not(.js) #load-map {
  display: none;
}
html:not(.js) #main-nav {
  display: flex;
  flex-wrap: wrap;
  position: static;
  box-shadow: none;
  border: 0;
  padding: 0;
  gap: 3px 14px;
}
html:not(.js) .header-inner {
  height: auto;
  min-height: 83px;
  flex-wrap: wrap;
  padding-block: 12px;
}
@media (max-width: 767px) {
  .field input,
  .field textarea {
    font-size: 16px;
  }
  .contact-copy {
    position: static;
  }
  .map-options button {
    min-height: 44px;
  }
  .faq-index a {
    min-height: 44px;
  }
}

/* Accessibility QA: keep small secondary numbers above AA contrast. */
.service-no,
.faq-number {
  color: #5c7063;
}
@media (max-width: 479px) {
  .hero-copy .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-copy .btn {
    width: 100%;
    justify-content: center;
  }
}
html:not(.js) .site-header {
  position: relative;
}

/* User-supplied photography: every photo appears once, without cropping. */
.hero-image {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #e1eae3;
}
.about-visual > img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #eef2ed;
}
.service-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: contain;
  background: #eef2ee;
  border-radius: 6px;
  margin-bottom: 21px;
}
.context-photo {
  margin: 28px 0 0;
  max-width: 420px;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid #d6e2d8;
  background: #eef2ee;
}
.context-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.detail-intro:has(.context-photo) {
  position: static;
}
.why-grid .reasons {
  align-content: center;
}
.contact-copy .context-photo {
  max-width: 360px;
}
.detail-intro .context-photo {
  max-width: 310px;
}
@media (max-width: 767px) {
  .hero-visual {
    margin-bottom: 22px;
  }
  .about-image-label {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 12px 0 0;
    max-width: 100%;
    font-size: 14px;
  }
  .context-photo,
  .contact-copy .context-photo,
  .detail-intro .context-photo {
    max-width: 100%;
  }
  .hero-image {
    min-height: 0;
  }
  .service-photo {
    margin-bottom: 18px;
  }
  .image-caption {
    bottom: 77px;
  }
}
