:root {
  --ink: #101510;
  --ink-strong: #050805;
  --brand-navy: #101510;
  --brand-green: #5da320;
  --brand-green-soft: #9acb7d;
  --brand-green-wash: #eef7ea;
  --porcelain: #f7faf5;
  --mist: #edf3eb;
  --silver: #aeb8ab;
  --line: rgba(16, 21, 16, 0.12);
  --accent: #5da320;
  --accent-strong: #5da320;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 21, 16, 0.1);
  --radius: 8px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink-strong);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 5vw, 3.5rem);
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 21, 16, 0.1);
  box-shadow: 0 12px 34px rgba(16, 21, 16, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 2.8rem;
  padding: 0.22rem 0;
  border-radius: 6px;
}

.brand-wordmark {
  display: block;
  width: clamp(8.2rem, 12vw, 10.25rem);
  height: auto;
  max-height: 2.6rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.55vw, 1.35rem);
  color: rgba(16, 21, 16, 0.76);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  white-space: nowrap;
  padding: 0.5rem 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-navy);
}

.nav-quote,
.button,
.text-cta {
  border: 0;
  cursor: pointer;
}

.site-nav .nav-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1.08rem;
  color: var(--white);
  background: var(--brand-green);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(93, 163, 32, 0.18);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.site-nav .nav-quote:hover,
.site-nav .nav-quote:focus-visible {
  color: var(--white);
  background: var(--brand-navy);
}

.menu-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--brand-navy);
  background: rgba(16, 21, 16, 0.04);
  border: 1px solid rgba(16, 21, 16, 0.14);
  border-radius: var(--radius);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

.site-header.is-open .menu-lines {
  background: transparent;
}

.site-header.is-open .menu-lines::before {
  transform: translateY(1px) rotate(45deg);
  background: var(--brand-navy);
}

.site-header.is-open .menu-lines::after {
  transform: translateY(-1px) rotate(-45deg);
  background: var(--brand-navy);
}

.page-shell {
  overflow: visible;
}

#portfolio,
#faq,
#services-guide,
#areas-guide {
  scroll-margin-top: 6rem;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  min-height: 88svh;
  padding: clamp(7.2rem, 13vh, 9rem) clamp(1.15rem, 6vw, 5rem) clamp(4.4rem, 8vh, 6.8rem);
  color: var(--brand-navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 245, 0.92)),
    url("./hero-clean-co-van.png") center right / cover no-repeat,
    var(--porcelain);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(247, 250, 245, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 245, 0.94));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding-bottom: clamp(1.4rem, 5vh, 3.2rem);
  text-align: center;
}

[data-hero-reveal] {
  opacity: var(--reveal-opacity, 1);
  transform: translate3d(0, var(--reveal-y, 0px), 0) scale(var(--reveal-scale, 1));
  filter: blur(var(--reveal-blur, 0px));
  transition: opacity 160ms linear, transform 160ms linear, filter 160ms linear;
  will-change: opacity, transform, filter;
}

.hero-actions[data-hero-reveal] {
  transform: translate3d(0, var(--reveal-y, 0px), 0) scale(var(--reveal-scale, 1));
}

.hero-overline {
  margin: 0 0 1.15rem;
  color: var(--brand-green);
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.15rem;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: rgba(16, 21, 16, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.52rem;
  max-width: 680px;
  margin: 1.25rem auto 0;
  color: var(--brand-navy);
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  font-weight: 850;
}

.hero-services span {
  width: 0.38rem;
  height: 0.38rem;
  background: var(--brand-green);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.82rem;
  margin-top: clamp(2.15rem, 4.8vw, 3rem);
  pointer-events: none;
}

.hero-actions.is-revealed {
  pointer-events: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-quote:hover,
.nav-quote:focus-visible,
.text-cta:hover,
.text-cta:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--brand-green);
  box-shadow: 0 12px 26px rgba(93, 163, 32, 0.18);
}

.button-secondary {
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(16, 21, 16, 0.16);
}

.results-section {
  --result-placeholder-before:
    linear-gradient(180deg, rgba(5, 8, 5, 0.02), rgba(5, 8, 5, 0.18)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 24% 18%, rgba(93, 163, 32, 0.2), transparent 13rem),
    linear-gradient(135deg, #17211b 0%, #314032 54%, #0e1510 100%);
  --result-placeholder-after:
    linear-gradient(180deg, rgba(5, 8, 5, 0.02), rgba(5, 8, 5, 0.12)),
    repeating-linear-gradient(45deg, rgba(16, 21, 16, 0.035) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 76% 18%, rgba(93, 163, 32, 0.12), transparent 13rem),
    linear-gradient(135deg, #eaf3e6 0%, #f9fcf7 52%, #b9cbb2 100%);
  padding: clamp(4rem, 8vw, 6.8rem) 0 clamp(3.4rem, 7vw, 6rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--porcelain) 100%);
}

.results-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 0 clamp(1.15rem, 6vw, 5rem);
  margin-bottom: clamp(2.45rem, 5vw, 3.8rem);
  text-align: center;
}

.results-head h2 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.results-head p {
  max-width: 520px;
  margin-inline: auto;
  margin: 0;
  color: rgba(16, 21, 16, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.results-carousel {
  --result-card-width: clamp(20rem, 34vw, 33rem);
  --result-edge-space: max(clamp(1.15rem, 6vw, 5rem), calc((100vw - var(--result-card-width)) / 2));
  display: grid;
  grid-auto-columns: var(--result-card-width);
  grid-auto-flow: column;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: var(--result-edge-space);
  scroll-snap-type: x mandatory;
  padding: 1.45rem var(--result-edge-space) 1.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 32, 39, 0.28) transparent;
}

.results-swipe-cue {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: fit-content;
  margin: 0.3rem auto 0;
  padding: 0.54rem 0.78rem;
  color: rgba(20, 32, 39, 0.68);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.results-carousel::-webkit-scrollbar {
  height: 0.5rem;
}

.results-carousel::-webkit-scrollbar-thumb {
  background: rgba(20, 32, 39, 0.24);
  border-radius: 999px;
}

.result-card {
  position: relative;
  z-index: 1;
  scroll-snap-align: center;
  min-width: 0;
  opacity: 0.46;
  transform: scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
  filter: saturate(0.72);
}

.result-card.is-active {
  z-index: 4;
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.compare-widget {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: clamp(15.5rem, 26vw, 24rem);
  color: var(--white);
  background: var(--brand-navy);
  border: 1px solid rgba(16, 21, 16, 0.14);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(16, 21, 16, 0.1);
  isolation: isolate;
  touch-action: pan-y;
}

.compare-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.compare-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 13, 0.08), rgba(5, 10, 13, 0.45)),
    linear-gradient(90deg, rgba(5, 10, 13, 0.2), transparent 48%, rgba(5, 10, 13, 0.08));
}

.compare-after {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  clip-path: inset(0 0 0 var(--compare-position, 52%));
}

.compare-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--compare-position, 52%);
  width: 3.75rem;
  background: transparent;
  cursor: ew-resize;
  touch-action: none;
  transform: translateX(-50%);
  pointer-events: auto;
}

.compare-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(5, 10, 13, 0.08);
  transform: translateX(-50%);
}

.compare-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 2.8rem;
  background:
    radial-gradient(circle at 44% 50%, rgba(16, 21, 16, 0.28) 0 1.5px, transparent 1.9px),
    radial-gradient(circle at 56% 50%, rgba(16, 21, 16, 0.28) 0 1.5px, transparent 1.9px),
    rgba(247, 250, 249, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow:
    0 11px 30px rgba(5, 10, 13, 0.24),
    inset 0 0 0 1px rgba(16, 21, 16, 0.05);
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0.75rem;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.compare-widget:has(.compare-range:focus-visible) {
  outline: 3px solid rgba(143, 183, 170, 0.58);
  outline-offset: 4px;
}

.compare-label {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  padding: 0.48rem 0.62rem;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-label-before {
  left: 0.9rem;
}

.compare-label-after {
  right: 0.9rem;
}

.result-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-top: 0.75rem;
  text-align: center;
}

.result-kicker {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-meta h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.14;
}

.result-meta p {
  max-width: 16rem;
  margin: 0 auto;
  color: rgba(16, 21, 16, 0.62);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
}

.results-cta-pop {
  position: fixed;
  z-index: 70;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  width: min(25rem, calc(100vw - 2rem));
  padding: 1.15rem;
  color: var(--white);
  background: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(5, 10, 13, 0.34);
  animation: promptIn 260ms ease both;
}

.results-cta-pop h2 {
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  line-height: 0.98;
}

.results-cta-pop p:not(.wizard-kicker) {
  max-width: 21rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.results-cta-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
}

.results-cta-actions {
  display: flex;
  gap: 0.65rem;
}

.results-cta-actions .button {
  align-items: center;
  gap: 0.48rem;
}

.button-icon {
  width: 1.18rem;
  height: 1.18rem;
  flex: 0 0 auto;
}

.results-cta-pop .button-primary {
  color: var(--ink-strong);
  background: var(--white);
}

.results-cta-pop .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.anchor-holder {
  position: relative;
}

.review-strip-section {
  padding: clamp(2.4rem, 5vw, 4.1rem) 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid rgba(16, 21, 16, 0.06);
  border-bottom: 1px solid rgba(16, 21, 16, 0.06);
}

.review-strip-head {
  display: grid;
  gap: 0.28rem;
  max-width: 1160px;
  margin: 0 auto 1rem;
  padding: 0 clamp(1.15rem, 6vw, 5rem);
  text-align: center;
}

.review-strip-kicker {
  margin: 0;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-strip-head h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1;
}

.review-strip {
  --review-card-width: clamp(17.5rem, 27vw, 21.5rem);
  --review-edge-space: max(clamp(1rem, 6vw, 5rem), calc((100vw - min(1120px, 100vw)) / 2 + 1rem));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--review-card-width);
  gap: 0.85rem;
  max-width: 100vw;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: var(--review-edge-space);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  padding: 0.6rem var(--review-edge-space) 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 32, 39, 0.22) transparent;
}

.review-strip:focus-visible {
  outline: 3px solid rgba(93, 163, 32, 0.25);
  outline-offset: -3px;
}

.review-strip::-webkit-scrollbar {
  height: 0.45rem;
}

.review-strip::-webkit-scrollbar-thumb {
  background: rgba(20, 32, 39, 0.2);
  border-radius: 999px;
}

.google-review-card {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
  gap: 0.65rem;
  min-height: 10.6rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 21, 16, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 21, 16, 0.06);
}

