/* IntelliBreeze — custom single-page visual system. */
:root {
  --color-bg: #fafbf9;
  --color-surface: #fff;
  --color-primary: #0b2029;
  --color-accent: #64e3d3;
  --color-accent-dark: #09685e;
  --color-mint: #eaf5f0;
  --color-text: #162c33;
  --color-muted: #617176;
  --color-line: #dfe6e3;
  --color-lime: #d6efb3;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --shadow-soft: 0 16px 48px #0b20290a;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --font-heading: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
}
h2 {
  font-size: clamp(32px, 3.1vw, 44px);
  font-weight: 750;
  line-height: 1.21;
  letter-spacing: -1.8px;
}
h3 {
  font-weight: 750;
  line-height: 1.4;
}
p {
  color: var(--color-muted);
}
::selection {
  background: var(--color-accent);
  color: var(--color-primary);
}
:focus-visible {
  outline: 3px solid #078d7f;
  outline-offset: 5px;
  border-radius: 3px;
}
.hero :focus-visible,
.site-header :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--color-accent);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}
.section {
  padding: 100px 0;
}
section[id],
details[id],
article[id] {
  scroll-margin-top: 110px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: white;
  color: #0b2029;
  z-index: 1000;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
#main-content:focus {
  outline: none;
}
.topbar {
  background: #132f37;
  color: #c3d1d2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25px;
}
.topbar .wrap {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar .icon {
  width: 13px;
  height: 13px;
  color: #6ddccc;
}
.status-dot {
  height: 7px;
  width: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #aee68e;
  flex-shrink: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0b2029;
  color: #fff;
  border-bottom: 1px solid #ffffff12;
  transition: box-shadow 0.2s;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 30px #0002;
}
.header-inner {
  height: 89px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  width: 223px;
  flex-shrink: 0;
}
.brand img {
  width: 223px;
  height: auto;
}
#main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}
#main-nav a {
  font-size: 12px;
  color: #cad6d8;
  font-weight: 500;
  padding-block: 16px;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s;
}
#main-nav a:hover,
#main-nav a[aria-current] {
  color: var(--color-accent);
}
#main-nav a[aria-current]:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: calc(50% - 2px);
  bottom: 7px;
  background: var(--color-accent);
  border-radius: 50%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 53px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.18s,
    transform 0.18s var(--ease-out),
    border-color 0.18s;
  white-space: nowrap;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-primary:hover {
  background: #a1efdf;
}
.btn-outline {
  color: #fff;
  border-color: #667c84;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-accent);
  background: #ffffff09;
}
.btn-light {
  background: transparent;
  border-color: #c8d7d1;
  color: var(--color-primary);
}
.btn-light:hover {
  background: #e9f4ed;
  border-color: #a4bdb2;
}
.btn-dark {
  background: var(--color-primary);
  color: white;
}
.btn-dark:hover {
  background: #1b424a;
}
.btn-transparent {
  border-color: #7caf91;
  background: transparent;
  color: var(--color-primary);
}
.btn-transparent:hover {
  background: #ffffff40;
}
.header-call {
  font-size: 12px;
  min-height: 43px;
  padding: 11px 15px;
}
.header-call .icon {
  width: 15px;
  height: 15px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  padding: 63px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 79px;
  align-items: center;
  position: relative;
}
.air-lines {
  position: absolute;
  width: 700px;
  height: 850px;
  border: 1px solid #53bdaa0a;
  border-radius: 50%;
  left: 16%;
  top: -140px;
  transform: rotate(-25deg);
  box-shadow:
    0 0 0 35px #53bdaa06,
    0 0 0 70px #53bdaa04,
    0 0 0 110px #53bdaa04,
    0 0 0 155px #53bdaa03;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #b3d5d3;
  background: #18353b;
  border: 1px solid #2c4d50;
  border-radius: 30px;
  padding: 7px 12px;
}
.availability .status-dot {
  background: var(--color-accent);
  width: 6px;
  height: 6px;
}
.hero h1 {
  font-weight: 650;
  font-size: clamp(52px, 5.2vw, 76px);
  letter-spacing: -3.7px;
  line-height: 1.045;
  margin: 21px 0 23px;
}
.hero h1 span {
  color: var(--color-accent);
}
.hero-copy > p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 440px;
  color: #b9c8ce;
}
.hero .button-row {
  margin-top: 27px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7d5d7;
  font-size: 12px;
  margin-top: 20px;
  padding-block: 4px;
}
.hero-link .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.18s;
}
.hero-link:hover .icon {
  transform: translateX(5px);
}
.hero-bottom {
  display: flex;
  gap: 20px;
  margin-top: 27px;
  font-size: 10px;
  color: #91a8ae;
}
.hero-bottom span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-bottom .icon {
  width: 13px;
  height: 13px;
  color: #73cdbb;
}
.hero-visual {
  position: relative;
  padding: 11px 0 32px;
}
.photo-frame {
  position: relative;
  height: 500px;
  border-radius: 100px 14px 100px 14px;
  overflow: hidden;
}
.photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}
.photo-frame:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #06242aaa);
}
.photo-caption {
  position: absolute;
  bottom: 40px;
  left: 30px;
  color: #fff;
  z-index: 2;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 500;
}
.caption-line {
  display: inline-block;
  background: var(--color-accent);
  width: 24px;
  height: 1px;
}
.local-badge {
  position: absolute;
  right: -18px;
  top: -9px;
  background: #203e44f5;
  border: 1px solid #4d696c;
  border-radius: 10px;
  padding: 14px 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px #0002;
  font-size: 12px;
  color: #fff;
}
.local-badge > .icon {
  color: var(--color-accent);
  width: 22px;
  height: 22px;
}
.local-badge strong {
  font-size: 9px;
  font-weight: 450;
  color: #b0c6c9;
}
.comfort-card {
  position: absolute;
  bottom: 16px;
  left: -38px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  color: var(--color-primary);
  padding: 19px 22px;
  border-radius: 13px;
  box-shadow: 0 15px 35px #0002;
  min-width: 292px;
}
.comfort-card-icon {
  background: #e8f6ed;
  border: 1px solid #ddede1;
  color: #24795b;
  border-radius: 50%;
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
}
.comfort-card-icon .icon {
  width: 25px;
  height: 25px;
}
.comfort-card strong {
  font: 800 30px/1.2 var(--font-heading);
  letter-spacing: -1px;
  display: block;
}
.comfort-card span {
  display: block;
  color: #6d7879;
  font-size: 10px;
  margin-top: 3px;
}
.comfort-card > .status-dot {
  margin-left: 9px;
  background: #559568;
  width: 7px;
  height: 7px;
}
.visual-note {
  position: absolute;
  right: 3px;
  bottom: -14px;
  color: #85a2a8;
  font-size: 9px;
  letter-spacing: 0.3px;
}
.benefits {
  background: #f0f5ef;
  border-bottom: 1px solid #e1e9de;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 29px;
  gap: 25px;
}
.benefit {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 13px;
  border-right: 1px solid #d7e1d3;
}
.benefit:last-child {
  border: 0;
}
.benefit > .icon {
  color: #337a66;
  width: 26px;
  height: 26px;
}
.benefit strong {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  display: block;
}
.benefit span {
  font-size: 10px;
  color: #6d7e75;
  display: block;
  margin-top: 4px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #317866;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  margin-bottom: 17px;
}
.eyebrow > span {
  width: 17px;
  height: 2px;
  background: #49a58b;
  display: inline-block;
}
.soft-text {
  color: #78877e;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 36px;
}
.section-heading > p {
  font-size: 14px;
  max-width: 333px;
  line-height: 1.85;
  padding-bottom: 3px;
}
.services {
  padding-bottom: 80px;
}
.service-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-bottom: 25px;
  gap: 20px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  padding: 10px 15px;
  min-height: 43px;
  border-radius: 6px;
  border: 1px solid #dfe6e0;
  font-size: 11px;
  font-weight: 550;
  background: transparent;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: background 0.18s;
}
.filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}
.filter .icon {
  width: 14px;
  height: 14px;
}
.filter:hover:not(.active) {
  background: #edf3ed;
}
.service-counter {
  font-size: 10px;
  color: #7b8982;
  white-space: nowrap;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 29px 27px 25px;
  border: 1px solid #dce4dd;
  background: #fff;
  border-radius: 12px;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s var(--ease-out),
    border-color 0.2s,
    box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #a7c7b7;
  box-shadow: var(--shadow-soft);
}
.service-icon {
  background: #edf5ed;
  color: #477b61;
  width: 47px;
  height: 47px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
}
.service-card h3 {
  font-size: 16px;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 19px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
  color: #175c4b;
  padding-block: 6px;
}
.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.18s;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
}
.card-number {
  position: absolute;
  right: 24px;
  top: 29px;
  font-size: 10px;
  color: #9aa89f;
  letter-spacing: 1px;
}
.services-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
}
.services-bottom p {
  font-size: 12px;
}
.services-bottom p a {
  color: #235e4e;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.services-bottom .btn {
  font-size: 11px;
  min-height: 43px;
  padding: 11px 18px;
}
.about {
  background: #eef2ec;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 87px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding-bottom: 38px;
}
.about-visual > img {
  height: 516px;
  width: 100%;
  object-fit: cover;
  object-position: 49%;
  border-radius: 15px 80px 15px 15px;
}
.about-label {
  position: absolute;
  right: -25px;
  bottom: 0;
  background: #fff;
  border: 1px solid #e0e8dd;
  box-shadow: var(--shadow-soft);
  border-radius: 10px;
  padding: 23px 28px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 11px;
  color: #727f75;
}
.about-label > .icon {
  width: 33px;
  height: 33px;
  color: #378770;
}
.about-label strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 750;
  color: #203b31;
  display: inline-block;
  margin-top: 4px;
}
.about-copy h2 {
  margin-bottom: 22px;
}
.about-copy h3 {
  font-size: 15px;
  letter-spacing: -0.4px;
  margin-bottom: 13px;
}
.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 13px;
}
.about-copy > .text-link {
  margin-top: 8px;
}
.center-heading {
  text-align: center;
  max-width: 610px;
  margin: 0 auto 52px;
}
.center-heading .eyebrow {
  justify-content: center;
}
.center-heading > p:last-child {
  font-size: 13px;
  line-height: 1.85;
  max-width: 465px;
  margin: 20px auto 0;
}
.why {
  background: #fbfcf9;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 52px;
  row-gap: 38px;
}
.why-card {
  border-top: 1px solid #dfe6dc;
  padding-top: 24px;
}
.line-icon {
  margin-bottom: 17px;
  color: #568669;
}
.line-icon .icon {
  width: 29px;
  height: 29px;
}
.why-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.why-card p {
  font-size: 12px;
  max-width: 320px;
  line-height: 1.8;
}
.center-link {
  text-align: center;
  margin-top: 38px;
}
.emergency {
  position: relative;
  background: #0f2a32;
  overflow: hidden;
  color: #fff;
}
.emergency-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 62px;
  gap: 60px;
}
.emergency-mark {
  position: absolute;
  right: 245px;
  top: 12px;
  font: 600 235px/1.3 var(--font-heading);
  letter-spacing: -14px;
  color: #ffffff04;
  pointer-events: none;
}
.emergency-mark span {
  color: #ffffff06;
}
.emergency-copy {
  max-width: 610px;
  position: relative;
}
.emergency .eyebrow {
  color: #8ed5c1;
}
.emergency .eyebrow > span {
  background: #79d4b7;
}
.emergency h2 {
  font-size: 43px;
  letter-spacing: -1.8px;
}
.emergency-copy > p:last-child {
  font-size: 13px;
  line-height: 1.8;
  color: #aec4c8;
  max-width: 490px;
  margin-top: 17px;
}
.emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 240px;
}
.emergency-actions > span {
  text-align: center;
  font-size: 10px;
  color: #9fb8bb;
  margin-top: 4px;
}
.process {
  background: #fafbf9;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
  margin-top: 45px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cddbd0;
  padding-top: 22px;
  margin-bottom: 25px;
}
.step-top > span {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #85a28c;
  font-family: var(--font-heading);
}
.step-top > .icon {
  width: 22px;
  height: 22px;
  color: #59826c;
}
.process-step h3 {
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 12px;
  line-height: 1.85;
}
.service-guide {
  background: #edf2ed;
}
.guide-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 85px;
  align-items: start;
}
.guide-intro {
  position: sticky;
  top: 136px;
}
.guide-intro > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  margin: 23px 0 15px;
  max-width: 300px;
}
.small-note {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 34px;
  border-top: 1px solid #d7e1d7;
  padding-top: 23px;
  max-width: 280px;
}
.small-note > .icon {
  color: #5c8b72;
}
.small-note p {
  font-size: 11px;
}
.small-note a {
  color: #244e3b;
  font-weight: 600;
}
.service-detail {
  border-bottom: 1px solid #cfdcd0;
}
.service-detail:first-child {
  border-top: 1px solid #cfdcd0;
}
.service-detail summary {
  padding: 18px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  min-height: 64px;
}
.service-detail summary::-webkit-details-marker {
  display: none;
}
.service-detail summary > svg:first-child {
  width: 20px;
  height: 20px;
  color: #578e74;
}
.service-detail summary h3 {
  font-size: 13px;
  letter-spacing: -0.2px;
}
.service-detail .plus {
  margin-left: auto;
  width: 17px;
  height: 17px;
  color: #5a7c67;
  transition: transform 0.2s;
}
.service-detail[open] .plus {
  transform: rotate(45deg);
}
.detail-body {
  padding: 0 22px 23px 33px;
}
.detail-body > p {
  font-size: 12px;
  line-height: 1.9;
}
.detail-body > .text-link {
  margin-top: 12px;
  font-size: 11px;
}
.area {
  background: #fff;
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.area-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 20px;
  max-width: 400px;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  font-size: 12px;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-list .icon {
  width: 14px;
  height: 14px;
  color: #41806a;
}
.area-copy > .fine-print {
  font-size: 10px !important;
  max-width: 410px !important;
  line-height: 1.8 !important;
}
.area-copy > .text-link {
  margin-top: 15px;
}
.map-card {
  border: 1px solid #d6e1d8;
  border-radius: 17px;
  overflow: hidden;
  background: #edf1e9;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: repeating-linear-gradient(
    32deg,
    transparent,
    transparent 48px,
    #dce5d7 49px,
    #dce5d7 50px
  );
}
.map-placeholder > .icon {
  height: 37px;
  width: 37px;
  color: #408d6f;
}
.map-placeholder > p {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 650;
  color: #3d6e50;
  margin-top: 14px;
}
.map-placeholder > span {
  font-size: 11px;
  color: #627b65;
  margin-top: 4px;
}
#service-map {
  height: 370px;
  width: 100%;
}
.map-canvas {
  height: 370px !important;
  width: 100%;
}
#service-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-address {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  background: #f7faf4;
}
.map-address > .icon {
  color: #5d8b6d;
}
.map-address strong {
  font-size: 11px;
  font-weight: 650;
  display: block;
}
.map-address span {
  font-size: 10px;
  color: #79917d;
  display: block;
  margin-top: 3px;
}
.map-address > a {
  margin-left: auto;
  display: grid;
  place-items: center;
  background: #e8efe3;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}
.map-address > a .icon {
  width: 17px;
  height: 17px;
}
.faq {
  border-top: 1px solid #edf0e9;
  background: #fafbf8;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 20px;
  max-width: 300px;
}
.faq-help {
  margin-top: 35px;
  border: 1px solid #dce6d9;
  background: #f0f5ec;
  border-radius: 12px;
  padding: 25px;
  max-width: 315px;
}
.faq-help > .icon {
  color: #55826a;
  margin-bottom: 16px;
}
.faq-help h3 {
  font-size: 13px;
  margin-bottom: 10px;
}
.faq-help p {
  font-size: 11px;
  line-height: 1.85;
}
.faq-help .text-link {
  font-size: 11px;
  margin-top: 11px;
}
.faq-item {
  border-bottom: 1px solid #dce3d9;
}
.faq-item:first-child {
  border-top: 1px solid #dce3d9;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  padding: 22px 0;
  font-size: 13px;
  font-weight: 650;
  font-family: var(--font-heading);
  line-height: 1.6;
}
.faq-trigger .icon {
  width: 17px;
  height: 17px;
  color: #678b73;
  transition: transform 0.2s;
}
.faq-trigger[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 28px 24px 0;
  font-size: 12px;
  line-height: 1.9;
}
.contact {
  background: var(--color-primary);
  color: #fff;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 91px;
  align-items: start;
}
.contact .eyebrow {
  color: #91c9bc;
}
.contact h2 {
  font-size: clamp(35px, 3.7vw, 53px);
  letter-spacing: -2px;
  line-height: 1.2;
}
.contact-copy h2 span {
  color: var(--color-accent);
}
.contact-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: #b3c5ca;
  line-height: 1.9;
  margin-top: 24px;
  max-width: 360px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 28px 0;
  border-bottom: 1px solid #ffffff1f;
  margin-top: 11px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.7px;
}
.contact-phone > .icon:first-child {
  color: var(--color-accent);
  width: 24px;
  height: 24px;
}
.contact-phone > .icon:last-child {
  margin-left: auto;
  color: #99c2bb;
  width: 20px;
  height: 20px;
}
.contact-phone small {
  display: block;
  font: 600 9px var(--font-body);
  letter-spacing: 1.5px;
  color: #8aadae;
  margin-bottom: 8px;
}
.contact-info {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.contact-info > div {
  display: flex;
  gap: 14px;
}
.contact-info .icon {
  width: 18px;
  height: 18px;
  color: #74aaa0;
  margin-top: 3px;
}
.contact-info p {
  font-size: 12px;
  line-height: 1.9;
  color: #b4c8cb;
}
.contact-info strong {
  font-weight: 550;
  color: #dbe9e8;
}
.contact-info span {
  color: #8ea6ad;
  font-size: 11px;
}
.form-card {
  background: #fbfcf9;
  color: var(--color-primary);
  padding: 33px 34px 30px;
  border-radius: 16px;
}
.form-kicker {
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 650;
  color: #5d7e68;
}
.form-card h2 {
  font-size: 25px;
  letter-spacing: -1px;
  margin: 9px 0 9px;
}
.form-card > p {
  font-size: 11px;
  margin-bottom: 23px;
}
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 17px;
}
.field {
  min-width: 0;
}
.field label {
  font-size: 10px;
  font-weight: 650;
  display: block;
  margin-bottom: 7px;
}
.field label span {
  color: #56856b;
}
.field input,
.field select,
.field textarea {
  font-size: 11px;
  width: 100%;
  border: 1px solid #dbe3d9;
  border-radius: 6px;
  background: #fff;
  color: #17332b;
  min-height: 43px;
  padding: 11px 12px;
  transition: border-color 0.18s;
}
.field select {
  padding-right: 24px;
}
.field textarea {
  resize: vertical;
  min-height: 106px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #8c9790;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #438e75;
  outline: 2px solid #5bbaa830;
  outline-offset: 1px;
}
.field [aria-invalid="true"] {
  border-color: #b54b48;
}
.full-width {
  grid-column: 1/-1;
}
.field-error {
  display: block;
  font-size: 10px;
  color: #a12e2b;
  margin-top: 4px;
  line-height: 1.5;
}
.field-error:empty {
  display: none;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.consent-field {
  margin-top: 18px;
}
.consent-field > label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 9px;
  line-height: 1.8;
  color: #66766b;
}
.consent-field input {
  accent-color: #287c61;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 2px 0 0;
}
.consent-field input[aria-invalid="true"] {
  outline: 2px solid #b54b48;
  outline-offset: 2px;
}
.form-submit {
  margin-top: 20px;
  width: 100%;
  font-size: 12px;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 18px;
}
.form-note {
  font-size: 9px;
  text-align: center;
  margin-top: 13px;
  line-height: 1.7;
  color: #77857b;
}
.form-note a {
  text-decoration: underline;
  color: #37654d;
}
.form-status:empty {
  display: none;
}
.form-status {
  padding: 11px 13px;
  margin-top: 15px;
  background: #fff2df;
  border: 1px solid #e9c792;
  border-radius: 6px;
  color: #725324;
  font-size: 11px;
  line-height: 1.75;
}
.form-status.success {
  color: #1d6548;
  background: #e3f4e8;
  border-color: #a5d3b4;
}
.final-cta {
  padding: 55px 0;
  background: #d9ebc7;
}
.final-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta h2 {
  font-size: 34px;
  letter-spacing: -1.4px;
}
.final-cta p:not(.eyebrow) {
  font-size: 12px;
  color: #617655;
  margin-top: 13px;
}
.final-cta .eyebrow {
  color: #5a7e45;
  font-size: 9px;
  margin-bottom: 13px;
}
.final-cta .btn {
  font-size: 11px;
  padding: 13px 18px;
  min-height: 47px;
}
.site-footer {
  background: #091d25;
  color: #c7d5d9;
  padding: 55px 0 29px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 100px;
  padding-bottom: 35px;
}
.footer-brand img {
  width: 260px;
  height: auto;
  margin: -13px 0 14px -5px;
}
.footer-brand > p {
  font-size: 11px;
  color: #829ea5;
  line-height: 1.85;
}
.footer-top h3 {
  font-family: var(--font-body);
  font-size: 11px;
  color: #e1ecec;
  font-weight: 550;
  margin-bottom: 20px;
}
.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  font-size: 10px;
  color: #94adb4;
}
.footer-top nav a:hover {
  color: var(--color-accent);
}
.footer-phone {
  font-size: 19px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.4px;
  display: flex;
  gap: 13px;
  align-items: center;
  color: #dae7e5;
}
.footer-phone > .icon {
  width: 15px;
  height: 15px;
  color: #80b6a9;
}
.footer-top > div:last-child > p {
  font-size: 11px;
  margin-top: 15px;
  color: #92aab1;
}
.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  margin-top: 15px;
  color: #b4cbc9;
}
.footer-hours .status-dot {
  width: 5px;
  height: 5px;
}
.footer-bottom {
  border-top: 1px solid #ffffff14;
  padding: 24px 0 19px;
  font-size: 9px;
  color: #8aa2aa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a1b9bf;
}
.footer-bottom .icon {
  width: 12px;
  height: 12px;
}
.disclaimer {
  font-size: 9px;
  line-height: 1.85;
  color: #8099a1;
}
.mobile-call {
  display: none;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 75px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .photo-frame {
    height: 535px;
  }
}
@media (max-width: 1199px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 20px;
  }
  .brand,
  .brand img {
    width: 195px;
  }
  #main-nav {
    gap: 16px;
  }
  #main-nav a {
    font-size: 11px;
  }
  .header-call {
    padding: 10px 12px;
    font-size: 11px;
  }
  .hero-grid {
    gap: 60px;
  }
  .hero h1 {
    font-size: 67px;
  }
  .photo-frame {
    height: 478px;
  }
  .local-badge {
    right: -10px;
    padding: 12px;
  }
  .about-grid,
  .contact-grid {
    gap: 55px;
  }
  .faq-grid,
  .guide-grid {
    gap: 55px;
  }
  .benefits-grid {
    gap: 18px;
  }
  .benefit {
    gap: 10px;
  }
  .benefit span {
    font-size: 9px;
  }
  .benefit strong {
    font-size: 11px;
  }
  .why-grid {
    column-gap: 35px;
  }
  .area-grid {
    gap: 45px;
  }
  .footer-top {
    gap: 65px;
  }
  .final-cta .wrap {
    gap: 25px;
  }
  .final-cta .button-row {
    gap: 8px;
  }
}
@media (max-width: 1023px) {
  .header-inner {
    height: 78px;
  }
  .brand,
  .brand img {
    width: 200px;
  }
  .header-call {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
  }
  #main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #102c35;
    padding: 15px 32px 24px;
    border-top: 1px solid #35515a;
    box-shadow: 0 15px 25px #0002;
  }
  #main-nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 20px;
  }
  #main-nav a {
    font-size: 14px;
    padding: 12px;
  }
  #main-nav a[aria-current]:after {
    display: none;
  }
  .hero-grid {
    gap: 44px;
  }
  .hero h1 {
    font-size: 59px;
    letter-spacing: -3px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero {
    padding-top: 48px;
  }
  .availability {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .photo-frame {
    height: 450px;
    border-radius: 75px 12px 75px 12px;
  }
  .local-badge {
    right: -8px;
    top: 5px;
    font-size: 10px;
  }
  .local-badge strong {
    font-size: 8px;
  }
  .local-badge .icon {
    width: 18px;
    height: 18px;
  }
  .comfort-card {
    left: -22px;
    min-width: 248px;
    padding: 16px;
    gap: 10px;
  }
  .comfort-card strong {
    font-size: 25px;
  }
  .comfort-card span {
    font-size: 9px;
  }
  .comfort-card-icon {
    width: 43px;
    height: 43px;
  }
  .hero .btn {
    font-size: 11px;
    padding: 13px 16px;
    min-height: 48px;
  }
  .hero .button-row {
    gap: 9px;
  }
  .hero-bottom {
    gap: 12px;
    font-size: 8px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-block: 25px;
  }
  .benefit:nth-child(2) {
    border: 0;
  }
  .benefit strong {
    font-size: 12px;
  }
  .benefit span {
    font-size: 10px;
  }
  .section {
    padding: 75px 0;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-card h3 {
    font-size: 14px;
  }
  .service-card p {
    font-size: 11px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-counter {
    display: none;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 285px;
    font-size: 12px;
  }
  .about-grid {
    gap: 45px;
  }
  .about-visual > img {
    height: 520px;
  }
  .about-label {
    right: -16px;
    padding: 18px;
    font-size: 10px;
  }
  .about-label strong {
    font-size: 11px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .about-copy h3 {
    font-size: 13px;
  }
  .why-grid {
    column-gap: 25px;
  }
  .why-card h3 {
    font-size: 13px;
  }
  .emergency-inner {
    gap: 35px;
  }
  .emergency h2 {
    font-size: 38px;
  }
  .emergency-copy > p:last-child {
    font-size: 12px;
  }
  .emergency-actions {
    min-width: 210px;
  }
  .emergency-actions .btn {
    font-size: 11px;
  }
  .process-grid {
    gap: 22px;
  }
  .process-step h3 {
    font-size: 13px;
  }
  .process-step p {
    font-size: 11px;
  }
  .guide-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
  }
  .guide-intro h2 {
    font-size: 33px;
  }
  .service-detail summary h3 {
    font-size: 12px;
  }
  .area-grid {
    gap: 35px;
  }
  .area-copy h2 {
    font-size: 32px;
  }
  .area-list {
    font-size: 11px;
    gap: 9px;
  }
  .area-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .map-address {
    padding: 18px 15px;
  }
  .map-address strong {
    font-size: 9px;
  }
  .map-address span {
    font-size: 8px;
  }
  .map-address > .icon {
    width: 18px;
    height: 18px;
  }
  .faq-grid {
    gap: 40px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-trigger {
    font-size: 12px;
  }
  .contact-grid {
    gap: 40px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .contact h2 {
    font-size: 37px;
  }
  .form-card {
    padding: 26px;
  }
  .form-card h2 {
    font-size: 23px;
  }
  .contact-phone {
    font-size: 20px;
    gap: 10px;
  }
  .contact-phone .icon:last-child {
    display: none;
  }
  .form-fields {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .full-width {
    grid-column: auto;
  }
  .final-cta .wrap {
    align-items: flex-start;
  }
  .final-cta .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .footer-top {
    gap: 45px;
  }
  .footer-brand img {
    width: 220px;
  }
  .footer-phone {
    font-size: 17px;
  }
  .footer-top nav {
    gap: 10px 18px;
  }
}
@media (max-width: 767px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .topbar .wrap {
    justify-content: center;
    min-height: 30px;
  }
  .topbar span:first-child {
    display: none;
  }
  .topbar span {
    font-size: 10px;
  }
  .header-inner {
    height: 75px;
    gap: 12px;
  }
  .brand,
  .brand img {
    width: 190px;
  }
  .header-call {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  #main-nav {
    padding: 13px 20px 22px;
  }
  .hero {
    padding: 35px 0 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .hero h1 {
    font-size: clamp(54px, 10.6vw, 72px);
    line-height: 1.06;
    letter-spacing: -3.2px;
    margin-block: 22px;
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero h1 span:before {
    content: " ";
  }
  .availability {
    font-size: 9px;
    padding: 7px 11px;
    letter-spacing: 1.1px;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 490px;
    line-height: 1.85;
  }
  .hero .button-row {
    gap: 11px;
    margin-top: 23px;
  }
  .hero .btn {
    font-size: 12px;
    padding: 14px 19px;
    min-height: 49px;
  }
  .hero-link {
    font-size: 11px;
    margin-top: 16px;
  }
  .hero-bottom {
    font-size: 10px;
    gap: 19px;
    margin-top: 17px;
  }
  .hero-visual {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
    padding: 6px 0 28px;
  }
  .photo-frame {
    height: 375px;
    border-radius: 70px 12px 70px 12px;
  }
  .photo-frame > img {
    object-position: 50% 45%;
  }
  .local-badge {
    right: 0;
    top: 0;
    padding: 10px 13px;
    font-size: 11px;
  }
  .local-badge strong {
    font-size: 8px;
  }
  .comfort-card {
    left: 12px;
    bottom: 6px;
    min-width: 260px;
    padding: 16px 18px;
  }
  .comfort-card strong {
    font-size: 29px;
  }
  .comfort-card span {
    font-size: 10px;
  }
  .visual-note {
    bottom: -16px;
    right: 15px;
    font-size: 8px;
  }
  .photo-caption {
    bottom: 43px;
    left: 23px;
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .benefits-grid {
    gap: 20px 17px;
    padding-block: 25px;
  }
  .benefit {
    gap: 10px;
    padding-right: 7px;
    align-items: flex-start;
  }
  .benefit > .icon {
    width: 22px;
    height: 22px;
    margin-top: 3px;
  }
  .benefit strong {
    font-size: 10px;
    line-height: 1.5;
  }
  .benefit span {
    font-size: 9px;
    line-height: 1.65;
    margin-top: 4px;
    max-width: 120px;
  }
  .section {
    padding: 62px 0;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1.4px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
    margin-bottom: 14px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading > p {
    max-width: 450px;
    font-size: 13px;
    margin-top: 19px;
    line-height: 1.8;
  }
  .service-toolbar {
    margin-bottom: 21px;
    padding-top: 1px;
  }
  .filters {
    gap: 7px;
  }
  .filter {
    font-size: 10px;
    padding: 9px 12px;
    min-height: 39px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card {
    padding: 22px 17px 18px;
    min-height: 255px;
    border-radius: 10px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    margin-bottom: 17px;
  }
  .service-icon .icon {
    width: 21px;
    height: 21px;
  }
  .service-card h3 {
    font-size: 13px;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }
  .service-card > p {
    font-size: 11px;
    line-height: 1.8;
  }
  .card-number {
    right: 15px;
    top: 21px;
    font-size: 8px;
  }
  .service-card .text-link {
    font-size: 10px;
  }
  .services-bottom {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-top: 22px;
  }
  .services-bottom p {
    font-size: 11px;
  }
  .services-bottom .btn {
    width: 100%;
    min-height: 45px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-visual {
    max-width: 540px;
    padding-bottom: 29px;
  }
  .about-visual > img {
    height: 345px;
    border-radius: 12px 65px 12px 12px;
  }
  .about-label {
    right: 12px;
    padding: 17px 20px;
  }
  .about-label strong {
    font-size: 12px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .about-copy h3 {
    font-size: 14px;
  }
  .about-copy h2 {
    margin-bottom: 20px;
  }
  .center-heading {
    margin-bottom: 32px;
  }
  .center-heading > p:last-child {
    font-size: 12px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 22px;
  }
  .why-card {
    padding-top: 20px;
  }
  .why-card h3 {
    font-size: 13px;
    line-height: 1.5;
  }
  .why-card p {
    font-size: 11px;
  }
  .line-icon {
    margin-bottom: 14px;
  }
  .line-icon .icon {
    width: 25px;
    height: 25px;
  }
  .center-link {
    margin-top: 29px;
  }
  .emergency-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    padding-block: 47px;
  }
  .emergency h2 {
    font-size: 37px;
  }
  .emergency-copy > p:last-child {
    max-width: 460px;
    font-size: 13px;
  }
  .emergency-actions {
    width: 100%;
    max-width: 390px;
  }
  .emergency-actions .btn {
    font-size: 12px;
  }
  .emergency-actions > span {
    font-size: 10px;
  }
  .emergency-mark {
    right: -10px;
    top: 25px;
    font-size: 170px;
    letter-spacing: -10px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    margin-top: 29px;
  }
  .step-top {
    padding-top: 14px;
    margin-bottom: 17px;
  }
  .step-top > span {
    font-size: 27px;
  }
  .process-step h3 {
    font-size: 13px;
  }
  .process-step p {
    font-size: 12px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .guide-intro {
    position: static;
  }
  .guide-intro h2 br {
    display: none;
  }
  .guide-intro > p:not(.eyebrow) {
    margin-top: 17px;
    max-width: 450px;
    font-size: 13px;
  }
  .small-note {
    display: none;
  }
  .service-detail summary {
    padding: 17px 0;
    min-height: 62px;
  }
  .service-detail summary h3 {
    font-size: 12px;
  }
  .detail-body > p {
    font-size: 12px;
  }
  .area-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .area-copy h2 {
    font-size: 33px;
  }
  .area-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 450px;
  }
  .area-list {
    font-size: 12px;
    gap: 11px 20px;
    max-width: 460px;
  }
  .map-card {
    width: 100%;
  }
  #service-map,
  .map-canvas {
    height: 330px !important;
  }
  .map-address {
    padding: 19px;
  }
  .map-address strong {
    font-size: 10px;
  }
  .map-address span {
    font-size: 9px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .faq-intro > p:not(.eyebrow) {
    margin-top: 17px;
    font-size: 13px;
  }
  .faq-help {
    display: none;
  }
  .faq-trigger {
    font-size: 12px;
    padding: 21px 0;
  }
  .faq-answer {
    font-size: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact h2 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }
  .contact-copy h2 br:nth-child(2) {
    display: none;
  }
  .contact-copy h2 span:before {
    content: " ";
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 460px;
    margin-top: 20px;
  }
  .contact-phone {
    font-size: 25px;
    max-width: 440px;
    gap: 16px;
  }
  .contact-phone > .icon:last-child {
    display: block;
  }
  .contact-info {
    gap: 20px;
    margin-top: 25px;
  }
  .form-card {
    padding: 26px 23px;
    border-radius: 12px;
  }
  .form-card h2 {
    font-size: 26px;
  }
  .form-fields {
    grid-template-columns: 1fr 1fr;
    gap: 17px 14px;
  }
  .full-width {
    grid-column: 1/-1;
  }
  .field label {
    font-size: 11px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 12px;
    min-height: 46px;
  }
  .consent-field > label {
    font-size: 10px;
    line-height: 1.8;
  }
  .form-kicker {
    font-size: 8px;
  }
  .form-card > p {
    font-size: 12px;
  }
  .form-submit {
    min-height: 49px;
    font-size: 13px;
  }
  .form-note {
    font-size: 10px;
  }
  .final-cta {
    padding: 44px 0;
  }
  .final-cta .wrap {
    flex-direction: column;
    gap: 25px;
  }
  .final-cta h2 {
    font-size: 32px;
  }
  .final-cta p:not(.eyebrow) {
    font-size: 12px;
    max-width: 360px;
  }
  .final-cta .button-row {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }
  .final-cta .btn {
    font-size: 11px;
    padding: 13px 17px;
  }
  .site-footer {
    padding: 45px 0 calc(106px + env(safe-area-inset-bottom));
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 29px 30px;
    padding-bottom: 27px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 245px;
    margin-bottom: 8px;
  }
  .footer-brand > p {
    font-size: 11px;
  }
  .footer-top h3 {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .footer-top nav {
    font-size: 11px;
    gap: 10px 20px;
  }
  .footer-phone {
    font-size: 16px;
  }
  .footer-top > div:last-child > p {
    font-size: 10px;
  }
  .footer-hours {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 9px;
    align-items: flex-start;
    line-height: 1.8;
    gap: 18px;
  }
  .footer-bottom > span {
    max-width: 250px;
  }
  .footer-bottom > a {
    white-space: nowrap;
  }
  .disclaimer {
    font-size: 9px;
    line-height: 1.9;
  }
  .mobile-call {
    position: fixed;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 20px;
    right: 20px;
    min-height: 53px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: 1px solid #95e5d4;
    border-radius: 10px;
    box-shadow: 0 5px 25px #0b20292b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    z-index: 90;
  }
  .mobile-call > .icon {
    width: 18px;
    height: 18px;
  }
  .mobile-call > span {
    font-size: 10px;
    font-weight: 500;
    padding-left: 11px;
    border-left: 1px solid #15665542;
    margin-left: 5px;
  }
}
@media (max-width: 399px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 53px;
    letter-spacing: -3px;
  }
  .hero h1 br:nth-child(2) {
    display: block;
  }
  .hero h1 span:before {
    content: none;
  }
  .availability {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero .btn {
    padding: 13px 15px;
    font-size: 11px;
  }
  .hero .button-row {
    gap: 8px;
  }
  .hero-bottom {
    font-size: 9px;
    gap: 12px;
  }
  .photo-frame {
    height: 320px;
  }
  .local-badge {
    font-size: 10px;
    padding: 9px 11px;
  }
  .benefits-grid {
    gap: 21px 12px;
  }
  .benefit {
    gap: 8px;
  }
  .benefit > .icon {
    width: 19px;
    height: 19px;
  }
  .benefit strong {
    font-size: 9px;
  }
  .benefit span {
    font-size: 8px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 230px;
    padding: 24px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
    max-width: none;
  }
  .service-card .text-link {
    font-size: 11px;
  }
  .card-number {
    right: 25px;
    top: 24px;
  }
  .filter {
    padding: 9px 10px;
    font-size: 9px;
  }
  .why-grid {
    gap: 25px 18px;
  }
  .why-card h3 {
    font-size: 12px;
  }
  .why-card p {
    font-size: 11px;
  }
  .form-fields {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: auto;
  }
  .contact h2 {
    font-size: 37px;
  }
  .form-card {
    padding: 23px 19px;
  }
  .form-card h2 {
    font-size: 24px;
  }
  .final-cta .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-top nav {
    grid-template-columns: 1fr;
  }
  .footer-top {
    gap: 28px 20px;
  }
  .footer-phone {
    font-size: 14px;
    gap: 6px;
  }
  .footer-phone .icon {
    width: 13px;
    height: 13px;
  }
  .map-address {
    padding: 17px 13px;
    gap: 8px;
  }
  .map-address strong {
    font-size: 9px;
  }
  .map-address span {
    font-size: 8px;
  }
  .mobile-call {
    left: 16px;
    right: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .service-card:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .topbar,
  .mobile-call,
  .filters,
  .hero-visual,
  .map-card,
  .form-card {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
  .section {
    padding: 25px 0;
  }
  .wrap {
    width: 100%;
  }
  .hero,
  .contact,
  .site-footer,
  .emergency {
    background: #fff;
    color: #000;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero h1 span,
  .contact h2 span {
    color: #174437;
  }
  .hero-copy > p,
  .contact-copy > p:not(.eyebrow),
  .emergency-copy > p:last-child {
    color: #333;
  }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .guide-grid,
  .faq-grid {
    display: block;
  }
  .faq-answer[hidden] {
    display: block !important;
  }
  .guide-intro {
    position: static;
  }
  .service-card[hidden] {
    display: block !important;
  }
  .disclaimer {
    color: #333;
  }
}

/* Final accessibility and layering refinements. */
.comfort-card,
.local-badge {
  z-index: 3;
}
.service-card > p,
.why-card p,
.process-step p,
.detail-body > p,
.faq-answer {
  font-size: 14px;
}
.about-copy > p:not(.eyebrow),
.area-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  font-size: 14px;
}
.field label {
  font-size: 12px;
}
.field input,
.field select,
.field textarea {
  font-size: 14px;
}
.consent-field > label {
  font-size: 11px;
}
.form-card > p {
  font-size: 13px;
}
.form-note {
  font-size: 11px;
}
.form-kicker {
  font-size: 9px;
}
@media (max-width: 767px) {
  .service-card > p,
  .why-card p,
  .process-step p {
    font-size: 12px;
  }
  .detail-body > p,
  .faq-answer {
    font-size: 13px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .contact-copy > p:not(.eyebrow),
  .area-copy > p:not(.eyebrow),
  .about-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
}

/* Contrast-tested secondary text, preserving the quiet visual hierarchy. */
:root {
  --color-muted: #58696d;
}
.benefit span,
.service-counter,
.about-label > span,
.map-address span,
.form-note {
  color: #5c6f62;
}
.card-number {
  color: #697d70;
}
.step-top > span {
  color: #698875;
}
.form-kicker {
  color: #4d6e58;
}
.final-cta .eyebrow,
.final-cta p:not(.eyebrow) {
  color: #465f3b;
}
.emergency-mark {
  display: none;
}

.card-number {
  color: #546e5c;
}

/* User-supplied photography: each photo has one placement on the page. */
.service-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--color-line);
}
.service-photo-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #e9eee7;
  aspect-ratio: 1.5;
}
.service-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-service-photo {
  margin: 28px 0 0;
  max-width: 340px;
  border-radius: 12px;
  overflow: hidden;
  background: #dce5da;
}
.guide-service-photo img {
  width: 100%;
  height: auto;
}
.contact-service-photo {
  margin: 30px 0 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 390px;
  border: 1px solid #ffffff1f;
}
.contact-service-photo img {
  width: 100%;
  height: auto;
}
.hero .photo-frame > img[data-supplied-photo="8"] {
  object-position: 48% center;
}
.about-visual > img[data-supplied-photo="17"] {
  object-position: 63% center;
}
@media (max-width: 1023px) {
  .service-photo-strip {
    gap: 14px;
  }
  .guide-service-photo {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .service-photo-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
    padding-top: 26px;
  }
  .service-photo-tile {
    aspect-ratio: auto;
  }
  .service-photo-tile img {
    height: auto;
    object-fit: contain;
  }
  .guide-service-photo {
    max-width: 340px;
    margin-top: 22px;
  }
  .contact-service-photo {
    max-width: 100%;
    margin-top: 25px;
  }
  .about-visual > img[data-supplied-photo="17"] {
    object-position: center;
  }
  .hero .photo-frame > img[data-supplied-photo="8"] {
    object-position: 48% center;
  }
}

/* Keep the image caption visible above the availability card. */
.photo-caption {
  bottom: 100px;
}
