:root {
  --bg: #fffdf8;
  --surface: #f7fbf8;
  --surface-strong: #edf8f3;
  --text: #162422;
  --muted: #5e716d;
  --teal: #075a52;
  --teal-dark: #03433d;
  --mint: #bfeee0;
  --mint-soft: #eaf9f3;
  --line: #d8ebe6;
  --yellow: #f3c05b;
  --warm: #fff4dc;
  --cream: #fffdf7;
  --shadow: 0 24px 70px rgba(8, 68, 61, 0.12);
  --radius: 8px;
  --max: 1380px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 13% 6%, rgba(191, 238, 224, 0.58), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(243, 192, 91, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(232, 251, 245, 0.68) 0, rgba(255, 253, 248, 0) 470px),
    var(--bg);
}

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

@keyframes logoSettle {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
    filter: drop-shadow(0 0 0 rgba(7, 90, 82, 0));
  }
  70% {
    opacity: 1;
    transform: translateY(1px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 14px 22px rgba(7, 90, 82, 0.12));
  }
}

@keyframes heroPhotoIn {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes sweepShine {
  0% {
    transform: translateX(-150%) skewX(-16deg);
    opacity: 0;
  }
  12% {
    opacity: 0.84;
  }
  42% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(172%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes wipePathMove {
  0% {
    transform: translateX(-135%) translateY(42px) rotate(-8deg);
    opacity: 0;
  }
  13% {
    opacity: 0.95;
  }
  52% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(138%) translateY(-68px) rotate(-8deg);
    opacity: 0;
  }
}

@keyframes wipeGlowMove {
  0% {
    transform: translateX(-150%) rotate(-8deg);
    opacity: 0;
  }
  16% {
    opacity: 0.42;
  }
  58% {
    opacity: 0.28;
  }
  100% {
    transform: translateX(155%) rotate(-8deg);
    opacity: 0;
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translate(0, 12px) scale(0.76);
    opacity: 0.18;
  }
  16% {
    opacity: 0.95;
  }
  70% {
    opacity: 0.72;
  }
  100% {
    transform: translate(var(--bubble-x, 20px), -78px) scale(1.12);
    opacity: 0;
  }
}

@keyframes sudsPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.86;
  }
}

@keyframes sparklePop {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: scale(0.45) rotate(0deg);
  }
  82% {
    opacity: 1;
    transform: scale(1) rotate(35deg);
  }
  92% {
    opacity: 0.72;
    transform: scale(0.82) rotate(55deg);
  }
}

@keyframes vacuumPass {
  0% {
    transform: translateX(-10%) translateY(0) scale(0.96);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  45% {
    transform: translateX(20%) translateY(-4px) scale(1);
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(42%) translateY(0) scale(0.98);
    opacity: 0;
  }
}

@keyframes vacuumBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes cleanPathReveal {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  18% {
    opacity: 0.74;
  }
  68% {
    transform: scaleX(1);
    opacity: 0.6;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

@keyframes vacuumLineDrift {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(0);
  }
  50% {
    opacity: 0.82;
    transform: translateX(8px);
  }
}

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

body {
  animation: pageGlowIn 520ms ease-out both;
}

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

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

.site-header {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  min-height: 112px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-brand {
  position: relative;
  line-height: 1;
}

.brand-logo {
  width: 238px;
  height: auto;
  display: block;
  animation: logoSettle 720ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
  transform-origin: 38% 50%;
}

.brand-name {
  display: none;
}

.footer-logo-brand .brand-logo {
  width: 242px;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #31413e;
  font-size: 16px;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a.active {
  font-weight: 900;
}

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 21px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow: 0 12px 28px rgba(7, 90, 82, 0.24), 0 4px 0 rgba(243, 192, 91, 0.22);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 90, 82, 0.26), 0 5px 0 rgba(243, 192, 91, 0.25);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: #b8d3cd;
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8, 68, 61, 0.08);
}

.section-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 235, 230, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 249, 243, 0.94)),
    #fff;
  box-shadow: 0 16px 38px rgba(8, 68, 61, 0.075);
  animation: cardRise 620ms 70ms ease-out both;
}