.google-review-top {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.google-review-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: #4285f4;
  background: #fff;
  border: 1px solid rgba(16, 21, 16, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px rgba(247, 250, 245, 0.88);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.google-review-top h3,
.google-review-top p,
.google-review-card > p {
  margin: 0;
}

.google-review-top h3 {
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.google-review-top p {
  margin-top: 0.1rem;
  color: rgba(16, 21, 16, 0.52);
  font-size: 0.72rem;
  font-weight: 750;
}

.google-review-stars {
  color: #fbbc04;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.google-review-card > p {
  color: rgba(20, 32, 39, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.trust-section {
  padding: clamp(3.6rem, 8vw, 6.4rem) clamp(1.15rem, 6vw, 5rem);
  color: var(--ink);
  background: var(--white);
  transition: background-position 700ms ease;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(2.4rem, 6vw, 5.6rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.trust-copy {
  position: sticky;
  top: 7.2rem;
  text-align: center;
}

.trust-copy > * {
  --trust-reveal-y: 22px;
  opacity: 0;
  transform: translateY(var(--trust-reveal-y));
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
    clip-path 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

.trust-copy .trust-kicker {
  --trust-reveal-y: 12px;
}

.trust-copy h2 {
  --trust-reveal-y: 30px;
  clip-path: inset(0 0 100% 0);
}

.trust-copy.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.trust-copy.is-visible h2 {
  clip-path: inset(0 0 0 0);
}

.trust-copy.is-visible > p:not(.trust-kicker) {
  transition-delay: 120ms;
}

.trust-copy.is-visible .trust-actions {
  transition-delay: 230ms;
}

.trust-kicker {
  margin-bottom: 1rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-copy h2 {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.45vw, 5.45rem);
  font-weight: 600;
  line-height: 0.94;
}

.trust-copy > p:not(.trust-kicker) {
  max-width: 520px;
  margin-inline: auto;
  color: rgba(20, 32, 39, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.65;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2.1rem, 3.8vw, 3rem);
  margin-bottom: clamp(0.9rem, 2vw, 1.6rem);
}

.trust-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-action-primary {
  min-width: 12.4rem;
  color: var(--white);
  background: var(--brand-green);
  border: 1px solid rgba(93, 163, 32, 0.2);
  box-shadow: 0 12px 26px rgba(93, 163, 32, 0.18);
}

.trust-action-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 21, 16, 0.14);
  border-radius: var(--radius);
  padding-inline: 1.25rem;
}

.trust-action:hover,
.trust-action:focus-visible {
  transform: translateY(-2px);
}

.trust-action-primary:hover,
.trust-action-primary:focus-visible {
  background: var(--brand-navy);
  box-shadow: 0 14px 30px rgba(16, 21, 16, 0.14);
}

.trust-action-secondary:hover,
.trust-action-secondary:focus-visible {
  border-color: rgba(93, 163, 32, 0.42);
}

.trust-list {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 21, 16, 0.08);
}

.trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 5.7rem 1px minmax(0, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.9rem);
  align-items: center;
  min-height: clamp(7rem, 11vw, 8.8rem);
  padding: clamp(1.1rem, 2.4vw, 1.45rem) clamp(1.1rem, 2.8vw, 1.8rem);
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform-origin: center;
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.19, 1, 0.22, 1),
    background 520ms ease,
    box-shadow 520ms ease,
    filter 520ms ease;
  isolation: isolate;
}

.trust-item + .trust-item {
  border-top: 1px solid var(--line);
}

.trust-item::before {
  content: "";
  width: 1px;
  height: 100%;
  min-height: 4.4rem;
  background: var(--line);
  grid-column: 2;
  grid-row: 1;
  transition: background 420ms ease, opacity 420ms ease;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: var(--brand-green-wash);
  transition: opacity 520ms ease;
}

.trust-item.is-highlighted {
  z-index: 2;
  background: var(--brand-green-wash);
  box-shadow: none;
  filter: saturate(1.06);
  transform: translateX(-0.35rem) scale(1.012);
}

.trust-item.is-highlighted::before {
  background: rgba(73, 108, 97, 0.28);
}

.trust-item.is-highlighted::after {
  opacity: 1;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 4.35rem;
  height: 4.35rem;
  color: var(--brand-green);
  background: var(--white);
  border: 1px solid rgba(93, 163, 32, 0.22);
  border-radius: 999px;
  transition:
    color 480ms ease,
    background 480ms ease,
    border-color 480ms ease,
    box-shadow 480ms ease,
    transform 480ms cubic-bezier(0.19, 1, 0.22, 1);
}

.trust-item.is-highlighted .trust-icon {
  color: var(--brand-navy);
  background: var(--white);
  border-color: rgba(93, 163, 32, 0.38);
  box-shadow: none;
  transform: scale(1.035);
}

.trust-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h3 {
  margin-bottom: 0.42rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.25vw, 2.05rem);
  font-weight: 600;
  line-height: 1.12;
  transition: color 420ms ease, transform 420ms ease;
}

.trust-item p {
  margin: 0;
  color: rgba(20, 32, 39, 0.62);
  font-size: clamp(0.95rem, 1.25vw, 1.04rem);
  line-height: 1.45;
  transition: color 420ms ease, transform 420ms ease;
}

.trust-item.is-highlighted h3,
.trust-item.is-highlighted p {
  transform: translateX(0.14rem);
}

.trust-item.is-highlighted h3 {
  color: var(--ink-strong);
}

.trust-item.is-highlighted p {
  color: rgba(20, 32, 39, 0.75);
}

[data-trust-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.19, 1, 0.22, 1),
    background 520ms ease,
    box-shadow 520ms ease,
    filter 520ms ease;
  will-change: opacity, transform;
}

[data-trust-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-item.is-visible.is-highlighted {
  transform: translateY(0) translateX(-0.35rem) scale(1.012);
}

.trust-list [data-trust-reveal]:nth-child(2) {
  transition-delay: 70ms;
}

.trust-list [data-trust-reveal]:nth-child(3) {
  transition-delay: 140ms;
}

.trust-list [data-trust-reveal]:nth-child(4) {
  transition-delay: 210ms;
}

.content-section {
  padding: clamp(3.3rem, 7vw, 6.4rem) clamp(1.15rem, 6vw, 5rem);
  color: var(--ink);
  background: var(--porcelain);
}

.seo-section {
  padding: clamp(3.6rem, 7vw, 6.6rem) clamp(1.15rem, 6vw, 5rem);
  color: var(--ink);
  background: var(--white);
}

.services-seo {
  border-top: 1px solid rgba(20, 32, 39, 0.08);
}

.areas-seo {
  background:
    radial-gradient(circle at 8% 18%, rgba(216, 241, 232, 0.26), transparent 30rem),
    linear-gradient(135deg, #edf5f3 0%, #f7faf9 54%, #e2eceb 100%);
}

.faq-section {
  position: relative;
  background: var(--white);
}

.seo-section-head,
.seo-split,
.faq-grid,
.seo-card-grid {
  max-width: 1320px;
  margin: 0 auto;
}

.seo-section-head {
  margin-bottom: clamp(1.6rem, 3.6vw, 2.7rem);
  text-align: center;
}

.seo-kicker {
  margin: 0 0 0.8rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-section h2,
.guide-hero h1 {
  max-width: 900px;
  margin: 0 auto 1rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
}

.seo-section-head > p,
.seo-split > div > p,
.guide-hero p,
.guide-copy p,
.guide-copy li {
  color: rgba(20, 32, 39, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.seo-section-head > p,
.seo-split > div > p {
  max-width: 820px;
  margin-inline: auto;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-card {
  min-height: 15rem;
  padding: clamp(1.05rem, 2.3vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 249, 0.72));
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 58px rgba(20, 32, 39, 0.07);
}

.seo-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #496c61;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.seo-card h3,
.guide-card h2,
.guide-card h3 {
  margin: 0 0 0.68rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.seo-card p {
  margin: 0;
  color: rgba(20, 32, 39, 0.68);
  line-height: 1.58;
}

.seo-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.area-panel {
  display: grid;
  gap: 1rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 1rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 58px rgba(20, 32, 39, 0.08);
}

.area-list li {
  padding: 0.72rem 0.78rem;
  color: var(--ink-strong);
  background: rgba(247, 250, 249, 0.82);
  border: 1px solid rgba(20, 32, 39, 0.08);
  border-radius: 8px;
  font-weight: 780;
}

.area-notes {
  display: grid;
  gap: 0.5rem;
}

.area-notes p {
  margin: 0;
  padding: 0.78rem 0.95rem;
  color: rgba(20, 32, 39, 0.72);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 10px;
  font-weight: 760;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 21, 16, 0.05);
}

.faq-grid summary {
  cursor: pointer;
  padding: 1.05rem 1.15rem;
  color: var(--ink-strong);
  font-weight: 850;
}

.faq-grid details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: rgba(20, 32, 39, 0.68);
  line-height: 1.58;
}

.faq-show-more {
  display: none;
  width: fit-content;
  margin: 1rem auto 0;
  padding: 0.2rem 0.1rem;
  color: var(--brand-green);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(93, 163, 32, 0.35);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.faq-show-more:hover,
.faq-show-more:focus-visible {
  color: var(--ink-strong);
  border-bottom-color: rgba(16, 21, 16, 0.55);
}

.faq-question-dock {
  position: relative;
  z-index: 14;
  display: flex;
  justify-content: center;
  max-width: 1320px;
  height: auto;
  margin: clamp(1.65rem, 3vw, 2.35rem) auto 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(1rem) scale(0.98);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question-dock.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-question-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 3.05rem;
  padding: 0.68rem 1.05rem 0.68rem 0.78rem;
  color: var(--ink-strong);
  background: var(--white);
  border: 1px solid rgba(93, 163, 32, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 21, 16, 0.08);
  cursor: pointer;
  font-weight: 880;
  pointer-events: auto;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.faq-question-pill span {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--white);
  background: var(--brand-green);
  border-radius: 50%;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 -1px 0 rgba(16, 21, 16, 0.14);
}

.faq-question-pill:hover,
.faq-question-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(93, 163, 32, 0.72);
  box-shadow:
    0 16px 34px rgba(16, 21, 16, 0.1),
    0 0 0 7px rgba(93, 163, 32, 0.11);
}

.guide-page {
  background: var(--porcelain);
}

.guide-main {
  padding-top: 5rem;
}

.guide-hero {
  padding: clamp(4.8rem, 9vw, 8.2rem) clamp(1.15rem, 6vw, 5rem) clamp(2.6rem, 5vw, 4rem);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.96) 0%, rgba(247, 250, 249, 0.82) 54%, rgba(223, 233, 235, 0.58) 100%),
    radial-gradient(circle at 84% 20%, rgba(143, 183, 170, 0.24), transparent 28rem);
}

.guide-hero-inner,
.guide-grid,
.guide-cta {
  max-width: 1320px;
  margin: 0 auto;
}

.guide-hero p {
  max-width: 780px;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.guide-hero .button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #071015 0%, #132a31 58%, #173f37 100%);
  border: 1px solid rgba(20, 32, 39, 0.18);
}

.guide-hero .button-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(20, 32, 39, 0.14);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.15rem, 6vw, 5rem);
}

.guide-card {
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 62px rgba(20, 32, 39, 0.07);
}

.guide-card-wide {
  grid-column: 1 / -1;
}

.guide-copy ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.guide-link-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.guide-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0.95rem;
  color: var(--ink-strong);
  background: rgba(247, 250, 249, 0.82);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 8px;
  font-weight: 800;
}

