:root {
  --page-bg: #faf9f6;
  --ink: #313131;
  --muted: #5d5854;
  --soft: #e8e1d9;
  --soft-deep: #c8c4bd;
  --soft-card: #f1efeb;
  --rose: #9e435a;
  --rose-dark: #6e2e3e;
  --footer: #313131;
  --shadow: 0 24px 50px rgba(49, 49, 49, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

main,
section,
footer {
  max-width: 100vw;
  overflow-x: clip;
}

body.menu-open,
body.city-modal-open,
body.cleaner-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 120px));
  margin: 0 auto;
}

.serif,
.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.section-title {
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: 48px;
}

.section-title span {
  color: var(--rose);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 68px;
  background: var(--page-bg);
}

.site-header__inner {
  height: 68px;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 47px;
  padding: 0 0 0 0;
}

.site-logo {
  flex: 0 0 auto;
  width: 150px;
  text-decoration: none;
}

.site-logo img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  column-gap: 30px;
  row-gap: 15px;
  min-width: 0;
}

.site-nav a,
.service-menu__button,
.city-trigger,
.site-actions__cleaner {
  border: 0;
  background: transparent;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  line-height: 1;
  padding: 8px 0;
}

.site-nav a,
.service-menu__button {
  line-height: 17px;
  padding: 0;
}

.site-nav a.is-active {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-menu {
  position: relative;
}

.service-menu__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-menu__chevron {
  display: block;
}

.service-menu__list {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 395px;
  max-width: calc(100vw - 40px);
  transform: translate(-50%, 8px);
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 20px;
  list-style: none;
  background: var(--soft);
  border: 1px solid rgba(49, 49, 49, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(49, 49, 49, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.service-menu:hover .service-menu__list,
.service-menu:focus-within .service-menu__list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.service-menu__list::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--soft);
  transform: translateX(-50%) rotate(45deg);
}

.service-menu__list a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 3px 0;
  color: #111;
  text-decoration: none;
  line-height: 1.3;
}

.site-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}

.site-actions__cleaner,
.site-actions__phone {
  color: var(--rose);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-actions__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.phone-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 3px solid #313131;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(38deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.button--nav {
  width: 167px;
  height: 40px;
  min-height: 40px;
  padding: 0;
}

.button:hover,
.button:focus-visible {
  background: var(--rose-dark);
}

.city-trigger {
  width: 100px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--rose);
  border-radius: 999px;
}

.city-trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: 2px;
}

.mobile-toggle,
.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  height: 800px;
  min-height: 800px;
  overflow: hidden;
  background: var(--page-bg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  left: calc(50% - 600px - 107px);
  top: 273px;
  width: 116px;
  height: 643px;
  background: linear-gradient(90deg, rgba(250, 249, 246, 1), rgba(250, 249, 246, 0));
}

.hero::after {
  left: calc(50% - 600px - 107px);
  top: 684px;
  width: 1414px;
  height: 116px;
  background: linear-gradient(0deg, rgba(250, 249, 246, 1), rgba(250, 249, 246, 0));
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  text-align: center;
}

.hero h1 {
  margin: 0 auto;
  max-width: 1080px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.2;
}

.hero p {
  margin: 23px 0 0;
  color: #343332;
  font-size: 20px;
  line-height: 1.1;
}

.hero__team {
  position: absolute;
  left: calc(50% - 600px - 107px);
  top: 273px;
  bottom: auto;
  z-index: 1;
  width: 1414px;
  height: 598px;
  max-width: none;
  transform: none;
  object-fit: cover;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 52px;
  padding: 0;
  background: transparent center / 100% 100% no-repeat;
  color: transparent;
  font-size: 15px;
}

.hero__badge--local {
  left: calc(50% - 600px + 207px);
  top: 405px;
  width: 169px;
  height: 53px;
  background-image: url("/images/about-hero-badge-local.png");
}

.hero__badge--safe {
  left: calc(50% - 600px + 640px);
  top: 543px;
  width: 193px;
  height: 53px;
  background-image: url("/images/about-hero-badge-safe.png");
}

.hero__badge--quality {
  left: calc(50% - 600px + 1047px);
  top: 273px;
  width: 175px;
  height: 52px;
  background-image: url("/images/about-hero-badge-quality.png");
}

.hero__badge i,
.spark,
.round-icon::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
}

.hero__badge i {
  display: none;
}

.hero__trust {
  position: absolute;
  left: 50%;
  top: 635px;
  bottom: auto;
  z-index: 5;
  width: 1162px;
  height: 635px;
  min-height: 635px;
  transform: translateX(-50%);
  display: block;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  box-shadow: none;
}

.hero__trust a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.hero__trust strong {
  color: var(--rose);
  font-size: 22px;
  font-weight: 600;
}

.hero__reviews,
.hero__score,
.hero__trust > a,
.hero__trust > p {
  position: absolute;
}

.hero__reviews {
  left: 30px;
  top: 30px;
  width: 260px;
  height: 58px;
}

.hero__bubbles,
.hero__bubbles i {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.hero__bubbles {
  left: 0;
}

.hero__bubbles i:nth-child(1) {
  left: 0;
  background: var(--rose);
}

.hero__bubbles i:nth-child(2) {
  left: 25px;
  background: #b9b4ae;
}

.hero__bubbles i:nth-child(3) {
  left: 50px;
  background: #d8cfc4;
}

.hero__bubbles i::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 24px;
  height: 24px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
}

