@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/fonts/dm-serif-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../media/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --header-max-width: 1320px;
  --header-pad-x: clamp(0.875rem, 2.2vw, 1.5rem);
  --header-height: 5rem;
  --header-float-gap: clamp(0.75rem, 2vw, 1.1rem);
  --header-transition: 420ms cubic-bezier(0.22, 1, 0.36, 1);
  --header-text: #fafafa;
  --header-cta: #d6a44a;
}

.site-header,
.site-header *,
.site-header *::before,
.site-header *::after {
  box-sizing: border-box;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-height);
  color: var(--header-text);
  font-family: "Manrope", sans-serif;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transform: translateX(-50%);
  transition:
    top var(--header-transition),
    width var(--header-transition),
    min-height var(--header-transition),
    border-color var(--header-transition),
    border-radius var(--header-transition),
    background-color var(--header-transition),
    box-shadow var(--header-transition),
    backdrop-filter var(--header-transition);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(rgba(2, 7, 19, 0.62), rgba(2, 7, 19, 0.62));
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--header-transition);
}

.site-header.is-scrolled {
  top: var(--header-float-gap);
  width: min(calc(100% - (var(--header-pad-x) * 2)), 980px);
  min-height: calc(var(--header-height) - 0.75rem);
  color: var(--header-text);
  background-color: rgba(2, 7, 19, 0.46);
  border-color: rgba(249, 250, 251, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(2, 7, 19, 0.2);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(3rem, 1fr) auto minmax(3rem, 1fr);
  align-items: center;
  width: 100%;
  max-width: calc(var(--header-max-width) + (var(--header-pad-x) * 2));
  min-height: var(--header-height);
  padding: 0 var(--header-pad-x);
  margin: 0 auto;
  transition: min-height var(--header-transition), padding var(--header-transition);
}

.site-header.is-scrolled .site-header__inner {
  min-height: calc(var(--header-height) - 0.75rem);
  padding-right: clamp(0.75rem, 2vw, 1rem);
  padding-left: clamp(0.75rem, 2vw, 1rem);
}

.site-header a {
  color: inherit;
  text-decoration: none;
}

html,
:where(a, button, input, select, textarea, summary, label, [role="button"]) {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, select, textarea, summary, [role="button"]):focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: #fafafa;
  font: 700 0.9rem/1 "Manrope", sans-serif;
  text-decoration: none;
  background-color: #3d817f;
  border: 2px solid #d6a44a;
  border-radius: 0.65rem;
  box-shadow: 0 8px 24px rgba(11, 9, 11, 0.2);
  transform: translateY(calc(-100% - 1.5rem));
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  outline: 3px solid #fafafa;
  outline-offset: 3px;
  transform: translateY(0);
}

.site-header__logo-link {
  display: inline-flex;
  align-items: flex-start;
  justify-self: start;
  width: clamp(10rem, 13vw, 11.5rem);
  height: 3.6rem;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 180ms ease;
}

.site-header__logo-link:hover {
  transform: scale(1.07);
}

.site-header__logo-link:active {
  transform: scale(0.98);
}

.site-header__logo {
  display: block;
  height: auto;
}

.site-header__logo--desktop {
  width: 100%;
  transform: translateY(-28.95%);
}

.site-header__logo--mobile {
  display: none;
}

.site-header.is-scrolled .site-header__logo-link {
  align-items: center;
  width: 3.25rem;
  height: auto;
  overflow: visible;
  border-radius: 50%;
}

.site-header.is-scrolled .site-header__logo--desktop {
  display: none;
}

.site-header.is-scrolled .site-header__logo--mobile {
  display: block;
  width: 100%;
}

.site-header__nav {
  justify-self: center;
}

.site-header__nav-list,
.site-header__mobile-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.site-header__services-menu {
  position: relative;
}

.site-header__nav-link,
.site-header__mobile-nav-link {
  position: relative;
  display: inline-flex;
  color: #fafafa;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.site-header__nav-link::after,
.site-header__mobile-nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background-color: #fafafa;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__mobile-nav-link:hover::after,
.site-header__mobile-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.site-header__cta,
.site-header__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  background-color: #d6a44a;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(12, 10, 9, 0.16);
  text-shadow: 0 1px 2px #0c0a09;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-header__cta {
  justify-self: end;
  min-height: 2.75rem;
  padding: 0.8rem 1.15rem;
}

.site-header__cta:hover,
.site-header__mobile-cta:hover {
  box-shadow: 0 11px 28px rgba(12, 10, 9, 0.22);
  transform: scale(1.04);
}

.site-header__cta:active,
.site-header__mobile-cta:active {
  transform: scale(0.98);
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: #fafafa;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(250, 250, 250, 0.35);
  border-radius: 0.75rem;
}

.site-header__menu-icon {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 0.9rem;
}

.site-header__menu-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transition: top 220ms ease, transform 220ms ease, opacity 180ms ease;
}

.site-header__menu-line:nth-child(1) { top: 0; }
.site-header__menu-line:nth-child(2) { top: 0.4rem; }
.site-header__menu-line:nth-child(3) { top: 0.8rem; }

.site-header.is-menu-open .site-header__menu-line:nth-child(1) {
  top: 0.4rem;
  transform: rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__menu-line:nth-child(3) {
  top: 0.4rem;
  transform: rotate(-45deg);
}

.site-header__mobile-menu {
  display: none;
}

.site-header__services-toggle {
  align-items: center;
  gap: 0.48rem;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.site-header__services-toggle::before {
  order: 2;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms ease;
}

.site-header__services-menu.is-open .site-header__services-toggle::before,
.site-header__mobile-services-menu.is-open .site-header__services-toggle::before {
  transform: translateY(0.1rem) rotate(225deg);
}

.site-header__services-submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  z-index: 4;
  display: grid;
  min-width: 14rem;
  padding: 0.55rem;
  margin: 0;
  list-style: none;
  background-color: rgba(16, 67, 67, 0.96);
  background-image: url("../media/texture/texture-16.webp");
  background-size: 320px 320px;
  background-blend-mode: multiply;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 0.9rem;
  box-shadow: 0 18px 44px rgba(2, 19, 20, 0.3);
  transform: translateX(-50%);
}

.site-header__services-submenu[hidden],
.site-header__mobile-services-submenu[hidden] {
  display: none;
}

.site-header__services-submenu a {
  display: block;
  padding: 0.72rem 0.85rem;
  color: #fafafa;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header__services-submenu a:hover,
.site-header__services-submenu a:focus-visible,
.site-header__services-submenu a[aria-current="page"] {
  color: #f4d88b;
  background-color: rgba(250, 250, 250, 0.1);
  border-color: rgba(250, 250, 250, 0.18);
}

.site-header__mobile-services-submenu {
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem 0 0.1rem 1rem;
  margin: 0.25rem 0 0;
  list-style: none;
  border-left: 1px solid rgba(214, 164, 74, 0.55);
}

.site-header__mobile-services-submenu .site-header__mobile-nav-link {
  font-size: 0.86rem;
  opacity: 0.9;
}

.site-header :focus-visible {
  outline: 3px solid #fafafa;
  outline-offset: 4px;
}

.home-page {
  margin: 0;
}

.home-main {
  --trust-strip-height: 5.5rem;
}

.home-hero,
.home-hero *,
.trust-strip,
.trust-strip *,
.home-hero *::before,
.home-hero *::after,
.trust-strip *::before,
.trust-strip *::after {
  box-sizing: border-box;
}

.home-hero {
  position: relative;
  display: grid;
  height: calc(100vh - var(--trust-strip-height));
  height: calc(100svh - var(--trust-strip-height));
  min-height: 0;
  overflow: hidden;
  color: #fafafa;
  background-color: #173334;
  background-image: url("../media/static-images/residential/image-16.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.residential-hero {
  background-image: url("../media/static-images/residential/image-7.webp");
}

.commercial-hero {
  background-image: url("../media/static-images/commercial/image-10.webp");
}

.about-hero {
  background-image: url("../media/static-images/residential/image-5.webp");
}

.contact-hero {
  background-image: url("../media/static-images/other/telephone.webp");
}

@media (max-width: 840px) {
  .home-hero {
    background-image: url("../media/static-images/residential/image-16-mobile.webp");
  }

  .residential-hero {
    background-image: url("../media/static-images/residential/image-7-mobile.webp");
  }

  .commercial-hero {
    background-image: url("../media/static-images/commercial/image-10.webp");
  }

  .about-hero {
    background-image: url("../media/static-images/residential/image-5-mobile.webp");
  }

  .contact-hero {
    background-image: url("../media/static-images/other/telephone-mobile.webp");
  }
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 13, 14, 0.9) 0%, rgba(3, 13, 14, 0.72) 46%, rgba(3, 13, 14, 0.38) 100%),
    linear-gradient(180deg, rgba(3, 13, 14, 0.3) 0%, rgba(3, 13, 14, 0.58) 100%);
}

.home-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: calc(var(--header-max-width) + (var(--header-pad-x) * 2));
  height: 100%;
  padding: calc(var(--header-height) + 1rem) var(--header-pad-x) clamp(2rem, 5vh, 4rem);
  margin: 0 auto;
}

.home-hero__content {
  width: min(100%, 48rem);
  transform: translateY(0.75rem);
}

.home-hero__title {
  max-width: 13ch;
  margin: 0;
  color: #fafafa;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.5rem, 6.5vw, 6.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home-hero__text {
  max-width: 62ch;
  margin: clamp(1.1rem, 2.2vw, 1.5rem) 0 0;
  color: #fafafa;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.92rem 1.45rem;
  color: #fafafa;
  font: 700 0.98rem/1 "Manrope", sans-serif;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  outline: none;
  transition:
    transform 180ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 180ms ease;
}

.home-hero__cta--primary {
  background-color: #d6a44a;
  box-shadow: 0 8px 24px rgba(12, 10, 9, 0.16);
  text-shadow: 0 1px 2px #0c0a09;
}

.home-hero__cta--primary:hover,
.home-hero__cta--primary:focus-visible {
  box-shadow: 0 11px 28px rgba(12, 10, 9, 0.22);
  transform: scale(1.04);
}

.home-hero__cta--primary:active {
  transform: scale(0.98);
}

.home-hero__cta--secondary {
  background: rgba(2, 7, 19, 0.34);
  border-color: rgba(249, 250, 251, 0.38);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(249, 250, 251, 0.12);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}

.home-hero__cta--secondary:hover,
.home-hero__cta--secondary:focus-visible {
  background: rgba(249, 250, 251, 0.14);
  border-color: rgba(249, 250, 251, 0.72);
  transform: translateY(-2px) scale(1.02);
}

.home-hero__cta--secondary:active {
  transform: scale(0.97);
}

.home-hero__cta:focus-visible {
  outline: 3px solid rgba(250, 250, 250, 0.78);
  outline-offset: 4px;
}

.trust-strip {
  position: relative;
  height: var(--trust-strip-height);
  overflow: hidden;
  color: #fafafa;
  background-color: #3d817f;
  background-image: url("../media/texture/texture-16.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 410px 410px;
  background-blend-mode: multiply;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  height: 100%;
  padding: 0 var(--header-pad-x);
  margin: 0 auto;
}

.trust-strip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.65rem clamp(0.3rem, 1.5vw, 1rem);
  text-align: center;
}

.trust-strip__item + .trust-strip__item::before {
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(250, 250, 250, 0.32);
}