.guide-cta {
  margin-bottom: clamp(2.6rem, 6vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--white);
  background: linear-gradient(135deg, #071015 0%, #132a31 58%, #173f37 100%);
  border-radius: 12px;
}

.guide-cta h2 {
  max-width: 760px;
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.guide-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.services-page {
  background:
    radial-gradient(circle at 86% 10%, rgba(143, 183, 170, 0.16), transparent 32rem),
    linear-gradient(180deg, #f7faf9 0%, #edf4f2 44%, #f7faf9 100%);
}

.services-main {
  overflow: hidden;
  padding-top: 5rem;
  color: var(--ink);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 5rem);
  padding: clamp(3.6rem, 7vw, 7rem) clamp(1.15rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 72% 42%, rgba(143, 183, 170, 0.24), transparent 28rem),
    linear-gradient(120deg, rgba(247, 250, 249, 0.98) 0%, rgba(240, 247, 245, 0.86) 100%);
}

.services-hero-copy,
.service-section-head,
.service-switcher,
.service-gallery-section,
.quote-steps,
.service-area-module,
.service-seo-strip,
.services-final-cta {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.services-hero h1,
.service-section-head h2,
.service-area-module h2 {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 7.1vw, 6.7rem);
  font-weight: 600;
  line-height: 0.9;
}

.services-hero-copy > p:not(.seo-kicker),
.service-section-head > p,
.service-area-module > div > p {
  max-width: 680px;
  color: rgba(20, 32, 39, 0.7);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.62;
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.services-hero .button-primary,
.service-gallery-section .button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #071015 0%, #132a31 58%, #173f37 100%);
  border: 1px solid rgba(20, 32, 39, 0.18);
}

.services-hero .button-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 32, 39, 0.14);
}

.services-reassurance {
  margin-top: 0.9rem;
  color: rgba(20, 32, 39, 0.6);
  font-size: 0.88rem;
  font-weight: 780;
}

.service-visual {
  perspective: 1100px;
}

.service-visual-frame {
  position: relative;
  min-height: clamp(27rem, 46vw, 39rem);
  overflow: hidden;
  border: 1px solid rgba(20, 32, 39, 0.16);
  border-radius: 20px;
  background: #071015;
  box-shadow: 0 42px 110px rgba(20, 32, 39, 0.2);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.service-visual-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
}

.service-visual-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 13, 0.12), rgba(5, 10, 13, 0.62)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.24), transparent 14rem),
    linear-gradient(135deg, #0b171c, #1a3535);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.04);
  transition: opacity 360ms ease, filter 360ms ease, background-image 360ms ease;
}

.service-image-pressure {
  background-image:
    linear-gradient(180deg, rgba(5, 10, 13, 0.08), rgba(5, 10, 13, 0.62)),
    url("./pressure-washing-edinburgh-after.png");
}

.service-image-roofline {
  background-image:
    linear-gradient(180deg, rgba(5, 10, 13, 0.08), rgba(5, 10, 13, 0.62)),
    url("./gilmerton-roof-gutter-after.png");
}

