/* Quantum Comfort — bespoke single-page visual system */
:root {
  --navy: #10292f;
  --navy-deep: #0c2229;
  --ink: #142e33;
  --aqua: #6ce7d6;
  --aqua-dark: #177467;
  --violet: #7163a9;
  --text: #4e6266;
  --muted: #637579;
  --paper: #f5f7f5;
  --line: #dce4df;
  --white: #fff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 16px 45px #132e3310;
  --container-width: 1240px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.2;
}
h2 {
  font-size: clamp(31px, 3.15vw, 45px);
  font-weight: 750;
  letter-spacing: -1.7px;
  margin-bottom: 24px;
}
h3 {
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.45px;
}
p {
  margin-bottom: 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
img {
  max-width: 100%;
  display: block;
}
address {
  font-style: normal;
}
svg {
  flex-shrink: 0;
}
button,
a,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #288d80;
  outline-offset: 5px;
}
section,
article[id],
details[id] {
  scroll-margin-top: 108px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - 112px);
  max-width: var(--container-width);
  margin: 0 auto;
}
.section {
  padding: 108px 0;
}
.icon {
  display: inline-block;
  vertical-align: middle;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  background: white;
  color: var(--ink);
  padding: 12px 20px;
  border: 2px solid var(--aqua-dark);
  border-radius: 6px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.5;
  color: var(--aqua);
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.eyebrow.dark {
  color: var(--aqua-dark);
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  padding: 16px 21px;
  border-radius: 7px;
  min-height: 54px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid transparent;
  transition:
    background 0.18s var(--ease-out),
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
  white-space: nowrap;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--aqua);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: #92f1e4;
  box-shadow: 0 5px 22px #6ce7d620;
}
.btn-outline {
  border-color: #698085;
  color: #fff;
  background: #ffffff04;
}
.btn-outline:hover {
  background: #ffffff0d;
  border-color: #a9c9cd;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: #1d4248;
  box-shadow: var(--shadow-card);
}
.btn-text-light {
  color: #e2eeed;
  background: none;
  border: 0;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s var(--ease-out);
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  color: var(--aqua-dark);
}
/* Header */
.utility {
  background: var(--navy-deep);
  font-size: 11px;
  color: #d0dedf;
  padding: 8px 0;
  line-height: 1.4;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.utility .icon {
  width: 13px;
  height: 13px;
}
.utility .status-dot {
  width: 5px;
  height: 5px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fffffff7;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e6ece8;
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: block;
  width: 218px;
  flex-shrink: 0;
}
.brand img {
  width: 218px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 23px;
  align-items: center;
}
.main-nav a {
  font-size: 12px;
  font-weight: 600;
  color: #3f5459;
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--aqua-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease-out);
}
.main-nav a:hover:after,
.main-nav a.active:after {
  transform: scaleX(1);
}
.header-call {
  padding: 10px 17px;
  background: var(--navy);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}
