:root {
  --teal: #079f9b;
  --teal-dark: #004d49;
  --teal-deep: #003b38;
  --ink: #111b1f;
  --muted: #5f6b70;
  --soft: #f5f8f8;
  --line: rgba(0, 77, 73, .12);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 45, 43, .12);
  --radius: 28px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus { top: 20px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--teal {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(7, 159, 155, .22);
}

.btn--teal:hover {
  background: #078e8a;
}

.btn--glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, .2);
}

.btn--dark {
  color: #fff;
  background: #050908;
}

.btn--small {
  min-height: 34px;
  padding-inline: 20px;
  font-size: 11px;
}

.section-intro {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.section-intro h1,
.section-intro h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.section-intro p {
  font-size: 15px;
  margin-bottom: 0;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header--solid,
.site-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(0, 50, 48, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .14);
  padding: 14px 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  width: 180px;
  flex: 0 0 auto;
}

.site-logo img,
.footer-logo img {
  width: 180px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
  overflow: visible;
}

.site-nav > a,
.nav-dropdown__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #f7ffff;
  line-height: 1;
  cursor: pointer;
}

.site-nav > a::after,
.nav-dropdown__button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%) scale(0);
  transition: transform .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.site-nav > a[aria-current="page"]::after,
.nav-dropdown:hover .nav-dropdown__button::after,
.nav-dropdown:focus-within .nav-dropdown__button::after,
.nav-dropdown.is-active .nav-dropdown__button::after,
.nav-dropdown.is-open .nav-dropdown__button::after {
  transform: translateX(-50%) scale(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-dropdown__button {
  gap: 6px;
}

.nav-dropdown__arrow {
  display: inline-block;
  font-size: 11px;
  transform: translateY(1px);
  transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown:focus-within .nav-dropdown__arrow,
.nav-dropdown.is-open .nav-dropdown__arrow {
  transform: translateY(1px) rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  width: 310px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 55, 52, .98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  color: #f7ffff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  white-space: normal;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(255, 255, 255, .1);
  outline: none;
}
.header-quote {
  margin-left: 24px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  --hero-y: 0px;
  --hero-x: 50%;
  --hero-mouse-y: 42%;
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #021d1c;
}

.hero__image {
  position: absolute;
  inset: -28px;
  z-index: -3;
  background-image: url('../img/backgrounds/hero-carpet-cleaning.webp');
  background-size: cover;
  background-position: center top;
  transform: translate3d(0, var(--hero-y), 0) scale(1.06);
  animation: heroKenBurns 9s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-mouse-y), rgba(7, 159, 155, .26), transparent 24%),
    radial-gradient(circle at 25% 47%, rgba(0, 0, 0, .56) 0 15%, transparent 42%),
    linear-gradient(90deg, rgba(0, 10, 9, .82) 0%, rgba(0, 22, 21, .56) 32%, rgba(0, 0, 0, .28) 68%, rgba(0, 0, 0, .52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 30, 29, .18) 55%, rgba(0, 0, 0, .34));
  pointer-events: none;
}

.hero__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: heroShine 5.8s ease-in-out 1.1s infinite;
  opacity: .55;
}

.hero__sweep {
  position: absolute;
  left: -28%;
  bottom: 0;
  z-index: -1;
  width: 38%;
  height: 64%;
  background: linear-gradient(92deg, transparent 0%, rgba(10, 205, 196, .06) 30%, rgba(255, 255, 255, .30) 50%, rgba(10, 205, 196, .08) 68%, transparent 100%);
  filter: blur(2px);
  transform: skewX(-12deg);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: carpetSweep 4.8s ease-in-out infinite;
}

.hero__steam {
  position: absolute;
  left: clamp(160px, 28vw, 460px);
  bottom: clamp(120px, 19vw, 280px);
  z-index: 0;
  width: 170px;
  height: 140px;
  pointer-events: none;
}