.service-image-windows {
  background:
    linear-gradient(135deg, rgba(6, 17, 21, 0.16), rgba(6, 17, 21, 0.68)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 28%),
    linear-gradient(135deg, #dfe9eb 0%, #f7faf9 48%, #8fb7aa 100%);
}

.service-image-patios {
  background-image:
    linear-gradient(180deg, rgba(5, 10, 13, 0.1), rgba(5, 10, 13, 0.64)),
    url("./pressure-washing-edinburgh-before.png");
}

.service-image-commercial {
  background:
    linear-gradient(180deg, rgba(5, 10, 13, 0.08), rgba(5, 10, 13, 0.64)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 20%),
    radial-gradient(circle at 18% 24%, rgba(143, 183, 170, 0.36), transparent 18rem),
    linear-gradient(135deg, #071015 0%, #27383f 70%, #174239 100%);
}

.service-visual-glass {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(7, 16, 21, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  transform: translateZ(46px);
}

.service-visual-glass span,
.service-detail > span,
.gallery-tile span,
.area-lanes span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-visual-glass strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.service-visual-glass p {
  max-width: 28rem;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.service-visual-tabs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.service-visual-tabs button,
.service-rail button,
.service-rail a {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.service-visual-tabs button {
  flex: 1;
  padding: 0.7rem 0.75rem;
  color: rgba(20, 32, 39, 0.7);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.service-visual-tabs button.is-active {
  color: var(--white);
  background: var(--ink);
}

.service-switcher,
.service-gallery-section,
.quote-steps,
.service-area-module,
.service-seo-strip {
  padding: clamp(3rem, 6vw, 5.8rem) clamp(1.15rem, 6vw, 5rem);
}

.service-section-head {
  margin-bottom: clamp(1.4rem, 3.5vw, 2.6rem);
}

.service-section-head h2,
.service-area-module h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
}

.service-console {
  display: grid;
  grid-template-columns: minmax(270px, 0.52fr) minmax(0, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.service-rail {
  display: grid;
  gap: 0.62rem;
}

.service-rail button,
.service-rail a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.82rem;
  align-items: center;
  padding: 0.95rem 1rem;
  color: rgba(20, 32, 39, 0.76);
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.service-rail button span,
.service-rail a span {
  grid-row: span 2;
  color: #496c61;
  font-weight: 850;
}

.service-rail button small,
.service-rail a small {
  grid-column: 2;
  color: rgba(20, 32, 39, 0.54);
  font-size: 0.76rem;
  font-weight: 760;
}

.service-rail button.is-active,
.service-rail button:hover,
.service-rail button:focus-visible,
.service-rail a.is-active,
.service-rail a:hover,
.service-rail a:focus-visible {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(73, 108, 97, 0.28);
  transform: translateX(0.28rem);
}

.service-detail {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(143, 183, 170, 0.28), transparent 24rem),
    linear-gradient(135deg, #071015 0%, #132a31 58%, #173f37 100%);
  border: 1px solid rgba(20, 32, 39, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(20, 32, 39, 0.16);
}

.service-detail h3 {
  max-width: 700px;
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
}

.service-detail p,
.service-detail li {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.service-detail ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.7rem 0 1.2rem;
  padding-left: 1.1rem;
}

.service-detail .text-cta {
  color: var(--white);
}

.service-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 0.9rem;
}

.gallery-tile {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #071015, #173f37);
  border-radius: 18px;
  box-shadow: 0 24px 76px rgba(20, 32, 39, 0.12);
}

.gallery-tile-large {
  grid-row: span 2;
  min-height: 35rem;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.76) saturate(0.92);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 10, 13, 0.74));
}

.gallery-tile > div {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
}

.gallery-tile strong {
  display: block;
  max-width: 23rem;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.placeholder-window {
  background:
    linear-gradient(180deg, transparent 22%, rgba(5, 10, 13, 0.7)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 30%),
    linear-gradient(135deg, #dfe9eb, #8fb7aa);
}

.placeholder-commercial {
  background:
    linear-gradient(180deg, transparent 22%, rgba(5, 10, 13, 0.7)),
    radial-gradient(circle at 22% 22%, rgba(143, 183, 170, 0.38), transparent 15rem),
    linear-gradient(135deg, #071015, #27383f);
}

.gallery-cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--ink-strong);
  font-weight: 850;
}

.quote-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.quote-step-grid article,
.service-seo-strip article {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 14px;
}

.quote-step-grid span {
  color: #496c61;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.quote-step-grid h3,
.service-seo-strip h2 {
  margin: 0.45rem 0 0.45rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.08;
}

.quote-step-grid p,
.service-seo-strip p {
  margin: 0;
  color: rgba(20, 32, 39, 0.68);
  line-height: 1.55;
}

.service-area-module {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 0.8fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.area-map-panel {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 38% 42%, rgba(143, 183, 170, 0.22), transparent 18rem),
    linear-gradient(135deg, #071015, #132a31 54%, #173f37);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(20, 32, 39, 0.16);
}

.map-rings {
  position: relative;
  min-height: 18rem;
  background:
    radial-gradient(circle at 42% 48%, transparent 0 4rem, rgba(143, 183, 170, 0.22) 4.05rem 4.13rem, transparent 4.2rem 7.5rem, rgba(143, 183, 170, 0.16) 7.55rem 7.65rem, transparent 7.7rem 11rem, rgba(143, 183, 170, 0.1) 11.05rem 11.15rem, transparent 11.2rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 3rem 3rem, 3rem 3rem;
}

.map-dot {
  position: absolute;
  display: inline-flex;
  padding: 0.42rem 0.62rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.dot-edinburgh {
  top: 45%;
  left: 33%;
}

.dot-midlothian {
  top: 58%;
  left: 48%;
}

.dot-projects {
  top: 24%;
  right: 14%;
}

.area-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.area-lanes article {
  padding: 1rem;
  background: rgba(7, 16, 21, 0.58);
}

.area-lanes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.service-seo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.services-final-cta {
  margin-bottom: clamp(2.6rem, 6vw, 5rem);
}

.service-hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-hero-list li {
  padding: 0.48rem 0.68rem;
  color: rgba(20, 32, 39, 0.76);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.service-operation-note {
  margin: 0.8rem 0 0;
  color: #496c61 !important;
  font-size: 0.86rem !important;
  font-weight: 800;
}

.service-visual-tabs {
  flex-wrap: wrap;
}

.service-visual-tabs button {
  flex: 1 1 9rem;
}

.service-image-roof {
  background:
    linear-gradient(180deg, rgba(5, 10, 13, 0.08), rgba(5, 10, 13, 0.65)),
    radial-gradient(circle at 68% 18%, rgba(143, 183, 170, 0.28), transparent 16rem),
    repeating-linear-gradient(165deg, #38433f 0 18px, #53605a 18px 36px);
}

.service-image-solar {
  background:
    linear-gradient(180deg, rgba(5, 10, 13, 0.06), rgba(5, 10, 13, 0.64)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 25%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 25%),
    linear-gradient(135deg, #14242e, #527082 52%, #17242c);
}

.service-gallery-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.75fr);
  min-height: 31rem;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #071015, #173f37);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(20, 32, 39, 0.16);
}

.service-gallery-media {
  min-height: 31rem;
  background-position: center;
  background-size: cover;
  transition: opacity 260ms ease;
}

.service-gallery-feature > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.3rem, 4vw, 3rem);
}

.service-gallery-feature span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-gallery-feature h3 {
  margin: 0.65rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 0.98;
}

.service-gallery-feature p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.service-gallery-feature .gallery-cta {
  color: var(--white);
}

.service-directory,
.service-footer-index {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.8rem) clamp(1.15rem, 6vw, 5rem);
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-category-card {
  scroll-margin-top: 7rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 32, 39, 0.1);
  border-radius: 16px;
}

.service-category-card > span {
  color: #496c61;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-category-card h2,
.service-footer-index h2 {
  margin: 0.55rem 0 0.7rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 600;
  line-height: 1;
}

.service-category-card p,
.service-category-card li,
.service-footer-list {
  color: rgba(20, 32, 39, 0.7);
  line-height: 1.55;
}

.service-category-card ul {
  columns: 2;
  gap: 2rem;
  margin: 1rem 0 1.2rem;
  padding-left: 1.1rem;
}

.service-category-card li {
  margin-bottom: 0.34rem;
  break-inside: avoid;
}

.service-category-card a {
  color: var(--ink-strong);
  font-weight: 850;
}

.service-footer-index {
  border-top: 1px solid rgba(20, 32, 39, 0.1);
}

.service-footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-footer-pills a {
  padding: 0.68rem 0.9rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-footer-pills a:hover,
.service-footer-pills a:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.service-footer-list {
  max-width: 72rem;
  margin-top: 1.1rem;
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .services-hero-copy .service-hero-list {
    order: 4;
  }

  .services-hero-copy .service-operation-note {
    order: 5 !important;
  }

  .services-hero-copy .services-actions {
    order: 6;
  }

  .services-hero-copy > .services-reassurance {
    order: 7 !important;
  }

  .services-hero > .service-visual {
    order: 8;
  }

  .service-visual-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .service-visual-tabs button {
    min-width: 0;
  }

  .service-gallery-feature,
  .service-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-gallery-feature,
  .service-gallery-media {
    min-height: 19rem;
  }

  .service-category-card ul {
    columns: 1;
  }

  .service-directory,
  .service-footer-index {
    padding: 3rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-visual-frame,
  .service-visual-image,
  .service-gallery-media {
    transition: none;
    transform: none;
  }
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(360px, 0.78fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
}

.content-copy {
  align-self: start;
  text-align: center;
}

.content-kicker {
  margin-bottom: 0.8rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-copy h2 {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.8vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
}

.content-copy > p:not(.content-kicker) {
  max-width: 540px;
  margin-inline: auto;
  color: rgba(16, 21, 16, 0.68);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.62;
}

.content-note {
  display: inline-flex;
  margin: clamp(0.9rem, 2vw, 1.25rem) 0 0;
  padding: 0.62rem 0.78rem;
  color: var(--ink);
  background: var(--brand-green-wash);
  border: 1px solid rgba(93, 163, 32, 0.18);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 0.9rem;
  align-items: stretch;
}

.featured-video {
  display: grid;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 21, 16, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.featured-video:hover,
.featured-video:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(93, 163, 32, 0.3);
}

.featured-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(13rem, 22vw, 18.5rem);
  background: var(--brand-green-wash);
}

.featured-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(93, 163, 32, 0.16);
  border-radius: 8px;
}

.play-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.55rem;
  height: 3.55rem;
  color: var(--white);
  background: var(--brand-green);
  border: 1px solid rgba(93, 163, 32, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(5, 10, 13, 0.34);
}

.play-mark svg {
  width: 1.45rem;
  height: 1.45rem;
  transform: translateX(1px);
}

.media-tag {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.46rem 0.58rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-copy {
  display: grid;
  gap: 0.34rem;
  padding: clamp(1rem, 2.2vw, 1.25rem);
}

.featured-copy span,
.social-lane b {
  color: var(--brand-green);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-copy strong {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.08;
}

.featured-copy em,
.social-lane em {
  color: rgba(16, 21, 16, 0.62);
  font-style: normal;
  line-height: 1.48;
}

.social-lanes {
  display: grid;
  gap: 0.72rem;
}

.social-lane {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 5.15rem;
  padding: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-lane:hover,
.social-lane:focus-visible {
  transform: translateX(2px);
  background: var(--white);
  border-color: rgba(93, 163, 32, 0.3);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--brand-green);
  background: var(--brand-green-wash);
  border: 1px solid rgba(93, 163, 32, 0.18);
  border-radius: 999px;
}

.social-icon svg {
  width: 1.18rem;
  height: 1.18rem;
}

.social-lane strong,
.social-lane em {
  display: block;
}

.social-lane strong {
  margin-bottom: 0.16rem;
  font-size: 1.02rem;
}

.social-lane em {
  font-size: 0.9rem;
}

[data-content-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

[data-content-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.social-lanes [data-content-reveal]:nth-child(2) {
  transition-delay: 70ms;
}

.social-lanes [data-content-reveal]:nth-child(3) {
  transition-delay: 140ms;
}

.social-lanes [data-content-reveal]:nth-child(4) {
  transition-delay: 210ms;
}

.video-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(6, 11, 14, 0.72);
  backdrop-filter: blur(12px);
}

.video-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.video-modal-panel {
  position: relative;
  width: min(31rem, 100%);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 241, 232, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(11, 20, 25, 0.98), rgba(20, 32, 39, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: promptIn 240ms ease both;
}

.video-modal-panel h2 {
  margin: 0.7rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.98;
}

.video-modal-panel p:not(.wizard-kicker) {
  max-width: 25rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.modal-play {
  width: 3rem;
  height: 3rem;
}

.video-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
}

.anchor-target {
  position: absolute;
  inset: 0 auto auto 0;
  scroll-margin-top: 6rem;
}

.modal-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(6, 11, 14, 0.72);
  backdrop-filter: blur(12px);
}

.quote-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(88vh, 820px);
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--porcelain);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.availability-modal {
  z-index: 92;
}

.availability-backdrop {
  z-index: 91;
}

.question-modal {
  z-index: 96;
}

.question-backdrop {
  z-index: 95;
}

.send-photos-modal {
  z-index: 94;
}

.send-photos-backdrop {
  z-index: 93;
}

.availability-panel {
  width: min(100%, 780px);
}

.question-panel {
  width: min(100%, 740px);
}

.send-photos-panel {
  width: min(100%, 760px);
  max-height: calc(100svh - 1rem);
}

.send-photos-form {
  padding: clamp(0.9rem, 2.7vw, 1.7rem);
}

.send-photos-top h2 {
  font-size: clamp(1.95rem, 4.4vw, 2.6rem);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.quote-form {
  padding: clamp(1rem, 3.3vw, 2rem);
}

.quote-form.is-complete .wizard-top,
.quote-form.is-complete .progress-track {
  display: none;
}

.wizard-top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-right: 3rem;
}

.wizard-kicker {
  margin-bottom: 0.25rem;
  color: rgba(20, 32, 39, 0.58);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wizard-top h2,
.success-state h2 {
  margin-bottom: 0.32rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
}

.wizard-top p,
.success-state p {
  margin-bottom: 0;
  color: rgba(20, 32, 39, 0.68);
  line-height: 1.55;
}

.step-count {
  flex: 0 0 auto;
  align-self: start;
  padding: 0.48rem 0.65rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.progress-track {
  height: 5px;
  margin: 1.1rem 0 1.2rem;
  overflow: hidden;
  background: var(--mist);
  border-radius: 999px;
}

.progress-bar {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--ink);
  border-radius: inherit;
  transition: width 180ms ease;
}

.step-helper {
  max-width: 42rem;
  margin: -0.25rem 0 1rem;
  color: rgba(20, 32, 39, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.wizard-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step.is-active {
  display: block;
}

.wizard-step legend {
  margin-bottom: 0.85rem;
  color: var(--ink-strong);
  font-size: 0.94rem;
  font-weight: 850;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.choice-grid label,
.upload-zone,
.review-box {
  display: block;
  padding: 0.82rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.choice-grid .service-choice {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  min-height: 4.25rem;
  cursor: pointer;
  transition: transform 170ms cubic-bezier(0.2, 0.8, 0.2, 1), background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.availability-service-grid .multi-service-choice {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 3.85rem;
}

.availability-service-grid input[type="checkbox"] {
  position: absolute;
}

.time-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.time-choice {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 3.8rem;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.time-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.time-choice:hover,
.time-choice:focus-within {
  transform: translateY(-1px);
  border-color: rgba(52, 75, 89, 0.3);
}

.time-choice:has(input:checked) {
  color: var(--white);
  background: linear-gradient(135deg, #344b59, #5e7684);
  border-color: rgba(52, 75, 89, 0.45);
  box-shadow: 0 14px 32px rgba(23, 41, 52, 0.18);
}

.choice-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-mark {
  display: inline-grid;
  place-items: center;
  width: 1.18rem;
  height: 1.18rem;
  margin-bottom: 0;
  color: var(--white);
  background: rgba(20, 32, 39, 0.04);
  border: 1px solid rgba(20, 32, 39, 0.14);
  border-radius: 50%;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.choice-mark::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  background: currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.45);
  transition: transform 170ms ease, opacity 170ms ease;
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: rgba(20, 32, 39, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(223, 233, 235, 0.38)),
    var(--porcelain);
  border: 1px solid rgba(167, 177, 180, 0.36);
  border-radius: 10px;
  transition: transform 170ms ease, color 170ms ease, background 170ms ease, border-color 170ms ease;
}

.choice-icon svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-copy {
  display: block;
  min-height: auto;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.3;
}

.service-choice:hover,
.service-choice:focus-within {
  transform: translateY(-1px);
  border-color: rgba(20, 32, 39, 0.24);
}

.service-choice:has(input:checked) {
  color: var(--ink-strong);
  background: var(--accent-strong);
  border-color: rgba(143, 183, 170, 0.8);
  box-shadow: 0 14px 35px rgba(20, 32, 39, 0.08);
}

.service-choice:has(input:checked) .choice-icon {
  color: #315748;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(49, 87, 72, 0.22);
  transform: translateY(-1px);
}

.service-choice:has(input:checked) .choice-mark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.08);
}

.service-choice:has(input:checked) .choice-mark::after {
  opacity: 1;
  transform: scale(1);
}

.multi-service-choice:has(input:checked) {
  color: var(--white);
  background: linear-gradient(135deg, #344b59, #5e7684);
  border-color: rgba(52, 75, 89, 0.5);
  box-shadow: 0 14px 35px rgba(23, 41, 52, 0.14);
}

.multi-service-choice:has(input:checked) .choice-copy {
  color: var(--white);
}

.service-choice.is-popping {
  animation: selectPop 280ms cubic-bezier(0.18, 0.9, 0.24, 1.2);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  color: rgba(20, 32, 39, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.field-wide {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea,
.upload-zone input {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field input,
.field select {
  height: 2.82rem;
  padding: 0 0.78rem;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
  padding: 0.78rem;
}

.window-counter {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 233, 235, 0.42));
  border: 1px solid rgba(143, 183, 170, 0.46);
  border-radius: 10px;
}

.counter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.counter-label {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(20, 32, 39, 0.56);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-head strong {
  color: var(--ink-strong);
  font-size: 0.98rem;
}

.counter-output {
  min-width: 3.2rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.counter-controls {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr) 2.65rem;
  gap: 0.55rem;
}

.counter-button,
.window-number {
  height: 2.65rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.counter-button {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 850;
  transition: transform 140ms ease, background 140ms ease;
}

.counter-button:hover,
.counter-button:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.window-number {
  width: 100%;
  padding: 0 0.8rem;
  text-align: center;
  font-weight: 850;
}

.window-range {
  --range-progress: 14%;
  width: 100%;
  height: 0.55rem;
  appearance: none;
  background: linear-gradient(90deg, var(--ink) 0 var(--range-progress), var(--mist) var(--range-progress) 100%);
  border-radius: 999px;
  accent-color: var(--ink);
}

.window-range::-webkit-slider-thumb {
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  background: var(--white);
  border: 0.35rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(20, 32, 39, 0.18);
  cursor: pointer;
}

.window-range::-moz-range-thumb {
  width: 0.72rem;
  height: 0.72rem;
  background: var(--white);
  border: 0.35rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(20, 32, 39, 0.18);
  cursor: pointer;
}

.window-counter p {
  margin: 0;
  color: rgba(20, 32, 39, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.upload-zone {
  display: grid;
  gap: 0.7rem;
}

.upload-zone span {
  font-weight: 850;
}

.upload-zone small,
.review-box p {
  color: rgba(20, 32, 39, 0.64);
  line-height: 1.55;
}

.question-form.is-complete .question-top,
.question-form.is-complete .question-response-note,
.question-form.is-complete .question-field-grid,
.question-form.is-complete .question-disclaimer {
  display: none;
}

.send-photos-form.is-complete .send-photos-top,
.send-photos-form.is-complete .progress-track {
  display: none;
}

.send-photos-step {
  padding-bottom: 0;
}

.question-response-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.38rem 1rem;
  align-items: center;
  margin: 1.2rem 0;
  padding: 1rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 198, 122, 0.2), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 234, 0.78));
  border: 1px solid rgba(93, 163, 32, 0.2);
  border-radius: 12px;
}

.question-response-note strong {
  color: var(--ink-strong);
  font-size: 0.96rem;
}

.question-response-note span {
  grid-column: 1;
  color: rgba(20, 32, 39, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.question-response-note .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 2.75rem;
  white-space: nowrap;
}

.field span em {
  color: rgba(20, 32, 39, 0.46);
  font-style: normal;
  font-weight: 760;
}

.question-upload {
  position: relative;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 234, 0.56)),
    var(--white);
  border-color: rgba(93, 163, 32, 0.26);
  box-shadow: 0 12px 28px rgba(16, 21, 16, 0.06);
  cursor: pointer;
}

.question-upload span {
  color: var(--ink-strong);
  font-size: 0.98rem;
}

.question-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.question-upload-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-height: 5.1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px dashed rgba(93, 163, 32, 0.42);
  border-radius: 12px;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease, transform 170ms ease;
}

.question-upload-box svg {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.42rem;
  color: var(--brand-green);
  background: rgba(93, 163, 32, 0.1);
  border: 1px solid rgba(93, 163, 32, 0.2);
  border-radius: 12px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.question-upload-box span {
  display: grid;
  gap: 0.16rem;
}

.question-upload-box strong {
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 880;
}

.question-upload-box em {
  color: rgba(20, 32, 39, 0.58);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 720;
  line-height: 1.4;
}

.question-upload:hover .question-upload-box,
.question-upload:focus-within .question-upload-box {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(93, 163, 32, 0.68);
  box-shadow: 0 0 0 5px rgba(93, 163, 32, 0.1);
  transform: translateY(-1px);
}

.question-upload b {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.56rem;
  color: #315748;
  background: rgba(139, 198, 122, 0.18);
  border: 1px solid rgba(93, 163, 32, 0.2);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.send-photos-upload {
  margin-bottom: 0.85rem;
  padding: 0.9rem;
}

.send-photos-detail-grid {
  gap: 0.68rem;
}

.send-photos-detail-grid textarea {
  min-height: 5rem;
}

.compact-service-field select {
  max-width: 22rem;
}

.send-photos-reference {
  display: inline-grid;
  gap: 0.16rem;
  margin: 0.85rem 0 0.35rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.send-photos-reference span {
  color: rgba(20, 32, 39, 0.5);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.send-photos-reference strong {
  color: var(--ink-strong);
  font-size: 0.86rem;
  line-height: 1;
}

.send-photos-summary {
  margin-top: 0.8rem;
}

.question-disclaimer {
  margin: 0.8rem 0 0;
  color: rgba(20, 32, 39, 0.58);
  font-size: 0.88rem;
  line-height: 1.5;
}

.question-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  margin: 1rem calc(clamp(1rem, 3.3vw, 2rem) * -1) calc(clamp(1rem, 3.3vw, 2rem) * -1);
  padding: 0.95rem clamp(1rem, 3.3vw, 2rem);
  background: linear-gradient(180deg, rgba(247, 250, 249, 0.74), var(--porcelain) 42%);
  border-top: 1px solid rgba(20, 32, 39, 0.08);
}

.question-success {
  padding-top: 0.35rem;
}

.question-success .success-actions {
  margin-top: 0.4rem;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.availability-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  margin: 1.25rem calc(clamp(1rem, 3.3vw, 2rem) * -1) calc(clamp(1rem, 3.3vw, 2rem) * -1);
  padding: 0.95rem clamp(1rem, 3.3vw, 2rem);
  background: linear-gradient(180deg, rgba(247, 250, 249, 0.74), var(--porcelain) 42%);
  border-top: 1px solid rgba(20, 32, 39, 0.08);
}

.send-photos-actions {
  margin-top: 1.35rem;
}

.wizard-actions .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.wizard-actions .button-primary,
.success-state .button-primary {
  color: var(--white);
  background: var(--ink);
}

.success-state {
  padding: 1rem 0 0;
}

.success-state .button {
  margin-top: 1rem;
}

.availability-reference {
  display: inline-grid;
  gap: 0.15rem;
  margin: 1rem 0;
  padding: 0.82rem 1rem;
  color: var(--ink-strong);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 233, 235, 0.5));
  border: 1px solid var(--line);
  border-radius: 12px;
}

.availability-reference span {
  color: rgba(20, 32, 39, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-reference strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1;
}

.availability-review,
.availability-success-summary {
  display: grid;
  gap: 0.55rem;
}

.compact-review {
  margin-top: 1rem;
}

.availability-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.summary-item {
  display: grid;
  gap: 0.18rem;
  padding: 0.72rem;
  background: rgba(223, 233, 235, 0.42);
  border: 1px solid rgba(20, 32, 39, 0.06);
  border-radius: 10px;
}

.summary-item span {
  color: rgba(20, 32, 39, 0.54);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-item strong {
  color: var(--ink-strong);
  font-size: 0.92rem;
  line-height: 1.35;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.success-actions .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.form-error {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  color: #632b2b;
  background: #fff2f0;
  border: 1px solid rgba(160, 52, 45, 0.22);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.login-page {
  min-height: 100svh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 183, 170, 0.18), transparent 30rem),
    linear-gradient(135deg, var(--porcelain), #edf4f2);
}

.login-shell {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.56fr);
}

.login-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: clamp(1.2rem, 5vw, 4rem);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.96), rgba(5, 10, 13, 0.68)),
    url("./hero-clean-co-van.png") center / cover no-repeat,
    var(--ink-strong);
}

.login-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  font-weight: 850;
}

.login-brand-copy {
  max-width: 680px;
}

.login-brand-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 8vw, 6rem);
}

.login-brand-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.login-card-wrap {
  display: grid;
  align-items: center;
  padding: clamp(1rem, 5vw, 3.5rem);
}

.login-card {
  width: min(100%, 460px);
  margin: auto;
  padding: clamp(1.1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(20, 32, 39, 0.12);
  backdrop-filter: blur(18px);
}

.login-card h2 {
  margin-bottom: 0.4rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.login-card > p {
  color: rgba(20, 32, 39, 0.66);
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.login-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.login-card .button-primary {
  color: var(--white);
  background: var(--ink);
}

.login-card .button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.login-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
  margin-top: 0.7rem;
  color: rgba(20, 32, 39, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.login-note {
  margin-top: 1.2rem;
  color: rgba(20, 32, 39, 0.56);
  font-size: 0.85rem;
  line-height: 1.55;
}

.portal-state {
  display: grid;
  gap: 1rem;
}

.portal-state h2 {
  margin-bottom: 0;
}

.portal-panel {
  padding: 1rem;
  background: rgba(223, 233, 235, 0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.portal-panel p {
  margin: 0;
  color: rgba(20, 32, 39, 0.68);
  line-height: 1.6;
}

.auth-status {
  min-height: 1.35rem;
  margin: 0.85rem 0 0;
  color: rgba(20, 32, 39, 0.68);
  font-size: 0.9rem;
  font-weight: 750;
}

.auth-status.is-error {
  color: #8a332d;
}

.auth-status.is-success {
  color: #275a48;
}

*:focus-visible {
  outline: 3px solid rgba(143, 183, 170, 0.86);
  outline-offset: 3px;
}

@keyframes easeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes selectPop {
  0% {
    transform: scale(1);
  }
  54% {
    transform: scale(1.018) translateY(-2px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes promptIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.55rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .nav-quote {
    width: 100%;
    padding: 0.9rem;
    color: var(--ink);
    text-align: left;
    background: transparent;
    border-radius: var(--radius);
  }

  .site-nav .nav-quote {
    background: var(--brand-green);
    color: var(--white);
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88svh;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 245, 0.94)),
      url("./hero-clean-co-van.png") 64% center / cover no-repeat,
      var(--porcelain);
  }

  .results-head {
    grid-template-columns: 1fr;
  }

  .trust-shell {
    grid-template-columns: 1fr;
  }

  .trust-copy {
    position: static;
  }

  .content-shell,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-copy > p:not(.content-kicker) {
    max-width: 640px;
  }

}

@media (max-width: 620px) {
  .site-header {
    padding: 0.72rem 0.85rem;
  }

  .brand {
    min-height: 2.5rem;
  }

  .brand-wordmark {
    width: clamp(7.4rem, 34vw, 8.8rem);
    max-height: 2.25rem;
  }

  .hero {
    gap: 1.5rem;
    min-height: 88svh;
    padding: 6.8rem 1rem 4.2rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 245, 0.95)),
      url("./hero-clean-co-van.png") 62% center / cover no-repeat,
      var(--porcelain);
  }

  .hero-copy {
    top: auto;
    padding-bottom: 0.8rem;
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 0.95rem;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-overline {
    margin-bottom: 1rem;
    font-size: 0.72rem;
  }

  .hero-lead {
    margin-bottom: 0.7rem;
    max-width: 24rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-services {
    justify-content: center;
    gap: 0.34rem;
    margin-top: 0.95rem;
    font-size: 0.94rem;
  }

  .hero-services span {
    width: 0.32rem;
    height: 0.32rem;
  }

  .hero-actions,
  .wizard-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .results-cta-actions .button,
  .trust-actions .button,
  .seo-actions .button,
  .guide-actions .button,
  .services-actions .button {
    width: fit-content;
    min-width: min(13.5rem, 86vw);
    max-width: calc(100vw - 2rem);
  }

  .wizard-actions .button,
  .success-state .button,
  .availability-actions .button,
  .question-actions .button {
    width: 100%;
  }

  .results-section {
    padding: 3.7rem 0 3rem;
  }

  .results-head {
    padding: 0 1rem;
  }

  .results-head h2 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .results-head p {
    font-size: 0.98rem;
  }

  .results-carousel {
    --result-card-width: calc(100vw - 3rem);
    --result-edge-space: 1.5rem;
    grid-auto-columns: var(--result-card-width);
    gap: 0;
    scroll-padding-inline: var(--result-edge-space);
    padding: 0 var(--result-edge-space) 0.85rem;
  }

  .results-swipe-cue {
    display: flex;
  }

  .review-strip-section {
    padding: 2.35rem 0 2.55rem;
  }

  .review-strip-head {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
  }

  .review-strip-head h2 {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
  }

  .review-strip {
    --review-card-width: calc(100vw - 3rem);
    --review-edge-space: 1.5rem;
    gap: 0.75rem;
    padding-bottom: 0.8rem;
  }

  .google-review-card {
    min-height: 10.4rem;
  }

  .compare-widget {
    height: auto;
    aspect-ratio: 1.33;
    min-height: 250px;
    border-radius: 14px;
  }

  .result-meta {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .result-meta p {
    max-width: none;
    text-align: left;
  }

  .trust-section {
    padding: 3rem 1rem 3.2rem;
  }

  .trust-shell {
    gap: 1.25rem;
  }

  .trust-copy h2 {
    font-size: clamp(2.22rem, 11.5vw, 3.15rem);
  }

  .trust-copy > p:not(.trust-kicker) {
    font-size: 0.98rem;
  }

  .trust-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    margin-top: 1.75rem;
    margin-bottom: 1.35rem;
  }

  .trust-action {
    width: fit-content;
    min-width: min(13.5rem, 86vw);
    max-width: calc(100vw - 2rem);
    min-height: 3.15rem;
  }

  .trust-action-secondary {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
  }

  .trust-item {
    grid-template-columns: 3.25rem 1px minmax(0, 1fr);
    gap: 0.85rem;
    min-height: auto;
    padding: 1rem 0.85rem;
  }

  .trust-item.is-visible.is-highlighted {
    transform: translateY(0) scale(1.006);
  }

  .trust-icon {
    width: 3rem;
    height: 3rem;
  }

  .trust-icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .trust-item h3 {
    font-size: 1.28rem;
  }

  .trust-item p {
    font-size: 0.9rem;
  }

  .seo-section {
    padding: 3rem 1rem;
  }

  .seo-section-head,
  .guide-hero-inner {
    margin-bottom: 1.35rem;
  }

  .seo-section h2,
  .guide-hero h1 {
    font-size: clamp(2.25rem, 11.2vw, 3.35rem);
  }

  .seo-split,
  .seo-card-grid,
  .faq-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .seo-card,
  .area-panel,
  .guide-card {
    min-height: auto;
    padding: 1.05rem;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .seo-actions,
  .guide-actions {
    flex-direction: column;
    align-items: center;
  }

  .seo-actions .button,
  .guide-actions .button {
    width: fit-content;
  }

  .faq-grid details {
    padding: 1rem;
  }

  .faq-show-more {
    display: inline-flex;
    justify-content: center;
    margin-top: 1.15rem;
    margin-bottom: 4.75rem;
  }

  .faq-section:not(.is-expanded) [data-faq-extra] {
    display: none;
  }

  .faq-section.is-expanded [data-faq-extra] {
    display: block;
  }

  .guide-main {
    padding-top: 0;
  }

  .guide-hero {
    padding: 7rem 1rem 2.35rem;
  }

  .guide-grid {
    padding: 0 1rem 3rem;
  }

  .guide-card-wide {
    grid-column: auto;
  }

  .guide-link-list a {
    padding: 0.7rem 0;
  }

  .guide-cta {
    margin: 0 1rem 3rem;
    padding: 1.25rem;
  }

  .services-main {
    padding-top: 4.35rem;
  }

  .services-hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-height: auto;
    padding: 6.2rem 1rem 2.4rem;
  }

  .services-hero-copy {
    display: contents;
  }

  .services-hero-copy .seo-kicker,
  .services-hero-copy h1,
  .services-hero-copy > p,
  .services-actions,
  .services-reassurance {
    display: block;
  }

  .services-hero-copy .seo-kicker {
    order: 1;
  }

  .services-hero h1 {
    order: 2;
    max-width: 8.8ch;
    font-size: clamp(2.85rem, 12.6vw, 4rem);
  }

  .service-visual {
    order: 6;
  }

  .services-hero-copy > p:not(.seo-kicker) {
    order: 3;
    font-size: 0.98rem;
  }

  .services-actions {
    order: 4;
    flex-direction: column;
    margin-top: 0.2rem;
  }

  .services-hero-copy > .services-reassurance {
    order: 5;
  }

  .service-visual-frame {
    min-height: 18.5rem;
    border-radius: 16px;
  }

  .service-visual-glass {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    padding: 0.85rem;
  }

  .service-visual-glass span {
    margin-bottom: 0.4rem;
    font-size: 0.66rem;
  }

  .service-visual-glass strong {
    font-size: clamp(1.55rem, 8.4vw, 2.15rem);
  }

  .service-visual-glass p {
    font-size: 0.9rem;
  }

  .service-visual-tabs {
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .service-visual-tabs button {
    min-width: 7rem;
  }

  .service-switcher,
  .service-gallery-section,
  .quote-steps,
  .service-area-module,
  .service-seo-strip {
    padding: 3rem 1rem;
  }

  .service-section-head h2,
  .service-area-module h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .service-console,
  .service-area-module {
    grid-template-columns: 1fr;
  }

  .service-rail {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
  }

  .service-rail button,
  .service-rail a {
    min-width: 15.25rem;
    scroll-snap-align: start;
    transform: none;
  }

  .service-rail button.is-active,
  .service-rail button:hover,
  .service-rail button:focus-visible,
  .service-rail a.is-active,
  .service-rail a:hover,
  .service-rail a:focus-visible {
    transform: none;
  }

  .service-detail {
    min-height: 22rem;
    border-radius: 16px;
  }

  .service-detail h3 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .service-gallery,
  .quote-step-grid,
  .service-seo-strip {
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile-large {
    min-height: 18rem;
    grid-row: auto;
  }

  .map-rings {
    min-height: 14rem;
  }

  .area-lanes {
    grid-template-columns: 1fr;
  }

  .services-final-cta {
    margin: 0 1rem 3rem;
  }

  .content-section {
    padding: 3.05rem 1rem 3.25rem;
  }

  .content-shell {
    gap: 1.2rem;
  }

  .content-copy h2 {
    font-size: clamp(2.25rem, 11.8vw, 3.25rem);
  }

  .content-copy > p:not(.content-kicker) {
    font-size: 0.98rem;
  }

  .content-note {
    align-items: flex-start;
    width: 100%;
    border-radius: 10px;
    line-height: 1.45;
  }

  .content-grid {
    gap: 0.72rem;
  }

  .featured-media {
    min-height: 13rem;
  }

  .featured-copy {
    padding: 0.95rem;
  }

  .social-lane {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    min-height: 0;
    padding: 0.86rem;
  }

  .social-lane b {
    grid-column: 2;
    font-size: 0.7rem;
  }

  .social-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .social-lane em {
    font-size: 0.86rem;
  }

  .video-modal {
    align-items: end;
    padding: 0.75rem;
  }

  .video-modal-panel {
    border-radius: 12px;
  }

  .results-cta-pop {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
    padding: 1rem;
  }

  .results-cta-actions {
    flex-direction: column;
  }

  .faq-question-dock {
    position: fixed;
    top: auto;
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    left: 0.85rem;
    width: auto;
    max-width: none;
    margin: 0;
    transform: translateY(1.45rem) scale(0.98);
  }

  .faq-question-dock.is-visible {
    transform: translateY(0) scale(1);
  }

  .faq-question-pill {
    min-height: 3rem;
    padding: 0.62rem 1rem 0.62rem 0.72rem;
    font-size: 0.95rem;
  }

  .faq-question-pill span {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 1.02rem;
  }

  .faq-section {
    padding-bottom: calc(6.4rem + env(safe-area-inset-bottom, 0px));
  }

  .modal-panel {
    max-height: calc(100svh - 1.5rem);
    border-radius: 10px;
  }

  .question-panel {
    max-height: calc(100svh - 1rem);
  }

  .availability-panel {
    width: 100%;
  }

  .send-photos-panel {
    width: 100%;
    max-height: calc(100svh - 1rem);
  }

  .send-photos-form {
    padding: 0.85rem;
  }

  .send-photos-top h2 {
    font-size: clamp(1.62rem, 7.7vw, 1.96rem);
  }

  .send-photos-upload {
    padding: 0.72rem;
    margin-bottom: 0.65rem;
  }

  .send-photos-detail-grid textarea {
    min-height: 4.2rem;
  }

  .quote-form {
    padding: 1rem;
  }

  .quote-modal {
    align-items: center;
    padding: 0.75rem;
  }

  .wizard-top {
    display: block;
    padding-right: 2.6rem;
  }

  .step-count {
    display: inline-flex;
    margin-top: 0.65rem;
  }

  .wizard-top h2,
  .success-state h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.45rem);
  }

  .wizard-top p,
  .success-state p {
    font-size: 0.9rem;
  }

  .question-response-note {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.9rem;
  }

  .question-response-note span,
  .question-response-note .button {
    grid-column: auto;
    grid-row: auto;
  }

  .question-response-note .button {
    width: 100%;
  }

  .progress-track {
    margin: 0.8rem 0 0.9rem;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field textarea {
    min-height: 6.4rem;
  }

  .upload-zone,
  .review-box {
    padding: 0.78rem;
  }

  .compact-review {
    margin-top: 0.85rem;
  }

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

  .time-choice {
    min-height: 3.35rem;
  }

  .choice-grid {
    gap: 0.48rem;
  }

  .service-choice {
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 0.64rem;
    min-height: 3.85rem;
    padding: 0.72rem;
  }

  .choice-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9px;
  }

  .choice-icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .choice-copy {
    font-size: 0.9rem;
  }

  .wizard-actions {
    position: sticky;
    bottom: -1rem;
    margin: 1rem -1rem -1rem;
    padding: 0.85rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(247, 250, 249, 0.76), var(--porcelain) 38%);
    border-top: 1px solid var(--line);
  }

  .wizard-actions .button {
    min-height: 2.85rem;
  }

  .question-actions {
    bottom: -1rem;
    margin-top: 1.1rem;
  }

  .send-photos-actions {
    bottom: auto;
    margin: 1rem 0 0;
    padding: 0;
  }

  .send-photos-actions .button {
    min-height: 2.65rem;
    padding-block: 0.72rem;
  }

  .question-upload {
    padding: 0.9rem;
  }

  .question-upload-box {
    min-height: 5.7rem;
    padding: 0.9rem;
  }

  .send-photos-upload .question-upload-box {
    min-height: 4.7rem;
    padding: 0.72rem;
  }

  .question-upload-box svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .question-upload b {
    margin-bottom: 0.15rem;
  }

  .availability-actions {
    bottom: -1rem;
    margin: 1rem -1rem -1rem;
    padding: 0.85rem 1rem 1rem;
  }

  .availability-summary-grid {
    grid-template-columns: 1fr;
  }

  .success-actions {
    flex-direction: column;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-brand-panel {
    min-height: 36svh;
    gap: 2rem;
    padding: 1rem;
  }

  .login-brand-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .login-brand-copy p {
    font-size: 0.95rem;
  }

  .login-card-wrap {
    align-items: start;
    padding: 1rem;
  }

  .login-card {
    border-radius: 12px;
  }
}

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

  [data-trust-reveal],
  .trust-copy > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .trust-item.is-highlighted,
  .trust-item.is-visible.is-highlighted {
    transform: none !important;
  }
}

/* Services page brand refresh */
.services-page {
  background: linear-gradient(180deg, var(--white) 0%, var(--porcelain) 46%, var(--white) 100%);
}

.services-main {
  padding-top: 4.9rem;
  overflow-x: clip;
}

.services-hero,
.service-switcher,
.quote-steps,
.service-gallery-section,
.service-directory,
.service-area-module,
.local-coverage-strip,
.service-footer-index {
  position: relative;
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 6.8rem) clamp(1.15rem, 6vw, 5rem);
}

.services-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
  min-height: auto;
  max-width: none;
  padding-top: clamp(6.8rem, 12vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 245, 0.94)),
    var(--porcelain);
}

.services-hero-copy,
.service-section-head,
.service-area-module > div:first-child,
.local-coverage-strip,
.service-footer-index {
  text-align: center;
}

.services-hero-copy {
  justify-self: center;
  max-width: 780px;
}

.services-hero h1,
.service-section-head h2,
.service-area-module h2,
.local-coverage-strip h2,
.service-footer-index h2 {
  max-width: 11ch;
  margin-inline: auto;
  color: var(--ink-strong);
  letter-spacing: 0;
}

.services-hero-copy > p:not(.seo-kicker),
.service-section-head > p,
.service-area-module > div > p,
.local-coverage-strip > p:not(.seo-kicker) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(16, 21, 16, 0.68);
}

.services-hero .seo-kicker,
.service-section-head .seo-kicker,
.service-area-module .seo-kicker,
.local-coverage-strip .seo-kicker,
.service-footer-index .seo-kicker {
  color: var(--brand-green);
}

.service-hero-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.48rem;
  margin: 1.1rem auto 0;
  color: var(--ink-strong) !important;
  font-size: clamp(0.9rem, 1.35vw, 1rem) !important;
  font-weight: 850;
  line-height: 1.4 !important;
}

.service-hero-line span {
  width: 0.34rem;
  height: 0.34rem;
  align-self: center;
  background: var(--brand-green);
  border-radius: 999px;
}

.services-actions {
  justify-content: center;
  margin-top: 1.55rem;
}

.services-actions .button {
  min-width: 10.5rem;
  max-width: 14rem;
}

.services-hero .button-primary,
.service-gallery-section .button-primary {
  background: var(--brand-green);
  border-color: rgba(93, 163, 32, 0.28);
  box-shadow: 0 12px 26px rgba(93, 163, 32, 0.18);
}

.services-hero .button-primary:hover,
.services-hero .button-primary:focus-visible {
  background: var(--brand-navy);
}

.services-hero .button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.services-reassurance {
  color: rgba(16, 21, 16, 0.62);
}

.service-visual {
  justify-self: center;
  width: min(100%, 840px);
}

.service-visual-frame {
  min-height: clamp(21rem, 34vw, 29rem);
  background: var(--brand-navy);
  border: 1px solid rgba(16, 21, 16, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 58px rgba(16, 21, 16, 0.12);
}

.service-visual-frame::before {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.service-visual-glass,
.service-detail,
.service-gallery-feature {
  background:
    radial-gradient(circle at 86% 12%, rgba(93, 163, 32, 0.18), transparent 20rem),
    var(--brand-navy);
  border-radius: 10px;
}

.service-visual-tabs {
  justify-content: center;
  max-width: 840px;
  margin-inline: auto;
}

.service-visual-tabs button,
.service-footer-pills a {
  border-radius: var(--radius);
}

.service-visual-tabs button {
  flex: 0 1 9.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.service-visual-tabs button.is-active {
  background: var(--brand-green);
  color: var(--white);
}

.service-console {
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.84fr);
  gap: clamp(1.4rem, 4vw, 3rem);
}

.service-rail {
  gap: 0.76rem;
}

.service-rail button,
.service-rail a,
.quote-step-grid article,
.service-category-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 21, 16, 0.05);
}

.service-rail button span,
.service-rail a span,
.quote-step-grid span,
.service-category-card > summary span {
  color: rgba(51, 94, 43, 0.84);
}

.service-rail button.is-active,
.service-rail button:hover,
.service-rail button:focus-visible,
.service-rail a.is-active,
.service-rail a:hover,
.service-rail a:focus-visible {
  border-color: rgba(93, 163, 32, 0.36);
  box-shadow: 0 16px 34px rgba(16, 21, 16, 0.08);
}

.service-detail {
  min-height: 24rem;
  box-shadow: 0 22px 54px rgba(16, 21, 16, 0.14);
}

.service-detail .text-cta,
.service-gallery-feature .gallery-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.8rem;
  padding: 0.78rem 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.service-preview-card {
  position: relative;
  min-height: clamp(22rem, 36vw, 31rem);
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  background: var(--brand-navy);
}

.service-preview-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.02);
  transition: opacity 220ms ease, transform 420ms ease;
}

.service-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 5, 0.04), rgba(5, 8, 5, 0.28) 46%, rgba(5, 8, 5, 0.78)),
    radial-gradient(circle at 88% 16%, rgba(93, 163, 32, 0.28), transparent 20rem);
  pointer-events: none;
}

.service-preview-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.service-preview-overlay h3 {
  max-width: 10ch;
}

.service-preview-overlay p {
  max-width: 42rem;
}

.service-rail button.is-active,
.service-rail a.is-active {
  border-color: rgba(93, 163, 32, 0.54);
  box-shadow:
    0 18px 38px rgba(16, 21, 16, 0.08),
    0 0 0 5px rgba(93, 163, 32, 0.08);
}

.service-page-main {
  overflow-x: clip;
  padding-top: 4.9rem;
  color: var(--ink);
  background: var(--porcelain);
}

.service-page-hero,
.service-page-proof,
.service-page-gallery,
.service-page-cta {
  max-width: 1220px;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 6.8rem) clamp(1.15rem, 6vw, 5rem);
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 5rem);
}

.service-page-hero h1 {
  max-width: 11ch;
  margin: 0 0 1rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: 0.9;
}

.service-page-hero p {
  max-width: 40rem;
  color: rgba(16, 21, 16, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.service-page-actions,
.service-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.service-page-visual {
  min-height: clamp(20rem, 36vw, 33rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-navy);
  box-shadow: 0 24px 58px rgba(16, 21, 16, 0.12);
}

.service-page-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-page-placeholder {
  display: grid;
  min-height: inherit;
  place-items: end start;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(93, 163, 32, 0.22), transparent 20rem),
    linear-gradient(135deg, #101510 0%, #13231a 58%, #25441f 100%);
}

.service-page-placeholder strong {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.95;
}

.service-page-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  padding-top: 0;
}

.service-page-copy,
.service-page-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(16, 21, 16, 0.06);
}

.service-page-copy {
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.service-page-copy h2,
.service-page-card h2,
.service-page-cta h2 {
  margin: 0 0 0.8rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.service-page-copy p,
.service-page-card p,
.service-page-copy li {
  color: rgba(16, 21, 16, 0.68);
  line-height: 1.62;
}

.service-page-copy ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.service-page-card {
  align-self: start;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

.service-page-cta {
  padding-top: 0;
}

.service-page-gallery {
  padding-top: 0;
}

.service-page-gallery-head {
  max-width: 48rem;
  margin-bottom: clamp(1.35rem, 3vw, 2.15rem);
}

.service-page-gallery-head h2 {
  max-width: 11ch;
  margin: 0 0 0.7rem;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  font-weight: 600;
  line-height: 0.92;
}

.service-page-gallery-head p:last-child {
  max-width: 38rem;
  margin: 0;
  color: rgba(16, 21, 16, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.6;
}

.service-gallery-widget {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(8.5rem, 12vw, 11rem);
  gap: clamp(0.7rem, 1.6vw, 1rem);
}

.service-gallery-tile {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(16, 21, 16, 0.06);
  cursor: zoom-in;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 460ms ease, filter 460ms ease;
}

.service-gallery-tile span {
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.72rem;
  width: fit-content;
  max-width: calc(100% - 1.44rem);
  padding: 0.42rem 0.58rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(16, 21, 16, 0.12);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
}

.service-gallery-tile:hover,
.service-gallery-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(93, 163, 32, 0.56);
  box-shadow:
    0 18px 42px rgba(16, 21, 16, 0.1),
    0 0 0 5px rgba(93, 163, 32, 0.09);
  outline: 0;
}

.service-gallery-tile:hover img,
.service-gallery-tile:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.03);
}

.tile-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
}

.tile-tall {
  grid-row: span 2;
}

.service-gallery-lightbox[hidden] {
  display: none;
}

.service-gallery-lightbox {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.85rem, 3vw, 1.6rem);
}

.service-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 5, 0.72);
  backdrop-filter: blur(10px);
}

.service-gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  width: min(920px, 94vw);
  max-height: 90svh;
  margin: 0;
  padding: clamp(0.7rem, 2vw, 1rem);
  overflow: auto;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.service-gallery-lightbox__dialog img {
  width: 100%;
  max-height: min(70svh, 680px);
  object-fit: contain;
  background: var(--porcelain);
  border-radius: 8px;
}

.service-gallery-lightbox__dialog figcaption {
  padding: 0 0.35rem 0.1rem;
  color: rgba(16, 21, 16, 0.72);
  font-size: 0.95rem;
  font-weight: 750;
}

.service-gallery-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 21, 16, 0.12);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.service-gallery-lightbox__close:hover,
.service-gallery-lightbox__close:focus-visible {
  border-color: rgba(93, 163, 32, 0.55);
  box-shadow:
    0 12px 28px rgba(16, 21, 16, 0.16),
    0 0 0 5px rgba(93, 163, 32, 0.12);
  outline: 0;
}

body.is-gallery-lightbox-open {
  overflow: hidden;
}

.service-page-cta-inner {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(93, 163, 32, 0.22), transparent 20rem),
    var(--brand-navy);
  border-radius: 12px;
}

.service-page-cta h2,
.service-page-cta p {
  color: var(--white);
}

.service-page-cta p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.72);
}

.service-page-cta .button-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.88);
}