.hero__reviews strong {
  position: absolute;
  left: 111px;
  top: 5px;
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.hero__reviews > span:last-child {
  position: absolute;
  left: 111px;
  top: 31px;
  width: 122px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}

.hero__trust > a {
  left: 380px;
  top: 20px;
  width: 400px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rose);
  color: #faf9f6;
  font-size: 16px;
  font-weight: 600;
}

.hero__trust > p {
  left: 0;
  top: 100px;
  width: 100%;
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__score {
  left: 1052px;
  top: 28px;
  width: 90px;
}

.hero__score strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.9;
}

.hero__score span {
  display: block;
  margin-top: 2px;
  color: var(--rose);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

.mission {
  min-height: 701px;
  padding-top: 40px;
  background: var(--soft);
}

.mission__title-card {
  width: min(530px, 100%);
  min-height: 104px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--page-bg);
}

.mission h2 {
  margin: 0;
  width: 264px;
  text-align: center;
  font-size: 48px;
}

.mission__cards {
  display: grid;
  grid-template-columns: 408px 452px;
  gap: 20px;
  padding: 0 30px;
  align-items: start;
}

.mission-stack {
  display: grid;
  gap: 20px;
}

.mission-card {
  height: 203px;
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: var(--page-bg);
  color: var(--ink);
}

.mission-card--deep {
  height: 223px;
  background: #c2c0bb;
}

.mission-card--small {
  height: 108px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 16px 20px 15px;
}

.round-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
}

.round-icon::before {
  content: "";
}

.round-icon--calendar::before {
  clip-path: none;
  width: 18px;
  height: 16px;
  border: 2px solid #fff;
  border-top-width: 5px;
  border-radius: 3px;
  background: transparent;
}

.mission-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.2;
}

.mission-card--small p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.work {
  position: relative;
  height: 579px;
  padding-top: 60px;
  overflow: hidden;
  background: var(--page-bg);
}

.work .container {
  position: relative;
}