.hero__steam span {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 70px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  filter: blur(6px);
  opacity: 0;
  animation: steamRise 3.2s ease-in-out infinite;
}

.hero__steam span:nth-child(1) { left: 20px; animation-delay: 0s; }
.hero__steam span:nth-child(2) { left: 72px; animation-delay: .75s; height: 92px; }
.hero__steam span:nth-child(3) { left: 126px; animation-delay: 1.45s; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  padding-top: clamp(90px, 12vh, 145px);
  animation: heroContentIn .9s ease-out .25s both;
}

.hero__copy {
  position: relative;
  max-width: 610px;
  margin-left: clamp(0px, 4vw, 58px);
  margin-top: clamp(10px, 4vh, 54px);
  padding: clamp(12px, 2.5vw, 28px) clamp(4px, 2vw, 20px);
}

.hero__copy::before {
  display: none;
}

.hero__copy > * {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .75);
}

.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(7, 159, 155, .8);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .65), 0 20px 48px rgba(0, 0, 0, .9);
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .84), 0 12px 34px rgba(0, 0, 0, .72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}


.hero__primary-btn {
  animation: heroButtonPulse 2.4s ease-in-out infinite;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
}

.hero__features span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
}

.hero__sparkle {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, .55);
  line-height: 1;
  animation: heroFloat 5.5s ease-in-out infinite;
  text-shadow: 0 0 24px rgba(7, 159, 155, .7);
}

.hero__sparkle--one {
  right: 15%;
  top: 29%;
  font-size: 44px;
}

.hero__sparkle--two {
  left: 11%;
  bottom: 18%;
  font-size: 28px;
  animation-delay: -2s;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  position: relative;
}

.hero__scroll span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: heroScrollDot 1.6s ease-in-out infinite;
}

@keyframes heroKenBurns {
  0% { transform: translate3d(-10px, var(--hero-y), 0) scale(1.06); }
  100% { transform: translate3d(16px, var(--hero-y), 0) scale(1.16); }
}

@keyframes carpetSweep {
  0% { transform: translateX(0) skewX(-12deg); opacity: 0; }
  15% { opacity: .18; }
  46% { opacity: .46; }
  78% { opacity: .14; }
  100% { transform: translateX(370%) skewX(-12deg); opacity: 0; }
}

@keyframes steamRise {
  0% { transform: translate3d(0, 24px, 0) scaleX(1); opacity: 0; }
  20% { opacity: .55; }
  55% { transform: translate3d(16px, -42px, 0) scaleX(2.2); opacity: .25; }
  100% { transform: translate3d(36px, -94px, 0) scaleX(3); opacity: 0; }
}

@keyframes heroCardSheen {
  0%, 46% { transform: translateX(-110%); opacity: 0; }
  55% { opacity: .55; }
  72%, 100% { transform: translateX(110%); opacity: 0; }
}

@keyframes heroButtonPulse {
  0%, 100% { box-shadow: 0 12px 25px rgba(7, 159, 155, .28); transform: translateY(0); }
  50% { box-shadow: 0 20px 44px rgba(7, 159, 155, .48); transform: translateY(-2px); }
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroShine {
  0%, 42% { transform: translateX(-120%); }
  66%, 100% { transform: translateX(120%); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .42; }
  50% { transform: translateY(-16px) rotate(10deg); opacity: .82; }
}

@keyframes heroScrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.services-panel {
  position: relative;
  overflow: hidden;
  padding: 78px 0 105px;
  background:
    radial-gradient(circle at 8% 28%, rgba(7, 159, 155, .11) 0 12%, transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(7, 159, 155, .08) 0 10%, transparent 26%),
    linear-gradient(180deg, #f6f8f8 0%, #f7fafa 100%);
}

.services-panel::before,
.services-panel::after {
  content: "✦";
  position: absolute;
  color: rgba(7, 159, 155, .22);
  font-size: 70px;
  line-height: 1;
}

.services-panel::before { left: 7%; top: 30%; }
.services-panel::after { right: 12%; top: 8%; }

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 36px;
  max-width: 970px;
  margin-inline: auto;
}

.service-card {
  --card-tilt: 0deg;
  --card-y: 0px;
  min-height: 300px;
  padding: 42px 34px 34px;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .6);
  transform: rotate(var(--card-tilt)) translateY(var(--card-y));
  transform-origin: 50% 55%;
  transition: transform .34s cubic-bezier(.2,.75,.25,1), box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}