.quote-steps {
  padding-top: clamp(2.8rem, 5vw, 4.6rem);
}

.quote-step-grid {
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.quote-step-grid article {
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
}

.service-gallery-feature {
  grid-template-columns: minmax(420px, 1.05fr) minmax(280px, 0.62fr);
  min-height: auto;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(16, 21, 16, 0.14);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-gallery-feature.is-changing {
  opacity: 0.72;
  transform: translateY(2px);
}

.service-before-after {
  position: relative;
  min-height: clamp(21rem, 38vw, 34rem);
  overflow: hidden;
  background: var(--brand-navy);
  isolation: isolate;
}

.service-compare-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: background-image 180ms ease, opacity 180ms ease, clip-path 120ms linear;
}

.service-compare-before {
  background-image: var(
    --service-before-bg,
    linear-gradient(180deg, rgba(5, 8, 5, 0.04), rgba(5, 8, 5, 0.32)),
    url("./pressure-washing-edinburgh-before.png")
  );
}

.service-compare-after {
  clip-path: inset(0 0 0 var(--service-compare-position, 50%));
  background-image: var(
    --service-after-bg,
    linear-gradient(180deg, rgba(5, 8, 5, 0.02), rgba(5, 8, 5, 0.12)),
    url("./pressure-washing-edinburgh-after.png")
  );
}

.service-compare-bar {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--service-compare-position, 50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(16, 21, 16, 0.18), 0 0 22px rgba(255, 255, 255, 0.32);
}

.service-compare-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(16, 21, 16, 0.18);
  transform: translate(-50%, -50%);
}

