/* Vertex Comfort — production design tokens. */
:root {
  --navy: #10243e;
  --navy-light: #18344e;
  --teal: #007570;
  --electric: #00c7b7;
  --orange: #ff793e;
  --ice: #f1f7f7;
  --cream: #faf9f5;
  --white: #fff;
  --text: #172b3d;
  --muted: #59676f;
  --border: #dce5e5;
  --radius: 12px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 112px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(34px, 3.7vw, 49px);
}
h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
address {
  font-style: normal;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
.icon {
  width: 22px;
  height: 22px;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
::selection {
  background: #9de8de;
  color: var(--navy);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1248px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 20px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(0 199 183 / 0.1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 14px 21px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  transition:
    background 0.2s var(--ease),
    transform 0.18s var(--ease),
    box-shadow 0.2s var(--ease);
}
.button:active {
  transform: scale(0.97);
}
.button-navy {
  background: var(--navy);
  color: #fff;
}
.button-navy:hover {
  background: #21415f;
  box-shadow: 0 5px 16px #10243e1a;
}
.button-orange {
  background: var(--orange);
  color: var(--navy);
}
.button-orange:hover {
  background: #ff905f;
  box-shadow: 0 6px 20px #df632b25;
}
.button-outline {
  background: transparent;
  border-color: #c7d2d2;
  color: var(--navy);
}
.button-outline:hover {
  background: white;
  border-color: var(--navy);
}
.button .icon {
  width: 18px;
  height: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 650;
  color: var(--teal);
  min-height: 44px;
}
.text-link .icon {
  width: 18px;
  transition: transform 0.2s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.small-note {
  font-size: 13px;
  line-height: 1.75;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
}
.skip-link:focus {
  top: 10px;
}
/* Navigation */
.announcement {
  background: var(--navy);
  color: #dce6ed;
  font-size: 11px;
}
.announcement-inner {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.announcement-inner > span,
.announcement a,
.announcement strong {
  display: flex;
  align-items: center;
  gap: 8px;
}
.announcement .icon {
  width: 13px;
  height: 13px;
}
.announcement a {
  gap: 10px;
}
.announcement strong {
  font-weight: 650;
  color: #fff;
  margin-left: 10px;
}
.announcement .status-dot {
  width: 5px;
  height: 5px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgb(255 255 255 / 0.97);
  z-index: 50;
  border-bottom: 1px solid #e9eeee;
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 96px;
}
.brand {
  display: block;
  width: 245px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}
.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 550;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.desktop-nav a:after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--teal);
  bottom: 3px;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current] {
  color: var(--teal);
}
.desktop-nav a:hover:after,
.desktop-nav a[aria-current]:after {
  transform: scaleX(1);
}
.header-call {
  font-size: 12px;
  min-height: 46px;
  padding: 12px 16px;
}
.header-call .icon {
  width: 15px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: white;
  color: var(--navy);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
}
/* Hero */
.hero {
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 62px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 65px;
}
.hero-copy {
  padding: 7px 0 16px;
}
.availability {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 27px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.hero h1 {
  font-size: clamp(46px, 4.65vw, 68px);
  line-height: 1.13;
  font-weight: 750;
  letter-spacing: -0.055em;
}
.teal-text {
  color: var(--teal);
}
.hero-subtitle {
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.5;
  display: block;
  margin-top: 24px;
  font-weight: 650;
}
.hero-description {
  max-width: 490px;
  font-size: 15px;
  line-height: 1.85;
  margin-top: 15px;
}
.hero-description strong {
  font-weight: 600;
  color: var(--text);
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 29px;
  flex-wrap: wrap;
}
.hero-actions .button {
  font-size: 12px;
  padding: 16px 17px;
  min-height: 54px;
}
.hero-assurance {
  display: flex;
  gap: 22px;
  margin-top: 19px;
  font-size: 11px;
  color: var(--muted);
}
.hero-assurance span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-assurance .icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
}
.hero-explore {
  margin-top: 28px;
  font-size: 12px;
}
.hero-visual {
  position: relative;
  padding-bottom: 29px;
  isolation: isolate;
}
.hero-image-frame {
  height: 530px;
  border-radius: 16px 16px 100px 16px;
  overflow: hidden;
  background: #dfe4dd;
  position: relative;
}
.hero-image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.image-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: white;
  position: absolute;
  top: 23px;
  right: -14px;
  border-radius: 7px;
  padding: 12px 17px;
  font-size: 9px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px #10243e20;
}
.image-availability strong {
  font-family: var(--display);
  font-size: 21px;
  margin-left: 7px;
  letter-spacing: -0.04em;
}
.image-availability .status-dot {
  width: 6px;
  height: 6px;
}
.comfort-card {
  position: absolute;
  bottom: 7px;
  left: -29px;
  right: 42px;
  background: white;
  border: 1px solid #e5e9e5;
  border-radius: 10px;
  box-shadow: 0 10px 24px #172b3d0d;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px;
}
.comfort-card-icon {
  display: flex;
  align-items: center;
  position: relative;
  width: 49px;
  height: 52px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 12px;
}
.comfort-card-icon .icon {
  width: 28px;
  height: 28px;
  color: #e47539;
}
.comfort-card-icon .icon + svg {
  position: absolute;
  bottom: -1px;
  right: 7px;
  color: var(--teal);
  background: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.comfort-card strong {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  display: block;
}
.comfort-card span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}
.comfort-card > a {
  margin-left: auto;
  border: 1px solid #e1e9e5;
  background: var(--ice);
  border-radius: 50%;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.comfort-card > a:hover {
  background: #d9eeea;
}
.comfort-card > a .icon {
  width: 18px;
}
.hero-accent {
  width: 145px;
  height: 145px;
  border: 1px solid #c9e3dc;
  border-radius: 50%;
  position: absolute;
  right: -28px;
  bottom: 4px;
  z-index: -1;
}
.hero-accent:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid #c9e3dc;
  border-radius: 50%;
}
.photo-caption {
  position: absolute;
  bottom: -15px;
  right: 13px;
  font-size: 9px;
  color: #67736e;
}
.quick-benefits {
  background: white;
  border-bottom: 1px solid var(--border);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 29px;
}
.quick-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 28px;
  border-right: 1px solid var(--border);
}
.quick-grid > div:first-child {
  padding-left: 0;
}
.quick-grid > div:last-child {
  padding-right: 0;
  border: 0;
}
.quick-grid .icon {
  color: var(--teal);
  width: 29px;
  height: 29px;
}
.quick-grid strong {
  font-weight: 650;
  font-size: 13px;
  display: block;
  line-height: 1.5;
}
.quick-grid small {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 87px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding-right: 48px;
  padding-bottom: 110px;
}
.about-home {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 10px 70px 10px 10px;
}
.about-equipment {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 57%;
  height: 220px;
  object-fit: cover;
  border: 8px solid white;
  border-radius: 14px;
}
.about-stamp {
  display: flex;
  align-items: center;
  gap: 13px;
  position: absolute;
  left: 0;
  bottom: 16px;
  color: white;
  background: var(--navy);
  padding: 24px 22px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 5px 20px #10243e10;
}
.about-stamp > .icon {
  width: 29px;
  height: 29px;
  color: var(--electric);
}
.about-stamp span {
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.about-stamp strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.about-copy h2 {
  margin-bottom: 23px;
}
.about-copy h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  margin-bottom: 11px;
}
.about-copy p {
  font-size: 14px;
  margin-top: 13px;
  line-height: 1.8;
}
.inline-links {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.inline-links .text-link {
  font-size: 12px;
  gap: 10px;
}
.inline-links .text-link:last-child {
  color: var(--navy);
}
/* Why us */
.why-section {
  background: var(--navy);
  color: white;
  position: relative;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 55px;
  margin-bottom: 40px;
}
.section-heading > p,
.section-heading > div + div {
  max-width: 385px;
  font-size: 14px;
  line-height: 1.85;
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}
.section-heading p {
  font-size: 14px;
  line-height: 1.85;
}
.section-subtitle {
  font-size: 16px !important;
  font-weight: 550;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 14px;
}
.why-heading {
  align-items: center;
  margin-bottom: 47px;
}
.why-section .eyebrow {
  color: #71d2c9;
}
.why-heading h2 {
  font-size: 45px;
}
.why-heading h2 span {
  color: #acccc9;
}
.why-heading p {
  color: #b8c7d3;
}
.light-link {
  color: #9edbd4;
  margin-top: 12px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 43px;
}
.benefit {
  position: relative;
  padding: 31px 0 31px 51px;
  border-top: 1px solid #ffffff26;
}
.benefit-icon {
  position: absolute;
  top: 33px;
  left: 0;
  color: #7edbd1;
}
.benefit-icon .icon {
  width: 29px;
  height: 29px;
}
.benefit-label {
  font-size: 10px;
  color: #89aaa9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 550;
}
.benefit h3 {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  margin-top: 7px;
}
.benefit p {
  color: #b8c7d3;
  font-size: 13px;
  line-height: 1.85;
  margin-top: 9px;
  max-width: 300px;
}
/* Services */
.services-section {
  background: var(--cream);
}
.services-section .section-heading {
  margin-bottom: 34px;
}
.service-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.filter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #dde4df;
  color: var(--muted);
  border-radius: 6px;
  padding: 10px 18px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease);
}
.filter-button .icon {
  width: 15px;
  height: 15px;
}
.filter-button > span {
  background: #ffffff20;
  padding: 0 6px;
  font-size: 10px;
  border-radius: 3px;
  margin-left: 3px;
}
.filter-button:hover {
  background: #e8f0ec;
}
.filter-button.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.service-card {
  background: white;
  border: 1px solid #e0e6e3;
  border-radius: 9px;
  transition:
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #10243e08;
  border-color: #93bcb5;
}
.service-card-content {
  padding: 26px 27px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #edf6f3;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box .icon {
  width: 25px;
  height: 25px;
}
.icon-box.warm {
  background: #fff2ea;
  color: #b7572b;
}
.service-number {
  font-size: 11px;
  color: #62716e;
  font-family: var(--display);
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.service-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 19px;
  max-width: 320px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
  color: var(--teal);
}
.card-link .icon {
  width: 17px;
  height: 17px;
}
.card-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-feature {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #eaf3ef;
}
.service-feature .service-card-content {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 10px;
  align-content: center;
}
.service-feature .service-top {
  grid-row: 1/4;
  margin: 0;
  align-items: flex-start;
}
.service-feature .icon-box {
  background: white;
}
.service-feature .service-number {
  display: none;
}
.service-feature h3 {
  grid-column: 2;
}
.service-feature p {
  max-width: 460px;
  grid-column: 2;
}
.service-feature .card-link {
  grid-column: 2;
  justify-content: flex-start;
  gap: 22px;
}
.service-feature > img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  object-position: 50% 62%;
}
.service-help {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  font-size: 12px;
}
.service-help > span,
.service-help > a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-help > span {
  color: var(--muted);
}
.service-help > a {
  font-weight: 650;
  color: var(--teal);
  min-height: 44px;
}
.service-help .icon {
  width: 17px;
  height: 17px;
}
.service-help > a:hover {
  text-decoration: underline;
}
/* Detailed service content */
.detail-section {
  background: white;
}
.details-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.details-intro {
  position: sticky;
  top: 140px;
}
.details-intro h2 {
  margin-bottom: 25px;
}
.details-intro p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 330px;
}
.details-intro .small-note {
  font-size: 12px;
  margin-top: 19px;
}
.details-intro .button {
  margin-top: 25px;
  font-size: 12px;
}
.service-detail {
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 112px;
}
.service-detail:first-child {
  border-top: 1px solid var(--border);
}
.service-detail summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 72px;
  padding: 14px 4px;
}
.service-detail summary::-webkit-details-marker {
  display: none;
}
.detail-icon {
  color: var(--teal);
}
.detail-icon .icon {
  width: 23px;
  height: 23px;
}
.service-detail h3 {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.expand-icon {
  margin-left: auto;
  width: 18px;
  height: 18px;
  color: var(--teal);
  transition: transform 0.2s var(--ease);
}
.service-detail[open] .expand-icon,
.faq-trigger[aria-expanded="true"] .expand-icon {
  transform: rotate(45deg);
}
.service-detail[open] summary {
  color: var(--teal);
}
.detail-body {
  padding: 0 12px 23px 45px;
}
.detail-body p {
  font-size: 13px;
  line-height: 1.9;
}
.detail-body .text-link {
  margin-top: 9px;
  font-size: 12px;
}
.service-detail:target {
  background: #f4faf7;
  outline: 2px solid #d9eee6;
  outline-offset: 5px;
  border-radius: 4px;
}
/* Emergency */
.emergency-section {
  background: #fff0e4;
  padding: 58px 0;
  border-block: 1px solid #f6dfcd;
}
.emergency-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}
.emergency-icon {
  width: 83px;
  height: 83px;
  border: 1px solid #efbea0;
  border-radius: 50%;
  background: #fff7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emergency-icon .icon {
  width: 34px;
  height: 34px;
  color: #a95023;
}
.emergency-copy {
  max-width: 610px;
}
.emergency-copy .eyebrow {
  font-size: 10px;
  color: #a04a20;
  margin-bottom: 13px;
}
.emergency-copy h2 {
  font-size: 35px;
}
.emergency-copy p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 565px;
  color: #725e51;
}
.emergency-actions {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.emergency-actions .button {
  font-size: 14px;
  min-height: 55px;
  padding-inline: 25px;
}
.emergency-actions .text-link {
  font-size: 12px;
  color: #754325;
}
/* Service area */
.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.area-grid h2 {
  margin-bottom: 12px;
}
.area-grid .section-subtitle {
  margin-bottom: 17px;
}
.area-grid p:not(.section-subtitle) {
  font-size: 14px;
  line-height: 1.85;
  max-width: 450px;
}
.area-tags {
  padding: 0;
  margin: 23px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}
.area-tags li {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e1e8e3;
  border-radius: 5px;
  background: #f6f8f5;
  padding: 8px 11px;
  font-size: 11px;
}
.area-tags .icon {
  width: 13px;
  height: 13px;
  color: var(--teal);
}
.area-grid p.small-note {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 11px;
}
.map-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #f0f2eb;
  box-shadow: 0 12px 32px #172b3d07;
}
.map-card iframe {
  border: 0;
  width: 100%;
  height: 380px;
  display: block;
}
.map-address {
  display: flex;
  gap: 13px;
  align-items: center;
  background: white;
  padding: 24px;
}
.map-address > .icon {
  width: 23px;
  color: var(--teal);
}
.map-address address {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.75;
}
.map-address strong {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 650;
}
.map-address address span {
  color: var(--muted);
}
.map-address > a {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.map-address > a:hover {
  background: var(--ice);
}
/* FAQs */
.faq-section {
  background: var(--ice);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.faq-intro h2 {
  font-size: 43px;
}
.faq-intro > p:not(.section-subtitle) {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 19px;
  max-width: 315px;
}
.question-card {
  margin-top: 33px;
  background: white;
  border: 1px solid #dfebe6;
  border-radius: 9px;
  padding: 25px 27px;
  max-width: 336px;
}
.question-card > .icon {
  color: var(--teal);
  margin-bottom: 15px;
}
.question-card h3 {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.question-card p {
  font-size: 12px;
  margin-top: 10px;
}
.question-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 650;
  color: var(--teal);
  margin-top: 16px;
  min-height: 44px;
}
.question-card > a .icon {
  width: 19px;
  height: 19px;
}
.faq-item {
  border-bottom: 1px solid #d4e2de;
  scroll-margin-top: 120px;
}
.faq-item:first-child {
  border-top: 1px solid #d4e2de;
}
.faq-trigger {
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  min-height: 66px;
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 550;
  letter-spacing: 0;
}
.faq-trigger:hover {
  color: var(--teal);
}
.faq-trigger[aria-expanded="true"] {
  color: var(--teal);
}
.faq-answer {
  padding: 0 32px 21px 2px;
}
.faq-answer p {
  font-size: 13px;
  line-height: 1.9;
}
.faq-answer .text-link {
  font-size: 12px;
  margin-top: 7px;
}
.faq-item:target {
  outline: 2px solid var(--teal);
  outline-offset: 7px;
  border-radius: 3px;
}
/* Contact */
.contact-section {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.contact-copy {
  padding-top: 18px;
}
.contact-copy h2 {
  font-size: 45px;
}
.contact-copy .section-subtitle {
  margin-top: 17px;
}
.contact-copy > p:not(.section-subtitle) {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 18px;
  max-width: 370px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 33px;
}
.contact-phone > .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  background: #e4f0e9;
  border-radius: 8px;
  color: var(--teal);
}
.contact-phone span {
  display: flex;
  flex-direction: column;
}
.contact-phone small {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.contact-phone strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.6;
}
.contact-phone:hover strong {
  color: var(--teal);
}
.contact-detail {
  display: flex;
  gap: 17px;
  font-size: 13px;
  line-height: 1.85;
  margin-top: 25px;
  color: var(--muted);
}
.contact-detail > .icon {
  width: 20px;
  height: 20px;
  margin: 2px 10px;
  color: var(--teal);
}
.contact-detail strong {
  font-weight: 550;
  color: var(--text);
}
.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 359px;
  background: #edf2e9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 35px;
}
.contact-note > .icon {
  width: 19px;
  height: 19px;
  color: var(--teal);
  margin-top: 2px;
}
.contact-note p {
  font-size: 12px;
  line-height: 1.8;
  color: #4d665e;
}
.form-card {
  background: white;
  border: 1px solid #dfe6e0;
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 10px 30px #172b3d04;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.form-heading h3 {
  font-size: 23px;
}
.form-heading > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--teal);
  border: 1px solid #d7eae2;
  background: #f1f8f4;
  border-radius: 4px;
  padding: 6px 8px;
}
.form-heading .status-dot {
  width: 5px;
  height: 5px;
  box-shadow: none;
}
.form-intro {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 10px;
  margin-bottom: 24px;
}
.form-intro > span {
  font-size: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.form-field {
  margin-bottom: 15px;
  min-width: 0;
}
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 7px;
}
.form-field label > span {
  color: var(--teal);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #fdfdfb;
  border: 1px solid #dce3de;
  border-radius: 5px;
  padding: 12px 13px;
  font-size: 12px;
  min-height: 45px;
  color: var(--text);
  transition: border-color 0.15s;
}
.form-field select {
  padding-right: 25px;
}
.form-field textarea {
  resize: vertical;
  min-height: 115px;
  max-height: 450px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  outline: 2px solid #007e7928;
  outline-offset: 1px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #859088;
}
.form-field [aria-invalid="true"] {
  border-color: #b43a26;
  background: #fff8f5;
}
.field-error {
  display: block;
  font-size: 11px;
  color: #b43a26;
  line-height: 1.5;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.75;
  color: #60706a;
  margin-top: 2px;
}
.consent-label input {
  appearance: auto;
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-label input[aria-invalid="true"] {
  outline: 2px solid #b43a26;
  outline-offset: 2px;
}
.submit-button {
  width: 100%;
  margin-top: 22px;
  justify-content: space-between;
  font-size: 13px;
  min-height: 50px;
}
.form-footnote {
  font-size: 9px;
  text-align: center;
  margin-top: 11px;
  line-height: 1.8;
}
.form-status {
  font-size: 13px;
  line-height: 1.7;
  border-radius: 6px;
  margin-top: 16px;
}
.form-status:empty {
  display: none;
}
.form-status.error {
  background: #fff1eb;
  border: 1px solid #f0cfbf;
  color: #873c25;
  padding: 14px;
}
.form-status.success {
  background: #ebf7ef;
  border: 1px solid #b9dbc7;
  color: #236044;
  padding: 14px;
}
.form-status.loading {
  color: var(--teal);
}
.form-status a {
  text-decoration: underline;
  font-weight: 650;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Footer */
.site-footer {
  background: var(--navy);
  color: #bbc8d2;
  padding: 61px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr;
  gap: 90px;
  padding-bottom: 38px;
  border-bottom: 1px solid #ffffff24;
}
.footer-brand > a {
  display: block;
  background: white;
  width: 265px;
  border-radius: 5px;
  padding: 3px 11px;
}
.footer-brand img {
  width: 100%;
}
.footer-brand > p {
  font-size: 13px;
  color: #b1c3cf;
  line-height: 1.8;
  margin-top: 22px;
}
.site-footer h2 {
  font-size: 12px;
  font-family: var(--body);
  font-weight: 600;
  color: white;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-nav nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
}
.footer-nav a {
  font-size: 12px;
  line-height: 1.5;
  min-height: 33px;
  display: flex;
  align-items: center;
}
.footer-nav a:hover {
  color: white;
  text-decoration: underline;
}
.footer-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.03em;
  min-height: 44px;
  margin-top: -9px;
  margin-bottom: 12px;
}
.footer-phone .icon {
  width: 19px;
  height: 19px;
}
.footer-info address {
  font-size: 12px;
  line-height: 1.9;
}
.footer-hours {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #99dad1;
  margin-top: 12px;
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 13px;
  font-size: 10px;
  color: #99afbe;
}
.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.footer-bottom .icon {
  width: 15px;
  height: 15px;
  transform: rotate(-90deg);
}
.disclaimer {
  font-size: 12px;
  line-height: 1.95;
  color: #9cafbd;
  border-top: 1px solid #ffffff12;
  padding-top: 21px;
}
.mobile-call {
  display: none;
}
/* Progressive enhancement: no-JS content remains readable. */
html:not(.js) .service-filters {
  display: none;
}
html:not(.js) .faq-trigger {
  cursor: default;
}
html:not(.js) .expand-icon {
  display: none;
}
/* Responsive layouts */
@media (min-width: 1500px) {
  .hero-grid {
    padding-block: 78px;
  }
  .hero-image-frame {
    height: 555px;
  }
  .hero h1 {
    font-size: 69px;
  }
}
@media (max-width: 1250px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 16px;
    height: 89px;
  }
  .brand {
    width: 213px;
  }
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .header-call {
    padding: 11px 13px;
    font-size: 11px;
  }
  .hero-grid {
    gap: 44px;
    padding-block: 56px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-image-frame {
    height: 520px;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 15px 13px;
  }
  .comfort-card {
    padding: 21px;
    left: -19px;
    right: 24px;
  }
  .comfort-card strong {
    font-size: 16px;
  }
  .quick-grid > div {
    padding-inline: 20px;
    gap: 12px;
  }
  .quick-grid strong {
    font-size: 12px;
  }
  .about-grid,
  .area-grid {
    gap: 60px;
  }
  .details-grid,
  .faq-grid,
  .contact-grid {
    gap: 65px;
  }
  .footer-top {
    gap: 60px;
  }
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 12px;
  }
  .desktop-nav a {
    font-size: 10px;
  }
  .brand {
    width: 190px;
  }
  .header-call .icon {
    display: none;
  }
  .header-call {
    font-size: 10px;
    padding-inline: 12px;
  }
  .hero-grid {
    gap: 38px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .hero-actions .button {
    min-height: 46px;
    font-size: 12px;
  }
  .hero-assurance {
    gap: 13px;
    font-size: 10px;
  }
  .hero-explore {
    margin-top: 17px;
  }
  .hero-image-frame {
    height: 560px;
  }
  .comfort-card {
    gap: 12px;
    padding: 18px;
    right: 10px;
  }
  .comfort-card > a {
    display: none;
  }
  .quick-grid > div {
    padding-inline: 14px;
  }
  .quick-grid .icon {
    width: 25px;
    height: 25px;
  }
  .quick-grid strong {
    font-size: 11px;
  }
  .quick-grid small {
    font-size: 10px;
  }
  .section {
    padding: 80px 0;
  }
  .about-grid {
    gap: 45px;
  }
  .about-visual {
    padding-right: 23px;
    padding-bottom: 100px;
  }
  .about-home {
    height: 425px;
  }
  .about-stamp {
    padding: 20px 15px;
    bottom: 19px;
  }
  .about-stamp strong {
    font-size: 12px;
  }
  .about-equipment {
    height: 190px;
  }
  .about-copy p {
    font-size: 13px;
  }
  .about-copy h3 {
    font-size: 14px;
  }
  .benefits-grid {
    gap: 0 28px;
  }
  .benefit {
    padding-left: 43px;
  }
  .benefit h3 {
    font-size: 16px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading > p {
    max-width: 330px;
  }
  .service-card-content {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-feature .service-card-content {
    padding: 23px;
    grid-template-columns: 52px 1fr;
  }
  .service-feature > img {
    height: 245px;
  }
  .details-grid,
  .faq-grid,
  .contact-grid {
    gap: 45px;
  }
  .emergency-inner {
    gap: 23px;
  }
  .emergency-copy h2 {
    font-size: 29px;
  }
  .emergency-icon {
    width: 65px;
    height: 65px;
  }
  .emergency-actions .button {
    font-size: 12px;
    padding-inline: 16px;
  }
  .area-grid {
    gap: 43px;
  }
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 36px;
  }
  .form-card {
    padding: 25px;
  }
  .form-heading h3 {
    font-size: 20px;
  }
  .form-heading > span {
    font-size: 7px;
    padding: 5px 6px;
  }
  .footer-top {
    gap: 35px;
  }
  .footer-brand > a {
    width: 225px;
  }
  .footer-phone {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-inner {
    height: 80px;
  }
  .brand {
    width: 230px;
  }
  .header-call {
    margin-left: auto;
    font-size: 12px;
    min-height: 42px;
    padding: 12px 15px;
  }
  .header-call .icon {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-nav {
    border-top: 1px solid var(--border);
    padding: 16px 32px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 5px 22px;
    background: white;
  }
  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    padding: 3px 8px;
  }
  .mobile-nav a:hover {
    color: var(--teal);
  }
  .mobile-nav-call {
    grid-column: 1/-1;
    color: var(--teal);
    gap: 10px;
  }
  .mobile-nav.is-open,
  html:not(.js) .mobile-nav {
    display: grid;
  }
  .announcement-inner {
    font-size: 10px;
  }
  .announcement a {
    font-size: 0;
  }
  .announcement strong {
    font-size: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .availability {
    font-size: 8px;
    gap: 8px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-assurance {
    flex-direction: column;
    gap: 5px;
  }
  .hero-image-frame {
    height: 550px;
    border-bottom-right-radius: 70px;
  }
  .image-availability {
    right: -10px;
    font-size: 8px;
    padding: 10px 12px;
  }
  .comfort-card {
    left: -15px;
    right: 5px;
    padding: 18px 14px;
    gap: 10px;
  }
  .comfort-card-icon {
    width: 42px;
  }
  .comfort-card strong {
    font-size: 13px;
  }
  .comfort-card span {
    font-size: 9px;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 15px;
    padding-block: 24px;
  }
  .quick-grid > div {
    padding: 3px 15px !important;
    border: 0 !important;
  }
  .quick-grid strong {
    font-size: 12px;
  }
  .quick-grid small {
    font-size: 11px;
  }
  .quick-grid .icon {
    width: 27px;
    height: 27px;
  }
  .about-grid {
    gap: 34px;
  }
  .about-copy h2 {
    font-size: 33px;
  }
  .about-visual {
    padding-bottom: 92px;
  }
  .about-home {
    height: 470px;
  }
  .about-equipment {
    height: 170px;
    width: 75%;
  }
  .about-stamp {
    left: -7px;
    bottom: 60px;
    gap: 9px;
  }
  .about-stamp span {
    font-size: 7px;
  }
  .about-stamp strong {
    font-size: 11px;
  }
  .about-stamp > .icon {
    width: 22px;
  }
  .inline-links {
    gap: 5px;
    margin-top: 13px;
  }
  .why-heading h2 {
    font-size: 37px;
  }
  .section-heading > p,
  .section-heading > div + div {
    max-width: 300px;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .services-grid {
    gap: 14px;
  }
  .service-card-content {
    padding: 21px 19px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-feature h3 {
    font-size: 20px;
  }
  .details-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
  }
  .details-intro h2 {
    font-size: 33px;
  }
  .details-intro p {
    font-size: 13px;
  }
  .service-detail h3 {
    font-size: 13px;
  }
  .service-detail summary {
    gap: 12px;
  }
  .emergency-icon {
    display: none;
  }
  .emergency-copy {
    max-width: 470px;
  }
  .emergency-copy h2 {
    font-size: 30px;
  }
  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .area-grid h2 {
    font-size: 37px;
  }
  .map-card iframe {
    height: 420px;
  }
  .map-address {
    padding: 17px;
    gap: 9px;
  }
  .map-address address {
    font-size: 10px;
  }
  .map-address > a {
    width: 33px;
    height: 33px;
  }
  .map-address > .icon {
    width: 18px;
  }
  .faq-grid {
    gap: 37px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-intro h2 {
    font-size: 32px;
  }
  .question-card {
    padding: 21px;
  }
  .question-card > a {
    font-size: 16px;
  }
  .contact-grid {
    gap: 30px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .contact-copy h2 {
    font-size: 33px;
  }
  .form-card {
    padding: 25px 20px;
  }
  .form-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .form-row {
    gap: 12px;
  }
  .form-field input,
  .form-field select {
    padding: 11px 9px;
    font-size: 11px;
  }
  .contact-phone strong {
    font-size: 23px;
  }
  .footer-top {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 30px;
  }
  .footer-brand > a {
    width: 200px;
  }
  .footer-nav nav {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-nav a {
    min-height: 29px;
  }
  .footer-phone {
    font-size: 17px;
  }
  .footer-info address {
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 91px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding: 66px 0;
  }
  .announcement-inner {
    height: 31px;
  }
  .announcement-inner > span {
    font-size: 9px;
  }
  .announcement strong {
    font-size: 9px;
    margin-left: 0;
  }
  .announcement .status-dot {
    display: none;
  }
  .announcement strong .icon {
    display: none;
  }
  .header-inner {
    height: 76px;
    gap: 12px;
  }
  .brand {
    width: 203px;
  }
  .header-call {
    padding: 10px;
    min-height: 41px;
  }
  .header-call > span {
    display: none;
  }
  .header-call > .icon {
    width: 18px;
    height: 18px;
  }
  .menu-toggle {
    width: 41px;
    height: 41px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 43px;
    padding-bottom: 43px;
  }
  .hero-copy {
    padding: 0;
  }
  .availability {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.12;
  }
  .hero-subtitle {
    font-size: 19px;
    margin-top: 22px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.85;
    max-width: 530px;
    margin-top: 12px;
  }
  .hero-actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 25px;
    align-items: stretch;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 15px 16px;
    min-height: 52px;
  }
  .hero-assurance {
    flex-direction: row;
    gap: 17px;
    font-size: 10px;
    margin-top: 15px;
  }
  .hero-explore {
    margin-top: 17px;
    font-size: 12px;
  }
  .hero-visual {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
    padding: 0 0 39px;
  }
  .hero-image-frame {
    height: 420px;
    border-radius: 13px 13px 72px 13px;
  }
  .hero-image-frame > img {
    object-position: 50% 52%;
  }
  .image-availability {
    right: 12px;
    top: 16px;
    font-size: 9px;
    padding: 10px 14px;
  }
  .comfort-card {
    left: 15px;
    right: 15px;
    bottom: 9px;
    padding: 20px;
    gap: 17px;
  }
  .comfort-card strong {
    font-size: 16px;
  }
  .comfort-card span {
    font-size: 11px;
  }
  .comfort-card > a {
    display: flex;
  }
  .comfort-card-icon {
    width: 46px;
  }
  .photo-caption {
    font-size: 8px;
    right: 19px;
    bottom: -9px;
  }
  .hero-accent {
    display: none;
  }
  .quick-grid {
    gap: 20px 10px;
    padding-block: 24px;
  }
  .quick-grid > div {
    padding: 0 4px !important;
    gap: 10px;
  }
  .quick-grid strong {
    font-size: 11px;
  }
  .quick-grid small {
    font-size: 10px;
    max-width: 120px;
    line-height: 1.6;
  }
  .quick-grid .icon {
    width: 23px;
    height: 23px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-visual {
    order: 2;
    margin-top: 3px;
    padding-right: 40px;
    padding-bottom: 82px;
  }
  .about-home {
    height: 340px;
    border-radius: 10px 60px 10px 10px;
  }
  .about-equipment {
    width: 53%;
    height: 180px;
  }
  .about-stamp {
    left: 0;
    bottom: 0;
    padding: 22px 20px;
    gap: 12px;
  }
  .about-stamp span {
    font-size: 8px;
  }
  .about-stamp strong {
    font-size: 14px;
  }
  .about-stamp > .icon {
    width: 26px;
  }
  .about-copy h2 {
    font-size: 37px;
  }
  .about-copy h3 {
    font-size: 15px;
  }
  .about-copy p {
    font-size: 14px;
    line-height: 1.85;
  }
  .inline-links {
    gap: 20px;
    margin-top: 18px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .section-heading {
    display: block;
    margin-bottom: 31px;
  }
  .section-heading > p,
  .section-heading > div + div {
    max-width: none;
    margin-top: 22px;
    font-size: 14px;
  }
  .why-heading h2 {
    font-size: 38px;
  }
  .why-heading p {
    max-width: 470px;
    font-size: 14px;
  }
  .benefits-grid {
    gap: 0 24px;
  }
  .benefit {
    padding: 27px 0;
  }
  .benefit-icon {
    position: static;
    display: block;
    margin-bottom: 13px;
  }
  .benefit-icon .icon {
    width: 27px;
    height: 27px;
  }
  .benefit-label {
    font-size: 8px;
    letter-spacing: 0.07em;
  }
  .benefit h3 {
    font-size: 16px;
    margin-top: 8px;
    line-height: 1.45;
  }
  .benefit p {
    font-size: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .service-card-content {
    padding: 22px;
  }
  .service-card h3 {
    font-size: 17px;
    line-height: 1.35;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.85;
  }
  .service-top {
    margin-bottom: 20px;
  }
  .service-filters {
    gap: 7px;
    margin-bottom: 23px;
    flex-wrap: wrap;
  }
  .filter-button {
    padding: 9px 12px;
    font-size: 11px;
    min-height: 43px;
  }
  .filter-button > span {
    display: none;
  }
  .filter-button .icon {
    width: 14px;
  }
  .service-feature {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
  .service-feature .service-card-content {
    display: flex;
    align-content: normal;
    padding: 22px;
  }
  .service-feature .service-top {
    display: flex;
    margin-bottom: 20px;
  }
  .service-feature .service-number {
    display: block;
  }
  .service-feature .icon-box {
    background: #edf6f3;
  }
  .service-feature .card-link {
    margin-top: auto;
    justify-content: space-between;
    gap: 0;
  }
  .service-feature > img {
    display: none;
  }
  .service-feature {
    background: white;
  }
  .service-help {
    align-items: flex-start;
    gap: 1px;
    flex-direction: column;
    margin-top: 26px;
  }
  .service-help > span {
    font-size: 12px;
  }
  .service-help > a {
    margin-left: 24px;
    font-size: 12px;
  }
  .details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .details-intro {
    position: static;
  }
  .details-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .details-intro p {
    max-width: 490px;
    font-size: 14px;
  }
  .details-intro .small-note {
    font-size: 12px;
    margin-top: 13px;
  }
  .details-intro .button {
    margin-top: 21px;
  }
  .service-detail h3 {
    font-size: 14px;
  }
  .service-detail summary {
    min-height: 67px;
    gap: 16px;
  }
  .detail-body {
    padding-left: 40px;
  }
  .detail-body p {
    font-size: 13px;
  }
  .emergency-section {
    padding: 43px 0;
  }
  .emergency-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .emergency-copy h2 {
    font-size: 33px;
  }
  .emergency-copy p {
    font-size: 13px;
    max-width: 520px;
  }
  .emergency-actions {
    margin-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 17px;
  }
  .emergency-actions .button {
    font-size: 12px;
  }
  .emergency-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .area-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .area-grid h2 {
    font-size: 38px;
  }
  .area-grid p:not(.section-subtitle) {
    max-width: 530px;
  }
  .map-card iframe {
    height: 340px;
  }
  .map-address {
    padding: 21px;
  }
  .map-address address {
    font-size: 12px;
  }
  .map-address > .icon {
    width: 22px;
  }
  .map-address > a {
    width: 40px;
    height: 40px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-intro h2 {
    font-size: 37px;
  }
  .faq-intro > p:not(.section-subtitle) {
    max-width: 490px;
    font-size: 14px;
  }
  .question-card {
    display: none;
  }
  .faq-trigger {
    font-size: 13px;
    padding-block: 21px;
    min-height: 67px;
  }
  .faq-answer {
    padding-right: 17px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact-copy h2 {
    font-size: 38px;
  }
  .contact-copy > p:not(.section-subtitle) {
    max-width: 520px;
  }
  .contact-phone {
    margin-top: 26px;
  }
  .contact-phone strong {
    font-size: 28px;
  }
  .contact-detail {
    font-size: 13px;
    margin-top: 19px;
  }
  .contact-note {
    max-width: none;
    margin-top: 25px;
    padding: 19px;
  }
  .contact-note p {
    font-size: 12px;
  }
  .form-card {
    padding: 28px 24px;
  }
  .form-heading {
    flex-direction: row;
    align-items: center;
  }
  .form-heading h3 {
    font-size: 24px;
  }
  .form-heading > span {
    font-size: 8px;
  }
  .form-intro {
    font-size: 13px;
  }
  .form-intro > span {
    font-size: 11px;
  }
  .form-row {
    gap: 16px;
  }
  .form-field label {
    font-size: 12px;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
    padding: 12px;
    min-height: 48px;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    font-size: 13px;
  }
  .form-field select {
    font-size: 13px;
  }
  .consent-label {
    font-size: 12px;
    gap: 11px;
    line-height: 1.85;
  }
  .consent-label input {
    width: 18px;
    height: 18px;
  }
  .submit-button {
    min-height: 54px;
    font-size: 14px;
  }
  .form-footnote {
    font-size: 10px;
  }
  .site-footer {
    padding: 43px 0 112px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 37px 22px;
    padding-bottom: 28px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand > a {
    width: 245px;
  }
  .footer-brand > p {
    font-size: 13px;
    margin-top: 17px;
  }
  .footer-nav nav {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .footer-nav a {
    font-size: 12px;
    min-height: 32px;
  }
  .site-footer h2 {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .footer-phone {
    font-size: 18px;
    gap: 5px;
    justify-content: flex-start;
    margin-top: -7px;
  }
  .footer-phone .icon {
    width: 15px;
  }
  .footer-info address {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 10px;
    gap: 20px;
    align-items: flex-start;
    padding-top: 23px;
  }
  .footer-bottom > span {
    max-width: 235px;
    line-height: 1.8;
  }
  .footer-bottom > a {
    white-space: nowrap;
    min-height: 34px;
    gap: 6px;
  }
  .disclaimer {
    font-size: 12px;
    line-height: 1.9;
    padding-top: 18px;
  }
  .mobile-call {
    position: fixed;
    z-index: 60;
    bottom: 16px;
    left: 20px;
    right: 20px;
    padding: 14px 19px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    border: 1px solid #40556c;
    border-radius: 8px;
    box-shadow: 0 5px 20px #10243e30;
    font-size: 14px;
    font-weight: 600;
  }
  .mobile-call .icon {
    width: 18px;
    height: 18px;
    color: #96e5da;
  }
  .mobile-call > span {
    font-size: 11px;
    font-weight: 400;
    color: #c3d4da;
    border-left: 1px solid #688188;
    margin-left: 4px;
    padding-left: 14px;
  }
  .mobile-call:hover {
    background: #21415f;
  }
  .mobile-nav {
    padding-inline: 20px;
  }
  html {
    scroll-padding-bottom: 100px;
  }
}
@media (max-width: 430px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .brand {
    width: 184px;
  }
  .header-inner {
    gap: 10px;
    height: 72px;
  }
  .header-call {
    width: 38px;
    height: 40px;
    padding: 9px;
  }
  .menu-toggle {
    width: 38px;
    height: 40px;
  }
  .announcement-inner > span {
    font-size: 8px;
    gap: 5px;
  }
  .announcement-inner > span > .icon {
    width: 11px;
  }
  .announcement strong {
    font-size: 8px;
  }
  .hero-grid {
    padding-top: 36px;
    gap: 25px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -0.055em;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 14px 11px;
    min-height: 50px;
    gap: 7px;
  }
  .hero-actions .button .icon {
    width: 15px;
    height: 15px;
  }
  .hero-assurance {
    font-size: 9px;
    gap: 13px;
  }
  .availability {
    font-size: 8px;
    letter-spacing: 0.075em;
  }
  .hero-image-frame {
    height: 355px;
  }
  .comfort-card {
    left: 10px;
    right: 10px;
    padding: 18px 15px;
    gap: 13px;
  }
  .comfort-card strong {
    font-size: 14px;
  }
  .comfort-card span {
    font-size: 10px;
  }
  .comfort-card-icon {
    width: 39px;
  }
  .comfort-card > a {
    width: 32px;
    height: 32px;
  }
  .image-availability {
    padding: 9px 12px;
    font-size: 8px;
  }
  .image-availability strong {
    font-size: 20px;
  }
  .quick-grid {
    gap: 23px 12px;
  }
  .quick-grid > div {
    gap: 9px;
  }
  .quick-grid strong {
    font-size: 10px;
  }
  .quick-grid small {
    font-size: 9px;
  }
  .quick-grid .icon {
    width: 22px;
  }
  .about-home {
    height: 290px;
  }
  .about-visual {
    padding-right: 20px;
    padding-bottom: 91px;
  }
  .about-equipment {
    height: 155px;
    width: 59%;
  }
  .about-stamp {
    padding: 18px 15px;
    bottom: 6px;
    gap: 10px;
  }
  .about-stamp span {
    font-size: 7px;
  }
  .about-stamp strong {
    font-size: 12px;
  }
  .about-copy h2,
  .area-grid h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: 35px;
  }
  .inline-links {
    gap: 8px;
  }
  .inline-links .text-link {
    font-size: 11px;
  }
  .why-heading h2 {
    font-size: 35px;
  }
  .benefits-grid {
    gap: 0 22px;
  }
  .benefit h3 {
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section-subtitle {
    font-size: 15px !important;
  }
  .service-filters {
    gap: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .filter-button {
    font-size: 11px;
    min-height: 44px;
  }
  .services-grid {
    gap: 11px;
  }
  .service-card-content,
  .service-feature .service-card-content {
    padding: 19px 16px;
  }
  .service-top {
    margin-bottom: 19px;
  }
  .icon-box {
    width: 40px;
    height: 40px;
  }
  .icon-box .icon {
    width: 23px;
    height: 23px;
  }
  .service-number {
    font-size: 9px;
  }
  .service-card h3 {
    font-size: 15px;
  }
  .service-card p {
    font-size: 11px;
    line-height: 1.85;
    margin-bottom: 13px;
  }
  .card-link {
    font-size: 10px;
    gap: 8px;
  }
  .card-link .icon {
    width: 14px;
  }
  .service-help > span {
    font-size: 11px;
  }
  .details-intro h2 {
    font-size: 34px;
  }
  .service-detail h3 {
    font-size: 13px;
  }
  .emergency-copy h2 {
    font-size: 30px;
  }
  .emergency-actions {
    gap: 13px;
  }
  .emergency-actions .button {
    font-size: 11px;
    padding: 14px 14px;
  }
  .emergency-actions .text-link {
    font-size: 10px;
    gap: 7px;
  }
  .map-card iframe {
    height: 320px;
  }
  .map-address {
    padding: 19px 15px;
    gap: 10px;
  }
  .map-address address {
    font-size: 11px;
  }
  .map-address strong {
    font-size: 13px;
  }
  .form-card {
    padding: 25px 20px;
  }
  .form-heading h3 {
    font-size: 21px;
  }
  .form-heading > span {
    font-size: 7px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-field {
    margin-bottom: 17px;
  }
  .form-field label {
    font-size: 12px;
  }
  .form-field input::placeholder {
    font-size: 14px;
  }
  .form-field select {
    font-size: 14px;
  }
  .form-intro {
    font-size: 12px;
  }
  .consent-label {
    font-size: 11px;
  }
  .footer-top {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px 18px;
  }
  .footer-phone {
    font-size: 17px;
  }
  .footer-info address {
    font-size: 11px;
  }
  .footer-bottom > span {
    font-size: 9px;
  }
  .footer-bottom {
    gap: 8px;
  }
  .disclaimer {
    font-size: 11px;
  }
  .mobile-call {
    left: 18px;
    right: 18px;
  }
}
@media (max-width: 350px) {
  .wrap {
    width: calc(100% - 30px);
  }
  .brand {
    width: 156px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-call {
    width: 36px;
  }
  .menu-toggle {
    width: 36px;
  }
  .announcement-inner > span {
    font-size: 7px;
  }
  .announcement strong {
    font-size: 7px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .availability {
    font-size: 7px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-assurance {
    font-size: 8px;
    gap: 8px;
  }
  .hero-image-frame {
    height: 330px;
  }
  .comfort-card {
    padding: 16px 12px;
    gap: 10px;
  }
  .comfort-card strong {
    font-size: 12px;
  }
  .comfort-card span {
    font-size: 9px;
  }
  .comfort-card > a {
    display: none;
  }
  .quick-grid strong {
    font-size: 9px;
  }
  .quick-grid small {
    font-size: 8px;
  }
  .quick-grid > div {
    gap: 6px;
  }
  .about-stamp strong {
    font-size: 10px;
  }
  .service-card-content,
  .service-feature .service-card-content {
    padding: 17px 13px;
  }
  .service-card h3 {
    font-size: 14px;
  }
  .service-card p {
    font-size: 11px;
  }
  .service-number {
    display: none;
  }
  .form-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer-phone {
    font-size: 15px;
  }
  .footer-phone .icon {
    display: none;
  }
  .contact-phone strong {
    font-size: 25px;
  }
  .map-address {
    padding: 15px 12px;
    gap: 9px;
  }
  .map-address address {
    font-size: 10px;
  }
  .map-address > a {
    width: 34px;
    height: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .service-card:hover,
  .button:active {
    transform: none;
  }
}
@media print {
  .announcement,
  .site-header,
  .mobile-call,
  .service-filters,
  .hero-actions,
  .emergency-actions,
  .question-card,
  .form-card {
    display: none !important;
  }
  .section {
    padding: 28px 0;
  }
  .wrap {
    width: 100%;
  }
  .hero-grid {
    padding: 20px 0;
  }
  .hero-visual {
    display: none;
  }
  .hero-grid,
  .about-grid,
  .details-grid,
  .area-grid,
  .faq-grid,
  .contact-grid {
    display: block;
  }
  .why-section,
  .site-footer {
    background: #fff !important;
    color: #10243e;
  }
  .benefit p,
  .disclaimer,
  .footer-info,
  .site-footer p {
    color: #333;
  }
  .faq-answer[hidden] {
    display: block !important;
  }
  .service-detail .detail-body {
    display: block !important;
  }
  .site-footer {
    padding: 20px 0;
  }
  .footer-brand > a {
    width: 210px;
  }
  .footer-top {
    gap: 30px;
  }
  .details-intro {
    position: static;
  }
  a {
    color: inherit;
  }
  .map-card iframe {
    height: 250px;
  }
}

/* Legible legal disclosure and no-JS fallback chrome. */
.disclaimer {
  font-size: 13px;
}
@media (max-width: 760px) {
  .disclaimer {
    font-size: 12px;
  }
}
html:not(.js) .mobile-call {
  display: none;
}

/* USER-SUPPLIED PHOTO UPDATE */
/* Preserve the complete uploaded image contents; no photo is reused. */
.hero-image-frame {
  height: auto !important;
  aspect-ratio: 1;
  border-radius: 16px 16px 70px 16px;
}
.hero-image-frame > img {
  object-fit: contain !important;
  object-position: center !important;
}
.about-home {
  height: auto !important;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 10px 50px 10px 10px;
}
.about-equipment {
  height: auto !important;
  aspect-ratio: auto;
  object-fit: contain;
}
.about-visual {
  padding-bottom: 155px;
}
.service-card.has-photo {
  display: flex;
  flex-direction: column;
}
.service-card.has-photo .service-card-content {
  height: auto;
  flex: 1;
}
.service-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 1px solid var(--border);
  background: var(--ice);
}
.service-feature > img {
  object-fit: contain !important;
  background: #eaf3ef;
  height: 100%;
  min-height: 235px;
  align-self: center;
}
@media (max-width: 1050px) {
  .about-visual {
    padding-bottom: 135px;
  }
  .service-feature > img {
    min-height: 245px;
  }
}
@media (max-width: 760px) {
  .about-visual {
    padding-bottom: 155px;
  }
  .service-card.has-photo .service-card-content {
    padding-top: 18px;
  }
  .service-feature > img {
    display: block !important;
    height: auto;
    min-height: 0;
    order: -1;
  }
  .service-feature {
    display: flex;
    flex-direction: column;
  }
  .service-feature .service-card-content {
    height: auto;
    flex: 1;
  }
  .hero-visual {
    max-width: 520px;
  }
}
@media (max-width: 430px) {
  .about-visual {
    padding-bottom: 125px;
  }
  .service-card.has-photo .service-top {
    margin-bottom: 16px;
  }
  .service-card.has-photo .service-card-content {
    padding-top: 17px;
  }
}
