:root {
  --navy: #06264b;
  --navy-deep: #031a34;
  --navy-soft: #0d365f;
  --aqua: #35aaca;
  --aqua-dark: #147c99;
  --aqua-bright: #62d1e7;
  --mist: #eaf5f6;
  --foam: #f7faf9;
  --sand: #f1eee7;
  --ink: #152536;
  --muted: #5a6b7a;
  --line: rgba(6, 38, 75, .16);
  --gutter: clamp(22px, 5vw, 76px);
  --space: clamp(76px, 9vw, 132px);
  --content: 1380px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--foam);
  color: var(--ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

body.menu-open { overflow: hidden; }
body.menu-open .mobile-quote-bar { display: none; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--aqua-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(3, 26, 52, .82);
  backdrop-filter: blur(14px);
  transition: min-height .2s ease, background .2s ease, box-shadow .2s ease;
}

.navigation.is-scrolled {
  min-height: 76px;
  background: rgba(3, 26, 52, .97);
  box-shadow: 0 12px 34px rgba(3, 26, 52, .18);
}

.logo-link { flex: 0 0 auto; }

.logo {
  width: clamp(166px, 17vw, 224px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.nav-links a,
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.section-current,
.nav-link:hover,
.nav-link[aria-expanded="true"],
.nav-item.contains-current > .nav-link { color: var(--aqua-bright); }

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.services-toggle,
.areas-toggle { gap: 9px; }

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.services-toggle[aria-expanded="true"] .nav-chevron,
.areas-toggle[aria-expanded="true"] .nav-chevron { transform: translateY(2px) rotate(225deg); }

.services-dropdown {
  position: absolute;
  z-index: 130;
  top: calc(100% + 16px);
  left: 50%;
  width: min(470px, calc(100vw - 48px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(3, 26, 52, .985);
  box-shadow: 0 28px 72px rgba(2, 18, 37, .38);
  transform: translateX(-50%);
}

.services-dropdown[hidden] { display: none; }

.services-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.services-overview {
  display: flex !important;
  justify-content: space-between;
  min-height: 52px !important;
  padding: 0 16px;
  background: rgba(53, 170, 202, .15);
  color: #fff !important;
  font-weight: 800 !important;
}

.services-overview:hover { background: rgba(53, 170, 202, .24); }

.services-dropdown-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.services-dropdown-list a {
  min-height: 54px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  line-height: 1.3;
}

.areas-dropdown { width: min(370px, calc(100vw - 48px)); }
.areas-dropdown .services-dropdown-list { grid-template-columns: 1fr; }

.nav-quote,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-quote {
  min-width: 178px;
  border: 1px solid rgba(255, 255, 255, .66);
  color: #fff;
  white-space: nowrap;
}

.button-aqua { background: var(--aqua); color: var(--navy-deep); }
.button-navy { background: var(--navy); color: #fff; }
.button-outline { border: 1px solid rgba(255, 255, 255, .6); color: #fff; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  min-height: 760px;
  background: var(--navy-deep);
  color: #fff;
}

.service-hero > * { min-width: 0; }

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 164px var(--gutter) 88px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--aqua-bright); }

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--aqua-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-hero .eyebrow { color: var(--aqua-bright); }

.service-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 790;
  line-height: .94;
  letter-spacing: -.062em;
}

.hero-lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-reassurance {
  max-width: 650px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  line-height: 1.55;
}

.service-hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-soft);
}

.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 26, 52, .3), transparent 45%), linear-gradient(0deg, rgba(3, 26, 52, .35), transparent 38%);
  pointer-events: none;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-media.type-panel {
  display: flex;
  align-items: flex-end;
  padding: clamp(38px, 6vw, 78px);
  background:
    radial-gradient(circle at 72% 22%, rgba(98, 209, 231, .5), transparent 27%),
    linear-gradient(145deg, var(--aqua) 0%, #1b8ead 46%, var(--navy-soft) 100%);
}

.service-hero-media.type-panel::after {
  background: linear-gradient(0deg, rgba(3, 26, 52, .68), transparent 58%);
}

.type-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 82px);
  font-weight: 790;
  line-height: .94;
  letter-spacing: -.055em;
}

.type-stack span:nth-child(2) { color: rgba(255, 255, 255, .62); }
.type-stack small { margin-top: 24px; color: rgba(255, 255, 255, .72); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.object-action { object-position: 50% 58%; }
.object-owner { object-position: 50% 48%; }
.object-low { object-position: 50% 70%; }

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-rail div {
  padding: 25px var(--gutter);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.proof-rail div + div { border-left: 1px solid var(--line); }

.company-standard-section { background: #fff; }

.company-standard {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 0;
}

.company-standard-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: clamp(38px, 6vw, 74px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(98, 209, 231, .22), transparent 28%),
    var(--navy-deep);
  color: #fff;
}

.company-standard-brand::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -58px;
  width: min(64%, 420px);
  aspect-ratio: 2.35 / 1;
  background: url("./West Wave Wash Logo Package/West-Wave-Wash-Monogram-Reversed.svg") center / contain no-repeat;
  opacity: .075;
  pointer-events: none;
}

.company-standard-brand > * { position: relative; z-index: 1; }
.company-standard-brand .section-kicker { color: var(--aqua-bright); }
.company-standard-brand h2 { max-width: 620px; margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: .96; letter-spacing: -.055em; }
.company-standard-brand p:last-child { max-width: 560px; margin: 24px 0 0; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.65; }

.company-standard-list {
  display: grid;
  align-content: stretch;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--sand);
  list-style: none;
}