.trust-strip__icon {
  width: clamp(1.55rem, 2.6vw, 2rem);
  height: clamp(1.55rem, 2.6vw, 2rem);
  flex: 0 0 auto;
  fill: none;
  color: #fafafa;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__heading {
  margin: 0.42rem 0 0;
  color: #fafafa;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.95rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.cleaning-services,
.why-choose,
.home-about,
.spaces-clean,
.areas-served,
.residential-faq {
  color: #0b090b;
  background-color: #f4f9f8;
  background-image: url("../media/texture/texture-8.webp");
  background-repeat: repeat;
  background-position: center top;
  background-size: 680px 680px;
  background-blend-mode: multiply;
}

.cleaning-services {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

:is(#overview, #whats-included, #places-we-clean, #areas-we-serve, #contact-form) {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.cleaning-services,
.cleaning-services *,
.cleaning-services *::before,
.cleaning-services *::after {
  box-sizing: border-box;
}

.why-choose,
.why-choose *,
.why-choose *::before,
.why-choose *::after {
  box-sizing: border-box;
}

.home-about,
.home-about *,
.home-about *::before,
.home-about *::after {
  box-sizing: border-box;
}

.spaces-clean,
.spaces-clean *,
.spaces-clean *::before,
.spaces-clean *::after {
  box-sizing: border-box;
}

.areas-served,
.areas-served *,
.areas-served *::before,
.areas-served *::after {
  box-sizing: border-box;
}

.residential-faq,
.residential-faq *,
.residential-faq *::before,
.residential-faq *::after {
  box-sizing: border-box;
}

.cleaning-services__inner {
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: clamp(4rem, 7vw, 6.25rem) var(--header-pad-x) clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
}

.cleaning-services__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.why-choose__inner {
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: clamp(4rem, 7vw, 6.25rem) var(--header-pad-x) clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
}

.why-choose__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4.25rem);
}

.why-choose__reason {
  min-width: 0;
  text-align: center;
}

.why-choose__icon {
  display: block;
  width: clamp(2.75rem, 4vw, 3.5rem);
  height: clamp(2.75rem, 4vw, 3.5rem);
  margin: 0 auto;
  color: #3d817f;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-choose__heading {
  margin: 1.25rem 0 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.why-choose__text {
  max-width: 30rem;
  margin: 0.8rem auto 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: balance;
}

.home-about__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  margin: 0 auto;
}

.home-about__content {
  display: grid;
  align-items: center;
  padding: clamp(4rem, 7vw, 6.25rem) clamp(2rem, 4.5vw, 4rem);
}

.home-about__copy {
  width: min(100%, 40rem);
}

.home-about__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home-about__text {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.75;
}

.home-cta__actions {
  display: flex;
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.home-about__media {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 3.5vw, 3rem);
}

.home-about__image {
  display: block;
  width: 100%;
  height: clamp(18rem, 24vw, 22rem);
  object-fit: cover;
  border-radius: 1.5rem;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about__image:hover {
  transform: scale(1.025);
}

.process-strip,
.process-strip *,
.process-strip *::before,
.process-strip *::after {
  box-sizing: border-box;
}

.process-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: #fafafa;
  background-color: #c3882f;
  background-image: url("../media/texture/texture-6.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 290px 290px;
  background-blend-mode: multiply;
}

.process-strip__broom {
  --broom-drop: 0px;
  position: absolute;
  top: 0;
  right: clamp(-6rem, -5vw, -4rem);
  z-index: 1;
  width: clamp(15rem, 20vw, 20rem);
  height: clamp(26rem, 38vw, 35rem);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(-50% + var(--broom-drop)), 0);
  will-change: transform, opacity;
}

.process-strip__broom.is-loaded {
  opacity: 1;
}

.process-strip__broom-model {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.process-strip__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  padding: clamp(1.35rem, 2.2vw, 1.8rem) var(--header-pad-x);
  margin: 0 auto;
}

.process-strip__step {
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.process-strip__number {
  display: inline-grid;
  place-items: center;
  width: clamp(2.2rem, 3vw, 2.55rem);
  aspect-ratio: 1;
  color: #fafafa;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1;
  background-color: #874d21;
  border-radius: 50%;
}

.process-strip__icon {
  width: clamp(2.2rem, 3vw, 2.55rem);
  height: clamp(2.2rem, 3vw, 2.55rem);
  flex: 0 0 auto;
  color: #fafafa;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-strip__heading {
  margin: 0.65rem 0 0;
  color: #fafafa;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.process-strip__text {
  max-width: 22rem;
  margin: 0.4rem 0 0;
  color: #fafafa;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.75rem, 0.9vw, 0.84rem);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
}

.spaces-clean__inner {
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: clamp(4rem, 7vw, 6.25rem) var(--header-pad-x) clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
}

.spaces-clean__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.spaces-clean__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.25rem, 4.5vw, 3.75rem);
}

.spaces-clean-card {
  grid-template-rows: 1fr;
}

.spaces-clean-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.spaces-clean-card__icon {
  display: block;
  width: clamp(3rem, 4.5vw, 3.75rem);
  height: clamp(3rem, 4.5vw, 3.75rem);
  color: #d6a44a;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spaces-clean-card__title {
  margin: 1.15rem 0 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.residential-included__intro,
.residential-places__intro {
  max-width: 56rem;
  margin: clamp(1rem, 2vw, 1.35rem) auto 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  text-wrap: pretty;
}

.residential-included__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.residential-places__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-approach__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.residential-included .spaces-clean-card__body {
  padding: clamp(1.25rem, 2vw, 1.65rem);
}

.residential-included .spaces-clean-card__icon {
  width: clamp(2.75rem, 3.5vw, 3.25rem);
  height: clamp(2.75rem, 3.5vw, 3.25rem);
  color: #3d817f;
}

.residential-included .spaces-clean-card__title {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
}

.residential-places .spaces-clean-card__body {
  align-items: center;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  text-align: center;
}

.residential-places .spaces-clean-card__icon {
  width: clamp(2.75rem, 3.5vw, 3.25rem);
  height: clamp(2.75rem, 3.5vw, 3.25rem);
  color: #d6a44a;
}

.residential-places .spaces-clean-card__title {
  width: 100%;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  text-align: center;
}

.residential-places__text {
  margin: 0.8rem 0 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 0.96rem);
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
  text-wrap: pretty;
}

.about-approach .spaces-clean-card__body {
  align-items: center;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
}

.about-approach .spaces-clean-card__icon {
  width: clamp(2.75rem, 3.5vw, 3.25rem);
  height: clamp(2.75rem, 3.5vw, 3.25rem);
  color: #3d817f;
}

.about-commitment .spaces-clean-card__icon {
  color: #d6a44a;
}

.about-approach .spaces-clean-card__title {
  width: 100%;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  text-align: center;
}

@media (max-width: 840px) {
  .residential-included__grid,
  .residential-places__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-approach__grid {
    grid-template-columns: 1fr;
    width: min(100%, 44rem);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .residential-included .spaces-clean-card__body {
    align-items: center;
    text-align: center;
  }

  .residential-included .spaces-clean-card__title {
    width: 100%;
    text-align: center;
  }
}

.areas-served {
  position: relative;
}

.areas-served__inner {
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: clamp(4rem, 7vw, 6.25rem) var(--header-pad-x) clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
}

.areas-served__content {
  min-width: 0;
}

.areas-served__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
  align-items: center;
  width: min(100%, 72rem);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 auto;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.24);
  border-radius: 1.4rem;
  box-shadow: 0 20px 48px rgba(26, 52, 52, 0.12);
}