.service-before-after input {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.service-compare-label {
  position: absolute;
  z-index: 3;
  top: 1rem;
  padding: 0.42rem 0.62rem;
  color: var(--white);
  background: rgba(16, 21, 16, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-compare-label-before {
  left: 1rem;
}

.service-compare-label-after {
  right: 1rem;
}

.service-gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 3rem);
}

.service-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
  max-width: 980px;
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
}

.service-gallery-tabs button {
  min-height: 3rem;
  min-width: clamp(8.6rem, 13vw, 12rem);
  padding: 0.78rem 1rem;
  color: rgba(16, 21, 16, 0.78);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 21, 16, 0.05);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.service-gallery-tabs button:hover,
.service-gallery-tabs button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(93, 163, 32, 0.52);
  box-shadow:
    0 14px 30px rgba(16, 21, 16, 0.08),
    0 0 0 6px rgba(93, 163, 32, 0.09);
}

.service-gallery-tabs button.is-active {
  color: var(--white);
  background: var(--brand-green);
  border-color: rgba(93, 163, 32, 0.62);
  box-shadow: 0 14px 30px rgba(93, 163, 32, 0.18);
}

.service-directory-grid {
  gap: clamp(0.95rem, 2vw, 1.25rem);
}

.service-category-card {
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-category-card:hover,
.service-category-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(93, 163, 32, 0.5);
  box-shadow:
    0 18px 38px rgba(16, 21, 16, 0.08),
    0 0 0 5px rgba(93, 163, 32, 0.08);
}