.work .section-title {
  width: min(872px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.work__mark {
  position: absolute;
  left: 50%;
  top: 112px;
  transform: translateX(-50%);
  color: rgba(232, 225, 217, 0.62);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 330px;
  line-height: 0.8;
  pointer-events: none;
}

.work-grid {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 460px);
  gap: 20px;
}

.work-grid article {
  height: 72px;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 20px 20px;
  border-radius: 20px;
  background: rgba(232, 225, 217, 0.8);
}

.spark {
  margin-top: 8px;
  background: var(--rose);
}

.work-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.work-grid p {
  display: none;
}

.work__cta {
  position: relative;
  z-index: 1;
  width: 386px;
  height: 50px;
  margin: 85px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.difference {
  min-height: 757px;
  padding-top: 60px;
  background: var(--page-bg);
}

.difference .section-title {
  width: min(699px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.difference-grid {
  position: relative;
  height: 500px;
  margin-top: 87px;
}

.difference-card {
  position: absolute;
  min-height: 0;
  padding: 0;
  border-radius: 20px;
  background: var(--soft);
  color: var(--ink);
}

.difference-card--wide {
  left: 0;
  top: 184px;
  width: 292px;
  height: 211px;
}

.difference-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.difference-card h3 span,
.difference-card strong {
  color: var(--rose);
}

.difference-card p,
.difference-card small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.difference-card--rating,
.difference-card--cleanings {
  background: #c2c0bb;
}

.difference-card--rating strong,
.difference-card--cleanings strong {
  display: inline;
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
}

.difference-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 21px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
}

.difference-card::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 31px;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
}

.difference-card--wide h3 {
  margin: 86px 35px 0 12px;
}

.difference-card--wide p {
  width: 257px;
  margin: 0 12px;
}

.difference-card--rating {
  left: 308px;
  top: 254px;
  width: 308px;
  height: 141px;
  padding: 28px 20px 0 56px;
}

.difference-card--rating p {
  display: inline;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 1.2;
}

.difference-card--rating small {
  width: 257px;
  margin-top: 39px;
  margin-left: -44px;
}

.difference-card--cleanings {
  left: 0;
  top: 0;
  width: 292px;
  height: 164px;
  padding: 15px 20px 0 56px;
}

.difference-card--cleanings p {
  display: inline;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 1.2;
}

.difference-card--cleanings small {
  width: 257px;
  margin-top: 50px;
  margin-left: -34px;
}

.difference-card:nth-child(3) {
  left: 0;
  top: 415px;
  width: 943px;
  height: 85px;
  padding: 15px 20px 0 74px;
}

.difference-card:nth-child(3) p {
  margin-top: 13px;
}

.difference-card:nth-child(4) {
  left: 308px;
  top: 0;
  width: 308px;
  height: 235px;
  padding: 109px 51px 0 12px;
}

.difference-card:nth-child(4) h3 {
  margin-left: 44px;
}

.difference-card:nth-child(4) p {
  margin-top: 51px;
}

.difference-card:nth-child(5) {
  left: 632px;
  top: 203px;
  width: 308px;
  height: 192px;
  padding: 108px 28px 0 12px;
}

.difference-card:nth-child(5) p {
  margin-top: 10px;
}

.difference-card:nth-child(6) {
  left: 632px;
  top: 0;
  width: 308px;
  height: 183px;
  padding: 15px 28px 0 56px;
}

.difference-card:nth-child(6) p {
  margin-top: 64px;
  margin-left: -44px;
}

.team {
  min-height: 1064px;
  padding-top: 60px;
  background: var(--page-bg);
}

.team .section-title {
  width: min(331px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.team-shell {
  position: relative;
  height: 589px;
  margin-top: 44px;
  display: block;
  padding: 0;
  border-radius: 20px;
  background: var(--soft);
}

.team-card {
  position: absolute;
  width: 276px;
  height: 233px;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #d5d0ca;
}

.team-card:nth-child(1) {
  left: 30px;
  top: 29px;
}

.team-card:nth-child(2) {
  left: 30px;
  top: 323px;
}

.team-card:nth-child(3) {
  left: 332px;
  top: 323px;
}

.team-card:nth-child(4) {
  left: 633px;
  top: 323px;
}

.team-card:nth-child(5) {
  left: 332px;
  top: 29px;
}

.team-card:nth-child(6) {
  left: 633px;
  top: 30px;
}

.team-card img {
  position: absolute;
  left: 11px;
  top: -37px;
  width: 256px;
  height: 269px;
  max-width: none;
  object-fit: contain;
  transform: none;
}

.team-card:nth-child(1) img {
  left: 41px;
  width: 195px;
}

.team-card:nth-child(5) img {
  left: 39px;
  width: 199px;
}

.team-card:nth-child(6) img {
  top: -49px;
  height: 280px;
}

.team-card div {
  position: absolute;
  left: 23px;
  bottom: 12px;
  width: 229px;
  height: 60px;
  min-height: 0;
  padding: 9px 11px;
  border-radius: 10px;
  background: var(--rose);
  color: #fff;
}

.team-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.team-card p {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.2;
}

.team__caption {
  width: 100%;
  height: 72px;
  margin: 59px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--soft);
  text-align: center;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.areas {
  position: relative;
  min-height: 858px;
  padding-top: 60px;
  overflow: hidden;
  background: var(--page-bg);
}

.areas__inner {
  position: relative;
  height: 100%;
}

.areas .section-title {
  width: min(746px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.areas__decor {
  position: absolute;
  left: 50%;
  top: 132px;
  width: 760px;
  height: 570px;
  transform: translateX(-50%);
  background-image:
    radial-gradient(circle, rgba(158, 67, 90, 0.32) 0 9px, transparent 10px),
    radial-gradient(circle, rgba(49, 49, 49, 0.18) 0 5px, transparent 6px);
  background-size: 132px 98px, 132px 98px;
  background-position: 0 0, 58px 34px;
  opacity: 0.52;
  pointer-events: none;
}

.zip-card {
  position: absolute;
  left: 113px;
  top: 278px;
  z-index: 1;
  width: 714px;
  height: 206px;
  margin: 0;
  padding: 28px 35px 25px;
  border: 0;
  border-radius: 20px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.zip-card h3 {
  margin: 0 0 24px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.zip-card__field {
  position: relative;
  display: block;
}

.zip-card__field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.zip-card input {
  width: 100%;
  height: 57px;
  padding: 0 68px 0 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  outline: none;
}

.zip-card button {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 50%;
  background: var(--rose);
}

.zip-card button::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.zip-card button::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  width: 9px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.zip-card__message {
  min-height: 22px;
  margin: 17px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.zip-card__message a {
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.city-groups {
  position: absolute;
  left: 0;
  top: 135px;
  z-index: 1;
  width: 940px;
  height: 125px;
  margin: 0;
  display: block;
  color: var(--ink);
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
}

.city-groups a {
  position: absolute;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: var(--page-bg);
}

.city-groups a:nth-child(1) {
  left: 113px;
  top: 0;
  width: 147px;
}

.city-groups a:nth-child(2) {
  left: 271px;
  top: 0;
  width: 179px;
}

.city-groups a:nth-child(3) {
  left: 460px;
  top: 0;
  width: 210px;
}

.city-groups a:nth-child(4) {
  left: 680px;
  top: -1px;
  width: 147px;
}

.city-groups a:nth-child(5) {
  left: 113px;
  top: 74px;
  width: 231px;
}

.city-groups a:nth-child(6) {
  left: 355px;
  top: 74px;
  width: 231px;
}

.areas__link {
  position: absolute;
  left: 596px;
  top: 209px;
  z-index: 1;
  width: 231px;
  min-height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.quote-section {
  min-height: 719px;
  padding-top: 60px;
  background: var(--page-bg);
}

.quote-section .section-title {
  width: min(856px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.quote-shell {
  height: 485px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(310px, 425px) 1fr;
  gap: 44px;
  align-items: stretch;
  padding: 34px;
  border-radius: 24px;
  background: var(--soft);
}

.quote-form {
  padding: 29px 30px 24px;
  border-radius: 18px;
  background: var(--page-bg);
}

.quote-form h3,
.quote-side h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.16;
}

.quote-form p {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.quote-form label,
.cleaner-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.quote-form span,
.cleaner-form span {
  color: var(--muted);
  font-size: 13px;
}

.quote-form input,
.cleaner-form input,
.cleaner-form select,
.cleaner-form textarea {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.quote-form input {
  height: 52px;
  padding: 0 18px;
}

.quote-form button,
.cleaner-form button {
  width: 100%;
  height: 52px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 600;
}

.quote-form small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.quote-form small a {
  color: var(--rose);
}

.quote-side {
  position: relative;
  overflow: hidden;
  padding: 35px 34px;
  border-radius: 18px;
  background: #c2c0bb;
}

.quote-side h3 {
  max-width: 460px;
}

.quote-contact {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.quote-contact a {
  color: var(--rose);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.quote-side img {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: min(310px, 46%);
}

.site-footer {
  position: relative;
  height: 350px;
  min-height: 0;
  overflow: hidden;
  padding: 42px 0 15px;
  background: var(--footer);
  color: #d8cfc4;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 54px;
}

.site-footer__brand img {
  width: 150px;
  filter: brightness(1.15);
}

.site-footer__brand p {
  margin: 24px 0 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.site-footer a {
  color: #d8cfc4;
  font-size: 14px;
  text-decoration: none;
}

.site-footer__bottom {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(216, 207, 196, 0.72);
  font-size: 13px;
}

.city-modal,
.cleaner-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.city-modal.is-open,
.cleaner-modal.is-open {
  display: block;
}

.city-modal__backdrop,
.cleaner-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49, 49, 49, 0.45);
}

.city-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(960px, calc(100% - 40px));
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 34px 38px;
  border-radius: 18px;
  background: var(--page-bg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.city-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.city-modal h2 {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 16px;
}

.city-modal a {
  display: block;
  padding: 6px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.city-modal__close,
.cleaner-modal__close,
.mobile-panel__top button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(49, 49, 49, 0.08);
}

.city-modal__close::before,
.city-modal__close::after,
.cleaner-modal__close::before,
.cleaner-modal__close::after,
.mobile-panel__top button::before,
.mobile-panel__top button::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--ink);
}

.city-modal__close::before,
.cleaner-modal__close::before,
.mobile-panel__top button::before {
  transform: rotate(45deg);
}

.city-modal__close::after,
.cleaner-modal__close::after,
.mobile-panel__top button::after {
  transform: rotate(-45deg);
}

.cleaner-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, calc(100% - 34px));
  max-height: min(800px, calc(100vh - 34px));
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 34px;
  border-radius: 20px;
  background: var(--page-bg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.cleaner-modal__eyebrow {
  margin: 0 42px 12px 0;
  color: var(--rose);
  font-weight: 600;
}

.cleaner-modal h2 {
  margin: 0 42px 22px 0;
  font-size: 42px;
}

.cleaner-modal h2 span {
  color: var(--rose);
}

.cleaner-form input,
.cleaner-form select {
  height: 48px;
  padding: 0 16px;
}

.cleaner-form textarea {
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 18px;
  resize: vertical;
}

.cleaner-form__status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--rose);
  font-size: 13px;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

@media (max-width: 1160px) {
  .site-header__inner {
    gap: 47px;
  }

  .site-actions {
    gap: 18px;
  }

  .site-actions .button--nav {
    padding: 0 28px;
  }

  .container {
    width: min(940px, calc(100% - 80px));
  }

  .section-title,
  .mission h2 {
    font-size: 42px;
  }

  .mission__cards {
    gap: 20px;
  }

  .team-shell {
    min-height: 590px;
  }
}

@media (min-width: 961px) and (max-width: 1199px) {
  .container {
    width: 940px;
  }

  .button--nav {
    width: 167px;
    height: 40px;
    min-height: 40px;
    padding: 0;
  }

  .city-trigger {
    width: 100px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--rose);
    border-radius: 999px;
  }

  .site-actions {
    position: relative;
    width: 549px;
    height: 68px;
    flex: 0 0 549px;
    display: block;
    gap: 0;
  }

  .site-actions__cleaner,
  .site-actions__phone,
  .site-actions .button--nav,
  .site-actions .city-trigger {
    position: absolute;
  }

  .site-actions__cleaner {
    left: 0;
    top: 23px;
    padding: 0;
  }

  .site-actions__phone {
    left: 167px;
    top: 23px;
  }

  .site-actions .button--nav {
    left: 272px;
    top: 14px;
  }

  .site-actions .city-trigger {
    left: 449px;
    top: 14px;
  }

  .hero {
    height: 760px;
    min-height: 760px;
  }

  .hero::before {
    left: calc(50% - 600px - 107px);
    top: 273px;
    width: 116px;
    height: 643px;
  }

  .hero::after {
    left: calc(50% - 600px - 107px);
    top: 651px;
    width: 1414px;
    height: 116px;
  }

  .hero__content {
    padding-top: 101px;
  }

  .hero h1 {
    max-width: 942px;
    font-size: 46px;
  }

  .hero p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero__team {
    top: 273px;
    bottom: auto;
    left: calc(50% - 600px - 107px);
    width: 1169px;
    height: 494px;
    transform: none;
    object-fit: cover;
  }

  .hero__badge {
    height: 44px;
    min-height: 44px;
    padding: 0;
    background-color: transparent;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero__badge--local {
    left: calc(50% - 480px + 152px);
    top: 382px;
    width: 140px;
    height: 44px;
  }

  .hero__badge--safe {
    left: calc(50% - 480px + 511px);
    top: 496px;
    width: 159px;
    height: 44px;
  }

  .hero__badge--quality {
    left: calc(50% - 480px + 847px);
    top: 273px;
    width: 145px;
    height: 43px;
  }

  .hero__trust {
    top: 609px;
    bottom: auto;
    width: 942px;
    height: 635px;
    min-height: 635px;
    padding: 0;
    display: block;
    border-top: 0;
    border-radius: 20px 20px 0 0;
    background: var(--soft);
    box-shadow: none;
    transform: translateX(-50%);
  }

  .hero__reviews,
  .hero__score,
  .hero__trust > a,
  .hero__trust > p {
    position: absolute;
  }

  .hero__reviews {
    left: 30px;
    top: 30px;
    width: 230px;
    height: 58px;
  }

  .hero__bubbles,
  .hero__bubbles i {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .hero__bubbles {
    left: 0;
  }

  .hero__bubbles i:nth-child(1) {
    left: 0;
    background: var(--rose);
  }

  .hero__bubbles i:nth-child(2) {
    left: 25px;
    background: #b9b4ae;
  }

  .hero__bubbles i:nth-child(3) {
    left: 50px;
    background: #d8cfc4;
  }

  .hero__bubbles i::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 13px;
    width: 24px;
    height: 24px;
    background: #fff;
    clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
  }

  .hero__reviews strong {
    position: absolute;
    left: 111px;
    top: 0;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
  }

  .hero__reviews > span:last-child {
    position: absolute;
    left: 110px;
    top: 30px;
    width: 122px;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.2;
  }

  .hero__trust > a {
    left: 277px;
    top: 30px;
    width: 386px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--rose);
    color: #faf9f6;
    font-size: 16px;
    font-weight: 600;
  }

  .hero__trust > p {
    left: 389px;
    top: 90px;
    width: 190px;
    margin: 0;
    color: var(--ink);
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__score {
    left: 832px;
    top: 26px;
    width: 90px;
  }

  .hero__score strong {
    display: block;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 0.9;
  }

  .hero__score span {
    display: block;
    margin-top: 2px;
    color: var(--rose);
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
  }

  .mission {
    height: 701px;
    min-height: 701px;
    padding-top: 0;
    background: var(--page-bg);
  }

  .mission .container {
    position: relative;
    top: -42px;
    height: 666px;
    padding-top: 82px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    background: var(--soft);
  }

  .mission .container > * {
    position: relative;
    z-index: 1;
  }

  .mission .container::after {
    content: "Shynli";
    position: absolute;
    left: -4px;
    top: 440px;
    z-index: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 260px;
    line-height: 0.9;
    pointer-events: none;
  }

  .mission__title-card {
    margin: 0 auto 30px;
  }

  .mission-card--small {
    position: relative;
    overflow: visible;
    background: var(--rose);
    color: #faf9f6;
  }

  .mission-card--small .round-icon {
    margin-bottom: 0;
    background: var(--page-bg);
  }

  .mission-card--small .round-icon::before {
    background: var(--rose);
  }

  .work-grid article:nth-child(2) h3,
  .work-grid article:nth-child(4) h3 {
    margin-top: 0;
  }

  .difference-card--rating {
    padding: 28px 20px 0 56px;
  }

  .difference-card--rating p {
    display: block;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
    line-height: 1.2;
  }

  .difference-card--rating p strong {
    color: var(--rose);
    font-size: 21px;
    font-weight: 600;
  }

  .difference-card--rating small {
    margin-top: 39px;
  }

  .team-card div {
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose) 0 70%, #7f3447 70% 100%);
  }

  .team-card:nth-child(2) img,
  .team-card:nth-child(4) img {
    left: 11px;
    top: -37px;
    width: 256px;
    height: 269px;
  }

  .team-card:nth-child(3) img {
    left: 20px;
    top: -37px;
    width: 256px;
    height: 269px;
  }

  .zip-card h3 {
    color: var(--rose);
  }

  .zip-card__message {
    display: none;
  }

  .zip-card__message:not(:empty) {
    display: block;
  }

  .team__caption {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
  }

  .quote-shell {
    grid-template-columns: 409px 1fr;
    gap: 38px;
    padding: 31px;
    border-radius: 20px;
    background: var(--rose);
  }

  .quote-form {
    padding: 35px 30px 24px;
    border-radius: 10px;
    background: var(--soft);
  }

  .quote-form h3,
  .quote-form p {
    text-align: center;
  }

  .quote-side {
    overflow: visible;
    padding: 31px 0 0;
    background: transparent;
    color: #faf9f6;
  }

  .quote-side h3 {
    max-width: 430px;
    color: #faf9f6;
    text-align: center;
    font-size: 30px;
  }

  .quote-contact {
    margin-top: 42px;
    margin-left: 54px;
    gap: 17px;
  }

  .quote-contact a {
    color: #faf9f6;
    font-size: 16px;
    font-weight: 400;
  }

  .quote-side img {
    right: -3px;
    bottom: -31px;
    width: 342px;
    max-width: none;
  }

  .site-footer__brand p {
    margin-top: 24px;
    max-width: 235px;
    color: #d8cfc4;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
  }

  .site-footer h2 {
    color: rgba(216, 207, 196, 0.24);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
  }

  .site-footer a {
    color: rgba(216, 207, 196, 0.78);
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    width: 100%;
    padding-right: 0;
  }

  .site-actions {
    gap: 16px;
  }

  .city-trigger {
    display: none;
  }

  .section-title,
  .mission h2 {
    font-size: 42px;
  }

  .hero__trust {
    width: min(820px, calc(100% - 42px));
    grid-template-columns: repeat(3, 1fr);
  }

  .work-grid,
  .mission__cards {
    grid-template-columns: 1fr 1fr;
  }

  .difference-grid {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .difference-card,
  .difference-card--wide,
  .difference-card--rating,
  .difference-card--cleanings,
  .difference-card:nth-child(3),
  .difference-card:nth-child(4),
  .difference-card:nth-child(5),
  .difference-card:nth-child(6) {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    min-height: 150px;
    padding: 25px 28px;
  }

  .difference-card--wide,
  .difference-card:nth-child(3) {
    grid-column: span 2;
  }

  .team-shell {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 24px;
  }

  .team-card,
  .team-card:nth-child(1),
  .team-card:nth-child(2),
  .team-card:nth-child(3),
  .team-card:nth-child(4),
  .team-card:nth-child(5),
  .team-card:nth-child(6) {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 291px;
    height: auto;
  }

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

@media (max-width: 820px) {
  .site-nav,
  .site-actions {
    display: none;
  }

  .site-header__inner {
    padding: 0 22px;
    justify-content: space-between;
  }

  .mobile-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--soft);
  }

  .mobile-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
  }

  .mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 18px;
    background: var(--page-bg);
    box-shadow: -20px 0 45px rgba(49, 49, 49, 0.18);
    transform: translateX(100%);
    transition: transform 200ms ease;
  }

  .mobile-panel.is-open {
    transform: translateX(0);
  }

  .mobile-panel__top {
    position: relative;
    min-height: 54px;
    margin-bottom: 8px;
  }

  .mobile-panel__top img {
    width: 142px;
  }

  .mobile-panel a {
    color: var(--ink);
    font-size: 17px;
    text-decoration: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 34px, 560px);
  }

  .site-header {
    height: 66px;
  }

  .site-header__inner {
    height: 66px;
  }

  .site-logo,
  .site-logo img {
    width: 138px;
  }

  .hero,
  .mission,
  .work,
  .difference,
  .team,
  .areas,
  .quote-section {
    min-height: auto;
    padding: 44px 0 58px;
  }

  .hero {
    min-height: 650px;
    padding-top: 0;
  }

  .hero__content {
    padding-top: 20px;
  }

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

  .hero p {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .hero__team {
    bottom: 42px;
    width: 900px;
  }

  .hero__badge {
    left: 50%;
    top: 310px;
    transform: translateX(-50%);
  }

  .hero__trust {
    bottom: 0;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px 18px;
    font-size: 12px;
  }

  .mission__title-card {
    min-height: 102px;
    margin-bottom: 28px;
  }

  .section-title,
  .mission h2 {
    font-size: 32px;
  }

  .mission__cards,
  .work-grid,
  .difference-grid,
  .team-shell,
  .quote-shell {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work__cta {
    width: min(386px, 100%);
  }

  .work__mark {
    top: 120px;
    font-size: 210px;
  }

  .work-grid {
    margin-top: 76px;
  }

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

  .team-shell {
    margin-top: 30px;
    padding: 18px;
  }

  .team-card {
    min-height: 312px;
  }

  .areas__decor {
    top: 112px;
    width: 560px;
    height: 500px;
  }

  .areas__inner {
    height: auto;
  }

  .zip-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 160px;
    padding: 26px 20px;
  }

  .city-groups {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 28px;
    display: grid;
    gap: 12px;
  }

  .city-groups a,
  .city-groups a:nth-child(1),
  .city-groups a:nth-child(2),
  .city-groups a:nth-child(3),
  .city-groups a:nth-child(4),
  .city-groups a:nth-child(5),
  .city-groups a:nth-child(6) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .areas__link {
    position: relative;
    left: auto;
    top: auto;
    width: min(231px, 100%);
    margin: 18px auto 0;
  }

  .quote-shell {
    gap: 22px;
    padding: 18px;
  }

  .quote-side {
    min-height: 320px;
  }

  .quote-side img {
    width: min(260px, 58%);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .city-modal__panel,
  .cleaner-modal__panel {
    padding: 26px 22px;
  }

  .city-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero__team {
    width: 820px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }

  .team-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 479px) {
  .container {
    width: 320px;
  }

  .site-header,
  .site-header__inner {
    height: 64px;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
  }

  .site-header__inner {
    padding: 0 10px;
  }

  .site-logo,
  .site-logo img {
    width: 150px;
  }

  .mobile-toggle {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--rose);
  }

  .mobile-toggle span {
    width: 16px;
    height: 2px;
    background: #faf9f6;
  }

  .hero {
    height: 570px;
    min-height: 570px;
    padding: 0;
  }

  .hero__content {
    width: 320px;
    padding-top: 80px;
  }

  .hero h1 {
    width: 358px;
    max-width: none;
    margin-left: -19px;
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    width: 294px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .hero__team {
    top: 229px;
    bottom: auto;
    left: calc(50% - 160px - 80px);
    width: 442px;
    height: 184px;
    max-width: none;
    transform: none;
    object-fit: cover;
  }

  .hero__badge {
    min-width: 0;
    min-height: 0;
    padding: 0;
    gap: 0;
    font-size: 0;
  }

  .hero__badge i {
    display: none;
  }

  .hero__badge--local {
    top: 270px;
    left: calc(50% - 160px + 14px);
    width: 53px;
    height: 17px;
  }

  .hero__badge--safe {
    top: 312px;
    left: calc(50% - 160px + 150px);
    width: 60px;
    height: 17px;
  }

  .hero__badge--quality {
    top: 229px;
    left: calc(50% - 160px + 276px);
    width: 55px;
    height: 16px;
  }

  .hero__trust {
    top: 377px;
    bottom: auto;
    left: calc(50% - 160px - 21px);
    width: 363px;
    min-height: 178px;
    display: block;
    padding: 0;
    transform: none;
    border: 0;
    background: var(--soft);
    box-shadow: none;
  }

  .hero__trust > a {
    position: absolute;
    left: 28px;
    top: 30px;
    width: 305px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-size: 14px;
  }

  .hero__trust > p {
    position: absolute;
    left: 100px;
    top: 90px;
    width: 161px;
    margin: 0;
    color: #313131;
    font-size: 12px;
    text-align: center;
  }

  .hero__reviews {
    position: absolute;
    left: 31px;
    top: 124px;
    width: 150px;
    min-height: 44px;
  }

  .hero__reviews strong {
    left: 80px;
    top: 2px;
  }

  .hero__reviews > span:last-child {
    left: 79px;
    top: 22px;
  }

  .hero__reviews strong,
  .hero__score strong {
    font-size: 18px;
  }

  .hero__reviews > span:last-child {
    display: block;
    margin-top: 4px;
    font-size: 10px;
  }

  .hero__score {
    position: absolute;
    left: 273px;
    top: 124px;
    width: 70px;
  }

  .mission {
    height: 771px;
    min-height: 771px;
    padding: 0;
  }

  .mission .container {
    position: relative;
    height: 771px;
  }

  .mission__title-card {
    position: absolute;
    left: 10px;
    top: 0;
    width: 300px;
    min-height: 68px;
    margin: 0;
  }

  .mission h2 {
    width: 264px;
    font-size: 24px;
  }

  .mission__cards,
  .mission-stack {
    display: block;
    padding: 0;
  }

  .mission-card {
    position: absolute;
    left: 10px;
    width: 300px;
    border-radius: 20px;
    padding: 20px;
  }

  .mission-card--deep {
    top: 108px;
    height: 223px;
  }

  .mission-card--top {
    top: 319px;
    height: 188px;
  }

  .mission-card--small {
    top: 517px;
    height: 103px;
    grid-template-columns: 44px 1fr;
    padding: 10px 20px 10px 16px;
  }

  .mission-card p {
    font-size: 12px;
  }

  .work {
    height: 563px;
    min-height: 563px;
    padding: 0;
  }

  .work .container {
    position: relative;
    height: 563px;
  }

  .work .section-title {
    position: absolute;
    left: 164px;
    top: -1px;
    width: 300px;
    transform: translateX(-50%);
    font-size: 24px;
  }

  .work-grid {
    position: absolute;
    left: 10px;
    top: 95px;
    width: 300px;
    margin: 0;
    display: block;
  }

  .work-grid article {
    position: absolute;
    left: 0;
    width: 300px;
    height: 72px;
    padding: 20px 20px 20px 64px;
  }

  .work-grid article:nth-child(1) {
    top: 0;
  }

  .work-grid article:nth-child(2) {
    top: 82px;
  }

  .work-grid article:nth-child(3) {
    top: 164px;
  }

  .work-grid article:nth-child(4) {
    top: 246px;
  }

  .work-grid h3 {
    font-size: 18px;
  }

  .work-grid .spark {
    position: absolute;
    left: 19px;
    top: 24px;
    margin: 0;
    width: 24px;
    height: 24px;
  }

  .work__mark {
    display: none;
  }

  .work__cta {
    position: absolute;
    left: 10px;
    top: 456px;
    width: 300px;
    height: 50px;
    margin: 0;
  }

  .difference {
    height: 1092px;
    min-height: 1092px;
    padding: 0;
  }

  .difference .container {
    position: relative;
    height: 1092px;
  }

  .difference .section-title {
    position: absolute;
    left: -14px;
    top: 0;
    width: 349px;
    font-size: 24px;
  }

  .difference-grid {
    position: absolute;
    left: 0;
    top: 0;
    width: 320px;
    height: 1092px;
    margin: 0;
    display: block;
  }

  .difference-card,
  .difference-card--wide,
  .difference-card--rating,
  .difference-card--cleanings,
  .difference-card:nth-child(3),
  .difference-card:nth-child(4),
  .difference-card:nth-child(5),
  .difference-card:nth-child(6) {
    position: absolute;
    left: 0;
    width: 320px;
    border-radius: 20px;
  }

  .difference-card--cleanings {
    top: 107px;
    height: 114px;
    padding: 20px 20px 0 56px;
  }

  .difference-card:nth-child(4) {
    top: 240px;
    height: 121px;
    padding: 16px 20px 0 56px;
  }

  .difference-card--wide {
    top: 380px;
    height: 136px;
    padding: 15px 18px 0 56px;
  }

  .difference-card:nth-child(6) {
    top: 537px;
    height: 107px;
    padding: 13px 18px 0 56px;
  }

  .difference-card--rating {
    top: 664px;
    height: 141px;
    padding: 20px 18px 0 56px;
  }

  .difference-card:nth-child(5) {
    top: 784px;
    height: 106px;
    padding: 13px 18px 0 56px;
  }

  .difference-card:nth-child(3) {
    top: 911px;
    height: 121px;
    padding: 13px 18px 0 56px;
  }

  .difference-card h3,
  .difference-card--rating p,
  .difference-card--cleanings p {
    margin: 0;
    font-size: 16px;
  }

  .difference-card p,
  .difference-card small {
    width: auto;
    margin: 28px 0 0;
    font-size: 12px;
  }

  .difference-card--wide h3,
  .difference-card--wide p,
  .difference-card:nth-child(4) h3,
  .difference-card:nth-child(4) p,
  .difference-card:nth-child(6) p,
  .difference-card--rating small,
  .difference-card--cleanings small {
    width: auto;
    margin-left: 0;
  }

  .team {
    height: 2078px;
    min-height: 2078px;
    padding: 0;
  }

  .team .container {
    position: relative;
    height: 2078px;
  }

  .team .section-title {
    position: absolute;
    left: -5px;
    top: 0;
    width: 331px;
    font-size: 24px;
  }

  .team-shell {
    position: absolute;
    left: 0;
    top: 94px;
    width: 320px;
    height: 1758px;
    margin: 0;
    display: block;
    padding: 0;
    border-radius: 20px;
  }

  .team-card,
  .team-card:nth-child(1),
  .team-card:nth-child(2),
  .team-card:nth-child(3),
  .team-card:nth-child(4),
  .team-card:nth-child(5),
  .team-card:nth-child(6) {
    position: absolute;
    left: 10px;
    width: 300px;
    height: 291px;
    min-height: 0;
  }

  .team-card:nth-child(1) {
    top: 29px;
  }

  .team-card:nth-child(5) {
    top: 322px;
  }

  .team-card:nth-child(6) {
    top: 615px;
  }

  .team-card:nth-child(2) {
    top: 909px;
  }

  .team-card:nth-child(3) {
    top: 1202px;
  }

  .team-card:nth-child(4) {
    top: 1495px;
  }

  .team-card img,
  .team-card:nth-child(1) img,
  .team-card:nth-child(2) img,
  .team-card:nth-child(3) img,
  .team-card:nth-child(4) img,
  .team-card:nth-child(5) img,
  .team-card:nth-child(6) img {
    left: 33px;
    top: -37px;
    width: 250px;
    height: 337px;
  }

  .team-card:nth-child(1) img {
    left: 63px;
    width: 245px;
  }

  .team-card div {
    left: 35px;
    bottom: 56px;
    width: 287px;
    height: 74px;
    padding: 9px 11px;
  }

  .team-card h3 {
    font-size: 18px;
  }

  .team-card p {
    font-size: 10px;
  }

  .team__caption {
    position: absolute;
    left: 10px;
    top: 1912px;
    width: 300px;
    height: 106px;
    margin: 0;
    padding: 0 20px;
    font-size: 21px;
  }

  .areas {
    height: 1023px;
    min-height: 1023px;
    padding: 0;
  }

  .areas__inner {
    height: 1023px;
  }

  .areas .section-title {
    position: absolute;
    left: 0;
    top: 26px;
    width: 320px;
    font-size: 24px;
  }

  .areas__decor {
    top: 120px;
    left: -48px;
    width: 644px;
    height: 453px;
    transform: none;
  }

  .zip-card {
    position: absolute;
    left: 0;
    top: 265px;
    width: 320px;
    margin: 0;
    padding: 30px 27px;
  }

  .city-groups {
    position: absolute;
    left: 10px;
    top: 410px;
    width: 300px;
    margin: 0;
  }

  .areas__link {
    position: absolute;
    left: 10px;
    top: 910px;
    width: 300px;
    height: 51px;
    margin: 0;
  }

  .quote-section {
    height: 1069px;
    min-height: 1069px;
    padding: 0;
  }

  .quote-section .container {
    position: relative;
    height: 1069px;
  }

  .quote-section .section-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 320px;
    font-size: 24px;
  }

  .quote-shell {
    position: absolute;
    left: -21px;
    top: 103px;
    width: 363px;
    height: 906px;
    display: block;
    padding: 25px 21px;
  }

  .quote-form {
    width: 320px;
    padding: 28px 30px 24px;
  }

  .quote-side {
    min-height: 404px;
    padding-top: 42px;
  }

  .quote-side h3 {
    width: 276px;
    font-size: 24px;
  }

  .quote-contact {
    margin-top: 36px;
    margin-left: 40px;
  }

  .quote-side img {
    right: -5px;
    bottom: -5px;
    width: 282px;
  }

  .site-footer {
    height: 798px;
    padding: 0;
  }

  .site-footer__inner {
    position: relative;
    height: 700px;
    display: block;
    padding-top: 60px;
  }

  .site-footer__brand img {
    width: 200px;
  }

  .site-footer__brand p {
    margin-top: 1px;
    width: 197px;
    font-size: 16px;
  }

  .site-footer nav {
    position: absolute;
    left: 10px;
    width: 300px;
  }

  .site-footer nav:nth-of-type(1) {
    top: 207px;
  }

  .site-footer nav:nth-of-type(2) {
    top: 400px;
  }

  .site-footer nav:nth-of-type(3) {
    top: 570px;
  }

  .site-footer h2 {
    font-size: 24px;
  }

  .site-footer a {
    font-size: 14px;
    line-height: 2.2;
  }

.site-footer__bottom {
  position: absolute;
  left: 10px;
  top: 148px;
  width: 300px;
  display: block;
  color: #525252;
  font-size: 12px;
}
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 640px) {
  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 10050;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 10px;
    height: 50px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-sticky-cta__book {
    height: 48px;
    color: #ffffff;
    background: #9e435a;
  }

  .mobile-sticky-cta__call {
    height: 50px;
    color: #9e435a;
    background: #faf9f6;
    border: 1px solid #9e435a;
  }
}