.header-call .icon {
  width: 17px;
  height: 17px;
  color: var(--aqua);
}
.header-call small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #c9dddf;
}
.header-call:hover {
  background: #254b50;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
/* Hero and airflow motifs */
.hero {
  background: var(--navy-deep);
  color: #c2d0d2;
  position: relative;
  overflow: hidden;
  padding: 74px 0 69px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  font-size: 9px;
  letter-spacing: 1.4px;
  white-space: nowrap;
  margin-bottom: 25px;
}
.hero h1 {
  font-size: clamp(48px, 4.9vw, 70px);
  line-height: 1.09;
  letter-spacing: -3.5px;
  color: #fff;
  font-weight: 750;
  margin-bottom: 25px;
}
.hero h1 > span:not(.sr-only) {
  color: var(--aqua);
}
.hero-description {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-actions .btn {
  padding: 15px 18px;
  font-size: 12px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  font-size: 10px;
  color: #ccd8d9;
  margin-top: 24px;
}
.hero-checks span {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-checks .icon {
  width: 13px;
  height: 13px;
  color: var(--aqua);
}
.hero-visual {
  position: relative;
  padding-bottom: 28px;
  padding-top: 10px;
}
.photo-frame {
  position: relative;
  border-radius: 17px;
  overflow: hidden;
  border: 1px solid #ffffff25;
  background: #32494b;
}
.hero-photo {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}
.photo-frame:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, #0b232ac9);
}
.photo-location {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0b222bd9;
  color: #fff;
  border: 1px solid #ffffff25;
  border-radius: 30px;
  z-index: 2;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.photo-location .icon {
  width: 12px;
  height: 12px;
  color: var(--aqua);
}
.photo-caption {
  position: absolute;
  bottom: 53px;
  left: 29px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  color: white;
  font:
    500 27px/1.3 "Manrope",
    sans-serif;
  letter-spacing: -0.6px;
}
.caption-icon {
  width: 47px;
  height: 47px;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--aqua);
}
.availability-card {
  position: relative;
  z-index: 3;
  width: 90%;
  margin: -29px auto 0;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #4d666b;
  border-radius: 10px;
  background: #1a353bdc;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px #0002;
}
.availability-icon {
  display: grid;
  place-items: center;
  background: #6ce7d613;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  color: var(--aqua);
}
.availability-card strong {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.availability-card div > span {
  display: block;
  font-size: 10px;
  color: #beccce;
  margin-top: 2px;
}
.availability-card > .status-dot {
  margin-left: auto;
}
.photo-note {
  font-size: 8px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  color: #9cb6ba;
  margin-top: 20px;
}
.photo-note span {
  height: 1px;
  width: 35px;
  background: var(--aqua);
}
.orbit {
  pointer-events: none;
  position: absolute;
  width: 800px;
  height: 800px;
  border: 1px solid #64e0d212;
  border-radius: 50%;
  right: -30px;
  top: -60px;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  border: 1px solid #64e0d210;
  border-radius: 50%;
  inset: 45px;
}
.orbit:after {
  inset: 90px;
}
.orbit-two {
  width: 530px;
  height: 530px;
  top: 260px;
  right: 430px;
  opacity: 0.55;
}
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 27px 0;
}
.trust-grid > span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  line-height: 1.3;
  border-right: 1px solid var(--line);
  min-height: 34px;
}
.trust-grid > span:first-child {
  justify-content: flex-start;
}
.trust-grid > span:last-child {
  border-right: 0;
  justify-content: flex-end;
}
.trust-grid .icon {
  width: 22px;
  height: 22px;
  color: var(--aqua-dark);
}
/* About */
.about-section {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding: 0 0 24px 0;
}
.about-visual > img {
  border-radius: 13px;
  width: 100%;
  height: 442px;
  object-fit: cover;
}
.about-image-label {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  padding: 21px 24px;
  background: #eff7f3;
  border: 1px solid #d7e5df;
  box-shadow: 0 8px 25px #172f3210;
  border-radius: 8px;
  display: flex;
  gap: 17px;
  align-items: center;
  font:
    650 19px "Manrope",
    sans-serif;
  color: var(--ink);
}
.about-image-label .icon {
  color: var(--aqua-dark);
  width: 30px;
  height: 30px;
}
.image-corner {
  position: absolute;
  top: -21px;
  right: -20px;
  color: #348e7a;
  font: 300 65px/1 "Manrope";
  background: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
}
.about-copy .eyebrow {
  margin-bottom: 19px;
}
.about-copy h2 {
  font-size: 34px;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}
.section-lead {
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.about-copy > p:not(.eyebrow):not(.section-lead) {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 15px;
}
.about-copy .text-link {
  margin-top: 3px;
}
/* Services */
.services-section {
  background: var(--paper);
  border-top: 1px solid #eaf0eb;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 37px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.heading-aside {
  max-width: 335px;
  padding-bottom: 4px;
}
.heading-aside p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 9px;
}
.heading-aside .text-link {
  font-size: 12px;
  gap: 12px;
}
.service-index {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 25px;
}
.service-index a {
  font-size: 10px;
  line-height: 1.5;
  padding: 7px 10px;
  border: 1px solid #d6dfd9;
  background: #ffffff50;
  color: #516866;
  border-radius: 4px;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.service-index a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 29px 29px 23px;
  background: white;
  border: 1px solid #e0e6e1;
  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-card);
  border-color: #88c4b5;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.service-icon {
  width: 45px;
  height: 45px;
  background: #edf7f3;
  color: #237b6b;
  border-radius: 9px;
  display: grid;
  place-items: center;
}
.service-icon.warm {
  background: #fbf2e9;
  color: #a76a3d;
}
.card-number {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #5c6d63;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 13px;
}
.service-card h3 a:hover {
  color: var(--aqua-dark);
}
.service-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.card-link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e9ede9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #294b45;
  min-height: 44px;
}
.card-link .icon {
  width: 15px;
  height: 15px;
}
.card-link:hover {
  color: #147b69;
}
/* Emergency */
.emergency-section {
  background: var(--navy);
  color: #bdced0;
  overflow: hidden;
  position: relative;
  padding: 64px 0;
}
.emergency-section:after {
  content: "";
  position: absolute;
  right: -50px;
  top: -200px;
  width: 560px;
  height: 560px;
  border: 1px solid #6ce7d617;
  border-radius: 50%;
  box-shadow:
    0 0 0 50px #6ce7d607,
    0 0 0 100px #6ce7d605;
  pointer-events: none;
}
.emergency-inner {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
}
.emergency-symbol {
  border: 1px solid #6ce7d630;
  box-shadow: 0 0 0 12px #6ce7d609;
  border-radius: 50%;
  width: 91px;
  height: 91px;
  color: var(--aqua);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.emergency-symbol .icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.2;
}
.emergency-copy {
  max-width: 520px;
}
.emergency-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 17px;
}
.emergency-copy h2 {
  font-size: 35px;
  color: #fff;
  letter-spacing: -1.1px;
  margin-bottom: 15px;
}
.emergency-copy p:last-child {
  font-size: 13px;
  max-width: 440px;
  margin-bottom: 0;
}
.emergency-actions {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* Why choose us and process */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 92px;
  align-items: center;
}
.why-intro {
  font-size: 15px;
  line-height: 1.9;
  max-width: 390px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px 36px;
}
.benefit {
  display: block;
}
.benefit > .icon {
  width: 29px;
  height: 29px;
  color: var(--aqua-dark);
  margin-bottom: 18px;
}
.benefit h3 {
  font-size: 17px;
  margin-bottom: 12px;
}
.benefit p {
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 0;
}
.process-section {
  padding-top: 76px;
  padding-bottom: 83px;
  background: #f2f6f2;
  border-top: 1px solid #e9eee7;
  border-bottom: 1px solid #e9eee7;
}
.process-caption {
  font-size: 12px;
  line-height: 1.7;
  color: #60736d;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.step {
  position: relative;
}
.step:after {
  content: "";
  position: absolute;
  left: 67px;
  right: 0;
  top: 24px;
  height: 1px;
  background: #cddad1;
}
.step:last-child:after {
  display: none;
}
.step-number {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bdd1c7;
  background: #f2f6f2;
  display: grid;
  place-items: center;
  font:
    650 14px "Manrope",
    sans-serif;
  color: #357b67;
  margin-bottom: 25px;
}
.step h3 {
  font-size: 16px;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.step p {
  font-size: 12px;
  line-height: 1.85;
  margin-bottom: 0;
  max-width: 245px;
}
/* Area and map */
.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 85px;
}
.area-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  background: #ecf6f0;
  color: #276c58;
  padding: 10px 13px;
  border-radius: 5px;
  margin: 3px 0 23px;
}
.area-tag .icon {
  width: 16px;
  height: 16px;
}
.area-copy address {
  font-size: 13px;
  line-height: 1.9;
}
.area-copy address > * {
  display: block;
}
.area-copy address strong {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 5px;
}
.area-copy address .muted {
  color: #5c6d63;
  font-size: 12px;
}
.area-copy .text-link {
  margin-top: 10px;
  font-size: 12px;
}
.area-copy .coverage-note {
  font-size: 10px !important;
  color: #5c6d63;
  margin: 13px 0 0;
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-wrap {
  height: 419px;
  background: #e7eee8;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: repeating-linear-gradient(
    35deg,
    transparent 0 65px,
    #ffffff60 66px 75px,
    transparent 76px 140px
  );
}
.map-placeholder > .icon {
  width: 40px;
  height: 40px;
  color: var(--aqua-dark);
}
.map-placeholder strong {
  font:
    650 22px "Manrope",
    sans-serif;
  color: var(--ink);
}
.map-placeholder .btn {
  font-size: 11px;
}
.map-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 19px;
  background: #fff;
  gap: 12px;
}
.map-bottom > span {
  font-size: 8px;
  letter-spacing: 0.8px;
  color: #4b6460;
  display: flex;
  gap: 7px;
  align-items: center;
  font-weight: 700;
}
.map-bottom .status-dot {
  background: #3e957b;
  width: 6px;
  height: 6px;
}
.map-bottom a {
  font-size: 10px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
}
.map-bottom .icon {
  width: 15px;
  height: 15px;
}
/* FAQ */
.faq-section {
  background: var(--paper);
  border-top: 1px solid #eaf0eb;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 100px;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 310px;
}
.faq-help {
  padding-top: 22px;
  margin-top: 30px;
  border-top: 1px solid #dce4df;
  max-width: 300px;
}
.faq-help > .icon {
  display: block;
  color: var(--aqua-dark);
  margin-bottom: 16px;
  width: 25px;
  height: 25px;
}
.faq-help strong {
  font-size: 14px;
  color: var(--ink);
}
.faq-help p {
  font-size: 12px;
  margin: 6px 0 0;
}
.faq-help .text-link {
  font-size: 16px;
  margin-top: 3px;
}
.faq-item {
  border-bottom: 1px solid #d9e2dc;
  padding: 0;
}
.faq-item:first-child {
  border-top: 1px solid #d9e2dc;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  gap: 20px;
  padding: 21px 0;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.1px;
  font-weight: 700;
}
.faq-toggle {
  display: grid;
  place-items: center;
  border: 1px solid #d2ded7;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  color: var(--aqua-dark);
}
.faq-toggle .icon {
  width: 13px;
  height: 13px;
}
.faq-item[open] .faq-toggle {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.faq-item[open] .faq-toggle svg path {
  d: path("M5 12h14");
}
.faq-answer {
  padding: 0 37px 21px 0;
}
.faq-answer p {
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 8px;
}
.faq-permalink {
  font-size: 10px;
  color: #526e62;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 28px;
}
.faq-permalink .icon {
  width: 11px;
  height: 11px;
}
/* Contact */
.contact-section {
  background: var(--navy-deep);
  color: #b9cbcf;
  position: relative;
  overflow: hidden;
}
.contact-section:before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 700px;
  height: 700px;
  border: 1px solid #6ce7d615;
  border-radius: 50%;
  bottom: -390px;
  left: -140px;
  box-shadow:
    0 0 0 70px #6ce7d605,
    0 0 0 140px #6ce7d604;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  position: relative;
}
.contact-copy {
  padding: 25px 0;
}
.contact-copy h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 23px;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  max-width: 350px;
}
.contact-phone {
  display: flex;
  gap: 17px;
  align-items: center;
  margin: 37px 0;
  color: var(--aqua);
}
.contact-phone > .icon {
  width: 27px;
  height: 27px;
  stroke-width: 1.4;
}
.contact-phone span {
  font:
    650 29px "Manrope",
    sans-serif;
  letter-spacing: -0.7px;
}
.contact-phone small {
  display: block;
  font:
    600 8px "DM Sans",
    sans-serif;
  color: #aabfc2;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  margin-bottom: 27px;
  font-size: 12px;
}
.contact-detail > .icon {
  width: 22px;
  height: 22px;
  color: #81bbb1;
  margin-top: 4px;
}
.contact-detail strong,
.contact-detail span {
  display: block;
}
.contact-detail strong {
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px;
}
.contact-bottom-note {
  border-top: 1px solid #ffffff1c;
  padding-top: 21px;
  margin-top: 40px;
  font-size: 11px;
  color: #a5bec0;
  max-width: 360px;
}
.form-card {
  padding: 33px 35px;
  background: white;
  color: var(--text);
  border-radius: 13px;
}
.form-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.6px;
}
.form-intro {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.form-intro span {
  font-size: 10px;
  color: #697772;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d7dfd9;
  border-radius: 5px;
  min-height: 44px;
  padding: 11px 12px;
  background: #fbfcfb;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
  transition: border-color 0.15s;
}
.field textarea {
  resize: vertical;
  min-height: 108px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #68766e;
  font-size: 11px;
}
.field input:focus,
.field textarea:focus {
  border-color: #428e7b;
  background: #fff;
  outline-offset: 2px;
  outline-width: 2px;
}
.field [aria-invalid="true"] {
  border-color: #b44238;
}
.field-error {
  display: block;
  color: #a3352e;
  font-size: 10px;
  line-height: 1.6;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-field input {
  appearance: auto;
  accent-color: var(--aqua-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 2px 0 0;
}
.consent-field label > span {
  font-size: 9px;
  line-height: 1.85;
  color: #61716b;
}
.form-status {
  font-size: 12px;
  line-height: 1.65;
  border-radius: 5px;
  margin: 17px 0 0;
  padding: 12px;
  background: #fff0e9;
  color: #864326;
}
.form-status:empty {
  display: none;
}
.form-status.success {
  background: #eaf6ef;
  color: #25613d;
}
.submit-btn {
  width: 100%;
  margin-top: 21px;
  justify-content: space-between;
  font-size: 12px;
}
.form-note {
  font-size: 9px;
  text-align: center;
  line-height: 1.7;
  margin: 12px 0 0;
  color: #6a7770;
}
.form-note a {
  text-decoration: underline;
  color: var(--ink);
}
.honeypot {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}
/* Closing and footer */
.final-cta {
  padding: 52px 0;
  background: #d9f4e9;
}
.final-cta > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.final-cta .eyebrow {
  font-size: 9px;
  margin-bottom: 13px;
}
.final-cta h2 {
  font-size: 31px;
  letter-spacing: -1.1px;
  max-width: 540px;
  margin-bottom: 0;
}
.final-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px 25px;
  align-items: center;
  flex-shrink: 0;
}
.final-actions .btn {
  font-size: 12px;
}
.final-actions .text-link {
  font-size: 12px;
  gap: 8px;
}
.final-actions > span {
  font-size: 9px;
  color: #4c7161;
  text-align: center;
  grid-column: 1/-1;
  margin-top: 4px;
}
.footer {
  background: #f9faf8;
  padding: 57px 0 0;
  color: #66746c;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr 1.2fr;
  gap: 54px;
  padding-bottom: 37px;
}
.footer-brand img {
  width: 220px;
  height: auto;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  margin: 17px 0 0;
}
.footer-column h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-column nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-column nav a {
  font-size: 11px;
  min-height: 23px;
}
.footer-column nav a:hover {
  color: var(--aqua-dark);
  text-decoration: underline;
}
.footer-column address {
  font-size: 11px;
  line-height: 1.9;
  margin-top: 15px;
}
.footer-phone {
  font:
    750 19px "Manrope",
    sans-serif;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.footer-hours {
  font-size: 11px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 15px;
}
.footer-hours .status-dot {
  width: 6px;
  height: 6px;
  background: #399a7c;
}
.footer-legal {
  border-top: 1px solid #dce3db;
  border-bottom: 1px solid #dce3db;
  padding: 23px 0;
}
.footer-legal p {
  font-size: 10px;
  line-height: 1.9;
  margin: 0;
  color: #5c6d63;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 0 24px;
  font-size: 9px;
  color: #5c6d63;
}
.footer-bottom a {
  font-size: 10px;
  color: var(--ink);
}
.mobile-call {
  display: none;
}
/* Tablet */
@media (min-width: 1500px) {
  .hero {
    padding-top: 91px;
    padding-bottom: 87px;
  }
  .hero-photo {
    height: 466px;
  }
}
@media (max-width: 1190px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 20px;
  }
  .brand,
  .brand img {
    width: 190px;
  }
  .main-nav {
    gap: 15px;
  }
  .main-nav a {
    font-size: 11px;
  }
  .hero-grid {
    gap: 37px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-actions {
    gap: 9px;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    font-size: 11px;
    padding: 13px 14px;
  }
  .hero-photo {
    height: 420px;
  }
  .about-grid {
    gap: 55px;
  }
  .about-copy h2 {
    font-size: 29px;
  }
  .trust-grid > span {
    font-size: 10px;
    gap: 8px;
  }
  .trust-grid .icon {
    width: 19px;
    height: 19px;
  }
  .why-grid {
    gap: 50px;
  }
  .area-grid {
    gap: 50px;
  }
  .faq-grid {
    gap: 60px;
  }
  .contact-grid {
    gap: 60px;
  }
  .contact-phone span {
    font-size: 26px;
  }
  .footer-top {
    gap: 30px;
  }
  .final-actions {
    gap: 4px 15px;
  }
  .final-cta h2 {
    font-size: 29px;
  }
}
@media (max-width: 1023px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .section {
    padding: 80px 0;
  }
  .header-inner {
    min-height: 78px;
    gap: 16px;
  }
  .brand,
  .brand img {
    width: 203px;
  }
  .header-call {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    background: white;
    padding: 18px 28px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px #0001;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    font-size: 14px;
    min-height: 46px;
  }
  .main-nav a:after {
    display: none;
  }
  .main-nav a.active {
    color: var(--aqua-dark);
  }
  .hero {
    padding: 57px 0;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .hero-photo {
    height: 397px;
  }
  .hero-checks {
    gap: 11px;
    font-size: 8px;
  }
  .hero-checks .icon {
    width: 11px;
    height: 11px;
  }
  .photo-location {
    font-size: 6px;
    left: 12px;
    top: 12px;
    gap: 4px;
    padding: 7px 9px;
  }
  .photo-caption {
    left: 22px;
    font-size: 24px;
  }
  .availability-card {
    width: 93%;
    padding: 14px 15px;
    gap: 10px;
  }
  .availability-card strong {
    font-size: 10px;
  }
  .availability-card div > span {
    font-size: 8px;
  }
  .availability-icon {
    width: 33px;
    height: 33px;
  }
  .availability-icon .icon {
    width: 20px;
    height: 20px;
  }
  .photo-note {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .trust-grid {
    gap: 17px;
    padding: 23px 0;
  }
  .trust-grid > span {
    font-size: 9px;
    gap: 7px;
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }
  .about-grid {
    gap: 40px;
  }
  .about-visual > img {
    height: 410px;
  }
  .about-copy h2 {
    font-size: 27px;
  }
  .about-copy > p:not(.eyebrow):not(.section-lead) {
    font-size: 12px;
  }
  .section-lead {
    font-size: 16px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .about-image-label {
    left: 14px;
    right: 14px;
    padding: 20px 17px;
    font-size: 14px;
    gap: 11px;
  }
  .about-image-label .icon {
    width: 25px;
    height: 25px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding: 24px 20px 20px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-index a {
    font-size: 9px;
  }
  .emergency-inner {
    gap: 24px;
  }
  .emergency-symbol {
    display: none;
  }
  .emergency-copy h2 {
    font-size: 31px;
  }
  .emergency-copy p:last-child {
    font-size: 12px;
  }
  .emergency-actions .btn {
    font-size: 12px;
    padding: 14px 17px;
  }
  .benefit-grid {
    gap: 28px 25px;
  }
  .why-grid {
    gap: 44px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .why-intro {
    font-size: 13px;
  }
  .benefit h3 {
    font-size: 15px;
  }
  .benefit p {
    font-size: 12px;
  }
  .process-grid {
    gap: 22px;
  }
  .step h3 {
    font-size: 14px;
  }
  .step p {
    font-size: 11px;
  }
  .area-grid {
    gap: 35px;
    grid-template-columns: 0.95fr 1.05fr;
  }
  .map-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .map-wrap {
    height: 395px;
  }
  .faq-grid {
    gap: 45px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-item h3 {
    font-size: 13px;
  }
  .contact-grid {
    gap: 38px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-phone span {
    font-size: 21px;
  }
  .contact-phone small {
    font-size: 6px;
    letter-spacing: 0.8px;
  }
  .contact-phone {
    gap: 12px;
  }
  .contact-phone > .icon {
    width: 23px;
    height: 23px;
  }
  .form-card {
    padding: 28px 26px;
  }
  .final-cta > .wrap {
    gap: 25px;
  }
  .final-cta h2 {
    font-size: 27px;
  }
  .final-actions {
    grid-template-columns: 1fr;
    gap: 5px;
    justify-items: center;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand p {
    margin: 0;
    text-align: right;
  }
}
/* Mobile */
@media (max-width: 700px) {
  html {
    scroll-padding-top: 88px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding: 65px 0;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1.2px;
  }
  .utility {
    font-size: 9px;
    padding: 7px 0;
  }
  .utility .wrap > span:first-child {
    font-size: 0;
    gap: 0;
  }
  .utility .wrap > span:first-child:after {
    content: "Allston, Massachusetts";
    font-size: 9px;
    margin-left: 5px;
  }
  .utility .icon {
    width: 11px;
    height: 11px;
  }
  .utility .wrap > span:last-child {
    font-size: 8px;
  }
  .header-inner {
    min-height: 73px;
    gap: 12px;
  }
  .brand,
  .brand img {
    width: 172px;
  }
  .header-call {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .header-call span {
    display: none;
  }
  .header-call .icon {
    width: 18px;
    height: 18px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .menu-toggle .icon {
    width: 21px;
    height: 21px;
  }
  .main-nav {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero {
    padding: 42px 0 25px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.9px;
    white-space: normal;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
    line-height: 1.07;
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero h1 > span:not(.sr-only) {
    display: block;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 480px;
  }
  .hero-actions {
    gap: 9px;
    flex-wrap: nowrap;
  }
  .hero-actions .btn {
    font-size: 10px;
    padding: 13px 12px;
    min-height: 49px;
    gap: 7px;
  }
  .hero-actions .btn .icon {
    width: 15px;
    height: 15px;
  }
  .hero-checks {
    font-size: 9px;
    gap: 16px;
    margin-top: 22px;
  }
  .hero-visual {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-photo {
    height: 355px;
    object-position: center;
  }
  .photo-frame {
    border-radius: 12px;
  }
  .photo-location {
    font-size: 7px;
    padding: 7px 10px;
  }
  .photo-caption {
    font-size: 26px;
    bottom: 44px;
    left: 22px;
    right: 22px;
  }
  .availability-card {
    width: 89%;
    padding: 14px 17px;
  }
  .availability-card strong {
    font-size: 11px;
  }
  .availability-card div > span {
    font-size: 9px;
  }
  .availability-icon {
    width: 35px;
    height: 35px;
  }
  .photo-note {
    margin-top: 17px;
    font-size: 6px;
    justify-content: center;
  }
  .orbit {
    width: 690px;
    height: 690px;
    right: -420px;
    top: 50px;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 8px;
    padding: 21px 0;
  }
  .trust-grid > span {
    font-size: 9px;
    gap: 7px;
    border-right: 0;
  }
  .trust-grid > span:nth-child(4),
  .trust-grid > span:nth-child(5) {
    display: none;
  }
  .trust-grid > span:nth-child(2) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-visual > img {
    height: 310px;
  }
  .about-image-label {
    padding: 17px 19px;
    font-size: 16px;
  }
  .image-corner {
    right: -9px;
    top: -16px;
    font-size: 48px;
    width: 35px;
    height: 35px;
  }
  .about-copy h2 {
    font-size: 29px;
  }
  .about-copy > p:not(.eyebrow):not(.section-lead) {
    font-size: 13px;
  }
  .section-lead {
    font-size: 17px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 17px;
  }
  .text-link {
    font-size: 13px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .heading-aside {
    max-width: none;
    padding: 0;
    margin-top: 22px;
  }
  .heading-aside p {
    font-size: 13px;
  }
  .heading-aside .text-link {
    font-size: 12px;
  }
  .service-index {
    gap: 6px;
    margin-bottom: 21px;
  }
  .service-index a {
    font-size: 8px;
    padding: 7px 8px;
    min-height: 30px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .service-card {
    padding: 25px;
  }
  .card-top {
    margin-bottom: 16px;
  }
  .service-icon {
    width: 44px;
    height: 44px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 18px;
  }
  .card-link {
    font-size: 11px;
  }
  .emergency-section {
    padding: 46px 0;
  }
  .emergency-inner {
    display: block;
  }
  .emergency-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .emergency-copy h2 {
    font-size: 32px;
  }
  .emergency-copy p:last-child {
    font-size: 13px;
  }
  .emergency-actions {
    align-items: flex-start;
    margin-top: 26px;
    gap: 4px;
  }
  .emergency-actions .btn-text-light {
    padding-left: 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .why-intro {
    max-width: none;
    font-size: 14px;
  }
  .benefit-grid {
    gap: 28px 22px;
  }
  .benefit > .icon {
    margin-bottom: 15px;
  }
  .benefit h3 {
    font-size: 15px;
    line-height: 1.5;
  }
  .benefit p {
    font-size: 12px;
  }
  .process-caption {
    display: block;
    margin-top: 20px;
    font-size: 11px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 25px;
    margin-top: 32px;
  }
  .step-number {
    width: 42px;
    height: 42px;
    font-size: 12px;
    margin-bottom: 18px;
  }
  .step:after {
    top: 21px;
    left: 57px;
  }
  .step:nth-child(2):after {
    display: none;
  }
  .step h3 {
    font-size: 15px;
    line-height: 1.5;
  }
  .step p {
    font-size: 12px;
  }
  .area-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .area-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .area-tag {
    font-size: 10px;
  }
  .area-copy address {
    font-size: 12px;
  }
  .area-copy address strong {
    font-size: 13px;
  }
  .map-wrap {
    height: 340px;
  }
  .map-bottom {
    flex-direction: row;
    padding: 15px;
    gap: 10px;
  }
  .map-bottom > span {
    font-size: 6px;
    letter-spacing: 0.6px;
  }
  .map-bottom a {
    font-size: 8px;
    gap: 5px;
  }
  .map-bottom .icon {
    width: 12px;
    height: 12px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-intro > p:not(.eyebrow) {
    max-width: none;
    font-size: 13px;
  }
  .faq-help {
    display: none;
  }
  .faq-item summary {
    padding: 20px 0;
    gap: 18px;
  }
  .faq-item h3 {
    font-size: 13px;
  }
  .faq-answer {
    padding-right: 20px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-copy {
    padding: 0;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  .contact-phone {
    margin: 28px 0;
  }
  .contact-phone span {
    font-size: 27px;
  }
  .contact-phone small {
    font-size: 7px;
  }
  .contact-detail {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .contact-bottom-note {
    display: none;
  }
  .form-card {
    padding: 27px 23px;
  }
  .form-card h3 {
    font-size: 24px;
  }
  .form-intro {
    font-size: 12px;
  }
  .form-row {
    gap: 12px;
  }
  .field input,
  .field textarea {
    font-size: 16px;
    padding: 11px 10px;
  }
  .field label {
    font-size: 10px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 11px;
  }
  .consent-field label > span {
    font-size: 9px;
  }
  .submit-btn {
    font-size: 12px;
  }
  .final-cta {
    padding: 43px 0;
  }
  .final-cta > .wrap {
    display: block;
  }
  .final-cta h2 {
    font-size: 30px;
    max-width: 400px;
  }
  .final-actions {
    margin-top: 24px;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    gap: 7px 17px;
  }
  .final-actions .btn {
    font-size: 10px;
    padding: 14px 16px;
  }
  .final-actions .text-link {
    font-size: 10px;
  }
  .final-actions > span {
    grid-column: 1/-1;
    font-size: 9px;
    justify-self: start;
  }
  .footer {
    padding: 36px 0 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 25px;
    padding-bottom: 30px;
  }
  .footer-brand {
    display: block;
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 205px;
  }
  .footer-brand p {
    text-align: left;
    margin: 14px 0 0;
    font-size: 11px;
  }
  .footer-column:last-child {
    grid-column: 1/-1;
  }
  .footer-column h3 {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .footer-column nav a {
    font-size: 11px;
    min-height: 26px;
  }
  .footer-column address {
    font-size: 11px;
  }
  .footer-legal p {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 8px;
    line-height: 1.8;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
  }
  .footer-bottom > span {
    max-width: 220px;
  }
  .footer-bottom a {
    white-space: nowrap;
    font-size: 9px;
  }
  .mobile-call {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: 16px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--navy-deep);
    background: var(--aqua);
    border: 1px solid #fff5;
    border-radius: 50px;
    padding: 12px 17px;
    min-height: 48px;
    box-shadow: 0 5px 23px #0c222938;
    font-size: 12px;
    font-weight: 700;
    transition:
      opacity 0.15s,
      transform 0.15s;
  }
  .mobile-call .icon {
    width: 17px;
    height: 17px;
  }
  .mobile-call > span {
    font-size: 9px;
    font-weight: 500;
    border-left: 1px solid #15352f30;
    padding-left: 8px;
  }
  .mobile-call.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(6px);
  }
  section,
  article[id],
  details[id] {
    scroll-margin-top: 88px;
  }
}
@media (max-width: 374px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand,
  .brand img {
    width: 157px;
  }
  .header-inner {
    gap: 8px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    font-size: 12px;
  }
  .hero-checks {
    gap: 9px;
    font-size: 8px;
  }
  .hero-photo {
    height: 300px;
  }
  .photo-caption {
    font-size: 23px;
  }
  .availability-card {
    width: 92%;
    padding: 12px;
    gap: 9px;
  }
  .availability-card strong {
    font-size: 10px;
  }
  .hero .eyebrow {
    font-size: 6px;
  }
  .benefit-grid {
    gap: 25px 17px;
  }
  .benefit h3 {
    font-size: 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .final-actions {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .final-actions > span {
    grid-column: auto;
  }
  .footer-top {
    gap: 27px 17px;
  }
  .footer-phone {
    font-size: 18px;
  }
  .contact-phone span {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}
@media print {
  .site-header {
    position: static;
  }
  .hero,
  .contact-section,
  .emergency-section {
    background: white;
    color: #222;
  }
  .hero h1,
  .contact-copy h2,
  .emergency-copy h2 {
    color: #111;
  }
  .mobile-call,
  .menu-toggle,
  .utility,
  .orbit,
  .map-wrap,
  form {
    display: none;
  }
  .section {
    padding: 35px 0;
  }
  .wrap {
    width: 95%;
  }
  .service-card {
    break-inside: avoid;
  }
  .faq-item .faq-answer {
    display: block;
  }
  .footer {
    background: white;
  }
}

/* Customer-supplied photography — each photo appears in one location only. */
.hero-photo {
  height: auto;
  aspect-ratio: 980 / 551;
  object-fit: contain;
}
.photo-caption {
  bottom: 35px;
  font-size: 24px;
}
.about-visual > img {
  height: auto;
  aspect-ratio: 822 / 600;
  object-fit: contain;
}
.service-card {
  padding: 0;
  overflow: hidden;
}
.service-media {
  height: 205px;
  width: 100%;
  background: #e5ede7;
  border-bottom: 1px solid #dce4df;
  overflow: hidden;
  flex-shrink: 0;
}
.service-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-content {
  padding: 26px 29px 23px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.service-media-graphic {
  background:
    radial-gradient(
      circle at center,
      transparent 53px,
      #6ce7d61c 54px,
      transparent 55px,
      transparent 76px,
      #6ce7d614 77px,
      transparent 78px
    ),
    #10292f;
  color: #9befdc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.service-media-graphic > .icon {
  width: 49px;
  height: 49px;
  stroke-width: 1.15;
}
.service-media-graphic > span {
  font:
    500 12px "Manrope",
    sans-serif;
  letter-spacing: 0.1px;
  color: #e2f0e9;
}
.why-photo {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 27px 0 0;
  padding: 11px;
  background: #f0f5ef;
  border: 1px solid #e2e9df;
  border-radius: 10px;
  max-width: 415px;
}
.why-photo > img {
  width: 46%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
}
.why-photo figcaption {
  color: #2d5f50;
  font:
    650 15px/1.8 "Manrope",
    sans-serif;
  letter-spacing: -0.2px;
}
.footer-wordmark {
  display: block;
  color: #163f43;
  font:
    800 17px/1.4 "Manrope",
    sans-serif;
  letter-spacing: -0.5px;
}
.footer-wordmark small {
  display: block;
  color: #5c6d63;
  font:
    600 10px/1.6 "DM Sans",
    sans-serif;
  letter-spacing: 3px;
  margin-top: 4px;
}
@media (max-width: 1023px) {
  .service-media {
    height: 165px;
  }
  .service-content {
    padding: 22px 20px 20px;
  }
  .why-photo {
    gap: 14px;
  }
  .why-photo figcaption {
    font-size: 12px;
  }
  .photo-caption {
    font-size: 20px;
    left: 18px;
  }
}
@media (max-width: 700px) {
  .hero-photo {
    height: auto;
  }
  .about-visual > img {
    height: auto;
  }
  .photo-caption {
    font-size: 21px;
    bottom: 33px;
  }
  .photo-location {
    font-size: 6px;
  }
  .service-media {
    height: 215px;
  }
  .service-content {
    padding: 25px;
  }
  .why-photo {
    max-width: none;
  }
  .why-photo figcaption {
    font-size: 14px;
  }
}
@media (max-width: 374px) {
  .photo-caption {
    font-size: 17px;
  }
  .service-content {
    padding: 23px;
  }
  .service-media {
    height: 190px;
  }
  .why-photo figcaption {
    font-size: 12px;
  }
}