.company-standard-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  align-content: center;
  padding: 30px clamp(28px, 5vw, 58px);
}

.company-standard-list li + li { border-top: 1px solid var(--line); }
.company-standard-list > li > span { color: var(--aqua-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.company-standard-list div { display: grid; gap: 6px; }
.company-standard-list strong { color: var(--navy); font-size: clamp(22px, 2.3vw, 31px); line-height: 1.05; letter-spacing: -.035em; }
.company-standard-list small { color: var(--muted); font-size: 14px; line-height: 1.5; }

.page-section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: var(--space) var(--gutter);
}

.intro-grid,
.feature-grid,
.local-grid {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.feature-copy h2,
.local-copy h2,
.final-cta h2,
.hub-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.intro-body {
  max-width: 710px;
  padding-top: 6px;
}

.intro-body p,
.feature-copy p,
.local-copy p,
.section-heading > p,
.hub-intro > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro-body strong { color: var(--navy); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p { margin: 0; }

.scope-section { background: var(--sand); }

.scope-grid,
.service-hub-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scope-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.scope-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
}

.scope-options {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.scope-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: start;
  min-height: 160px;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.scope-option:hover { border-color: rgba(6, 38, 75, .36); transform: translateY(-2px); }
.scope-option:focus-within { outline: 3px solid var(--navy); outline-offset: 3px; }
.scope-option:has(input:checked) { border-color: var(--navy); background: var(--navy); }

.scope-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.scope-option .scope-number { margin: 0; }

.scope-option-body { display: grid; gap: 8px; align-self: center; }
.scope-option-body strong { color: var(--navy); font-size: clamp(20px, 2vw, 27px); line-height: 1.05; letter-spacing: -.035em; }
.scope-option-body small { color: var(--muted); font-size: 13px; line-height: 1.45; }

.scope-option-check {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(6, 38, 75, .22);
  border-radius: 50%;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  place-items: center;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.scope-option input:checked ~ .scope-number { background: var(--aqua-bright); color: var(--navy); }
.scope-option input:checked ~ .scope-option-body strong { color: #fff; }
.scope-option input:checked ~ .scope-option-body small { color: rgba(255, 255, 255, .72); }
.scope-option input:checked ~ .scope-option-check { border-color: var(--aqua-bright); background: var(--aqua-bright); color: var(--navy); transform: rotate(45deg); }

.scope-options-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.scope-options-footer > span { max-width: 560px; color: var(--muted); font-size: 13px; line-height: 1.5; }

.scope-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.scope-card h3,
.process-step h3,
.related-card h3,
.hub-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(23px, 2.25vw, 33px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.scope-card p,
.process-step p,
.related-card p,
.hub-card p,
.fit-list li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.process-section { background: var(--navy-deep); color: #fff; }
.process-section .section-kicker { color: var(--aqua-bright); }
.process-section .section-heading h2 { color: #fff; }
.process-section .section-heading > p { color: rgba(255, 255, 255, .68); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process-step {
  min-height: 260px;
  padding: 30px 25px;
}

.process-step + .process-step { border-left: 1px solid rgba(255, 255, 255, .18); }
.process-step .scope-number { background: var(--aqua); color: var(--navy-deep); }
.process-step h3 { color: #fff; }
.process-step p { color: rgba(255, 255, 255, .68); }

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process-ribbon details + details { border-left: 1px solid rgba(255, 255, 255, .18); }
.process-ribbon details[open] { background: rgba(255, 255, 255, .055); }

.process-ribbon summary {
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  gap: 12px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.process-ribbon summary::-webkit-details-marker { display: none; }
.process-ribbon-index { color: var(--aqua-bright); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.process-ribbon-title { font-size: clamp(20px, 2vw, 28px); font-weight: 780; line-height: 1.05; letter-spacing: -.035em; }
.process-ribbon-toggle { color: var(--aqua-bright); font-size: 22px; line-height: .8; transition: transform .2s ease; }
.process-ribbon details[open] .process-ribbon-toggle { transform: rotate(45deg); }
.process-ribbon p { margin: 0; padding: 0 24px 25px 70px; color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.6; }

.feature-grid { align-items: stretch; }

.feature-media {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  background: rgba(3, 26, 52, .9);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.feature-copy {
  align-self: center;
  padding: 36px 0;
}

.fit-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fit-list li {
  position: relative;
  padding: 18px 10px 18px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.fit-list li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

.expectation-section { background: var(--mist); }

.expectation-box {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(20, 124, 153, .22);
  background: #fff;
}

.expectation-box h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}

.expectation-box p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.result-guide-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 38px;
}

.result-guide-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.result-guide-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.result-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.result-guide details {
  border: 1px solid rgba(20, 124, 153, .22);
  background: rgba(255, 255, 255, .62);
}

.result-guide details[open] { background: #fff; box-shadow: 0 18px 42px rgba(6, 38, 75, .08); }

.result-guide summary {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 12px;
  align-items: start;
  min-height: 150px;
  padding: 24px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.result-guide summary::-webkit-details-marker { display: none; }
.result-guide-index { color: var(--aqua-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.result-guide-title { font-size: clamp(21px, 2vw, 29px); font-weight: 780; line-height: 1.05; letter-spacing: -.035em; }
.result-guide-toggle { color: var(--aqua-dark); font-size: 24px; line-height: .8; transition: transform .2s ease; }
.result-guide details[open] .result-guide-toggle { transform: rotate(45deg); }

.result-guide-body { padding: 0 24px 26px 70px; }
.result-guide-body ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.result-guide-body li { position: relative; padding-left: 16px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.result-guide-body li::before { content: ""; position: absolute; top: .62em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); }

.comparison-slider {
  --split: 50%;
  width: 100%;
  margin: 0;
}

.comparison-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--mist);
}

.comparison-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.comparison-before {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison-tag {
  position: absolute;
  z-index: 3;
  top: 14px;
  padding: 9px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-tag-before { left: 14px; }
.comparison-tag-after { right: 14px; }

.comparison-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 18px rgba(3, 26, 52, .36);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 9px 26px rgba(3, 26, 52, .38);
  color: var(--navy-deep);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.08em;
  place-items: center;
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  touch-action: pan-y;
}

.comparison-range::-webkit-slider-thumb { width: 68px; height: 68px; -webkit-appearance: none; }
.comparison-range::-moz-range-thumb { width: 68px; height: 68px; border: 0; background: transparent; }
.comparison-range:focus-visible { outline: none; }
.comparison-range:focus-visible + .comparison-divider .comparison-handle { outline: 3px solid var(--navy); outline-offset: 5px; }

.comparison-slot { margin-top: 38px; }
.photo-story-comparison { grid-column: span 2; }

.photo-story-section { background: #fff; }

.photo-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 44px;
}

.photo-story-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.photo-story-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.photo-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-story-grid.two { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }

.photo-story-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.photo-story-grid.two .photo-story-card:first-child { min-height: 650px; }

.photo-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.photo-story-card:hover img { transform: scale(1.018); }

.photo-story-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(3, 26, 52, .86), transparent);
  pointer-events: none;
}

.photo-story-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.photo-story-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.local-section { background: var(--sand); }

.service-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.service-map-frame {
  position: relative;
  isolation: isolate;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(6, 38, 75, .1);
  border-radius: 24px;
  background: #dce4e5;
  box-shadow: 0 30px 80px rgba(6, 38, 75, .16);
}

.service-map-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .36);
  pointer-events: none;
}

.service-map-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 68% 34%, rgba(53, 170, 202, .14), transparent 32%), #eef2f1;
}

.service-map-status {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(280px, 78%);
  margin: 0;
  color: rgba(6, 38, 75, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.service-map-status[hidden] { display: none; }
.service-map-canvas[data-map-state="error"] + .service-map-status { color: var(--navy); }

.service-map-frame .leaflet-tile-pane { filter: saturate(.82) contrast(.96) brightness(1.025); }

.service-map-frame .leaflet-control-zoom {
  margin: 0 16px 16px 0;
  overflow: hidden;
  border: 1px solid rgba(6, 38, 75, .1);
  border-radius: 13px;
  box-shadow: 0 10px 30px rgba(6, 38, 75, .14);
}

.service-map-frame .leaflet-control-zoom a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  place-items: center;
}

.service-map-frame .leaflet-control-zoom a + a { border-top: 1px solid rgba(6, 38, 75, .09); }
.service-map-frame .leaflet-control-zoom a:hover,
.service-map-frame .leaflet-control-zoom a:focus-visible { background: var(--navy); color: #fff; }

.service-map-frame .leaflet-control-attribution {
  max-width: calc(100% - 32px);
  padding: 3px 7px;
  border-radius: 7px 0 0 0;
  background: rgba(255, 255, 255, .86);
  color: #607282;
  font-size: 8px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.service-map-frame .leaflet-control-attribution a { color: var(--navy); }

.service-map-frame .leaflet-tooltip.service-map-label {
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(6, 38, 75, .22);
  color: #fff;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1;
  text-transform: uppercase;
}

.service-map-frame .leaflet-tooltip-top.service-map-label::before { border-top-color: var(--navy); }
.service-map-frame .leaflet-tooltip-bottom.service-map-label::before { border-bottom-color: var(--navy); }
.service-map-frame .leaflet-container:focus-visible { outline: 3px solid var(--navy); outline-offset: -3px; }

.service-map-badge,
.service-map-external {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(6, 38, 75, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 30px rgba(6, 38, 75, .13);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-map-badge { top: 18px; right: 18px; gap: 9px; pointer-events: none; }
.service-map-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(53, 170, 202, .15);
}

.service-map-external {
  bottom: 18px;
  left: 18px;
  gap: 8px;
  text-decoration: none;
}

.service-map-external:hover,
.service-map-external:focus-visible { background: var(--navy); color: #fff; }

.service-map-noscript {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(260px, 72%);
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
  transform: translate(-50%, -50%);
}

.service-map-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.service-map-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.service-hub-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 30px 0;
}

.service-hub-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  min-height: 112px;
  padding: 17px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}

.service-hub-card > span { color: var(--aqua-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.service-hub-card div { display: flex; flex-direction: column; gap: 5px; }
.service-hub-card strong { color: var(--navy); font-size: 15px; line-height: 1.25; }
.service-hub-card small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 112px);
}

.faq-intro { position: sticky; top: 118px; align-self: start; }
.faq-intro h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 28px; text-align: center; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: 0 54px 28px 0; color: var(--muted); line-height: 1.75; }

.related-section { background: var(--sand); }

.related-card,
.hub-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover,
.hub-card:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(6, 38, 75, .1); }
.related-card p,
.hub-card p { flex: 1; }

.card-link {
  margin-top: 30px;
  color: var(--aqua-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lead-section {
  scroll-margin-top: 94px;
  padding: var(--space) var(--gutter);
  background: var(--sand);
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  width: min(100%, var(--content));
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(6, 38, 75, .12);
}

.lead-copy {
  padding: clamp(42px, 6vw, 78px);
  background:
    radial-gradient(circle at 90% 12%, rgba(98, 209, 231, .23), transparent 25%),
    var(--navy-deep);
  color: #fff;
}

.lead-copy .section-kicker { color: var(--aqua-bright); }
.lead-copy h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .96; letter-spacing: -.055em; }
.lead-copy > p { margin: 24px 0 0; color: rgba(255, 255, 255, .7); font-size: 16px; line-height: 1.7; }

.lead-steps {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
}

.lead-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.45;
}

.lead-steps span { color: var(--aqua-bright); font-size: 11px; font-weight: 800; letter-spacing: .08em; }

.lead-form {
  padding: clamp(38px, 5vw, 68px);
  background: #fff;
}

.lead-form-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.lead-form-head h2,
.lead-form-head h3 { margin: 0; color: var(--navy); font-size: clamp(27px, 3vw, 40px); line-height: 1; letter-spacing: -.04em; }
.lead-form-head span { color: var(--muted); font-size: 12px; }

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.lead-form .form-wide { grid-column: 1 / -1; }

.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-label small { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 13px;
  border: 1px solid #70808e;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.lead-form textarea { min-height: 116px; padding: 13px; resize: vertical; }
.lead-form input[type="file"] { min-height: 0; padding: 13px; border-style: dashed; color: var(--muted); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { border-color: var(--navy); }

.lead-form :focus-visible { outline-color: var(--navy); }

.form-hint { color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.5; }

.lead-form-submit { width: 100%; margin-top: 24px; cursor: pointer; }

.lead-consent,
.lead-form-status {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.lead-form-status:not(:empty) {
  padding: 12px 14px;
  border-left: 3px solid var(--aqua);
  background: var(--mist);
  color: var(--navy);
}

.quote-page,
.quote-page-main { background: var(--sand); }

.quote-page-section {
  min-height: calc(100vh - 78px);
  padding-top: clamp(126px, 13vw, 180px);
}

.quote-page .lead-copy {
  display: flex;
  flex-direction: column;
}

.quote-page .lead-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.06em;
}

.quote-page .lead-copy > p { max-width: 590px; }

.quote-page .lead-copy > .quote-coverage {
  margin-top: auto;
  padding-top: 36px;
  color: var(--aqua-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mobile-quote-bar[hidden] { display: none !important; }

body:has(#service-quote:focus-within) .mobile-quote-bar,
body:has(#location-quote:focus-within) .mobile-quote-bar { display: none; }

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 45%, rgba(53, 170, 202, .26), transparent 34%);
}

.final-cta-inner {
  position: relative;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 142px) var(--gutter);
}

.final-cta h2 { max-width: 950px; color: #fff; }
.final-cta p { max-width: 680px; margin: 24px 0 0; color: rgba(255, 255, 255, .7); font-size: 17px; line-height: 1.7; }
.final-cta .hero-actions { margin-top: 32px; }

.hub-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 680px;
  padding: 170px var(--gutter) 90px;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.hub-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  opacity: .56;
}

.hub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 26, 52, .97), rgba(3, 26, 52, .5) 70%, rgba(3, 26, 52, .18)), linear-gradient(0deg, rgba(3, 26, 52, .65), transparent 52%);
}

.hub-hero-copy { position: relative; z-index: 1; max-width: 920px; }
.hub-hero h1 { margin: 0; font-size: clamp(58px, 7.5vw, 108px); line-height: .91; letter-spacing: -.065em; }
.hub-hero p { max-width: 670px; margin: 26px 0 0; color: rgba(255, 255, 255, .8); font-size: 19px; line-height: 1.65; }

.hub-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .6fr); gap: 64px; align-items: end; }
.hub-intro > p { margin: 0; }

.service-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 54px; }
.hub-card { min-height: 330px; padding: clamp(28px, 4vw, 48px); }
.hub-card.has-media { padding: 0; overflow: hidden; }
.hub-card-media { height: 240px; overflow: hidden; background: var(--mist); }
.hub-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hub-card.has-media:hover .hub-card-media img { transform: scale(1.025); }
.hub-card-body { display: flex; flex: 1; flex-direction: column; padding: clamp(28px, 4vw, 42px); }
.hub-card .section-kicker { display: block; flex: 0; }
.hub-card-body > span:not(.section-kicker):not(.card-link) { flex: 1; color: var(--muted); font-size: 15px; line-height: 1.65; }
.hub-card:first-child .hub-card-body > span:not(.section-kicker):not(.card-link) { color: rgba(255, 255, 255, .7); }
.hub-card:first-child { background: var(--navy); }
.hub-card:first-child h2,
.hub-card:first-child p { color: #fff; }
.hub-card:first-child p { color: rgba(255, 255, 255, .7); }
.hub-card:first-child .card-link { color: var(--aqua-bright); }

.about-page { background: var(--foam); }

.about-page-hero .service-hero-copy { padding-right: clamp(42px, 7vw, 110px); }

.about-page-hero-media::after {
  z-index: 1;
  background: linear-gradient(0deg, rgba(3, 26, 52, .78), transparent 48%), linear-gradient(90deg, rgba(3, 26, 52, .2), transparent 40%);
}

.about-page-hero-media img { object-position: 50% 46%; }

.about-field-label {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(22px, 4vw, 52px);
  left: clamp(22px, 4vw, 52px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 18px;
  align-items: end;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(3, 26, 52, .88);
  color: #fff;
  backdrop-filter: blur(12px);
}

.about-field-label span {
  grid-column: 1 / -1;
  color: var(--aqua-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-field-label strong { font-size: 24px; line-height: 1; letter-spacing: -.035em; }
.about-field-label small { justify-self: end; color: rgba(255, 255, 255, .7); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.about-story {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: start;
}

.about-story-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .96;
  letter-spacing: -.058em;
}

.about-story-copy {
  max-width: 720px;
  padding: 8px 0 8px clamp(28px, 4vw, 58px);
  border-left: 3px solid var(--aqua);
}

.about-story-copy p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.78; }
.about-story-copy p + p { margin-top: 22px; }
.about-story-copy strong { color: var(--navy); }

.about-standard .company-standard-brand { min-height: 540px; }
.about-standard .company-standard-list li { min-height: 135px; }

.about-result .feature-grid { grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); }
.about-result .comparison-slider { align-self: center; box-shadow: 0 26px 70px rgba(6, 38, 75, .14); }
.about-result-link { margin-top: 30px; }

.about-paths-section { background: var(--sand); }
.about-paths-heading { margin-bottom: 44px; }

.about-paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-path-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 540px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.about-path-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 26, 52, .95), rgba(3, 26, 52, .08) 72%);
}

.about-path-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 66%;
  transition: transform .55s ease;
}

.about-path-card:hover img { transform: scale(1.025); }

.about-path-commercial {
  background: radial-gradient(circle at 78% 22%, rgba(98, 209, 231, .43), transparent 26%), linear-gradient(145deg, #147c99 0%, #0d365f 52%, #031a34 100%);
}

.about-path-commercial::after { background: linear-gradient(0deg, rgba(3, 26, 52, .88), rgba(3, 26, 52, .04) 76%); }

.about-path-monogram {
  position: absolute;
  z-index: -1;
  top: 54px;
  right: -62px;
  width: min(72%, 520px);
  aspect-ratio: 2.35 / 1;
  background: url("./West Wave Wash Logo Package/West-Wave-Wash-Monogram-Reversed.svg") center / contain no-repeat;
  opacity: .13;
}

.about-path-content {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(32px, 5vw, 60px);
}

.about-path-content small {
  color: var(--aqua-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-path-content strong { max-width: 650px; font-size: clamp(30px, 3.8vw, 54px); line-height: .98; letter-spacing: -.052em; }
.about-path-content > span { font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.faq-page { background: var(--foam); }
.faq-page-hero h1 { max-width: 900px; }

.faq-index-section { background: var(--sand); }
.faq-index-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 52px; align-items: end; }
.faq-index-heading h2 { max-width: 820px; margin: 0; color: var(--navy); font-size: clamp(39px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; }
.faq-category-nav { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 50px; border: 1px solid var(--line); background: #fff; }
.faq-category-nav a { display: grid; align-content: start; min-height: 190px; padding: 24px; color: var(--navy); text-decoration: none; transition: background-color .2s ease, color .2s ease; }
.faq-category-nav a + a { border-left: 1px solid var(--line); }
.faq-category-nav a:hover, .faq-category-nav a:focus-visible { background: var(--navy); color: #fff; }
.faq-category-nav span { margin-bottom: 36px; color: var(--aqua-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.faq-category-nav a:hover span, .faq-category-nav a:focus-visible span { color: var(--aqua-bright); }
.faq-category-nav strong { font-size: 20px; line-height: 1.08; letter-spacing: -.03em; }
.faq-category-nav small { margin-top: 9px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.faq-category-nav a:hover small, .faq-category-nav a:focus-visible small { color: rgba(255, 255, 255, .68); }
.faq-category-section { scroll-margin-top: 92px; }
.faq-category-section .faq-intro > p:last-child { max-width: 430px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-category-band { scroll-margin-top: 92px; background: var(--sand); }
.faq-category-band .faq-category-section { scroll-margin-top: 92px; }

.privacy-page { background: var(--foam); }
.privacy-page-hero h1 { max-width: 920px; }

.policy-status { background: var(--sand); }

.policy-status-inner {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.policy-status-inner h2 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: .98;
  letter-spacing: -.052em;
}

.policy-status-inner div > p {
  max-width: 840px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 124px);
  align-items: start;
}

.policy-index {
  position: sticky;
  top: 112px;
  padding: 28px 0;
  border-top: 3px solid var(--aqua);
  border-bottom: 1px solid var(--line);
}

.policy-index nav { display: grid; margin-top: 20px; }

.policy-index a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  min-height: 44px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.policy-index a:hover { color: var(--aqua-dark); }
.policy-index a span { color: var(--aqua-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; }

.policy-content { min-width: 0; max-width: 980px; }

.policy-intro {
  padding: clamp(30px, 4vw, 48px);
  border-left: 4px solid var(--aqua);
  background: var(--navy);
  color: #fff;
}

.policy-intro p { margin: 0; color: rgba(255, 255, 255, .76); font-size: 17px; line-height: 1.75; }
.policy-intro p + p { margin-top: 18px; }

.policy-section {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  padding: clamp(48px, 6vw, 76px) 0;
  border-bottom: 1px solid var(--line);
}

.policy-number {
  margin: 9px 0 0;
  color: var(--aqua-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.policy-section h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.048em;
}

.policy-section p,
.policy-section li,
.policy-data-list dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-section p { margin: 0; }
.policy-section p + p { margin-top: 18px; }
.policy-section strong { color: var(--navy); }
.policy-section a { color: var(--aqua-dark); font-weight: 750; text-underline-offset: 3px; }
.policy-section code { padding: 2px 5px; background: var(--mist); color: var(--navy); font: .88em/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; }

.policy-data-list { margin: 30px 0; border-top: 1px solid var(--line); }
.policy-data-list > div { display: grid; grid-template-columns: minmax(150px, .38fr) minmax(0, 1.62fr); gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.policy-data-list dt { color: var(--navy); font-size: 14px; font-weight: 800; line-height: 1.45; }
.policy-data-list dd { margin: 0; }

.policy-check-list { display: grid; gap: 0; margin: 30px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.policy-check-list li { position: relative; padding: 17px 0 17px 32px; border-bottom: 1px solid var(--line); }
.policy-check-list li::before { content: ""; position: absolute; top: 26px; left: 2px; width: 10px; height: 6px; border-bottom: 2px solid var(--aqua-dark); border-left: 2px solid var(--aqua-dark); transform: rotate(-45deg); }

.policy-provider-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 32px 0; border: 1px solid var(--line); }
.policy-provider-list div { display: grid; gap: 10px; align-content: start; min-height: 190px; padding: 24px; }
.policy-provider-list div + div { border-left: 1px solid var(--line); }
.policy-provider-list strong { font-size: 16px; }
.policy-provider-list span { color: var(--muted); font-size: 13px; line-height: 1.6; }

.policy-contact { border-bottom: 0; }
.policy-contact address { display: grid; gap: 8px; margin: 28px 0; padding: 28px; border-left: 4px solid var(--aqua); background: var(--sand); font-style: normal; }
.policy-contact address strong { font-size: 19px; }
.policy-contact address span { color: var(--muted); }

.lead-consent a { color: var(--navy); font-weight: 750; text-underline-offset: 2px; }

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.location-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.location-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 26, 52, .08) 15%, rgba(3, 26, 52, .92) 86%);
}

.location-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.location-card:hover img { transform: scale(1.025); }
.location-card-content { display: flex; flex: 1; flex-direction: column; justify-content: flex-end; padding: clamp(28px, 3.2vw, 44px); }
.location-card-content small { color: var(--aqua-bright); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.location-card-content strong { display: block; margin-top: 12px; font-size: clamp(30px, 3vw, 45px); line-height: .98; letter-spacing: -.045em; }
.location-card-content p { margin: 15px 0 24px; color: rgba(255, 255, 255, .74); font-size: 14px; line-height: 1.6; }
.location-card-content span { color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location-card-white-rock img { object-position: 53% 56%; }
.location-card-langley img { object-position: 50% 56%; }

.location-hero-media { position: relative; }
.location-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 26, 52, .72));
  pointer-events: none;
}
.location-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.location-hero-media .object-south-surrey { object-position: 50% 70%; }
.location-hero-media .object-white-rock { object-position: 56% 54%; }
.location-hero-media .object-langley { object-position: 51% 57%; }
.location-hero-caption {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(22px, 4vw, 58px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.location-context-section { background: #fff; }
.location-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}
.location-context-card { min-height: 245px; padding: clamp(26px, 3vw, 40px); background: var(--foam); }
.location-context-card span { color: var(--aqua-dark); font-size: 10px; font-weight: 800; letter-spacing: .11em; }
.location-context-card h3 { margin: 28px 0 12px; color: var(--navy); font-size: clamp(23px, 2.4vw, 34px); line-height: 1.03; letter-spacing: -.035em; }
.location-context-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.location-services-section { background: var(--navy-deep); color: #fff; }
.location-services-section .section-heading h2 { color: #fff; }
.location-services-section .section-heading > p { color: rgba(255, 255, 255, .64); }
.location-service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin-top: 48px; background: rgba(255, 255, 255, .16); }
.location-service-card {
  display: flex;
  min-height: 255px;
  padding: 28px 24px;
  flex-direction: column;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}
.location-service-card small { color: var(--aqua-bright); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-service-card strong { margin: 28px 0 14px; font-size: 22px; line-height: 1.05; letter-spacing: -.03em; }
.location-service-card span { margin-top: auto; color: rgba(255, 255, 255, .62); font-size: 11px; line-height: 1.5; }
.location-service-card:hover { background: var(--aqua-dark); }

.location-coverage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 30px 0; }
.location-coverage-card { padding: 24px; border: 1px solid var(--line); background: rgba(255, 255, 255, .76); }
.location-coverage-card strong { display: block; color: var(--navy); font-size: 17px; }
.location-coverage-card p { margin: 9px 0 0 !important; font-size: 12px !important; line-height: 1.55 !important; }
.location-neighbourhoods { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; }
.location-neighbourhoods span { padding: 9px 11px; border: 1px solid var(--line); background: #fff; color: var(--navy); font-size: 10px; font-weight: 750; }
.location-source-note { margin-top: 20px !important; font-size: 11px !important; }
.location-source-note a { color: var(--navy); font-weight: 750; text-underline-offset: 3px; }

.location-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.location-related-card { min-height: 230px; padding: 30px; border: 1px solid var(--line); background: #fff; text-decoration: none; }
.location-related-card small { color: var(--aqua-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-related-card strong { display: block; margin: 36px 0 12px; color: var(--navy); font-size: 27px; line-height: 1; letter-spacing: -.04em; }
.location-related-card span { color: var(--muted); font-size: 12px; }
.location-related-card:hover { box-shadow: 0 20px 45px rgba(6, 38, 75, .1); transform: translateY(-2px); }

.service-hub-card[href] { color: inherit; text-decoration: none; }
.service-hub-card[href]:hover { border-color: var(--aqua); background: #fff; }
.service-map-frame .leaflet-tooltip-left.service-map-label::before { border-left-color: var(--navy); }
.service-map-frame .leaflet-tooltip-right.service-map-label::before { border-right-color: var(--navy); }

.site-footer {
  padding: 70px var(--gutter) 26px;
  background: var(--navy-deep);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(200px, .65fr) minmax(280px, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-logo img { width: min(230px, 100%); height: auto; }
.footer-main p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .66); line-height: 1.65; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-links a { color: rgba(255, 255, 255, .66); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255, 255, 255, .45); font-size: 11px; }
.footer-bottom a { color: rgba(255, 255, 255, .68); text-underline-offset: 3px; }
.footer-bottom a:hover,
.footer-bottom a[aria-current="page"] { color: #fff; }

.mobile-quote-bar { display: none; }

@media (max-width: 1120px) and (min-width: 861px) {
  .navigation { gap: 18px; }
  .logo { width: 170px; }
  .nav-links { gap: 16px; }
  .nav-quote { min-width: 154px; padding: 0 17px; }
}

@media (max-width: 1040px) {
  .service-hero { grid-template-columns: 1fr .82fr; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .18); }
  .process-step:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .18); }
  .company-standard { grid-template-columns: 1fr; }
  .company-standard-list { border-top: 0; border-left: 1px solid var(--line); }
  .location-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .location-service-card:nth-child(n + 4) { min-height: 220px; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .navigation { min-height: 78px; padding: 0 20px; }
  .logo { width: 150px; }
  .menu-toggle { display: block; }
  .nav-quote { min-width: 0; min-height: 42px; padding: 0 13px; font-size: 10px; }
  .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 16px 20px 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(3, 26, 52, .98);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-links[data-open="true"] { opacity: 1; pointer-events: auto; visibility: visible; transform: none; }
  .navigation.is-scrolled .nav-links { top: 76px; max-height: calc(100dvh - 76px); }
  .nav-links a { min-height: 56px; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 14px; }
  .nav-item { display: block; }
  .services-toggle,
  .areas-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
  }
  .services-dropdown {
    position: static;
    width: auto;
    padding: 8px 0 12px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .services-dropdown::before { content: none; }
  .services-overview { margin-bottom: 3px; border-bottom: 0 !important; }
  .services-dropdown-list { grid-template-columns: 1fr; margin-top: 0; }
  .services-dropdown-list a { min-height: 50px; padding-left: 12px; font-size: 13px; }
  .service-hero { grid-template-columns: 1fr; }
  .service-hero-copy { min-height: 650px; padding-top: 145px; }
  .service-hero-media { min-height: 620px; }
  .intro-grid,
  .feature-grid,
  .local-grid,
  .faq-layout,
  .expectation-box,
  .section-heading,
  .hub-intro,
  .lead-shell,
  .about-story,
  .about-paths-grid,
  .policy-status-inner,
  .policy-layout { grid-template-columns: 1fr; }
  .about-story { gap: 42px; }
  .about-story-copy { max-width: none; }
  .about-path-card { min-height: 470px; }
  .faq-index-heading { grid-template-columns: 1fr; gap: 24px; }
  .faq-category-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-category-nav a + a { border-left: 0; }
  .faq-category-nav a:nth-child(even) { border-left: 1px solid var(--line); }
  .faq-category-nav a:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .policy-index { position: static; padding-bottom: 0; }
  .policy-index nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-index a:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
  .policy-provider-list { grid-template-columns: 1fr; }
  .policy-provider-list div { min-height: 0; }
  .policy-provider-list div + div { border-top: 1px solid var(--line); border-left: 0; }
  .faq-all-link { grid-column: auto; }
  .service-map-layout { grid-template-columns: 1fr; }
  .service-map-frame { min-height: 500px; }
  .section-heading { gap: 22px; }
  .photo-story-heading { grid-template-columns: 1fr; gap: 20px; }
  .result-guide-heading { grid-template-columns: 1fr; gap: 20px; }
  .photo-story-grid { grid-template-columns: 1fr 1fr; }
  .photo-story-comparison { grid-column: 1 / -1; }
  .photo-story-comparison + .photo-story-card { grid-column: 1 / -1; min-height: 420px; }
  .photo-story-grid .photo-story-card:first-child { grid-column: 1 / -1; }
  .photo-story-grid.two .photo-story-card:first-child { grid-column: auto; }
  .feature-media { min-height: 680px; }
  .faq-intro { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .location-card-grid,
  .location-context-grid,
  .location-related-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 430px; }
  .location-context-card { min-height: 0; }
  .location-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-service-card { min-height: 220px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; --space: 72px; }
  html { scroll-padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  body:has(.mobile-quote-bar) { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .logo { width: 130px; }
  .menu-toggle { flex: 0 0 40px; }
  .nav-quote { min-width: 0; min-height: 42px; padding: 0 13px; font-size: 10px; }
  .service-hero-copy { min-height: 590px; padding: 126px 20px 68px; }
  .service-hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .about-page-hero h1 { font-size: clamp(42px, 12vw, 52px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .service-hero-media { min-height: 530px; }
  .proof-rail { grid-template-columns: 1fr; }
  .proof-rail div { padding: 18px 20px; }
  .proof-rail div + div { border-top: 1px solid var(--line); border-left: 0; }
  .scope-grid,
  .service-hub-grid,
  .process-grid { grid-template-columns: 1fr; }
  .result-guide { grid-template-columns: 1fr; }
  .result-guide summary { min-height: 104px; }
  .scope-grid.four { grid-template-columns: 1fr; }
  .photo-story-grid,
  .photo-story-grid.two { grid-template-columns: 1fr; }
  .about-result .feature-grid { grid-template-columns: 1fr; }
  .photo-story-card,
  .photo-story-grid.two .photo-story-card:first-child { min-height: 520px; }
  .photo-story-grid .photo-story-card:first-child,
  .photo-story-grid.two .photo-story-card:first-child { grid-column: auto; }
  .comparison-tag { top: 14px; padding: 8px 10px; }
  .comparison-tag-before { left: 14px; }
  .comparison-tag-after { right: 14px; }
  .comparison-handle { width: 48px; height: 48px; font-size: 19px; }
  .lead-section { padding: 72px 20px; }
  .quote-page-section { padding-top: 112px; }
  .lead-copy,
  .lead-form { padding: 38px 24px; }
  .lead-form-head { align-items: flex-start; flex-direction: column; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form .form-wide { grid-column: auto; }
  .scope-card { min-height: 230px; }
  .scope-option { grid-template-columns: 38px minmax(0, 1fr) 32px; min-height: 138px; padding: 22px 18px; }
  .scope-option .scope-number { width: 38px; height: 38px; }
  .scope-options-footer { align-items: stretch; flex-direction: column; }
  .scope-options-footer .button { width: 100%; }
  .company-standard-brand { min-height: 410px; padding: 42px 24px; }
  .company-standard-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; padding: 24px; }
  .about-standard .company-standard-brand { min-height: 440px; }
  .about-standard .company-standard-list li { min-height: 0; }
  .about-field-label { grid-template-columns: 1fr; }
  .about-field-label small { justify-self: start; }
  .about-story-copy { padding-left: 22px; }
  .about-result-link { width: 100%; }
  .about-path-card { min-height: 420px; }
  .about-path-content { padding: 30px 24px; }
  .faq-category-nav { grid-template-columns: 1fr; }
  .faq-category-nav a { min-height: 130px; }
  .faq-category-nav a + a,
  .faq-category-nav a:nth-child(even) { border-top: 1px solid var(--line); border-left: 0; }
  .faq-category-nav span { margin-bottom: 20px; }
  .policy-status-inner { gap: 22px; }
  .policy-index nav { grid-template-columns: 1fr; }
  .policy-index a:nth-child(even) { padding-left: 0; border-left: 0; }
  .policy-section { grid-template-columns: 1fr; gap: 12px; }
  .policy-number { margin: 0; }
  .policy-data-list > div { grid-template-columns: 1fr; gap: 8px; }
  .process-step + .process-step { border-top: 1px solid rgba(255, 255, 255, .18); border-left: 0; }
  .process-ribbon { grid-template-columns: 1fr; }
  .process-ribbon details + details { border-top: 1px solid rgba(255, 255, 255, .18); border-left: 0; }
  .process-ribbon summary { min-height: 88px; }
  .feature-media { min-height: 540px; }
  .service-map-frame { min-height: 410px; border-radius: 18px; }
  .service-hub-list { grid-template-columns: 1fr; }
  .location-service-grid,
  .location-coverage-grid { grid-template-columns: 1fr; }
  .location-service-card { min-height: 190px; }
  .location-card { min-height: 390px; }
  .location-hero-caption { align-items: flex-start; flex-direction: column; }
  .service-map-badge { top: 12px; right: 12px; max-width: calc(100% - 24px); min-height: 38px; padding: 0 12px; font-size: 8px; }
  .service-map-external { bottom: 56px; left: 12px; min-height: 40px; padding: 0 13px; font-size: 9px; }
  .service-map-frame .leaflet-control-zoom { margin: 0 12px 12px 0; }
  .service-map-frame .leaflet-control-zoom a { width: 38px; height: 38px; }
  .service-map-frame .leaflet-control-attribution { max-width: calc(100% - 24px); }
  .faq-list summary { min-height: 78px; font-size: 18px; }
  .faq-list details p { margin-right: 0; }
  .hub-hero { min-height: 620px; padding: 132px 20px 68px; }
  .hub-hero h1 { font-size: clamp(54px, 16vw, 76px); }
  .footer-bottom { flex-direction: column; }
  .mobile-quote-bar {
    position: fixed;
    z-index: 120;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    background: var(--aqua);
    box-shadow: 0 10px 28px rgba(3, 26, 52, .28);
    color: var(--navy-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
  }

  #service-quote input,
  #service-quote select,
  #service-quote textarea,
  #service-quote button,
  #location-quote input,
  #location-quote select,
  #location-quote textarea,
  #location-quote button { scroll-margin-bottom: calc(90px + env(safe-area-inset-bottom)); }
}

@media (max-width: 360px) {
  .navigation { gap: 6px; padding-right: 14px; padding-left: 14px; }
  .logo { width: 116px; }
  .nav-quote { padding-right: 9px; padding-left: 9px; font-size: 9px; letter-spacing: .045em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