.service-card:nth-child(1) { --card-tilt: -1.9deg; --card-y: 4px; }
.service-card:nth-child(2) { --card-tilt: 1.2deg; --card-y: -2px; }
.service-card:nth-child(3) { --card-tilt: -1.4deg; --card-y: 3px; }
.service-card:nth-child(4) { --card-tilt: 1.7deg; --card-y: 2px; }
.service-card:nth-child(5) { --card-tilt: -1.1deg; --card-y: -1px; }
.service-card:nth-child(6) { --card-tilt: 1.4deg; --card-y: 3px; }

.service-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.012);
  box-shadow: 0 26px 70px rgba(0, 45, 43, .16);
  border-color: rgba(7, 159, 155, .18);
}

.service-card--tilt-left,
.service-card--tilt-right { transform: rotate(var(--card-tilt)) translateY(var(--card-y)); }

.service-card--tilt-left:hover,
.service-card--tilt-right:hover { transform: rotate(0deg) translateY(-6px) scale(1.012); }

.service-card img {
  width: 58px;
  margin: 0 auto 20px;
}

.service-card h2 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.service-card p {
  min-height: 58px;
  max-width: 240px;
  margin: 0 auto 22px;
  font-size: 13px;
  line-height: 1.35;
}

.process-parallax {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 112px 0;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 41, 39, .88), rgba(0, 77, 73, .58)),
    url('../img/backgrounds/footer-carpet-cleaning.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .process-parallax {
    background-attachment: fixed;
  }
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .process-parallax {
    background-attachment: scroll;
  }
}

.process-parallax__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(7, 159, 155, .28), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.24));
}

.process-parallax__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.process-parallax__copy {
  max-width: 520px;
}

.process-parallax__copy .section-kicker {
  color: rgba(255, 255, 255, .82);
}

.process-parallax h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.process-parallax p {
  color: rgba(255, 255, 255, .86);
}

.process-parallax__copy > p:not(.section-kicker) {
  margin-bottom: 28px;
  font-size: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-steps article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.process-steps article:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.process-steps h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}

.process-steps p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45;
}

.why-section {
  padding: 88px 0 95px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 34px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 30px;
}

.why-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
}

.why-item h3 {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.15;
}

.why-item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

.why-item img {
  width: 62px;
}

.why-visual {
  min-height: 330px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .7)),
    url('../img/backgrounds/hero-carpet-cleaning.webp') center / cover;
  box-shadow: inset 0 0 0 1px rgba(7, 159, 155, .08), 0 20px 60px rgba(0, 45, 43, .08);
  position: relative;
  overflow: hidden;
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.55);
}

.bubble,
.sparkle {
  position: absolute;
  z-index: 1;
}

.bubble {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(7, 159, 155, .3);
  border-radius: 50%;
}

.bubble--one { top: 44px; left: 36px; }
.bubble--two { bottom: 36px; right: 30px; width: 48px; height: 48px; }
.sparkle { color: rgba(7, 159, 155, .45); font-size: 36px; }
.sparkle--one { top: 98px; right: 52px; }
.sparkle--two { left: 46px; bottom: 80px; font-size: 24px; }

.home-content-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(7, 159, 155, .11), transparent 28%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

.home-content-section::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 42px solid rgba(7, 159, 155, .07);
}

.home-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 54px;
  align-items: center;
}

.home-content-copy {
  max-width: 680px;
}

.home-content-copy h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.home-content-copy p {
  font-size: 16px;
}