.promo-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #3c4f4b;
  font-size: 15px;
  line-height: 1.35;
}

.promo-copy strong {
  color: var(--text);
  font-size: 16px;
}

.promo-copy b {
  color: var(--teal);
  letter-spacing: 0.04em;
}

.promo-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #2d2410;
  background: linear-gradient(135deg, #ffe6a9, var(--yellow));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 17px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.promo-action:hover {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(7, 90, 82, 0.19);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
  gap: 56px;
  align-items: start;
  padding: 44px 0 92px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(58px, 5.5vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  animation: cardRise 680ms 90ms ease-out both;
}

.hero-lede {
  max-width: 540px;
  margin: 28px 0 0;
  color: #40524e;
  font-size: 22px;
  line-height: 1.48;
  animation: cardRise 680ms 180ms ease-out both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: cardRise 680ms 270ms ease-out both;
}

.trust-line {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  animation: cardRise 680ms 360ms ease-out both;
}

.hero-media {
  position: relative;
  min-height: 660px;
  overflow: visible;
}

.hero-media::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  height: 640px;
  border-radius: var(--radius);
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 70%);
  mix-blend-mode: screen;
  animation: sweepShine 6.4s 1.2s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 0 10px rgba(255, 255, 255, 0.5);
  animation: heroPhotoIn 760ms 230ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.cleaning-showcase {
  position: absolute;
  inset: 10px;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  pointer-events: none;
}

.cleaning-showcase span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.wipe-path {
  left: 0;
  top: 46%;
  width: 46%;
  height: 11px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 16%, rgba(128, 221, 207, 0.82) 52%, rgba(255, 255, 255, 0.9) 76%, transparent 100%);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.92),
    0 7px 22px rgba(5, 104, 94, 0.24);
  animation: wipePathMove 6.4s 1.1s ease-in-out infinite;
}

.wipe-glow {
  left: 0;
  top: -8%;
  width: 34%;
  height: 116%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.62) 48%, rgba(204, 244, 235, 0.22) 68%, transparent 100%);
  filter: blur(8px);
  animation: wipeGlowMove 6.4s 1.1s ease-in-out infinite;
}

.bubble {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(5, 94, 84, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, #fff 0 24%, rgba(255, 255, 255, 0.74) 25% 50%, rgba(12, 147, 133, 0.27) 51% 100%);
  box-shadow: 0 5px 15px rgba(5, 94, 84, 0.13);
  animation: bubbleFloat 5.1s ease-in-out infinite;
}

.bubble-one {
  left: 20%;
  bottom: 17%;
  --bubble-x: 30px;
  animation-delay: 1.15s;
}

.bubble-two {
  left: 27%;
  bottom: 13%;
  width: 20px;
  height: 20px;
  --bubble-x: 18px;
  animation-delay: 1.55s;
}

.bubble-three {
  left: 53%;
  bottom: 25%;
  width: 10px;
  height: 10px;
  --bubble-x: -22px;
  animation-delay: 2.25s;
}

.bubble-four {
  left: 69%;
  bottom: 33%;
  width: 17px;
  height: 17px;
  --bubble-x: 24px;
  animation-delay: 2.9s;
}

.sparkle {
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, #fff6cc 0%, #f7c84f 50%, #d79b16 100%);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 3px 8px rgba(173, 117, 11, 0.24));
  animation: sparklePop 5.4s ease-in-out infinite;
}

.sparkle-one {
  right: 19%;
  top: 17%;
  animation-delay: 2.5s;
}

.sparkle-two {
  left: 45%;
  top: 34%;
  width: 14px;
  height: 14px;
  animation-delay: 3.55s;
}

.quote-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(520px, 100%);
  margin: 24px auto 0;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.96)),
    #fff;
  box-shadow: 0 22px 55px rgba(16, 61, 56, 0.16), 0 0 0 6px rgba(255, 244, 220, 0.34);
  backdrop-filter: blur(14px);
  animation: cardRise 760ms 520ms ease-out both;
  z-index: 2;
}

.quote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.quote-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

.quote-card-header span,
.mini-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-card label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: #344743;
  font-size: 13px;
  font-weight: 800;
}