.areas-served__list {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.areas-served__title,
.areas-served__heading {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.areas-served__title {
  width: min(100%, 72rem);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.areas-served__heading {
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
}

.areas-served__text {
  max-width: 39rem;
  margin: clamp(1rem, 2vw, 1.4rem) 0 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.75;
}

.areas-served__media {
  position: relative;
  justify-self: end;
  width: min(100%, 23rem);
  height: clamp(11.5rem, 15vw, 13.5rem);
  overflow: hidden;
  border-radius: 1.5rem;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.areas-served__media:hover {
  transform: scale(1.025);
}

.areas-served__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.residential-faq {
  overflow: hidden;
}

.residential-faq__inner {
  width: min(100%, 64rem);
  padding: clamp(4rem, 7vw, 6.25rem) var(--header-pad-x) clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
}

.residential-faq__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.residential-faq__list {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
}

.residential-faq-item {
  min-width: 0;
  overflow: hidden;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.2);
  border-radius: 1rem;
  box-shadow: 0 16px 38px rgba(26, 52, 52, 0.1);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.residential-faq-item:hover,
.residential-faq-item:focus-within,
.residential-faq-item.is-open {
  border-color: rgba(61, 129, 127, 0.42);
  box-shadow: 0 20px 46px rgba(26, 52, 52, 0.15);
}

.residential-faq-item__question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  padding: clamp(1.15rem, 2.4vw, 1.45rem) clamp(1.15rem, 2.8vw, 1.7rem);
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.residential-faq-item__question:hover,
.residential-faq-item__question:focus-visible,
.residential-faq-item.is-open .residential-faq-item__question {
  color: #326f6e;
  background-color: rgba(61, 129, 127, 0.055);
}

.residential-faq-item__question:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(61, 129, 127, 0.34);
}

.residential-faq-item__icon {
  position: relative;
  display: inline-grid;
  width: 1.75rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  background-color: rgba(214, 164, 74, 0.16);
  border: 1px solid rgba(214, 164, 74, 0.48);
  border-radius: 50%;
}

.residential-faq-item__icon::before,
.residential-faq-item__icon::after {
  position: absolute;
  width: 0.8rem;
  height: 2px;
  content: "";
  background-color: #3d817f;
  border-radius: 999px;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.residential-faq-item__icon::after {
  transform: rotate(90deg);
}

.residential-faq-item.is-open .residential-faq-item__icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.residential-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.7;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.residential-faq-item__answer p {
  margin: 0;
  padding: 0 clamp(1.15rem, 2.8vw, 1.7rem) clamp(1.2rem, 2.5vw, 1.55rem);
}

.contact-faq .residential-faq-item__answer a {
  color: #326f6e;
  font-weight: 700;
  text-decoration-color: rgba(50, 111, 110, 0.45);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

.contact-faq .residential-faq-item__answer a:hover,
.contact-faq .residential-faq-item__answer a:focus-visible {
  color: #245b5a;
  text-decoration-color: currentColor;
}

.contact-faq .residential-faq-item__answer a:focus-visible {
  outline: 3px solid rgba(214, 164, 74, 0.48);
  outline-offset: 3px;
}

.residential-faq-item.is-open .residential-faq-item__answer {
  max-height: var(--faq-answer-height, 40rem);
  opacity: 1;
}

@media (max-width: 760px) {
  .residential-faq__inner {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .residential-faq-item__question {
    padding: 1rem;
    font-size: clamp(1.08rem, 5vw, 1.25rem);
  }

  .residential-faq-item__answer p {
    padding-right: 1rem;
    padding-bottom: 1.15rem;
    padding-left: 1rem;
  }
}

.cleaning-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.25rem, 4.5vw, 3.75rem);
}

.cleaning-service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.24);
  border-radius: 1.4rem;
  box-shadow: 0 20px 48px rgba(26, 52, 52, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cleaning-service-card:hover,
.cleaning-service-card:focus-within {
  border-color: rgba(61, 129, 127, 0.42);
  box-shadow: 0 26px 58px rgba(26, 52, 52, 0.18);
  transform: translateY(-0.35rem) scale(1.018);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition-delay: 0ms;
}

.cleaning-service-card:active {
  transform: translateY(-0.12rem) scale(1.006);
}

.cleaning-service-card__media {
  aspect-ratio: 16 / 9;
  margin: clamp(0.75rem, 1.5vw, 1rem) clamp(0.75rem, 1.5vw, 1rem) 0;
  padding: 0.35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(69, 64, 68, 0.22);
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 24px rgba(26, 52, 52, 0.09);
}

.cleaning-service-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.72rem;
}

.cleaning-service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.25rem, 2.8vw, 2rem);
}

.cleaning-service-card__title {
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cleaning-service-card__description {
  margin: 0.85rem 0 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.65;
}

.cleaning-service-card__highlights {
  display: grid;
  width: 100%;
  gap: 0.65rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.cleaning-service-card__highlights li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.7rem;
  padding: 0.58rem 0.75rem;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.94rem);
  font-weight: 600;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(69, 64, 68, 0.13);
  border-radius: 0.8rem;
}

.cleaning-service-card__tick {
  display: inline-block;
  width: 1.15rem;
  color: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(110deg, #3d817f 10%, #d6a44a 45%, #3d817f 80%);
  background-position: 0% center;
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: cleaning-tick-sweep 3.6s ease-in-out infinite;
}

.cleaning-service-card__highlights li:nth-child(2) .cleaning-service-card__tick {
  animation-delay: 240ms;
}

.cleaning-service-card__highlights li:nth-child(3) .cleaning-service-card__tick {
  animation-delay: 480ms;
}

.cleaning-service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.85rem 1.2rem;
  margin-top: 1.5rem;
  color: #fafafa;
  font: 700 0.9rem/1 "Manrope", sans-serif;
  text-decoration: none;
  text-shadow: 0 1px 2px #0c0a09;
  background-color: #d6a44a;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(12, 10, 9, 0.16);
  -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cleaning-service-card__cta:hover,
.cleaning-service-card__cta:focus-visible {
  box-shadow: 0 11px 28px rgba(12, 10, 9, 0.22);
  transform: scale(1.04);
}

.cleaning-service-card__cta:active {
  transform: scale(0.98);
}

.cleaning-service-card__cta:focus-visible {
  outline: 3px solid #3d817f;
  outline-offset: 4px;
}

.cleaning-service-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding-top: 1.5rem;
  margin-top: auto;
}

.cleaning-service-card__actions .cleaning-service-card__cta {
  margin-top: 0;
}

.has-reveal-motion .cleaning-services [data-reveal-item] {
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
}

.has-reveal-motion .cleaning-services__title[data-reveal-item] {
  filter: blur(3px);
  letter-spacing: -0.06em;
  transform: translateY(0.75rem) scaleX(0.96);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease,
    letter-spacing 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-reveal-motion .cleaning-services__intro[data-reveal-item] {
  filter: blur(3px);
  transform: translateY(0.75rem);
  transition:
    opacity 620ms ease 100ms,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 100ms,
    filter 620ms ease 100ms;
}

.has-reveal-motion :where(.cleaning-services) .cleaning-service-card[data-reveal-item] {
  clip-path: inset(0 0 1.25rem 0 round 1.4rem);
  filter: blur(4px);
  transform: translate3d(-0.7rem, 1.35rem, 0) scale(0.985);
  transition:
    opacity 660ms ease 150ms,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 150ms,
    filter 660ms ease 150ms,
    clip-path 820ms cubic-bezier(0.22, 1, 0.36, 1) 150ms;
}

.has-reveal-motion :where(.cleaning-services) .cleaning-service-card:nth-child(2)[data-reveal-item] {
  transform: translate3d(0.7rem, 1.35rem, 0) scale(0.985);
  transition-delay: 250ms;
}

.has-reveal-motion .cleaning-services [data-reveal-item].is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal-motion .cleaning-services .cleaning-services__title.is-revealed {
  letter-spacing: -0.025em;
}

.has-reveal-motion .cleaning-services .cleaning-service-card.is-revealed:hover,
.has-reveal-motion .cleaning-services .cleaning-service-card.is-revealed:focus-within {
  border-color: rgba(61, 129, 127, 0.42);
  box-shadow: 0 26px 58px rgba(26, 52, 52, 0.18);
  transform: translateY(-0.35rem) scale(1.018);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition-delay: 0ms;
}

.has-reveal-motion .cleaning-services .cleaning-service-card.is-revealed:active {
  transform: translateY(-0.12rem) scale(1.006);
}

.has-reveal-motion .why-choose [data-reveal-item] {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.has-reveal-motion .why-choose__title[data-reveal-item] {
  filter: blur(3px);
  transform: translateY(0.75rem) scaleX(0.96);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease;
}

.has-reveal-motion .why-choose__reason[data-reveal-item] {
  filter: blur(3px);
  transform: translateY(1rem) scale(0.98);
  transition:
    opacity 600ms ease var(--why-reveal-delay, 100ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--why-reveal-delay, 100ms),
    filter 600ms ease var(--why-reveal-delay, 100ms);
}

.has-reveal-motion .why-choose__reason:nth-child(1) { --why-reveal-delay: 100ms; }
.has-reveal-motion .why-choose__reason:nth-child(2) { --why-reveal-delay: 180ms; }
.has-reveal-motion .why-choose__reason:nth-child(3) { --why-reveal-delay: 260ms; }
.has-reveal-motion .why-choose__reason:nth-child(4) { --why-reveal-delay: 340ms; }

.has-reveal-motion .why-choose [data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.has-reveal-motion .home-about [data-reveal-item] {
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
}

.has-reveal-motion .home-about__title[data-reveal-item] {
  filter: blur(3px);
  transform: translateY(0.75rem) scaleX(0.96);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease;
}

.has-reveal-motion .home-about__text[data-reveal-item] {
  filter: blur(4px);
  transform: translateY(0.9rem);
  transition:
    opacity 650ms ease 140ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 140ms,
    filter 650ms ease 140ms;
}

.has-reveal-motion .home-cta__actions[data-reveal-item] {
  filter: blur(4px);
  transform: translateY(0.75rem) scale(0.985);
  transition:
    opacity 620ms ease 280ms,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 280ms,
    filter 620ms ease 280ms;
}

.has-reveal-motion .home-about__media[data-reveal-item] {
  clip-path: inset(0 0 0 10% round 1.5rem);
  filter: blur(4px);
  transform: translate3d(1.1rem, 0.6rem, 0) scale(0.985);
  transition:
    opacity 680ms ease 220ms,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1) 220ms,
    filter 680ms ease 220ms,
    clip-path 860ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.has-reveal-motion .home-about [data-reveal-item].is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal-motion .process-strip [data-reveal-item] {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(0.8rem) scale(0.975);
  transition:
    opacity 560ms ease var(--process-reveal-delay, 80ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--process-reveal-delay, 80ms),
    filter 560ms ease var(--process-reveal-delay, 80ms);
  will-change: opacity, transform, filter;
}

.has-reveal-motion .process-strip__step:nth-child(1) { --process-reveal-delay: 80ms; }
.has-reveal-motion .process-strip__step:nth-child(2) { --process-reveal-delay: 150ms; }
.has-reveal-motion .process-strip__step:nth-child(3) { --process-reveal-delay: 220ms; }
.has-reveal-motion .process-strip__step:nth-child(4) { --process-reveal-delay: 290ms; }

.has-reveal-motion .process-strip [data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.has-reveal-motion .spaces-clean [data-reveal-item] {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(1rem) scale(0.98);
  transition:
    opacity 600ms ease var(--spaces-reveal-delay, 80ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--spaces-reveal-delay, 80ms),
    filter 600ms ease var(--spaces-reveal-delay, 80ms);
  will-change: opacity, transform, filter;
}

.has-reveal-motion .spaces-clean__title[data-reveal-item] {
  --spaces-reveal-delay: 0ms;
  transform: translateY(0.75rem) scaleX(0.96);
}

.has-reveal-motion .spaces-clean-card:nth-child(1) { --spaces-reveal-delay: 140ms; }
.has-reveal-motion .spaces-clean-card:nth-child(2) { --spaces-reveal-delay: 240ms; }
.has-reveal-motion .residential-included .spaces-clean-card:nth-child(3) { --spaces-reveal-delay: 340ms; }
.has-reveal-motion .residential-included .spaces-clean-card:nth-child(4) { --spaces-reveal-delay: 440ms; }
.has-reveal-motion .residential-places .spaces-clean-card:nth-child(3) { --spaces-reveal-delay: 340ms; }
.has-reveal-motion .residential-places .spaces-clean-card:nth-child(4) { --spaces-reveal-delay: 440ms; }
.has-reveal-motion .about-approach .spaces-clean-card:nth-child(3) { --spaces-reveal-delay: 340ms; }

.has-reveal-motion .spaces-clean [data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.has-reveal-motion .contact-details [data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.has-reveal-motion .spaces-clean .spaces-clean-card.is-revealed:hover {
  transform: translateY(-0.35rem) scale(1.018);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition-delay: 0ms;
}

.has-reveal-motion .areas-served [data-reveal-item] {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(1rem) scale(0.985);
  transition:
    opacity 620ms ease var(--areas-reveal-delay, 80ms),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1) var(--areas-reveal-delay, 80ms),
    filter 620ms ease var(--areas-reveal-delay, 80ms);
  will-change: opacity, transform, filter;
}

.has-reveal-motion .areas-served__title[data-reveal-item] {
  --areas-reveal-delay: 0ms;
  transform: translateY(0.75rem) scaleX(0.96);
}

.has-reveal-motion .areas-served__card[data-reveal-item] {
  --areas-reveal-delay: 140ms;
  transition:
    opacity 680ms ease var(--areas-reveal-delay),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1) var(--areas-reveal-delay),
    filter 680ms ease var(--areas-reveal-delay);
}

.has-reveal-motion .areas-served [data-reveal-item].is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal-motion .areas-served .areas-served__card.is-revealed .areas-served__media:hover {
  transform: scale(1.025);
  transition-delay: 0ms;
}

.has-reveal-motion .residential-faq [data-reveal-item] {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(1rem) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: opacity, transform, filter;
}

.has-reveal-motion .residential-faq__title[data-reveal-item] {
  transform: translateY(0.75rem) scaleX(0.96);
}

.has-reveal-motion .residential-faq [data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes cleaning-tick-sweep {
  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.has-reveal-motion .home-hero [data-reveal-item],
.has-reveal-motion .trust-strip [data-reveal-item] {
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
}

.has-reveal-motion .home-hero__title[data-reveal-item] {
  filter: blur(4px);
  transform: translateY(1.15rem);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.has-reveal-motion .home-hero__text[data-reveal-item] {
  filter: blur(5px);
  transform: translateY(0.8rem);
  transition:
    opacity 680ms ease 150ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 150ms,
    filter 680ms ease 150ms;
}

.has-reveal-motion .home-hero__actions[data-reveal-item] {
  filter: blur(4px);
  transform: translateY(0.65rem) scale(0.985);
  transform-origin: left center;
  transition:
    opacity 620ms ease 280ms,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 280ms,
    filter 620ms ease 280ms;
}

.has-reveal-motion .home-hero [data-reveal-item].is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.has-reveal-motion .home-hero .home-hero__title[data-reveal-item].is-revealed {
  clip-path: none;
  overflow: visible;
}

.has-reveal-motion .home-hero .home-hero__actions[data-reveal-item].is-revealed {
  clip-path: none;
}

.has-reveal-motion .trust-strip__item[data-reveal-item] {
  --trust-reveal-x: 0;
  filter: blur(3px);
  transform: translate3d(var(--trust-reveal-x), 0.55rem, 0) scale(0.97);
  transition:
    opacity 560ms ease var(--trust-reveal-delay, 80ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--trust-reveal-delay, 80ms),
    filter 560ms ease var(--trust-reveal-delay, 80ms);
}

.has-reveal-motion .trust-strip__item:nth-child(1) {
  --trust-reveal-x: 0.55rem;
  --trust-reveal-delay: 190ms;
}

.has-reveal-motion .trust-strip__item:nth-child(2) {
  --trust-reveal-x: 0.3rem;
  --trust-reveal-delay: 80ms;
}

.has-reveal-motion .trust-strip__item:nth-child(3) {
  --trust-reveal-x: -0.3rem;
  --trust-reveal-delay: 120ms;
}

.has-reveal-motion .trust-strip__item:nth-child(4) {
  --trust-reveal-x: -0.55rem;
  --trust-reveal-delay: 230ms;
}

.has-reveal-motion .trust-strip .trust-strip__item[data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.request-quote-page,
.request-quote-page *,
.request-quote-page *::before,
.request-quote-page *::after {
  box-sizing: border-box;
}

.request-quote-page {
  min-height: 100%;
  margin: 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  background-color: #3d817f;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(214, 164, 74, 0.9) 0, rgba(214, 164, 74, 0) 35%),
    radial-gradient(circle at 88% 82%, rgba(214, 164, 74, 0.66) 0, rgba(214, 164, 74, 0) 32%),
    linear-gradient(125deg, #3d817f 8%, #3d817f 48%, #d6a44a 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 170% 170%, 185% 185%, 230% 230%;
  animation: request-quote-gradient-shift 16s ease-in-out infinite alternate;
}

.request-quote-main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2rem, 6vw, 5rem) var(--header-pad-x);
  place-items: center;
}

.request-quote-card {
  width: min(100%, 58rem);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  color: #454044;
  font-family: "Manrope", sans-serif;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.24);
  border-radius: 1.4rem;
  box-shadow: 0 20px 48px rgba(26, 52, 52, 0.12);
}

.request-quote-card__header {
  max-width: 48rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.areas-served__intro,
.cleaning-services__intro,
.why-choose__intro,
.spaces-clean__intro {
  max-width: 48rem;
  margin: clamp(1rem, 2vw, 1.35rem) auto 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  text-wrap: pretty;
}

#contact-areas-served-title + .areas-served__intro,
#contact-cleaning-services-title + .cleaning-services__intro {
  margin-top: clamp(0.35rem, 0.8vw, 0.6rem);
}

.request-quote-card__title {
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.request-quote-card__intro {
  margin: clamp(1rem, 2vw, 1.3rem) 0 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  font-weight: 500;
  line-height: 1.7;
  text-wrap: pretty;
}

.request-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem clamp(1rem, 2.5vw, 1.5rem);
  color: #454044;
  font-family: "Manrope", sans-serif;
}

.request-quote-form__field {
  display: grid;
  min-width: 0;
  gap: 0.5rem;
}

.request-quote-form__field--full,
.request-quote-form__actions,
.request-quote-form__conditional {
  grid-column: 1 / -1;
}

.request-quote-form__conditional {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem clamp(1rem, 2.5vw, 1.5rem);
}

.request-quote-form__conditional--single {
  grid-template-columns: minmax(0, 1fr);
}

.request-quote-form__conditional[hidden] {
  display: none;
}

.request-quote-form label {
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.request-quote-form__optional {
  color: #6a6468;
  font-size: 0.76rem;
  font-weight: 600;
}

.request-quote-form input,
.request-quote-form select,
.request-quote-form textarea {
  width: 100%;
  min-width: 0;
  color: #454044;
  font: 500 0.95rem/1.4 "Manrope", sans-serif;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(61, 129, 127, 0.34);
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.request-quote-form input,
.request-quote-form select {
  min-height: 3.25rem;
  padding: 0.78rem 0.95rem;
}

.request-quote-form textarea {
  min-height: 9rem;
  padding: 0.9rem 0.95rem;
  resize: vertical;
}

.request-quote-form input::placeholder,
.request-quote-form textarea::placeholder {
  color: #817a7f;
  opacity: 1;
}

.request-quote-form input:hover,
.request-quote-form select:hover,
.request-quote-form textarea:hover {
  border-color: rgba(61, 129, 127, 0.58);
}

.request-quote-form input:focus,
.request-quote-form select:focus,
.request-quote-form textarea:focus {
  background-color: #ffffff;
  border-color: #3d817f;
  box-shadow: 0 0 0 4px rgba(61, 129, 127, 0.14);
}

.request-quote-form input[type="file"] {
  padding: 0.58rem;
}

.request-quote-form input[type="file"]::file-selector-button {
  padding: 0.65rem 0.85rem;
  margin-right: 0.75rem;
  color: #fafafa;
  font: 700 0.82rem/1 "Manrope", sans-serif;
  cursor: pointer;
  background-color: #3d817f;
  border: 0;
  border-radius: 0.55rem;
}

.request-quote-form__helper {
  margin: 0;
  color: #6a6468;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

.request-quote-form__consent {
  padding: 0.1rem 0;
}

.request-quote-form__consent label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  font-weight: 500;
  line-height: 1.6;
}

.request-quote-form__consent input[type="checkbox"] {
  width: 1.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  padding: 0;
  margin: 0.18rem 0 0;
  accent-color: #3d817f;
  cursor: pointer;
  border-radius: 0.25rem;
}

.request-quote-form__consent input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(61, 129, 127, 0.3);
  outline-offset: 3px;
  box-shadow: none;
}

.request-quote-form__consent a {
  color: #285f5e;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(40, 95, 94, 0.45);
  text-underline-offset: 0.18em;
}

.request-quote-form__consent a:hover,
.request-quote-form__consent a:focus-visible {
  color: #0b090b;
  text-decoration-color: currentColor;
}

.request-quote-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
}

.request-quote-form__submit {
  min-width: min(100%, 13rem);
  cursor: pointer;
}

.request-quote-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.request-quote-form__honeypot {
  display: none !important;
}

.request-quote-form__reassurance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  color: #454044;
  background-color: rgba(61, 129, 127, 0.075);
  border: 1px solid rgba(61, 129, 127, 0.24);
  border-radius: 0.9rem;
}

.request-quote-form__reassurance-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #3d817f;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.request-quote-form__reassurance p {
  margin: 0;
  font-size: clamp(0.84rem, 1.1vw, 0.92rem);
  font-weight: 500;
  line-height: 1.65;
}

.request-quote-form__status {
  padding: 0.9rem 1rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 0.75rem;
}

.request-quote-form__status[data-state="loading"] {
  color: #454044;
  background-color: rgba(214, 164, 74, 0.12);
  border-color: rgba(214, 164, 74, 0.34);
}

.request-quote-form__status[data-state="success"] {
  color: #285f5e;
  background-color: rgba(61, 129, 127, 0.1);
  border-color: rgba(61, 129, 127, 0.32);
}

.request-quote-form__status[data-state="error"] {
  color: #7b302d;
  background-color: rgba(164, 68, 62, 0.09);
  border-color: rgba(164, 68, 62, 0.28);
}

.contact-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: start;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: clamp(2.25rem, 4.5vw, 3.75rem);
}

.contact-details {
  color: #454044;
  font-family: "Manrope", sans-serif;
}

.contact-details__header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.contact-details__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.contact-details__intro {
  margin: clamp(0.35rem, 0.8vw, 0.6rem) 0 0;
  color: #454044;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.75;
  text-wrap: pretty;
}

.contact-details__panel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.24);
  border-radius: 1.4rem;
  box-shadow: 0 20px 48px rgba(26, 52, 52, 0.12);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.contact-details .request-quote-card__header {
  max-width: none;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: left;
}

.contact-details__panel .request-quote-card__header {
  text-align: center;
}

.contact-details .request-quote-card__title {
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.contact-details .request-quote-card__intro {
  color: #454044;
  font-family: "Manrope", sans-serif;
}

.contact-details .request-quote-form {
  grid-template-columns: 1fr;
  color: #454044;
  font-family: "Manrope", sans-serif;
}

.contact-details .request-quote-form label,
.contact-details .request-quote-form__optional {
  font-family: "Manrope", sans-serif;
}

.contact-details .request-quote-form label {
  color: #454044;
}

.contact-details .request-quote-form__actions {
  justify-content: flex-start;
}

.contact-details__information {
  align-self: center;
  min-width: 0;
  padding: 0;
}

.contact-details__contact-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  list-style: none;
}

.contact-details__contact-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #454044;
  text-decoration: none;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.22);
  border-radius: 0.9rem;
  box-shadow: 0 12px 28px rgba(26, 52, 52, 0.08);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-details__contact-link:hover,
.contact-details__contact-link:focus-visible {
  color: #326f6e;
  border-color: rgba(61, 129, 127, 0.5);
  box-shadow: 0 12px 28px rgba(26, 52, 52, 0.12);
  transform: translateY(-0.12rem);
}

.contact-details__contact-link--static,
.contact-details__contact-link--static:hover {
  color: #454044;
  border-color: rgba(61, 129, 127, 0.24);
  box-shadow: 0 12px 28px rgba(26, 52, 52, 0.08);
  transform: none;
}

.contact-details__contact-link:focus-visible {
  outline: 3px solid rgba(214, 164, 74, 0.58);
  outline-offset: 3px;
}

.contact-details__contact-icon {
  width: 2rem;
  height: 2rem;
  color: #3d817f;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details__contact-copy {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.86rem, 1.1vw, 0.96rem);
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-details__contact-label {
  color: #0b090b;
  font-weight: 700;
}

@keyframes request-quote-gradient-shift {
  0% {
    background-position: 0% 10%, 100% 90%, 0% 50%;
  }

  50% {
    background-position: 65% 35%, 35% 65%, 55% 50%;
  }

  100% {
    background-position: 100% 80%, 0% 20%, 100% 50%;
  }
}

@media (max-width: 760px) {
  .request-quote-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .request-quote-form,
  .request-quote-form__conditional {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .contact-details__grid {
    grid-template-columns: 1fr;
    width: min(100%, 44rem);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-details__information .request-quote-card__header {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .request-quote-card {
    padding: 1.25rem;
    border-radius: 1.15rem;
  }

  .request-quote-card__title {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .request-quote-form__submit {
    width: 100%;
  }
}

/* Branded 404 page */
.not-found-page,
.not-found-page *,
.not-found-page *::before,
.not-found-page *::after {
  box-sizing: border-box;
}

.not-found-page {
  margin: 0;
  color: #fafafa;
  font-family: "Manrope", sans-serif;
  background-color: #3d817f;
  background-image:
    linear-gradient(125deg, rgba(31, 92, 91, 0.9), rgba(61, 129, 127, 0.78), rgba(159, 110, 39, 0.72)),
    url("../media/texture/texture-16.webp");
  background-repeat: no-repeat, repeat;
  background-position: center;
  background-size: cover, 320px 320px;
  background-blend-mode: normal, multiply;
}

.not-found-main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 2.5rem);
  place-items: center;
}

.not-found-card {
  width: min(100%, 52rem);
  padding: clamp(1.5rem, 5vw, 3.75rem);
  text-align: center;
  background-color: rgba(21, 77, 76, 0.68);
  border: 1px solid rgba(250, 250, 250, 0.24);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 28px 72px rgba(2, 19, 20, 0.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.not-found-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fafafa;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.not-found-brand img {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.3rem;
  object-fit: contain;
  background-color: rgba(250, 250, 250, 0.92);
  border-radius: 50%;
}

.not-found-code {
  margin: clamp(2rem, 6vw, 3.5rem) 0 0;
  color: #d6a44a;
  font: 400 clamp(5rem, 15vw, 9rem)/0.78 "DM Serif Display", serif;
  text-shadow: 0 6px 28px rgba(2, 19, 20, 0.2);
}

.not-found-title {
  max-width: 12ch;
  padding-bottom: 0.08em;
  margin: 1.5rem auto 0;
  color: #fafafa;
  font: 400 clamp(2.4rem, 6vw, 4.6rem)/1.02 "DM Serif Display", serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.not-found-text {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: rgba(250, 250, 250, 0.9);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.7;
  text-wrap: pretty;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.25rem;
  margin-top: 1.75rem;
}

.not-found-links a {
  color: rgba(250, 250, 250, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration-color: rgba(250, 250, 250, 0.42);
  text-underline-offset: 0.22em;
}

.not-found-links a:hover,
.not-found-links a:focus-visible {
  color: #f4d88b;
  text-decoration-color: currentColor;
}

@media (max-width: 480px) {
  .not-found-main {
    align-items: center;
    padding: 0.75rem;
  }

  .not-found-card {
    padding: 1.25rem 1rem;
    border-radius: 1.25rem;
  }

  .not-found-brand {
    gap: 0.55rem;
    max-width: 100%;
    font-size: 0.72rem;
    text-align: left;
  }

  .not-found-brand img {
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.24rem;
  }

  .not-found-code {
    margin-top: 1.25rem;
    font-size: clamp(4rem, 19vw, 4.75rem);
  }

  .not-found-title {
    max-width: 11ch;
    margin-top: 1rem;
    font-size: clamp(2rem, 10.5vw, 2.5rem);
    line-height: 1;
  }

  .not-found-text {
    margin-top: 0.8rem;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .not-found-actions .home-hero__cta {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
  }

  .not-found-links {
    align-items: center;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .not-found-links a {
    padding: 0.2rem 0.35rem;
    font-size: 0.76rem;
  }
}

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer {
  color: #fafafa;
  font-family: "Manrope", sans-serif;
  text-shadow: 0 1px 1px rgba(9, 28, 28, 0.42);
  background-color: #3d817f;
  background-image: url("../media/texture/texture-16.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 320px 320px;
  background-blend-mode: multiply;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__inner {
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: clamp(3rem, 6vw, 4.5rem) var(--header-pad-x) clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0 auto;
}

.has-reveal-motion .site-footer [data-reveal-item] {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(1rem) scale(0.99);
  transition:
    opacity 680ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms ease;
  will-change: opacity, transform, filter;
}

.has-reveal-motion .site-footer [data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(17rem, 1.2fr) minmax(10rem, 0.82fr) minmax(12rem, 1fr) minmax(16rem, 1.22fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.site-footer__panel {
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background-color: rgba(250, 250, 250, 0.065);
  border: 1px solid rgba(250, 250, 250, 0.18);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(250, 250, 250, 0.08);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer__business-name {
  margin: 0;
  color: #fafafa;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.65rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}

.site-footer__summary {
  max-width: 25rem;
  margin: 0.85rem 0 0;
  color: #fafafa;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.site-footer__cta {
  margin-top: 1.35rem;
}

.site-footer__heading {
  margin: 0;
  color: #fafafa;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer__list,
.site-footer__contact-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.site-footer__link,
.site-footer__contact-link {
  display: flex;
  width: 100%;
  min-height: 2.65rem;
  padding: 0.72rem 0.9rem;
  background-color: rgba(250, 250, 250, 0.055);
  border: 1px solid rgba(250, 250, 250, 0.16);
  border-radius: 0.8rem;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-footer__link {
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__contact-link {
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
  background-color: rgba(250, 250, 250, 0.11);
  border-color: rgba(250, 250, 250, 0.34);
  transform: translateX(0.2rem);
}

.site-footer__contact-icon {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__contact-copy {
  display: grid;
  gap: 0.08rem;
}

.site-footer__contact-link--hours {
  cursor: default;
}

.site-footer__contact-link--hours:hover {
  background-color: rgba(250, 250, 250, 0.055);
  border-color: rgba(250, 250, 250, 0.16);
  transform: none;
}

.site-footer__contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(250, 250, 250, 0.2);
}

.site-footer__bottom p {
  margin: 0;
  color: #fafafa;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.site-footer__bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.site-footer__legal-link {
  font-weight: 700;
  text-decoration: underline !important;
  text-decoration-color: rgba(250, 250, 250, 0.5) !important;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 180ms ease, opacity 180ms ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  text-decoration-color: #fafafa !important;
  opacity: 0.82;
}

.site-footer__credit-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(250, 250, 250, 0.5);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 180ms ease, opacity 180ms ease;
}

.site-footer__credit-link:hover,
.site-footer__credit-link:focus-visible {
  text-decoration-color: #fafafa;
  opacity: 0.82;
}

@media (max-width: 840px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__logo-link {
    align-items: center;
    width: clamp(3rem, 8vw, 3.75rem);
    height: auto;
    overflow: visible;
    border-radius: 50%;
  }

  .site-header__logo--desktop {
    display: none;
  }

  .site-header__logo--mobile {
    display: block;
    width: 100%;
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .homepage .site-header__inner {
    grid-template-columns: minmax(2.75rem, 1fr) auto auto;
    gap: 0.55rem;
  }

  .homepage .site-header__cta {
    display: inline-flex;
    min-height: 2.6rem;
    padding: 0.7rem 0.85rem;
    font-size: clamp(0.7rem, 2.8vw, 0.82rem);
    white-space: nowrap;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header.is-scrolled {
    top: 0.65rem;
    width: calc(100% - 1rem);
  }

  .site-header__mobile-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    overflow: hidden;
    visibility: hidden;
    background:
      linear-gradient(145deg, rgba(24, 61, 60, 0.94), rgba(3, 17, 20, 0.96));
    border: 1px solid rgba(61, 129, 127, 0.5);
    border-radius: 1.25rem;
    box-shadow: 0 18px 50px rgba(2, 19, 20, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem) scale(0.98);
    transform-origin: top;
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-header:not(.is-scrolled) .site-header__mobile-menu {
    right: var(--header-pad-x);
    left: var(--header-pad-x);
  }

  .site-header.is-menu-open .site-header__mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .site-header__mobile-nav-link {
    font-size: 1.05rem;
  }

  .site-header__mobile-cta {
    width: 100%;
    min-height: 3rem;
    padding: 0.9rem 1.2rem;
  }

  .home-hero {
    background-position: 58% center;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 13, 14, 0.9) 0%, rgba(3, 13, 14, 0.7) 62%, rgba(3, 13, 14, 0.48) 100%),
      linear-gradient(180deg, rgba(3, 13, 14, 0.3) 0%, rgba(3, 13, 14, 0.62) 100%);
  }

  .home-hero__content {
    width: min(100%, 40rem);
    transform: translateY(-0.5rem);
  }

  .home-hero__title {
    font-size: clamp(3rem, 10vw, 4.75rem);
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(2.75rem, 7vw, 4rem);
  }

  .home-about__inner {
    grid-template-columns: 1fr;
  }

  .home-about__content {
    padding: clamp(4rem, 9vw, 5.5rem) var(--header-pad-x);
  }

  .home-about__copy {
    width: min(100%, 44rem);
    margin: 0 auto;
    text-align: center;
  }

  .home-cta__actions {
    justify-content: center;
  }

  .home-about__media {
    display: none;
  }

  .areas-served__inner {
    grid-template-columns: 1fr;
  }

  .areas-served__title {
    text-align: center;
  }

  .areas-served__card {
    grid-template-columns: 1fr;
    width: min(100%, 44rem);
  }

  .areas-served__content {
    width: min(100%, 44rem);
    margin: 0 auto;
    text-align: center;
  }

  .areas-served__text {
    margin-right: auto;
    margin-left: auto;
  }

  .areas-served__media {
    justify-self: center;
    width: min(100%, 23rem);
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cleaning-services {
    background-size: 520px 520px;
  }

  .cleaning-services__inner {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .cleaning-services__grid {
    grid-template-columns: 1fr;
    width: min(100%, 44rem);
    margin-right: auto;
    margin-left: auto;
  }

  .cleaning-service-card__body {
    padding: 1.25rem;
  }

  .cleaning-service-card__title {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .spaces-clean__inner {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .spaces-clean__grid {
    grid-template-columns: 1fr;
    width: min(100%, 44rem);
    margin-right: auto;
    margin-left: auto;
  }

  .spaces-clean-card__body {
    padding: 1.25rem;
  }

  .spaces-clean-card__title {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .areas-served__inner {
    padding-top: 3.75rem;
    padding-bottom: 3rem;
  }

  .process-strip__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: min(100%, 38rem);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .process-strip__step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .process-strip__broom {
    top: 0;
    right: clamp(-11rem, -24vw, -7rem);
    width: clamp(16rem, 50vw, 22rem);
    height: calc(200% + 2rem);
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 4.5rem;
    --header-pad-x: 0.65rem;
  }

  .site-header__mobile-menu {
    border-radius: 1rem;
  }

  .home-main {
    --trust-strip-height: 5.25rem;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .home-hero {
    background-position: 64% center;
  }

  .home-hero__inner {
    padding-top: calc(var(--header-height) + 0.5rem);
    padding-bottom: 1.25rem;
  }

  .home-hero__title {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .home-hero__text {
    margin-top: 0.9rem;
    font-size: clamp(0.84rem, 4vw, 0.98rem);
    line-height: 1.5;
  }

  .home-hero__actions {
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .home-hero__cta {
    min-height: 2.8rem;
    padding: 0.78rem 1rem;
    font-size: 0.86rem;
  }

  .trust-strip__inner {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .trust-strip__item {
    padding: 0.5rem 0.18rem;
  }

  .trust-strip__icon {
    width: 1.3rem;
    height: 1.3rem;
    stroke-width: 2;
  }

  .trust-strip__heading {
    margin-top: 0.35rem;
    font-size: clamp(0.58rem, 2.7vw, 0.72rem);
    line-height: 1.1;
  }

  .why-choose__inner {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    width: min(100%, 28rem);
    margin-right: auto;
    margin-left: auto;
  }

  .home-about__content {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }
}

/* Homepage creative direction */
.homepage :is(.cleaning-services, .why-choose, .home-about, .spaces-clean, .areas-served, .home-faq) {
  background-size: 860px 860px;
  background-blend-mode: soft-light;
}

.homepage :is(.cleaning-service-card, .why-choose__reason, .areas-served__card, .residential-faq-item) {
  background-size: 560px 560px;
  background-blend-mode: soft-light;
}

.homepage-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  height: 3px;
  overflow: visible;
  pointer-events: none;
  background-color: rgba(250, 250, 250, 0.2);
}

.homepage-progress__bar {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #3d817f;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.homepage-progress__bar::after {
  position: absolute;
  top: 50%;
  right: -0.28rem;
  width: 0.58rem;
  aspect-ratio: 1;
  content: "";
  background-color: #d6a44a;
  border: 2px solid #fafafa;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(11, 9, 11, 0.28);
  transform: translateY(-50%);
}

.homepage .home-hero__content {
  position: relative;
  padding-left: clamp(1rem, 2.2vw, 1.8rem);
}

.homepage .home-hero__content::before {
  position: absolute;
  top: 0.4rem;
  bottom: 0.45rem;
  left: 0;
  width: 3px;
  content: "";
  background-color: #d6a44a;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(214, 164, 74, 0.08);
}

.home-page .home-hero__title-accent {
  color: #d6a44a;
  background: linear-gradient(
    105deg,
    #b77d24 0%,
    #d6a44a 24%,
    #f4d88b 46%,
    #d6a44a 68%,
    #b77d24 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-hero-gold-sweep 6s ease-in-out infinite;
  text-shadow: 0 4px 24px rgba(214, 164, 74, 0.22);
}

@keyframes home-hero-gold-sweep {
  0%,
  100% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-hero__title-accent {
    animation: none;
    background-position: 50% 50%;
  }
}

/* Privacy Policy */
.legal-main,
.legal-main * {
  box-sizing: border-box;
}

.legal-page .site-header:not(.is-scrolled) .site-header__logo-link {
  align-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.32rem;
  overflow: visible;
  background-color: rgba(250, 250, 250, 0.96);
  border: 1px solid rgba(250, 250, 250, 0.82);
  border-radius: 50%;
  box-shadow:
    0 8px 20px rgba(2, 19, 20, 0.24),
    0 0 0 4px rgba(214, 164, 74, 0.2);
}

@media (min-width: 841px) {
  .legal-page .site-header:not(.is-scrolled) .site-header__logo--desktop {
    display: block;
    width: 100%;
    transform: none;
  }
}

.legal-hero {
  color: #fafafa;
  background-color: #3d817f;
  background-image:
    linear-gradient(120deg, rgba(9, 40, 41, 0.22), rgba(61, 129, 127, 0.08)),
    url("../media/texture/texture-16.webp");
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  background-size: cover, 320px 320px;
  background-blend-mode: normal, multiply;
}

.legal-hero__inner {
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: calc(var(--header-height) + clamp(3.5rem, 7vw, 6rem)) var(--header-pad-x) clamp(4rem, 7vw, 6rem);
  margin: 0 auto;
  text-align: center;
}

.site-experience .legal-hero .home-section-kicker {
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.15rem);
  color: #fafafa;
}

.site-experience .legal-hero .home-section-kicker::before,
.site-experience .legal-hero .home-section-kicker::after {
  width: clamp(2.75rem, 6vw, 5rem);
  height: 2px;
  content: "";
  background-color: #d6a44a;
  border-radius: 999px;
}

.legal-hero__title {
  padding-bottom: 0.08em;
  margin: 0;
  color: #fafafa;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 3px 16px rgba(2, 19, 20, 0.24);
}

.legal-hero__intro {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: rgba(250, 250, 250, 0.92);
  font: 500 clamp(0.98rem, 1.5vw, 1.12rem)/1.75 "Manrope", sans-serif;
  text-wrap: pretty;
}

.legal-hero__updated {
  margin: 1rem 0 0;
  color: #f1d28e;
  font: 700 0.78rem/1.5 "Manrope", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-policy {
  color: #454044;
  background-color: #f4f9f8;
  background-image: linear-gradient(rgba(244, 249, 248, 0.88), rgba(244, 249, 248, 0.88)), url("../media/texture/texture-8.webp");
  background-repeat: repeat;
  background-position: center top;
  background-size: auto, 680px 680px;
  background-blend-mode: normal, multiply;
}

.legal-policy__inner {
  display: grid;
  grid-template-columns: minmax(14rem, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(100%, calc(var(--header-max-width) + (var(--header-pad-x) * 2)));
  padding: clamp(3.5rem, 7vw, 6rem) var(--header-pad-x) clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
}

.legal-policy__contents {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: "Manrope", sans-serif;
  background-color: rgba(255, 255, 255, 0.68);
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../media/texture/texture-11.webp");
  background-size: auto, 520px 520px;
  border: 1px solid rgba(61, 129, 127, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 16px 36px rgba(26, 52, 52, 0.08);
}

.legal-policy__contents-title {
  margin: 0;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-policy__contents ol {
  display: grid;
  gap: 0.72rem;
  padding-left: 1.35rem;
  margin: 1rem 0 0;
}

.legal-policy__contents li {
  padding-left: 0.2rem;
  color: #3d817f;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.legal-policy__contents a {
  color: #454044;
  text-decoration-color: rgba(61, 129, 127, 0.38);
  text-underline-offset: 0.18em;
}

.legal-policy__contents a:hover,
.legal-policy__contents a:focus-visible {
  color: #285f5e;
  text-decoration-color: currentColor;
}

.legal-policy__content {
  display: grid;
  min-width: 0;
  gap: 1.25rem;
}

.legal-policy__section {
  scroll-margin-top: calc(var(--header-height) + 1.75rem);
  padding: clamp(1.35rem, 3vw, 2.1rem);
  font-family: "Manrope", sans-serif;
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(61, 129, 127, 0.16);
  border-radius: 1.25rem;
}

.legal-policy__section h2 {
  margin: 0 0 0.8rem;
  color: #0b090b;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.legal-policy__section :is(p, li, address) {
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
}

.content-link {
  color: #326f6e;
  font-weight: 700;
  text-decoration-color: rgba(50, 111, 110, 0.42);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.content-link:hover,
.content-link:focus-visible {
  color: #245b5a;
  text-decoration-color: currentColor;
}

.content-link:focus-visible {
  outline: 3px solid rgba(214, 164, 74, 0.48);
  outline-offset: 3px;
}

.legal-policy__section p {
  margin: 0;
}

.legal-policy__section p + p {
  margin-top: 0.85rem;
}

.legal-policy__section ul {
  display: grid;
  gap: 0.48rem;
  padding-left: 1.25rem;
  margin: 0.9rem 0;
}

.legal-policy__section li::marker {
  color: #3d817f;
}

.legal-policy__section a {
  color: #285f5e;
  font-weight: 700;
  text-decoration-color: rgba(40, 95, 94, 0.42);
  text-underline-offset: 0.18em;
}

.legal-policy__section a:hover,
.legal-policy__section a:focus-visible {
  color: #0b090b;
  text-decoration-color: currentColor;
}

.legal-policy__contact {
  color: #fafafa;
  background-color: #3d817f;
  background-image: url("../media/texture/texture-16.webp");
  background-size: 320px 320px;
  background-blend-mode: multiply;
  border-color: rgba(61, 129, 127, 0.28);
}

.legal-policy__contact h2,
.legal-policy__contact a {
  color: #fafafa;
}

.legal-policy__contact address {
  margin-top: 0.9rem;
  font-style: normal;
}

@media (max-width: 840px) {
  .legal-policy__inner {
    grid-template-columns: 1fr;
  }

  .legal-policy__contents {
    position: static;
  }
}

@media (max-width: 480px) {
  .site-footer__bottom-links {
    justify-content: center;
  }

  .legal-hero__inner {
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .legal-policy__contents {
    display: none;
  }

  .legal-policy__section {
    padding: 1.25rem;
  }
}

.home-page .home-hero__scroll-cue {
  position: absolute;
  right: var(--header-pad-x);
  bottom: clamp(1rem, 2.6vw, 1.75rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  color: #fafafa;
  font: 700 0.72rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  background-color: rgba(5, 23, 24, 0.58);
  border: 1px solid rgba(250, 250, 250, 0.36);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(2, 19, 20, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .home-hero__scroll-cue svg {
  width: 1.85rem;
  height: 1.85rem;
  padding: 0.42rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background-color: #3d817f;
  border-radius: 50%;
  animation: homepage-scroll-cue 1.8s ease-in-out infinite;
}

.home-page .home-hero__scroll-cue:hover,
.home-page .home-hero__scroll-cue:focus-visible {
  background-color: rgba(5, 23, 24, 0.82);
  border-color: #d6a44a;
  transform: translateY(-0.15rem);
}

.home-page .home-hero__scroll-cue:focus-visible {
  outline: 3px solid #d6a44a;
  outline-offset: 4px;
}

@keyframes homepage-scroll-cue {
  0%,
  100% {
    transform: translateY(-0.08rem);
  }

  50% {
    transform: translateY(0.16rem);
  }
}

.homepage .trust-strip__item {
  position: relative;
  transition: transform 180ms ease;
}

.homepage .trust-strip__item:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;
  width: 1px;
  content: "";
  background-color: rgba(250, 250, 250, 0.28);
}

.homepage .trust-strip .trust-strip__item.is-revealed:hover {
  transform: translateY(-0.2rem) scale(1.015);
}

.homepage [data-home-section] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.homepage [data-home-section]::before {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2.5rem);
  right: clamp(0.75rem, 3vw, 2.5rem);
  z-index: -1;
  content: attr(data-home-section);
  color: rgba(61, 129, 127, 0.065);
  font: 400 clamp(6rem, 13vw, 12rem)/0.8 "DM Serif Display", serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.homepage [data-home-section]::after {
  position: absolute;
  top: 28%;
  right: clamp(-8rem, -7vw, -4rem);
  z-index: -1;
  width: clamp(13rem, 23vw, 22rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(61, 129, 127, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(1.6rem, 3vw, 3rem) rgba(214, 164, 74, 0.035),
    0 0 0 clamp(3.5rem, 6vw, 6rem) rgba(61, 129, 127, 0.025);
  pointer-events: none;
}

.homepage :is(.why-choose, .spaces-clean)[data-home-section]::before {
  right: auto;
  left: clamp(0.75rem, 3vw, 2.5rem);
}

.homepage :is(.why-choose, .spaces-clean)[data-home-section]::after {
  right: auto;
  left: clamp(-8rem, -7vw, -4rem);
}

.homepage [data-home-section] > * {
  position: relative;
  z-index: 1;
}

.homepage .home-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 clamp(0.65rem, 1.4vw, 0.95rem);
  color: #326f6e;
  font: 700 clamp(0.7rem, 1vw, 0.82rem)/1.3 "Manrope", sans-serif;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.homepage .home-section-kicker::before {
  width: clamp(1.7rem, 3vw, 2.6rem);
  height: 2px;
  content: "";
  background-color: #d6a44a;
  border-radius: 999px;
}

.homepage .home-about:not(.home-cta) .home-section-kicker,
.homepage .home-cta .home-section-kicker {
  justify-content: flex-start;
  text-align: left;
}

.homepage :is(.cleaning-services__intro, .why-choose__intro, .spaces-clean__intro, .areas-served__intro) {
  margin-top: -0.15rem;
}

.has-reveal-motion .homepage .home-section-kicker[data-reveal-item] {
  filter: blur(3px);
  transform: translateY(0.55rem);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.has-reveal-motion .homepage .home-section-kicker[data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.homepage .cleaning-services__grid {
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.homepage .cleaning-services .cleaning-service-card {
  position: relative;
  clip-path: none;
  border-radius: 1.75rem;
  box-shadow:
    0 22px 54px rgba(26, 52, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.has-reveal-motion .homepage .cleaning-services .cleaning-service-card[data-reveal-item],
.has-reveal-motion .homepage .cleaning-services .cleaning-service-card[data-reveal-item].is-revealed {
  clip-path: none;
}

.homepage .cleaning-services .cleaning-service-card::before {
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  z-index: 3;
  height: 4px;
  content: "";
  background-color: #3d817f;
  border-radius: 0 0 999px 999px;
}

.homepage .cleaning-services .cleaning-service-card:nth-child(2)::before {
  background-color: #d6a44a;
}

.homepage .cleaning-services .cleaning-service-card__media {
  border-radius: 1.25rem;
}

.homepage .cleaning-services .cleaning-service-card__image {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.homepage .cleaning-services .cleaning-service-card:hover .cleaning-service-card__image,
.homepage .cleaning-services .cleaning-service-card:focus-within .cleaning-service-card__image {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.045);
}

.homepage .cleaning-services .cleaning-service-card__body {
  position: relative;
}

.homepage .cleaning-services .cleaning-service-card__body::before {
  position: absolute;
  top: clamp(1.2rem, 2.4vw, 1.75rem);
  right: clamp(1.2rem, 2.4vw, 1.75rem);
  content: "01";
  color: rgba(61, 129, 127, 0.22);
  font: 400 clamp(2.4rem, 4vw, 3.8rem)/1 "DM Serif Display", serif;
}

.homepage .cleaning-services .cleaning-service-card:nth-child(2) .cleaning-service-card__body::before {
  content: "02";
  color: rgba(214, 164, 74, 0.28);
}

.homepage .cleaning-services .cleaning-service-card__title {
  position: relative;
  z-index: 1;
  max-width: 78%;
}

:is(.homepage, .contact-page) .cleaning-services .cleaning-service-card__cta::after {
  margin-left: 0.55rem;
  content: "\2197";
  font-size: 1rem;
}

:is(.homepage, .contact-page) .cleaning-services .cleaning-service-card__cta--secondary {
  color: #326f6e;
  text-shadow: none;
  background-color: rgba(250, 250, 250, 0.72);
  border: 1px solid rgba(61, 129, 127, 0.45);
  box-shadow: none;
}

:is(.homepage, .contact-page) .cleaning-services .cleaning-service-card__cta--secondary:hover,
:is(.homepage, .contact-page) .cleaning-services .cleaning-service-card__cta--secondary:focus-visible {
  color: #fafafa;
  background-color: #3d817f;
  box-shadow: 0 10px 24px rgba(26, 52, 52, 0.18);
}

:is(.homepage, .contact-page) .cleaning-services .cleaning-service-card__cta--quote::after {
  content: "\2192";
}

.homepage .why-choose__grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.homepage .why-choose__reason {
  position: relative;
  min-height: 100%;
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  overflow: hidden;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 420px;
  border: 1px solid rgba(61, 129, 127, 0.2);
  border-top: 4px solid #3d817f;
  border-radius: 1.25rem;
  box-shadow: 0 16px 38px rgba(26, 52, 52, 0.09);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.homepage .why-choose__reason:nth-child(even) {
  border-top-color: #d6a44a;
}

.homepage .why-choose .why-choose__reason.is-revealed:hover {
  border-color: rgba(61, 129, 127, 0.38);
  box-shadow: 0 22px 46px rgba(26, 52, 52, 0.14);
  transform: translateY(-0.35rem) scale(1.012);
}

.homepage .why-choose__icon {
  width: clamp(3.6rem, 5vw, 4.35rem);
  height: clamp(3.6rem, 5vw, 4.35rem);
  padding: 0.82rem;
  background-color: rgba(61, 129, 127, 0.09);
  border: 1px solid rgba(61, 129, 127, 0.22);
  border-radius: 50%;
}

.homepage .why-choose__reason:nth-child(even) .why-choose__icon {
  color: #b27c2d;
  background-color: rgba(214, 164, 74, 0.1);
  border-color: rgba(214, 164, 74, 0.28);
}

.homepage .home-about:not(.home-cta) .home-about__copy {
  padding-left: clamp(1.25rem, 2.4vw, 2rem);
  border-left: 3px solid #3d817f;
}

.homepage .home-about:not(.home-cta) .home-about__media {
  position: relative;
  isolation: isolate;
}

.homepage .home-about:not(.home-cta) .home-about__media::before {
  position: absolute;
  inset: 18% 8% 10% 18%;
  z-index: -1;
  content: "";
  background-color: rgba(214, 164, 74, 0.28);
  border-radius: 1.75rem;
  transform: translate(0.8rem, 0.8rem) rotate(2deg);
}

.homepage .home-about:not(.home-cta) .home-about__media::after {
  content: none;
}

.homepage .home-about:not(.home-cta) .home-about__image {
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 48px rgba(26, 52, 52, 0.17);
  transform: rotate(-1deg);
}

.homepage .home-about:not(.home-cta) .home-about__image:hover {
  transform: rotate(0) scale(1.025);
}

.homepage .process-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(135, 77, 33, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 40px rgba(135, 77, 33, 0.13);
}

.homepage .process-strip__step {
  position: relative;
}

.homepage .process-strip__step:not(:last-of-type)::after {
  position: absolute;
  top: 1.25rem;
  left: calc(50% + 1.75rem);
  width: calc(100% - 3.5rem);
  height: 1px;
  content: "";
  background-color: rgba(250, 250, 250, 0.3);
}

.homepage .process-strip__number {
  outline: 1px solid rgba(250, 250, 250, 0.42);
  outline-offset: 0.24rem;
  transition: transform 220ms ease, background-color 220ms ease;
}

.homepage .process-strip__step:hover .process-strip__number {
  background-color: #6f3e1d;
  transform: rotate(7deg) scale(1.06);
}

.homepage .home-faq__intro {
  max-width: 48rem;
  margin: -0.15rem auto 0;
  color: #454044;
  font: 500 clamp(1rem, 1.3vw, 1.1rem)/1.75 "Manrope", sans-serif;
  text-align: center;
  text-wrap: pretty;
}

.homepage .spaces-clean-card {
  position: relative;
  border-top: 5px solid #d6a44a;
  border-radius: 1.75rem;
  box-shadow:
    0 22px 52px rgba(26, 52, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.homepage .spaces-clean-card:nth-child(2) {
  border-top-color: #3d817f;
}

.homepage .spaces-clean-card::after {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  content: "HOME";
  color: rgba(214, 164, 74, 0.09);
  font: 400 clamp(3.2rem, 7vw, 6.5rem)/1 "DM Serif Display", serif;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.homepage .spaces-clean-card:nth-child(2)::after {
  content: "WORK";
  color: rgba(61, 129, 127, 0.09);
}

.homepage .spaces-clean-card__body {
  position: relative;
  z-index: 1;
}

.homepage .spaces-clean-card__icon {
  box-sizing: border-box;
  width: clamp(4rem, 5.5vw, 4.75rem);
  height: clamp(4rem, 5.5vw, 4.75rem);
  padding: 0.72rem;
  background-color: rgba(214, 164, 74, 0.1);
  border: 1px solid rgba(214, 164, 74, 0.28);
  border-radius: 1.1rem;
}

.homepage .spaces-clean-card:nth-child(2) .spaces-clean-card__icon {
  color: #3d817f;
  background-color: rgba(61, 129, 127, 0.09);
  border-color: rgba(61, 129, 127, 0.24);
}

:is(.homepage, .site-experience) .areas-served__list {
  gap: clamp(2rem, 4vw, 3rem);
}

:is(.homepage, .site-experience) .areas-served__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow:
    0 22px 52px rgba(26, 52, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.has-reveal-motion :is(.homepage, .site-experience) .areas-served__card[data-reveal-item].is-revealed {
  clip-path: none;
}

:is(.homepage, .site-experience) .areas-served__card::before {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  content: "01";
  color: rgba(61, 129, 127, 0.18);
  font: 400 clamp(2.2rem, 4vw, 3.5rem)/1 "DM Serif Display", serif;
}

:is(.homepage, .site-experience) .areas-served__card:nth-child(2)::before {
  right: 1.25rem;
  left: auto;
  content: "02";
  color: rgba(214, 164, 74, 0.24);
}

:is(.homepage, .site-experience) .areas-served__card:nth-child(even) {
  grid-template-columns: minmax(16rem, 23rem) minmax(0, 1fr);
}

:is(.homepage, .site-experience) .areas-served__card:nth-child(even) .areas-served__content {
  grid-row: 1;
  grid-column: 2;
}

:is(.homepage, .site-experience) .areas-served__card:nth-child(even) .areas-served__media {
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
}

:is(.homepage, .site-experience) .areas-served .areas-served__card.is-revealed:hover {
  border-color: rgba(61, 129, 127, 0.42);
  box-shadow: 0 28px 62px rgba(26, 52, 52, 0.17);
  transform: translateY(-0.3rem) scale(1.006);
}

:is(.homepage, .site-experience) .areas-served__media {
  box-shadow: 0.7rem 0.7rem 0 rgba(214, 164, 74, 0.22);
}

:is(.homepage, .site-experience) .areas-served__card:nth-child(even) .areas-served__media {
  box-shadow: -0.7rem 0.7rem 0 rgba(61, 129, 127, 0.2);
}

:is(.homepage, .site-experience) .areas-served__image {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

:is(.homepage, .site-experience) .areas-served__card:hover .areas-served__image {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.045);
}

.homepage .home-cta {
  padding: clamp(3rem, 6vw, 5rem) var(--header-pad-x);
}

.homepage .home-cta::before {
  color: rgba(214, 164, 74, 0.12);
}

.homepage .home-cta .home-about__inner {
  width: min(100%, var(--header-max-width));
  overflow: hidden;
  color: #fafafa;
  background-color: #326f6e;
  background-image: url("../media/texture/texture-16.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 520px 520px;
  background-blend-mode: multiply;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 2rem;
  box-shadow: 0 28px 70px rgba(26, 52, 52, 0.22);
}

.homepage .home-cta .home-about__media {
  padding: 0.9rem;
}

.homepage .home-cta .home-about__image {
  height: 100%;
  min-height: 29rem;
  border-radius: 1.35rem;
  box-shadow: 0 18px 42px rgba(2, 19, 20, 0.24);
}

.homepage .home-cta .home-about__title,
.homepage .home-cta .home-about__text {
  color: #fafafa;
  text-shadow: 0 2px 5px rgba(2, 19, 20, 0.3);
}

.homepage .home-cta .home-section-kicker {
  color: #f0c773;
}

.homepage .home-cta .home-section-kicker::before {
  background-color: #fafafa;
}

@media (max-width: 840px) {
  .home-page .home-hero__scroll-cue {
    display: none;
  }

  .homepage [data-home-section]::before {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .homepage [data-home-section]::after {
    opacity: 0.65;
  }

  .homepage .home-about:not(.home-cta) .home-about__copy {
    padding-top: 1.25rem;
    padding-left: 0;
    border-top: 3px solid #3d817f;
    border-left: 0;
  }

  .homepage .home-about:not(.home-cta) .home-section-kicker,
  .homepage .home-cta .home-section-kicker {
    justify-content: center;
    text-align: center;
  }

  :is(.homepage, .site-experience) .areas-served__card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  :is(.homepage, .site-experience) .areas-served__card:nth-child(even) .areas-served__content {
    grid-row: 1;
    grid-column: 1;
  }

  :is(.homepage, .site-experience) .areas-served__card:nth-child(even) .areas-served__media {
    grid-row: 2;
    grid-column: 1;
    justify-self: center;
  }

  .homepage .home-cta .home-about__media {
    display: flex;
    order: -1;
    padding: 0.75rem;
  }

  .homepage .home-cta .home-about__image {
    min-height: 0;
    height: clamp(15rem, 52vw, 23rem);
  }
}

@media (max-width: 760px) {
  .has-reveal-motion main section:not(.home-hero) [data-reveal-item],
  .has-reveal-motion .site-footer [data-reveal-item] {
    transition-delay: 40ms !important;
  }

  .homepage-progress {
    height: 2px;
  }

  .homepage [data-home-section]::after {
    display: none;
  }

  .homepage .home-section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .homepage .cleaning-services .cleaning-service-card__body::before {
    font-size: 2.6rem;
  }

  .homepage .process-strip__step:not(:last-child)::after {
    display: none;
  }

  :is(.homepage, .contact-page) .cleaning-service-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  :is(.homepage, .contact-page) .cleaning-service-card__actions .cleaning-service-card__cta {
    width: 100%;
  }

  .homepage .spaces-clean-card__body {
    align-items: center;
  }

  .homepage .spaces-clean-card__title {
    width: 100%;
    text-align: center;
  }

  .homepage .spaces-clean-card .cleaning-service-card__highlights {
    text-align: left;
  }

  .homepage .home-cta {
    padding: 2.75rem var(--header-pad-x);
  }

  .homepage .home-cta .home-about__inner {
    border-radius: 1.4rem;
  }
}

@media (max-width: 600px) {
  .homepage .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .homepage .why-choose__reason {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .homepage .home-hero__content {
    padding-left: 0.8rem;
  }

  .homepage .home-hero__content::before {
    width: 2px;
    box-shadow: 0 0 0 4px rgba(214, 164, 74, 0.07);
  }

  .homepage .trust-strip__item:not(:last-child)::after {
    top: 18%;
    bottom: 18%;
  }

  .homepage .site-header__cta {
    min-height: 2.45rem;
    padding: 0.62rem 0.7rem;
    font-size: 0.68rem;
  }

  .homepage [data-home-section]::before {
    top: 1rem;
    font-size: 4.5rem;
  }

  .homepage .spaces-clean-card::after {
    font-size: 3.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-hero__scroll-cue svg {
    animation: none;
  }

  .homepage :is(.why-choose__reason, .process-strip__number, .areas-served__card, .cleaning-service-card__image, .areas-served__image) {
    transition: none !important;
  }

  .homepage :is(.why-choose__reason, .areas-served__card):hover,
  .homepage .process-strip__step:hover .process-strip__number,
  .homepage .cleaning-services .cleaning-service-card:hover .cleaning-service-card__image,
  .homepage .areas-served__card:hover .areas-served__image {
    filter: none;
    transform: none;
  }

  .request-quote-page {
    animation: none;
  }

  .site-header,
  .site-header::before,
  .site-header *,
  .site-header *::before,
  .site-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .home-hero__cta,
  .home-hero__cta:hover,
  .home-hero__cta:focus-visible,
  .home-hero__cta:active {
    transform: none;
    transition-duration: 0.01ms !important;
  }

  .has-reveal-motion [data-reveal-item] {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .cleaning-service-card__tick {
    animation: none;
    background-position: 50% center;
  }

  .cleaning-service-card__cta,
  .cleaning-service-card__cta:hover,
  .cleaning-service-card__cta:focus-visible,
  .cleaning-service-card__cta:active {
    transform: none;
  }

  .home-about__image,
  .home-about__image:hover {
    transform: none;
    transition: none;
  }

  .areas-served__media,
  .areas-served__media:hover {
    transform: none;
    transition: none;
  }

  .contact-details__contact-link,
  .contact-details__contact-link:hover,
  .contact-details__contact-link:focus-visible {
    transform: none;
    transition: none;
  }

  .residential-faq-item,
  .residential-faq-item__question,
  .residential-faq-item__answer,
  .residential-faq-item__icon::before,
  .residential-faq-item__icon::after {
    transition: none !important;
  }

}

/* Shared interior-page experience */
.site-experience :is(.cleaning-services, .home-about, .spaces-clean, .areas-served, .residential-faq) {
  background-size: 860px 860px;
  background-blend-mode: soft-light;
}

.site-experience :is(.cleaning-service-card, .spaces-clean-card, .areas-served__card, .residential-faq-item, .contact-details__panel) {
  background-size: 560px 560px;
  background-blend-mode: soft-light;
}

.site-experience .home-hero__content {
  position: relative;
  padding-left: clamp(1rem, 2.2vw, 1.8rem);
}

.site-experience .home-hero__content::before {
  position: absolute;
  top: 0.4rem;
  bottom: 0.45rem;
  left: 0;
  width: 3px;
  content: "";
  background-color: #d6a44a;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(214, 164, 74, 0.08);
}

.site-experience .trust-strip__item {
  position: relative;
  transition: transform 180ms ease;
}

.site-experience .trust-strip__item:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;
  width: 1px;
  content: "";
  background-color: rgba(250, 250, 250, 0.28);
}

.site-experience .trust-strip .trust-strip__item.is-revealed:hover {
  transform: translateY(-0.2rem) scale(1.015);
}

.site-experience [data-page-section] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-experience [data-page-section]::before {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2.5rem);
  right: clamp(0.75rem, 3vw, 2.5rem);
  z-index: -1;
  content: attr(data-page-section);
  color: rgba(61, 129, 127, 0.065);
  font: 400 clamp(6rem, 13vw, 12rem)/0.8 "DM Serif Display", serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.site-experience [data-page-section]::after {
  position: absolute;
  top: 28%;
  right: clamp(-8rem, -7vw, -4rem);
  z-index: -1;
  width: clamp(13rem, 23vw, 22rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(61, 129, 127, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(1.6rem, 3vw, 3rem) rgba(214, 164, 74, 0.03),
    0 0 0 clamp(3.5rem, 6vw, 6rem) rgba(61, 129, 127, 0.02);
  pointer-events: none;
}

.site-experience [data-page-section]:is([data-page-section="02"], [data-page-section="04"], [data-page-section="06"])::before {
  right: auto;
  left: clamp(0.75rem, 3vw, 2.5rem);
}

.site-experience [data-page-section]:is([data-page-section="02"], [data-page-section="04"], [data-page-section="06"])::after {
  right: auto;
  left: clamp(-8rem, -7vw, -4rem);
}

.site-experience [data-page-section] > * {
  position: relative;
  z-index: 1;
}

.site-experience .home-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 clamp(0.6rem, 1.2vw, 0.85rem);
  color: #326f6e;
  font: 700 clamp(0.7rem, 1vw, 0.82rem)/1.3 "Manrope", sans-serif;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.site-experience .home-section-kicker::before {
  width: clamp(1.7rem, 3vw, 2.6rem);
  height: 2px;
  content: "";
  background-color: #d6a44a;
  border-radius: 999px;
}

.site-experience .home-about .home-section-kicker {
  justify-content: flex-start;
  text-align: left;
}

.has-reveal-motion .site-experience .home-section-kicker[data-reveal-item] {
  filter: blur(3px);
  transform: translateY(0.55rem);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.has-reveal-motion .site-experience .home-section-kicker[data-reveal-item].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.site-experience :is(.residential-included__intro, .residential-places__intro, .areas-served__intro, .cleaning-services__intro, .home-faq__intro) {
  margin-top: -0.1rem;
}

.site-experience .home-about:not(.home-cta) .home-about__copy {
  padding-left: clamp(1.25rem, 2.4vw, 2rem);
  border-left: 3px solid #3d817f;
}

.site-experience .home-about:not(.home-cta) .home-about__media {
  position: relative;
  isolation: isolate;
}

.site-experience .home-about:not(.home-cta) .home-about__media::before {
  position: absolute;
  inset: 18% 8% 10% 18%;
  z-index: -1;
  content: "";
  background-color: rgba(214, 164, 74, 0.25);
  border-radius: 1.75rem;
  transform: translate(0.8rem, 0.8rem) rotate(2deg);
}

.site-experience .home-about:not(.home-cta) .home-about__media::after {
  content: none;
}

.site-experience .home-about:not(.home-cta) .home-about__image {
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 48px rgba(26, 52, 52, 0.17);
  transform: rotate(-1deg);
}

.site-experience .home-about:not(.home-cta) .home-about__image:hover {
  transform: rotate(0) scale(1.025);
}

.about-page :is(#who-we-are, #our-story) .about-video-media {
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem);
}

.about-page :is(#who-we-are, #our-story) .about-video-media::before {
  content: none;
}

.about-video-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  padding: 0.65rem;
  isolation: isolate;
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 560px 560px;
  background-blend-mode: soft-light;
  border: 1px solid rgba(61, 129, 127, 0.2);
  border-radius: 1.75rem;
  box-shadow: 0 24px 55px rgba(26, 52, 52, 0.16);
}

.about-video-frame::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  content: "";
  background-color: rgba(214, 164, 74, 0.22);
  border: 1px solid rgba(214, 164, 74, 0.26);
  border-radius: 1.7rem;
}

.about-video-media--story .about-video-frame::before {
  inset: 1rem 1rem -1rem -1rem;
  background-color: rgba(61, 129, 127, 0.13);
  border-color: rgba(61, 129, 127, 0.2);
}

.about-page :is(#who-we-are, #our-story) .about-video-frame .home-about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: none;
  transform: none;
}

.about-page #who-we-are .about-video-frame .home-about__image {
  object-position: 68% center;
}

.about-page #our-story .about-video-frame .home-about__image {
  object-position: center;
}

.about-page :is(#who-we-are, #our-story) .about-video-frame .home-about__image:hover {
  transform: scale(1.015);
}

.site-experience .process-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(135, 77, 33, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 40px rgba(135, 77, 33, 0.13);
}

.site-experience .process-strip__step {
  position: relative;
}

.site-experience .process-strip__step:not(:last-of-type)::after {
  position: absolute;
  top: 1.25rem;
  left: calc(50% + 1.75rem);
  width: calc(100% - 3.5rem);
  height: 1px;
  content: "";
  background-color: rgba(250, 250, 250, 0.3);
}

.site-experience .process-strip__number,
.site-experience .process-strip__icon {
  outline: 1px solid rgba(250, 250, 250, 0.42);
  outline-offset: 0.24rem;
  transition: transform 220ms ease, background-color 220ms ease;
}

.site-experience .process-strip__step:hover :is(.process-strip__number, .process-strip__icon) {
  transform: rotate(7deg) scale(1.06);
}

.site-experience .spaces-clean-card {
  position: relative;
  overflow: hidden;
  border-top: 5px solid #3d817f;
  border-radius: 1.6rem;
  box-shadow:
    0 20px 48px rgba(26, 52, 52, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-experience .spaces-clean-card:nth-child(even) {
  border-top-color: #d6a44a;
}

.site-experience .spaces-clean-card.is-revealed:hover,
.site-experience .spaces-clean-card.is-revealed:focus-within {
  border-color: rgba(61, 129, 127, 0.4);
  box-shadow: 0 26px 58px rgba(26, 52, 52, 0.16);
  transform: translateY(-0.35rem) scale(1.012);
}

.site-experience .spaces-clean-card__icon {
  box-sizing: border-box;
  padding: 0.68rem;
  background-color: rgba(61, 129, 127, 0.08);
  border: 1px solid rgba(61, 129, 127, 0.22);
  border-radius: 1rem;
}

.site-experience .spaces-clean-card:nth-child(even) .spaces-clean-card__icon {
  background-color: rgba(214, 164, 74, 0.09);
  border-color: rgba(214, 164, 74, 0.26);
}

.site-experience .areas-served__list {
  gap: clamp(2rem, 4vw, 3rem);
}

.site-experience .areas-served__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow:
    0 22px 52px rgba(26, 52, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-experience .areas-served__card::before {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  content: "01";
  color: rgba(61, 129, 127, 0.18);
  font: 400 clamp(2.2rem, 4vw, 3.5rem)/1 "DM Serif Display", serif;
}

.site-experience .areas-served__card:nth-child(2)::before {
  right: 1.25rem;
  left: auto;
  content: "02";
  color: rgba(214, 164, 74, 0.24);
}

.site-experience .areas-served .areas-served__card.is-revealed:hover {
  border-color: rgba(61, 129, 127, 0.42);
  box-shadow: 0 28px 62px rgba(26, 52, 52, 0.17);
  transform: translateY(-0.3rem) scale(1.006);
}

.site-experience .areas-served__media {
  box-shadow: 0.7rem 0.7rem 0 rgba(214, 164, 74, 0.2);
}

.site-experience .areas-served__card:nth-child(even) .areas-served__media {
  box-shadow: -0.7rem 0.7rem 0 rgba(61, 129, 127, 0.18);
}

.site-experience .areas-served__image {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.site-experience .areas-served__card:hover .areas-served__image {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.045);
}

.site-experience .residential-faq-item {
  border-radius: 1.25rem;
  box-shadow: 0 14px 34px rgba(26, 52, 52, 0.08);
}

.site-experience .home-faq__intro {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
  color: #454044;
  font: 500 clamp(1rem, 1.3vw, 1.1rem)/1.75 "Manrope", sans-serif;
  text-align: center;
  text-wrap: pretty;
}

.site-experience .home-cta {
  padding: clamp(3rem, 6vw, 5rem) var(--header-pad-x);
}

.site-experience .home-cta .home-about__inner {
  width: min(100%, var(--header-max-width));
  overflow: hidden;
  color: #fafafa;
  background-color: #326f6e;
  background-image: url("../media/texture/texture-16.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 520px 520px;
  background-blend-mode: multiply;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 2rem;
  box-shadow: 0 28px 70px rgba(26, 52, 52, 0.22);
}

.site-experience .home-cta .home-about__media {
  padding: 0.9rem;
}

.site-experience .home-cta .home-about__image {
  height: 100%;
  min-height: 29rem;
  border-radius: 1.35rem;
  box-shadow: 0 18px 42px rgba(2, 19, 20, 0.24);
}

.site-experience .home-cta :is(.home-about__title, .home-about__text) {
  color: #fafafa;
  text-shadow: 0 2px 5px rgba(2, 19, 20, 0.3);
}

.site-experience .home-cta .home-section-kicker {
  color: #f0c773;
}

.site-experience .home-cta .home-section-kicker::before {
  background-color: #fafafa;
}

.contact-page .cleaning-services .cleaning-service-card {
  position: relative;
  clip-path: none;
  border-radius: 1.75rem;
  box-shadow:
    0 22px 54px rgba(26, 52, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-page .cleaning-services .cleaning-service-card::before {
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  z-index: 3;
  height: 4px;
  content: "";
  background-color: #3d817f;
  border-radius: 0 0 999px 999px;
}

.contact-page .cleaning-services .cleaning-service-card:nth-child(2)::before {
  background-color: #d6a44a;
}

.contact-page .contact-details__panel {
  border-top: 5px solid #3d817f;
  border-radius: 1.5rem;
  box-shadow: 0 22px 52px rgba(26, 52, 52, 0.12);
}

.contact-page .contact-details__contact-link {
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(26, 52, 52, 0.08);
}

/* Request a Quote conversion page */
.request-quote-page {
  background-image:
    radial-gradient(circle at 10% 16%, rgba(214, 164, 74, 0.78) 0, rgba(214, 164, 74, 0) 31%),
    radial-gradient(circle at 90% 84%, rgba(214, 164, 74, 0.48) 0, rgba(214, 164, 74, 0) 28%),
    linear-gradient(125deg, #326f6e 8%, #3d817f 52%, #bc8431 100%);
  background-size: 170% 170%, 185% 185%, 230% 230%;
  background-blend-mode: normal, normal, normal;
}

.request-quote-main {
  align-items: start;
  padding-top: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: clamp(1.25rem, 4vw, 3rem);
}

.request-quote-page .request-quote-card {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.45fr);
  width: min(100%, 78rem);
  padding: 0;
  overflow: hidden;
  border-color: rgba(250, 250, 250, 0.28);
  border-radius: 2rem;
  box-shadow: 0 34px 88px rgba(2, 19, 20, 0.28);
  animation: request-quote-card-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.request-quote-card__lead {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  overflow: hidden;
  color: #fafafa;
  background-color: #326f6e;
  background-image: url("../media/texture/texture-16.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 520px 520px;
  background-blend-mode: multiply;
}

.request-quote-card__lead::after {
  position: absolute;
  right: -7rem;
  bottom: -6rem;
  width: 16rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem rgba(214, 164, 74, 0.06),
    0 0 0 5rem rgba(250, 250, 250, 0.025);
}

.request-quote-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: #fafafa;
  font: 700 0.86rem/1.35 "Manrope", sans-serif;
  text-decoration: none;
}

.request-quote-brand img {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.34rem;
  object-fit: contain;
  background-color: rgba(250, 250, 250, 0.96);
  border: 1px solid rgba(250, 250, 250, 0.82);
  border-radius: 50%;
  box-shadow:
    0 8px 20px rgba(2, 19, 20, 0.24),
    0 0 0 4px rgba(214, 164, 74, 0.2);
}

.request-quote-page .request-quote-card__header {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: clamp(3rem, 8vh, 6rem) 0 0;
  text-align: left;
}

.request-quote-card__kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  color: #f0c773;
  font: 700 0.72rem/1.35 "Manrope", sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.request-quote-card__kicker::before {
  width: 2rem;
  height: 2px;
  content: "";
  background-color: #fafafa;
  border-radius: 999px;
}

.request-quote-page .request-quote-card__title,
.request-quote-page .request-quote-card__intro {
  color: #fafafa;
  text-shadow: 0 2px 5px rgba(2, 19, 20, 0.28);
}

.request-quote-page .request-quote-card__title {
  font-size: clamp(3rem, 5vw, 5rem);
}

.request-quote-card__points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  list-style: none;
  font: 600 0.9rem/1.55 "Manrope", sans-serif;
}

.request-quote-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.request-quote-card__points span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.45rem;
  aspect-ratio: 1;
  color: #173334;
  background-color: #d6a44a;
  border-radius: 50%;
  place-items: center;
}

.request-quote-card__back {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  padding-top: 2.5rem;
  color: #fafafa;
  font: 700 0.82rem/1.4 "Manrope", sans-serif;
  text-underline-offset: 0.25rem;
}

.request-quote-page .request-quote-form {
  align-content: start;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background-color: #f1f6f5;
  background-image: url("../media/texture/texture-11.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 520px 520px;
  background-blend-mode: soft-light;
}

.request-quote-page .request-quote-form__submit {
  min-width: min(100%, 15rem);
  box-shadow: 0 12px 30px rgba(135, 77, 33, 0.24);
}

@keyframes request-quote-card-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(1.25rem) scale(0.99);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 840px) {
  .site-experience .site-header__inner {
    grid-template-columns: minmax(2.75rem, 1fr) auto auto;
    gap: 0.55rem;
  }

  .site-experience .site-header__cta {
    display: inline-flex;
    min-height: 2.6rem;
    padding: 0.7rem 0.85rem;
    font-size: clamp(0.7rem, 2.8vw, 0.82rem);
    white-space: nowrap;
  }

  .site-experience [data-page-section]::before {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .site-experience [data-page-section]::after {
    opacity: 0.65;
  }

  .site-experience .home-about:not(.home-cta) .home-about__copy {
    padding-top: 1.25rem;
    padding-left: 0;
    border-top: 3px solid #3d817f;
    border-left: 0;
  }

  .site-experience .home-about .home-section-kicker {
    justify-content: center;
    text-align: center;
  }

  .site-experience .home-cta .home-about__media {
    display: flex;
    order: -1;
    padding: 0.75rem;
  }

  .site-experience .home-cta .home-about__image {
    min-height: 0;
    height: clamp(15rem, 52vw, 23rem);
  }

  .request-quote-page .request-quote-card {
    grid-template-columns: 1fr;
    border-radius: 1.5rem;
  }

  .request-quote-page .request-quote-card__header {
    margin-top: 2.5rem;
  }

  .request-quote-card__back {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-experience .process-strip__step:not(:last-of-type)::after {
    display: none;
  }

  .site-experience [data-page-section]::after {
    display: none;
  }

  .request-quote-main {
    padding: 0.75rem;
  }

  .request-quote-card__lead,
  .request-quote-page .request-quote-form {
    padding: 1.4rem;
  }

  .request-quote-page .request-quote-card__title {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }
}

@media (max-width: 480px) {
  .site-experience .site-header__cta {
    min-height: 2.45rem;
    padding: 0.62rem 0.7rem;
    font-size: 0.68rem;
  }

  .site-experience .home-hero__content {
    padding-left: 0.8rem;
  }

  .site-experience .home-hero__content::before {
    width: 2px;
    box-shadow: 0 0 0 4px rgba(214, 164, 74, 0.07);
  }

  .site-experience [data-page-section]::before {
    top: 1rem;
    font-size: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-experience :is(.trust-strip__item, .spaces-clean-card, .areas-served__card, .areas-served__image, .home-about__image),
  .request-quote-page .request-quote-card {
    animation: none !important;
    transition: none !important;
  }

  .site-experience :is(.trust-strip__item, .spaces-clean-card, .areas-served__card, .areas-served__image, .home-about__image):hover {
    filter: none;
    transform: none;
  }
}

/* Runtime performance safeguards */
.has-reveal-motion [data-reveal-item] {
  will-change: auto !important;
}

.has-managed-continuous-motion .home-page .home-hero__title-accent,
.has-managed-continuous-motion .home-page .home-hero__scroll-cue svg,
.has-managed-continuous-motion .cleaning-service-card__tick {
  animation-play-state: paused;
}

.has-managed-continuous-motion .home-hero.is-motion-active .home-hero__title-accent,
.has-managed-continuous-motion .home-hero.is-motion-active .home-hero__scroll-cue svg,
.has-managed-continuous-motion :is(.cleaning-services, .spaces-clean).is-motion-active .cleaning-service-card__tick {
  animation-play-state: running;
}

@media (max-width: 840px) {
  .site-header.is-scrolled {
    background-color: rgba(2, 7, 19, 0.88);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__mobile-menu,
  .home-hero__cta--secondary {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .request-quote-page {
    background-attachment: scroll;
    animation: none;
  }
}

@supports (overflow: clip) {
  .residential-faq-item__answer {
    overflow: clip;
  }
}

@media (max-width: 760px) {
  .has-reveal-motion [data-reveal-item] {
    clip-path: none !important;
    filter: none !important;
  }

  .residential-faq-item {
    transition: border-color 220ms ease;
  }
}

@media (hover: none) and (pointer: coarse) {
  .residential-faq-item__answer {
    transition: none;
  }
}