.service-category-card > summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.2rem 0.85rem;
  align-items: start;
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(3.3rem, 4vw, 3.75rem) clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.2vw, 1.35rem);
  cursor: pointer;
  list-style: none;
}

.service-category-card > summary:focus {
  outline: 0;
}

.service-category-card > summary:focus-visible {
  outline: 3px solid rgba(93, 163, 32, 0.2);
  outline-offset: -6px;
}

.service-category-card > summary::after {
  content: "+";
  position: absolute;
  top: clamp(0.9rem, 1.8vw, 1.2rem);
  right: clamp(0.85rem, 1.8vw, 1.15rem);
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand-green);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(93, 163, 32, 0.32);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-category-card[open] > summary::after {
  content: "-";
}

.service-category-card:hover > summary::after,
.service-category-card:focus-within > summary::after {
  color: var(--white);
  background: var(--brand-green);
  border-color: rgba(93, 163, 32, 0.58);
  transform: scale(1.04);
}

.service-category-card > summary::-webkit-details-marker {
  display: none;
}

.service-category-card > summary span {
  grid-row: span 2;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-category-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.service-category-card summary p {
  grid-column: 2;
  margin: 0.25rem 0 0;
  color: rgba(16, 21, 16, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card-body {
  padding: 0 clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.2vw, 1.35rem);
}

.service-card-body p,
.service-card-body li,
.service-footer-list {
  color: rgba(16, 21, 16, 0.68);
}

.service-card-body ul {
  columns: 2;
  gap: 2rem;
  margin: 0.85rem 0 1.05rem;
  padding-left: 1.1rem;
}

.service-card-body a {
  color: var(--ink-strong);
  font-weight: 850;
}

.service-area-module {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.84fr);
  gap: clamp(1.6rem, 5vw, 4.5rem);
  align-items: center;
}

.area-map-panel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--brand-navy);
  box-shadow: 0 22px 54px rgba(16, 21, 16, 0.14);
}