.quote-card select,
.quote-card input,
.newsletter input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  height: 45px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea,
.booking-form textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
  line-height: 1.45;
}

.quote-card select:focus,
.quote-card input:focus,
.newsletter input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(191, 238, 224, 0.9);
}

.quote-submit {
  width: 100%;
  margin-top: 16px;
}

.quote-result {
  min-height: 38px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-hero {
  padding: 82px 0 72px;
  border-top: 1px solid rgba(216, 235, 230, 0.82);
}

.page-hero h1,
.application-copy h1,
.quote-section-copy h1,
.faq-copy h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p,
.application-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.52;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.split-hero img {
  width: 100%;
  height: 410px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-section,
.service-detail-grid,
.page-reviews,
.application-section {
  padding: 90px 0;
}

.about-story-section {
  padding-bottom: 26px;
}

.about-clean-stack {
  padding-top: 22px;
  padding-bottom: 16px;
}

.about-clean-card,
.about-service-card {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.82), rgba(255, 253, 248, 0.98)),
    #fff;
  box-shadow: 0 18px 45px rgba(8, 68, 61, 0.055);
}

.about-clean-card {
  padding: 26px 24px 24px;
}

.about-small-heading {
  margin-bottom: 22px;
}

.about-small-heading h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 25px;
  line-height: 1.08;
}

.about-small-heading h2 span {
  margin-top: 0.06em;
  font-size: 0.5em;
  line-height: 1;
}

.about-small-heading p {
  margin-top: 7px;
  font-size: 10px;
}

.about-room-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.about-room-grid article {
  min-width: 0;
  padding: 0 16px;
  text-align: center;
}

.about-room-grid article + article {
  border-left: 1px solid var(--line);
}

.about-room-grid .icon-badge {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  color: var(--teal);
  background: transparent;
  border: 0;
}

.about-room-grid .icon-badge svg {
  width: 37px;
  height: 37px;
  stroke-width: 1.35;
}

.about-room-grid h3 {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.15;
}

.about-room-grid ul {
  display: grid;
  gap: 6px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.about-room-grid li {
  position: relative;
  padding-left: 10px;
  color: #344743;
  font-size: 7.5px;
  line-height: 1.25;
  text-align: left;
}

.about-room-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(45deg);
}

.story-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-grid article,
.service-detail,
.application-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.96)),
    #fff;
  box-shadow: 0 14px 34px rgba(8, 68, 61, 0.045);
}

.story-grid article,
.service-detail {
  padding: 28px;
}

.story-grid h3,
.service-detail h2,
.contact-card h2,
.application-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
}

.story-grid p,
.service-detail p,
.contact-card p,
.application-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 24px;
  color: #344743;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 202, 93, 0.2);
}

.page-cta {
  margin-bottom: 72px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid #cfe2de;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(191, 238, 224, 0.72), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.page-cta h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
}

.page-cta p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.page-plans,
.page-faq {
  border-top: 1px solid var(--line);
}

.review-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.contact-page {
  margin-top: 70px;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.direct-contact a {
  display: block;
  padding: 18px 20px;
  border: 1px solid #bddbd4;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 249, 243, 0.96)),
    #fff;
  color: var(--text);
  box-shadow: 0 14px 34px rgba(8, 68, 61, 0.06);
}

.direct-contact span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact strong {
  display: block;
  margin-top: 5px;
  color: #10231f;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-card {
  margin-top: 34px;
  padding: 24px;
}

.contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
}

.application-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 42px;
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 24px;
}

.application-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(232, 251, 245, 0.6), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: 0 20px 50px rgba(16, 61, 56, 0.11);
}

.application-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.application-form label {
  display: grid;
  gap: 8px;
  color: #344743;
  font-size: 13px;
  font-weight: 850;
}

.work-history {
  margin: 4px 0 0;
  padding: 20px;
  border: 1px solid #cfe2de;
  border-radius: var(--radius);
  background: rgba(232, 251, 245, 0.52);
}

.work-history legend {
  padding: 0 8px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 45px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.application-form textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
  line-height: 1.45;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(191, 238, 224, 0.9);
}