.home-content-card {
  padding: 34px;
  border: 1px solid rgba(7, 159, 155, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-content-card h3 {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 24px;
}

.home-content-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.home-content-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
}

.home-content-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.faq-section {
  padding: 90px 0 110px;
  background: #f4f5f5;
}

.faq-container {
  max-width: 1120px;
}

.faq-list {
  max-width: 950px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: "⌄";
  justify-self: end;
  font-size: 22px;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 14px;
}

.faq-answer {
  padding: 0 22px 20px 70px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 14px;
}

.cta-band {
  background: var(--teal-dark);
  color: #fff;
  padding: 86px 0 96px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 570px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .88);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: url('../img/backgrounds/footer-carpet-cleaning.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 120px 0 34px;
}

/* Footer parallax: the page content moves while the footer image stays fixed. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .site-footer {
    background-attachment: fixed;
  }
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .site-footer {
    background-attachment: scroll;
  }
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.72)), rgba(0, 38, 36, .52);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.3fr;
  gap: 54px;
  align-items: start;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 20px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
}

.footer-col h2 {
  margin-bottom: 20px;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-col a {
  color: rgba(255, 255, 255, .85);
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
}

.footer-contact strong {
  color: #fff;
}

.footer-bottom {
  margin-top: 82px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 12px;
}

.page-hero {
  padding: 155px 0 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 52, 49, .88), rgba(0, 52, 49, .65)),
    url('../img/backgrounds/hero-carpet-cleaning.webp') center / cover;
}

.page-hero__content {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}

.page-hero p {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.page-content {
  padding: 80px 0 90px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 55px;
  align-items: start;
}

.copy-block h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
  margin-bottom: 18px;
}

.copy-block h3 {
  margin-top: 34px;
  font-size: 22px;
}

.copy-block ul {
  padding-left: 20px;
  color: var(--muted);
}

.copy-block li { margin-bottom: 8px; }

.sidebar-card {
  position: sticky;
  top: 105px;
  padding: 30px;
  border-radius: 24px;
  background: var(--soft);
  box-shadow: 0 20px 55px rgba(0, 45, 43, .08);
}

.sidebar-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.sidebar-card p {
  font-size: 14px;
}

.simple-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.simple-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.simple-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
}

.contact-card h3 {
  margin-bottom: 8px;
  color: var(--teal);
}

.contact-card p {
  margin-bottom: 0;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 77, 73, .92);
  box-shadow: 0 16px 36px rgba(0, 45, 43, .24);
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.js .back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.94);
}

.back-to-top span {
  display: block;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.js .back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--teal);
  box-shadow: 0 20px 44px rgba(7, 159, 155, .28);
  transform: translateY(-3px) scale(1.03);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(7, 159, 155, .35);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal.is-visible {
  transform: rotate(var(--card-tilt)) translateY(var(--card-y));
}

.service-card.reveal.is-visible:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.012);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-parallax__inner,
  .home-content-grid { grid-template-columns: 1fr; }
  .process-parallax__copy { max-width: 680px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
	
.equipment-grid {
  grid-template-columns: 1fr;
}	
}

@media (max-width: 820px) {
.header-inner {
  position: relative;
  gap: 14px;
}

.nav-toggle {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
  width: 46px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  background: rgba(0, 77, 73, .78);
  cursor: pointer;
  z-index: 150;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
}

.header-quote {
  display: none;
}

.site-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-left: 0;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 59, 56, .98);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.site-nav.is-open {
  display: flex;
}

.site-nav > a,
.nav-dropdown__button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.site-nav > a[aria-current="page"],
.nav-dropdown.is-active .nav-dropdown__button,
.nav-dropdown.is-open .nav-dropdown__button {
  background: rgba(255,255,255,.08);
}

.site-nav > a::after,
.nav-dropdown__button::after {
  display: none;
}

.nav-dropdown {
  position: static;
  display: block;
  width: 100%;
}

.nav-dropdown__button {
  gap: 8px;
}

.nav-dropdown__menu {
  position: static !important;
  top: auto !important;
  left: auto !important;
  z-index: auto;
  display: none !important;
  flex-direction: column;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 4px 0 8px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  box-shadow: none;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.nav-dropdown__menu::before {
  display: none;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: flex !important;
}

.nav-dropdown__menu a {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
}
	
.equipment-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(7, 159, 155, .12), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(0, 77, 73, .08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
}

.equipment-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 44px solid rgba(7, 159, 155, .07);
}

.equipment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}

.equipment-copy {
  max-width: 680px;
}

.equipment-copy h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.equipment-copy p {
  font-size: 16px;
}

.equipment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.equipment-card {
  padding: 36px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(7, 159, 155, .14);
  box-shadow: var(--shadow);
}

.equipment-card h3 {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 25px;
  line-height: 1.15;
}

.equipment-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-card li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.equipment-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}
	
  .hero { min-height: 640px; }
  .hero__image { background-position: 34% top; }
  .hero__content { padding-top: 92px; max-width: var(--container); }
  .hero__copy { max-width: 560px; margin-left: 0; }
  .hero h1 { font-size: clamp(42px, 11vw, 68px); }
  .hero__lead { max-width: 500px; }
  .services-panel { padding: 62px 0 76px; }
  .service-grid { grid-template-columns: 1fr; max-width: 420px; gap: 24px; }
  .process-parallax { padding: 78px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .home-content-section { padding: 70px 0; }
  .service-card,
  .service-card--tilt-left,
  .service-card--tilt-right,
  .service-card:hover,
  .service-card--tilt-left:hover,
  .service-card--tilt-right:hover { transform: none; }
  .why-section { padding: 70px 0; }
  .why-item { grid-template-columns: 58px 1fr; gap: 14px; }
  .why-item h3 { font-size: 20px; }
  .faq-section { padding: 70px 0; }
  .faq-answer { padding-left: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .site-footer { padding-top: 76px; }
  .contact-strip { grid-template-columns: 1fr; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-intro { margin-bottom: 36px; }
  .hero { min-height: 620px; align-items: flex-end; padding-bottom: 92px; }
  .hero__content { padding-top: 120px; }
  .hero__copy { padding: 20px 4px; margin-top: 0; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; }
  .hero__features { display: none; }
  .hero__scroll { bottom: 18px; }
  .hero__sparkle { display: none; }
  .service-card { padding: 34px 24px 28px; }
  .process-parallax h2,
  .home-content-copy h2 { font-size: 31px; }
  .process-steps article,
  .home-content-card { padding: 24px; }
  .faq-question { grid-template-columns: 28px 1fr 18px; gap: 12px; padding: 16px; }
  .cta-band { padding: 70px 0; }
  .page-hero { padding: 130px 0 70px; }
  .page-content { padding: 58px 0 70px; }
	
.equipment-section {
  padding: 70px 0;
}

.equipment-card {
  padding: 24px;
}

.equipment-actions .btn {
  width: 100%;
}	
}

/* Final mobile nav fixes */
@media (max-width: 820px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    background: rgba(0, 77, 73, .72);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #fff;
  }

  .header-quote {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(0, 59, 56, .98);
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown__summary {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    display: block;
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    z-index: auto;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0 !important;
    max-width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    box-shadow: none;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }
}
/* Homepage equipment section spacing fixes */
.equipment-section .section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.equipment-copy h2 {
  margin-bottom: 24px;
}

.equipment-copy p {
  max-width: 640px;
  margin-bottom: 20px;
}

.equipment-actions {
  margin-top: 46px;
}

.equipment-card h3 {
  margin-bottom: 28px;
}

.equipment-card ul {
  margin-bottom: 0;
}

.equipment-card li {
  margin-bottom: 0;
}

.equipment-card {
  padding: 42px 38px;
}