.area-map-panel iframe {
  display: block;
  width: 100%;
  min-height: clamp(18rem, 30vw, 25rem);
  border: 0;
  filter: saturate(0.72) contrast(0.98);
}

.area-map-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 0.95rem;
  background: rgba(16, 21, 16, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.area-map-notes span {
  padding: 0.42rem 0.58rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.area-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(16, 21, 16, 0.94);
}

.area-lanes article {
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.area-lanes article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.area-lanes span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--brand-green);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-lanes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.local-coverage-strip {
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
}

.local-coverage-strip h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.area-chip-scroller {
  position: relative;
  max-width: 980px;
  margin: 1.15rem auto 0;
  overflow: hidden;
}

.area-chip-scroller::before,
.area-chip-scroller::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 2.4rem;
  pointer-events: none;
}

.area-chip-scroller::before {
  left: 0;
  background: linear-gradient(90deg, var(--porcelain), rgba(247, 250, 245, 0));
}

.area-chip-scroller::after {
  right: 0;
  background: linear-gradient(270deg, var(--porcelain), rgba(247, 250, 245, 0));
}

.area-chip-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: max-content;
  justify-content: flex-start;
  gap: 0.55rem;
  max-width: none;
  max-height: 6.1rem;
  margin: 0;
  padding: 0.15rem 2.45rem 0.4rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2.45rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.area-chip-list::-webkit-scrollbar {
  display: none;
}

.service-footer-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 980px;
  margin: 1.15rem auto 0;
}

.area-chip-list span,
.service-footer-pills a {
  padding: 0.58rem 0.76rem;
  color: rgba(16, 21, 16, 0.76);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 820;
}

.area-chip-list span {
  min-height: 2.4rem;
  scroll-snap-align: start;
  white-space: nowrap;
}

.postcode-checker {
  display: grid;
  gap: 0.65rem;
  width: min(100%, 560px);
  margin: clamp(1.15rem, 3vw, 1.55rem) auto 0;
  padding: 0.9rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(16, 21, 16, 0.05);
}

.postcode-checker label {
  color: var(--ink-strong);
  font-size: 0.9rem;
  font-weight: 880;
}

.postcode-checker-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.postcode-checker input {
  min-width: 0;
  min-height: 2.9rem;
  padding: 0.74rem 0.85rem;
  color: var(--ink-strong);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 720;
}

.postcode-checker input:focus {
  outline: 3px solid rgba(93, 163, 32, 0.18);
  border-color: rgba(93, 163, 32, 0.52);
}

.postcode-checker button {
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  color: var(--white);
  background: var(--brand-green);
  border: 1px solid rgba(93, 163, 32, 0.36);
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 880;
}

.postcode-checker button:hover,
.postcode-checker button:focus-visible {
  background: var(--brand-navy);
}

.postcode-result {
  min-height: 1.35rem;
  margin: 0;
  color: rgba(16, 21, 16, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.postcode-result.is-positive {
  color: rgba(51, 94, 43, 0.95);
}

.postcode-result.is-wide {
  color: rgba(16, 21, 16, 0.72);
}

.service-footer-index {
  border-top: 1px solid var(--line);
}

.service-footer-list {
  margin-inline: auto;
  text-align: center;
}

[data-scroll-reveal] {
  opacity: 1;
  transform: none;
}

[data-scroll-reveal].is-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 640ms cubic-bezier(0.19, 1, 0.22, 1);
}

[data-scroll-reveal].is-pending.is-visible,
[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6.4rem;
  }

  .services-hero-copy {
    max-width: 720px;
  }

  .services-hero h1 {
    max-width: 11ch;
  }

  .service-visual {
    width: min(100%, 640px);
  }

  .service-console,
  .service-area-module,
  .service-gallery-feature,
  .service-page-hero,
  .service-page-proof {
    grid-template-columns: 1fr;
  }

  .service-gallery-widget {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-gallery-copy {
    justify-content: flex-start;
  }

  .service-page-hero {
    min-height: auto;
    padding-top: 6.4rem;
  }

  .service-page-visual {
    order: -1;
  }

  .service-page-gallery-head {
    text-align: center;
    margin-inline: auto;
  }

  .service-page-gallery-head h2 {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .services-main {
    padding-top: 4.35rem;
  }

  .services-hero,
  .service-switcher,
  .quote-steps,
  .service-gallery-section,
  .service-directory,
  .service-area-module,
  .local-coverage-strip,
  .service-footer-index,
  .service-page-hero,
  .service-page-proof,
  .service-page-gallery,
  .service-page-cta {
    padding: 3.2rem 1rem;
  }

  .services-hero {
    padding-top: 6.1rem;
  }

  .services-hero h1,
  .service-section-head h2,
  .service-area-module h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .services-hero-copy > p:not(.seo-kicker),
  .service-section-head > p,
  .service-area-module > div > p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .service-area-module > div > p {
    max-width: 31rem;
  }

  .services-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-actions .button {
    width: fit-content;
    min-width: min(13.5rem, 86vw);
    max-width: calc(100vw - 2rem);
  }

  .service-visual-frame,
  .service-before-after {
    min-height: 19rem;
  }

  .service-visual-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    overflow: visible;
  }

  .service-visual-tabs button {
    min-width: 0;
    font-size: 0.78rem;
  }

  .service-gallery-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.55rem;
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 0.15rem 1rem 0.35rem;
    overflow-x: auto;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x proximity;
  }

  .service-gallery-tabs button {
    flex: 0 0 auto;
    min-width: 9.8rem;
    min-height: 2.85rem;
    scroll-snap-align: start;
    font-size: 0.8rem;
  }

  .service-rail {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .service-rail button,
  .service-rail a {
    min-width: 0;
    padding: 0.85rem 0.9rem;
  }

  .service-detail {
    min-height: 0;
  }

  .service-preview-card {
    display: none;
  }

  .service-detail h3 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .service-page-main {
    padding-top: 4.35rem;
  }

  .service-page-hero {
    gap: 1.2rem;
    padding-top: 5.7rem;
  }

  .service-page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .service-page-hero p,
  .service-page-copy p,
  .service-page-card p,
  .service-page-copy li {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .service-page-visual,
  .service-page-placeholder {
    min-height: 17.5rem;
  }

  .service-page-actions,
  .service-page-cta-actions {
    justify-content: center;
  }

  .service-page-gallery {
    padding-top: 0;
  }

  .service-page-gallery-head h2 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .service-page-gallery-head p:last-child {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .service-gallery-widget {
    display: flex;
    gap: 0.75rem;
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 0.2rem 1rem 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-gallery-widget::-webkit-scrollbar {
    display: none;
  }

  .service-gallery-tile,
  .service-gallery-tile.tile-square {
    flex: 0 0 min(74vw, 20rem);
    min-height: 15rem;
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
  }

  .service-gallery-tile.tile-feature,
  .service-gallery-tile.tile-wide {
    flex-basis: min(82vw, 24rem);
    aspect-ratio: 4 / 3;
  }

  .service-gallery-tile.tile-tall {
    flex-basis: min(68vw, 18rem);
    aspect-ratio: 3 / 4;
  }

  .service-gallery-lightbox__dialog {
    width: min(100%, 94vw);
  }

  .quote-step-grid,
  .service-directory-grid,
  .area-lanes {
    grid-template-columns: 1fr;
  }

  .service-category-card:not([open]) .service-card-body {
    display: none;
  }

  .service-card-body ul {
    columns: 1;
  }

  .area-map-panel iframe {
    min-height: 15.5rem;
  }

  .area-map-notes {
    justify-content: flex-start;
    padding: 0.72rem;
  }

  .area-map-notes span {
    font-size: 0.64rem;
  }

  .area-lanes article {
    padding: 0.92rem;
  }

  .area-lanes article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .area-chip-list {
    max-height: 5.85rem;
    padding-right: 1.65rem;
    padding-left: 1.65rem;
    scroll-padding-inline: 1.65rem;
  }

  .area-chip-scroller {
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .area-chip-scroller::before,
  .area-chip-scroller::after {
    width: 1.55rem;
  }

  .area-chip-list span {
    min-height: 2.25rem;
    padding: 0.52rem 0.68rem;
    font-size: 0.76rem;
  }

  .postcode-checker {
    padding: 0.78rem;
  }

  .postcode-checker-row {
    grid-template-columns: 1fr;
  }

  .postcode-checker button {
    width: fit-content;
    justify-self: start;
  }

  .service-footer-list {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-gallery-tile,
  .service-gallery-tile img {
    transition: none !important;
  }

  .service-gallery-tile:hover,
  .service-gallery-tile:focus-visible,
  .service-gallery-tile:hover img,
  .service-gallery-tile:focus-visible img {
    transform: none !important;
  }
}