.application-result {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.intro-section,
.services,
.checklist-section,
.trust-section,
.plans,
.areas-section,
.reviews,
.faq-section,
.quote-section {
  padding: 104px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2,
.process-copy h2,
.intro-copy h2,
.faq-copy h2,
.quote-section-copy h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.process-copy p,
.intro-copy p,
.faq-copy p,
.quote-section-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.centered-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
  border-top: 1px solid rgba(216, 235, 230, 0.82);
}

.intro-copy {
  max-width: 780px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.proof-row.single-column {
  grid-template-columns: 1fr;
}

.proof-row span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  color: var(--muted);
  line-height: 1.45;
  box-shadow: 0 12px 28px rgba(8, 68, 61, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-row span:hover {
  border-color: #b8d3cd;
  box-shadow: 0 18px 36px rgba(8, 68, 61, 0.08);
  transform: translateY(-3px);
}

.proof-row strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 16px;
}

.intro-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 244, 220, 0.28);
}

.intro-panel img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
}

.promo-video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: center;
  padding: 24px 0 96px;
}

.promo-video-copy {
  max-width: 480px;
}

.promo-video-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.promo-video-copy p {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.promo-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.98)),
    #fff;
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 244, 220, 0.28);
}

.promo-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #102420;
}

.service-motion-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  padding: 32px 0 96px;
}

.service-motion-copy {
  max-width: 500px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-motion-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-motion-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.service-motion-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow), 0 0 0 8px rgba(191, 238, 224, 0.22);
}

.service-motion-card img {
  width: 100%;
  height: 410px;
  display: block;
  object-fit: cover;
}

.floor-pass {
  position: absolute;
  left: 43%;
  right: 18%;
  bottom: 12%;
  height: 52px;
  border-radius: 999px;
  transform-origin: left center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.78), rgba(191, 238, 224, 0.42), rgba(255, 255, 255, 0));
  filter: blur(7px);
  animation: cleanPathReveal 5.6s 0.4s ease-in-out infinite;
  pointer-events: none;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-row {
  min-height: 128px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  text-align: left;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.96)),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-row:hover,
.service-row.is-active {
  border-color: #9bd9ca;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--mint-soft) 100%);
  box-shadow: 0 18px 40px rgba(8, 68, 61, 0.1);
  transform: translateY(-2px);
}

.icon-badge {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: linear-gradient(180deg, var(--mint-soft), #f7fffb);
  border: 1px solid #ccefe4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.emoji-badge {
  border-color: rgba(9, 102, 92, 0.2);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(135deg, rgba(191, 238, 224, 0.8), rgba(255, 248, 225, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(8, 68, 61, 0.08);
}

.emoji-icon {
  display: block;
  font-size: 23px;
  line-height: 1;
  filter: drop-shadow(0 2px 2px rgba(8, 68, 61, 0.08));
}

.custom-emoji-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(8, 68, 61, 0.1));
}

.kitchen-emoji-badge .custom-emoji-icon {
  width: 34px;
  height: 34px;
}

.kitchen-emoji-badge .kitchen-clean-icon {
  width: 39px;
  height: 39px;
}

.rental-turnover-badge {
  overflow: hidden;
}

.rental-turnover-badge .rental-turnover-icon {
  width: 40px;
  height: 40px;
}

.spray-emoji-badge {
  position: relative;
}

.spray-emoji-badge .supplies-spray-icon {
  width: 38px;
  height: 38px;
}

.spray-emoji-badge .emoji-icon {
  transform: translate(-1px, 1px);
}

.emoji-sparkle {
  position: absolute;
  right: 5px;
  top: 4px;
  font-size: 10px;
  line-height: 1;
  filter: drop-shadow(0 2px 2px rgba(8, 68, 61, 0.08));
}

.about-room-grid .emoji-badge,
.about-trust-strip .emoji-badge {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(135deg, rgba(191, 238, 224, 0.64), rgba(255, 248, 225, 0.78));
  border: 1px solid rgba(9, 102, 92, 0.14);
}

.about-room-grid .emoji-icon,
.about-trust-strip .emoji-icon {
  font-size: 22px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge svg *,
.about-room-grid .icon-badge svg *,
.about-trust-strip .icon-badge svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.reference-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-row strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.service-row small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-note {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid #cfe2de;
  background:
    linear-gradient(135deg, rgba(191, 238, 224, 0.76), rgba(255, 244, 220, 0.5), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.service-note h3 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.05;
}

.service-note p:not(.mini-label) {
  color: #435550;
  font-size: 16px;
  line-height: 1.55;
}

.service-note a,
.phone-link {
  color: var(--teal);
  font-weight: 850;
}

.process {
  margin-top: 68px;
  padding: 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(234, 249, 243, 0.95), rgba(255, 244, 220, 0.58)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(8, 68, 61, 0.055);
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-rail li {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  border: 1px solid #cfe2de;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-rail li:hover {
  border-color: #9bd9ca;
  box-shadow: 0 14px 30px rgba(8, 68, 61, 0.08);
  transform: translateY(-3px);
}

.process-rail span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.process-rail strong {
  font-size: 18px;
  line-height: 1.25;
}

.checklist-section {
  border-top: 1px solid rgba(216, 235, 230, 0.82);
}

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

.checklist-grid article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.96)),
    #fff;
  box-shadow: 0 14px 34px rgba(8, 68, 61, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.checklist-grid article:hover,
.trust-grid article:hover {
  border-color: #b8d3cd;
  box-shadow: 0 20px 42px rgba(8, 68, 61, 0.08);
  transform: translateY(-3px);
}

.checklist-grid article {
  padding: 24px;
}

.checklist-grid h3,
.trust-grid h3,
.addons-row h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.checklist-grid ul,
.addons-row ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-grid li,
.addons-row li {
  position: relative;
  padding-left: 22px;
  color: #344743;
  line-height: 1.4;
}

.checklist-grid li::before,
.addons-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(191, 238, 224, 0.65);
}

.trust-section {
  background:
    radial-gradient(circle at 85% 25%, rgba(243, 192, 91, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(243, 249, 248, 0) 0%, rgba(237, 248, 243, 0.92) 45%, rgba(255, 253, 248, 0) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-grid article {
  min-height: 240px;
  padding: 26px;
}

.trust-grid h3 {
  margin-top: 24px;
}

.trust-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-trust-strip {
  padding-top: 16px;
  padding-bottom: 34px;
  background: transparent;
}

.about-trust-strip .section-heading {
  margin-bottom: 22px;
}

.about-trust-strip .section-heading h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 25px;
  line-height: 1.08;
}

.about-trust-strip .section-heading h2 span {
  margin-top: 0.06em;
  font-size: 0.5em;
  line-height: 1;
}

.about-trust-strip .section-heading p {
  margin-top: 7px;
  font-size: 10px;
}

.about-trust-strip .trust-grid {
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-trust-strip .trust-grid article {
  min-height: 0;
  padding: 0 20px 2px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-trust-strip .trust-grid article + article {
  border-left: 1px solid #dce9e6;
}

.about-trust-strip .icon-badge {
  width: 43px;
  height: 43px;
  margin: 0 auto;
  color: var(--teal);
  background: transparent;
  border: 0;
}

.about-trust-strip .icon-badge svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.45;
}

.about-trust-strip .trust-grid h3 {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.2;
}

.about-trust-strip .trust-grid p {
  max-width: 126px;
  margin: 6px auto 0;
  font-size: 7.5px;
  line-height: 1.45;
}

.about-service-areas {
  padding-top: 0;
  padding-bottom: 46px;
}

.about-service-card {
  padding: 21px 24px;
}

.about-service-card .about-small-heading {
  margin-bottom: 14px;
}

.about-area-chips {
  max-width: 690px;
  gap: 8px;
}

.about-area-chips span {
  min-height: 28px;
  padding: 0 12px;
  font-size: 8.5px;
  line-height: 1;
}

.about-clean-card .about-small-heading h2,
.about-service-card .about-small-heading h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 25px;
  line-height: 1.08;
}

.about-clean-card .about-small-heading h2 span,
.about-service-card .about-small-heading h2 span {
  margin-top: 0.06em;
  font-size: 0.5em;
  line-height: 1;
}

.about-clean-card .about-small-heading p,
.about-service-card .about-small-heading p {
  margin-top: 7px;
  font-size: 10px;
}

.plans {
  border-top: 1px solid rgba(216, 235, 230, 0.82);
  border-bottom: 1px solid rgba(216, 235, 230, 0.82);
  background:
    radial-gradient(circle at 15% 14%, rgba(191, 238, 224, 0.5), transparent 32%),
    linear-gradient(180deg, #fbfffd 0%, var(--cream) 100%);
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  box-shadow: 0 14px 34px rgba(8, 68, 61, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plan-card:hover {
  border-color: #b8d3cd;
  box-shadow: 0 22px 46px rgba(8, 68, 61, 0.1);
  transform: translateY(-4px);
}

.plan-featured {
  border-color: #9bd9ca;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fffb 55%, #fff8e8 100%);
  box-shadow: 0 26px 58px rgba(8, 68, 61, 0.13), 0 0 0 6px rgba(243, 192, 91, 0.12);
}

.plan-card h3 {
  margin: 0;
  font-size: 28px;
}

.price {
  margin: 18px 0 10px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0;
}

.plan-card p:not(.price) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding: 0;
  color: #344743;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 202, 93, 0.2);
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.addons-row {
  margin-top: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.96)),
    #fff;
  box-shadow: 0 14px 34px rgba(8, 68, 61, 0.045);
}

.addons-row p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.addons-row ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
}

.areas-section {
  text-align: center;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.area-chips span,
.quote-benefits span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfe2de;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--mint-soft), #fffefa);
  color: var(--teal);
  padding: 0 16px;
  font-weight: 850;
}

.reviews {
  padding-top: 88px;
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-strip figure {
  margin: 0;
  padding: 26px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  box-shadow: 0 14px 34px rgba(8, 68, 61, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-strip figure:hover {
  border-color: #b8d3cd;
  box-shadow: 0 20px 42px rgba(8, 68, 61, 0.08);
  transform: translateY(-3px);
}

.review-strip blockquote {
  margin: 0;
  color: #253633;
  font-size: 20px;
  line-height: 1.38;
}

.review-strip figcaption {
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid rgba(216, 235, 230, 0.82);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  overflow: hidden;
}

.faq-list summary {
  padding: 22px 24px;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.55;
}

.quote-section {
  margin-bottom: 72px;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: 42px;
  align-items: start;
  border: 1px solid #cfe2de;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 192, 91, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(191, 238, 224, 0.7), rgba(255, 244, 220, 0.52), rgba(255, 255, 255, 0.96)),
    var(--surface);
  box-shadow: 0 22px 58px rgba(8, 68, 61, 0.08);
}

.quote-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-form,
.booking-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 253, 248, 0.95)),
    #fff;
  box-shadow: 0 20px 50px rgba(16, 61, 56, 0.11);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label,
.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #344743;
  font-size: 13px;
  font-weight: 850;
}

.contact-submit,
.booking-submit {
  width: 100%;
}

.contact-result,
.booking-result {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.booking-section {
  margin-top: 70px;
  margin-bottom: 72px;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 42px;
  align-items: start;
  border: 1px solid #cfe2de;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 14%, rgba(243, 192, 91, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(191, 238, 224, 0.7), rgba(255, 244, 220, 0.52), rgba(255, 255, 255, 0.96)),
    var(--surface);
  box-shadow: 0 22px 58px rgba(8, 68, 61, 0.08);
}

.booking-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.booking-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.52;
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.booking-steps span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #cfe2de;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #344743;
  font-weight: 850;
}

.booking-steps strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
}

.booking-note {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.booking-note h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.booking-note p {
  margin-top: 10px;
  font-size: 16px;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 50px;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  gap: 38px;
  border-top: 1px solid rgba(216, 235, 230, 0.82);
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links h3,
.newsletter label {
  margin: 0 0 14px;
  color: #344743;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter .button {
  min-height: 45px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-card {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.82, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 14px 0 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .intro-section,
  .promo-video-section,
  .service-motion-section,
  .split-hero,
  .service-layout,
  .process,
  .faq-section,
  .quote-section,
  .application-section,
  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
    padding-top: 28px;
  }

  .promo-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-video-section {
    padding-top: 8px;
    padding-bottom: 76px;
  }

  .promo-video-copy {
    max-width: 720px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    height: 470px;
  }

  .hero-media::after {
    height: 450px;
  }

  .wipe-path {
    width: 56%;
  }

  .bubble-four {
    display: none;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 22px auto 0;
  }

  .service-list,
  .plan-grid,
  .checklist-grid,
  .trust-grid,
  .story-grid,
  .service-detail-grid,
  .review-strip,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-row,
  .addons-row,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .addons-row ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-room-grid article {
    padding: 22px 24px;
  }

  .about-room-grid article + article {
    border-left: 0;
  }

  .about-room-grid article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .about-room-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-trust-strip .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-trust-strip .trust-grid article:nth-child(odd) {
    border-left: 0;
  }

  .about-trust-strip .trust-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-trust-strip .trust-grid article {
    padding: 24px 28px;
  }

  .service-motion-section {
    padding-top: 12px;
    padding-bottom: 76px;
  }

  .service-motion-copy {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 154px;
  }

  .brand-name {
    max-width: 120px;
    font-size: 16px;
    line-height: 1.05;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .nav-links {
    gap: 12px;
    row-gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0 0 4px;
    font-size: 15px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .promo-strip {
    width: min(100% - 32px, var(--max));
    padding: 14px;
  }

  .promo-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
  }

  .promo-action {
    width: 100%;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-media img {
    height: 360px;
  }

  .hero-media::after {
    height: 340px;
  }

  .cleaning-showcase {
    inset: 8px;
  }

  .wipe-path {
    top: 42%;
    width: 64%;
    height: 9px;
  }

  .bubble-three {
    display: none;
  }

  .sparkle-one {
    right: 12%;
  }

  .quote-card {
    width: calc(100% - 20px);
    margin-top: 18px;
    padding: 16px;
  }

  .intro-section,
  .promo-video-section,
  .service-motion-section,
  .services,
  .checklist-section,
  .trust-section,
  .plans,
  .areas-section,
  .reviews,
  .faq-section,
  .quote-section,
  .booking-section,
  .page-hero,
  .story-section,
  .service-detail-grid,
  .page-reviews,
  .application-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-motion-section {
    padding-top: 12px;
  }

  .promo-video-section {
    padding-top: 8px;
  }

  .service-motion-card img {
    height: 300px;
  }

  .floor-pass {
    left: 39%;
    right: 12%;
    bottom: 10%;
    height: 42px;
  }

  .page-hero h1,
  .application-copy h1,
  .quote-section-copy h1,
  .faq-copy h1 {
    font-size: 44px;
  }

  .split-hero img {
    height: 320px;
  }

  .intro-panel img {
    height: 300px;
  }

  .service-row {
    min-height: auto;
    padding: 18px;
  }

  .process {
    padding: 20px;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .quote-section,
  .booking-section,
  .addons-row,
  .contact-form,
  .booking-form,
  .page-cta,
  .application-card {
    padding: 28px;
  }

  .addons-row ul {
    grid-template-columns: 1fr;
  }

  .about-clean-stack {
    padding-top: 14px;
  }

  .about-clean-card,
  .about-service-card {
    padding: 22px 18px;
  }

  .about-room-grid {
    grid-template-columns: 1fr;
  }

  .about-room-grid article,
  .about-room-grid article:nth-child(even) {
    padding: 24px 12px;
    border-left: 0;
  }

  .about-room-grid article + article {
    border-top: 1px solid var(--line);
  }

  .about-room-grid li {
    max-width: 170px;
    margin: 0 auto;
    font-size: 10px;
  }

  .newsletter div {
    grid-template-columns: 1fr;
  }

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

  .about-trust-strip .trust-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-trust-strip .trust-grid article {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-media::after {
    display: none;
  }

  .cleaning-showcase {
    display: none;
  }
}
