:root {
  --paper: #fbfaf7;
  --paper-soft: #f3f1ed;
  --ink: #303030;
  --muted: #565656;
  --wine: #9d4057;
  --wine-dark: #833348;
  --sand: #d9d0c6;
  --sand-deep: #cfc1b4;
  --line: rgba(48, 48, 48, 0.12);
  --shadow: 0 24px 55px rgba(48, 48, 48, 0.12);
  --font-body: "Montserrat", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
select {
  font: inherit;
}

main {
  max-width: 100vw;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.98);
  border-bottom: 1px solid rgba(157, 64, 87, 0.07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 46px;
  width: min(100%, 1200px);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 152px;
  min-width: 152px;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 29px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.nav-link,
.nav-link--button,
.nav-quote {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #000;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}

.nav-link--button {
  gap: 6px;
  padding: 0;
}

.nav-link--button span {
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.nav-link--phone {
  gap: 5px;
  color: var(--wine);
}

.nav-quote {
  min-height: 40px;
  padding: 0 31px;
  background: var(--wine);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(157, 64, 87, 0.19);
}

.nav-link[href="/become-a-cleaner"] {
  color: var(--wine);
  margin-left: 28px;
}

.nav-link--phone {
  margin-left: 6px;
}

.nav-link--city {
  min-width: 100px;
  border: 1px solid var(--wine);
  color: #000;
}

.nav-link--city::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -22px;
  display: grid;
  min-width: 220px;
  padding: 11px;
  border: 1px solid rgba(157, 64, 87, 0.1);
  border-radius: 18px;
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 22px 48px rgba(48, 48, 48, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--paper-soft);
  color: var(--wine);
  outline: 0;
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

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

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

.city-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49, 49, 49, 0.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.city-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 72px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  margin: 12px auto;
  padding: 36px 36px 46px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.city-modal__close {
  position: fixed;
  top: 21px;
  right: 25px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.city-modal__close::before,
.city-modal__close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 3px;
  right: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.city-modal__close::before {
  transform: rotate(45deg);
}

.city-modal__close::after {
  transform: rotate(-45deg);
}

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

.city-modal h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.city-modal a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-bottom: 9px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease;
}

.city-modal a:hover,
.city-modal a:focus-visible {
  background: var(--wine);
  color: var(--paper);
  outline: 0;
}

@media (max-width: 980px) {
  .city-modal__panel {
    width: min(760px, calc(100% - 32px));
    padding: 38px 28px 34px;
  }

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

@media (max-width: 640px) {
  .city-modal__panel {
    width: calc(100% - 22px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    padding: 58px 18px 26px;
  }

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

  .city-modal h2 {
    font-size: 30px;
  }

  .city-modal a {
    min-height: 44px;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 27px;
}

.hero-copy {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.hero-copy h1 {
  max-width: 1080px;
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.02vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 1050px;
  margin: 11px 0 8px;
  color: #454545;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.42;
}

.hero-media {
  position: relative;
  width: 100%;
  height: clamp(390px, 31vw, 465px);
  background-image:
    linear-gradient(90deg, var(--paper) 0%, rgba(251, 250, 247, 0) 9%, rgba(251, 250, 247, 0) 91%, var(--paper) 100%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.12) 0%, rgba(251, 250, 247, 0) 18%, rgba(251, 250, 247, 0) 74%, var(--paper) 100%),
    url("/images/tild3732-6338-4532-b031-326634383861__20260114_2143_image_.png");
  background-position: center;
  background-size: cover;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 40px, 1160px);
  margin: -1px auto 0;
}

.review-cluster,
.quote-cluster,
.rating-cluster {
  display: flex;
  align-items: center;
}

.review-cluster {
  gap: 10px;
}

.review-icons {
  display: flex;
  align-items: center;
  width: 100px;
  height: 50px;
}

.review-icons span {
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: none;
}

.review-icons span:not(:last-child) {
  margin-right: -25px;
}

.review-icons span:nth-child(1) {
  background: var(--wine);
  z-index: 3;
}

.review-icons span:nth-child(2) {
  background: #b9b4ae;
  z-index: 2;
}

.review-icons span:nth-child(3) {
  background: #d8cfc4;
  z-index: 1;
}

.review-icons svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: #faf9f6;
}

.review-cluster p {
  margin: 0;
  color: #313131;
  font-size: 12px;
  line-height: 1.25;
}

.review-cluster strong,
.review-number,
.rating-number {
  color: #313131;
  line-height: 1;
}

.review-cluster strong,
.review-number {
  display: block;
}

.review-cluster strong svg,
.review-number svg,
.rating-number svg {
  display: block;
  width: 100%;
  height: 100%;
}

.review-number {
  width: 58px;
  height: 24px;
}

.review-cluster p span:not(.review-number) {
  display: block;
  margin-top: 5px;
}

.quote-cluster {
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.primary-cta,
.section-cta,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 41px;
  border: 0;
  border-radius: 999px;
  background: #9e435a;
  color: #faf9f6;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  box-shadow: 0 16px 34px rgba(157, 64, 87, 0.25);
  cursor: pointer;
}

.primary-cta {
  width: 400px;
  min-height: 70px;
  font-size: 17px;
}

.quote-cluster span {
  color: #595959;
  font-size: 13px;
  line-height: 1.2;
}

.rating-cluster {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0;
}

.rating-number {
  color: #313131;
  width: 80px;
  height: 33px;
}

.rating-stars {
  color: #9e435a;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 2px;
  white-space: nowrap;
}

.included-section,
.services-section,
.difference-section,
.final-cta {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.included-section {
  padding-top: 116px;
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.difference-copy h2,
.final-cta h2 {
  margin: 0;
  color: #303030;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.7vw, 55px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading h2 span {
  color: var(--wine);
}

.section-heading p,
.difference-copy p,
.final-cta p {
  max-width: 765px;
  margin: 18px auto 0;
  color: #555;
  font-size: 18px;
  line-height: 1.55;
}

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

.included-card {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #eeece8;
  box-shadow: inset 0 0 0 1px rgba(48, 48, 48, 0.04);
}

.included-card summary {
  display: grid;
  grid-template-columns: 92px 1fr 30px;
  gap: 19px;
  align-items: center;
  min-height: 128px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.included-card summary::-webkit-details-marker {
  display: none;
}

.included-card summary img {
  width: 78px;
  height: auto;
  justify-self: center;
}

.included-card summary span {
  color: #303030;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.included-card summary i {
  width: 13px;
  height: 13px;
  justify-self: end;
  border-right: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.included-card[open] summary i {
  transform: rotate(225deg) translate(-1px, -1px);
}

.included-card ul {
  margin: -8px 0 0;
  padding: 0 35px 30px 142px;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

.section-cta {
  display: flex;
  width: 400px;
  margin: 78px auto 0;
}

.services-section {
  padding-top: 105px;
}

.section-heading--compact {
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 20px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 554px;
  padding: 24px 38px 40px;
  border-radius: 18px;
  background: #ded6cd;
  color: #353535;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(48, 48, 48, 0.04);
}

.service-card img {
  width: min(100%, 340px);
  height: 174px;
  object-fit: contain;
}

.service-card h3 {
  max-width: 430px;
  min-height: 78px;
  margin: 24px auto 10px;
  color: #303030;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.16;
  text-align: center;
}

.service-card p {
  width: 100%;
  margin: 0 0 12px;
  color: #4e4e4e;
  font-size: 15px;
  line-height: 1.38;
}

.service-card p strong {
  color: var(--wine);
  font-weight: 700;
}

.service-card__note {
  min-height: 22px;
  text-align: center;
  font-size: 12px !important;
  opacity: 0.78;
}

.service-card__callout {
  margin-top: 10px !important;
  padding: 18px 20px;
  border-radius: 10px;
  background: #fff;
  color: var(--wine) !important;
  font-family: var(--font-display);
  font-size: 20px !important;
  text-align: center;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 254px;
  min-height: 50px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 641px) {
  .service-grid {
    gap: 40px 20px;
  }

  .service-card {
    min-height: 500px;
    padding: 18px 38px 30px;
  }

  .service-card img {
    height: 150px;
  }

  .service-card h3 {
    min-height: 66px;
    margin: 15px auto 8px;
    font-size: 28px;
  }

  .service-card p {
    margin-bottom: 10px;
    font-size: 14.5px;
    line-height: 1.32;
  }

  .service-card__callout {
    padding: 13px 20px;
    font-size: 18px !important;
  }

}

.difference-section {
  display: block;
  padding-top: 128px;
}

.difference-copy {
  position: static;
  max-width: 920px;
  margin: 0 auto 82px;
  text-align: center;
}

.difference-copy h2 {
  text-align: center;
}

.difference-copy h2 span {
  color: var(--wine);
}

.difference-copy p {
  display: none;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.difference-grid article {
  display: block;
  min-height: 180px;
  padding: 26px 16px;
  border-radius: 18px;
  background: #ded6cd;
  box-shadow: inset 0 0 0 1px rgba(48, 48, 48, 0.04);
}

.difference-grid article:nth-child(1),
.difference-grid article:nth-child(7) {
  background: #c6c0ba;
}

.difference-grid article:nth-child(7) {
  grid-column: 1 / -1;
  min-height: 84px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 0 16px;
}

.difference-grid article:nth-child(7) p {
  grid-column: 2;
  margin-top: 4px;
}

.difference-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--wine);
}

.difference-grid article span svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.difference-grid h3 {
  margin: 0;
  color: #303030;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.18;
}

.difference-grid h3 strong {
  color: var(--wine);
  font-weight: 500;
}

.difference-grid p {
  margin: 54px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.58;
}

@media (min-width: 641px) {
  .difference-section {
    padding-top: 71px;
  }

  .difference-grid article {
    min-height: 150px;
    padding: 20px 16px;
  }

  .difference-grid article span {
    margin-bottom: 16px;
  }

  .difference-grid h3 {
    font-size: 23px;
  }

  .difference-grid p {
    margin-top: 26px;
    line-height: 1.42;
  }

  .difference-grid article:nth-child(7) {
    min-height: 84px;
    padding: 18px 16px;
  }
}

.final-cta {
  display: block;
  margin-top: 55px;
  margin-bottom: 61px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.final-cta h2 {
  margin: 0 0 53px;
  color: #303030;
  text-align: center;
}

.final-panel {
  display: grid;
  grid-template-columns: 410px 1fr;
  min-height: 484px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--wine);
  color: #fff;
}

.lead-form {
  display: grid;
  align-self: center;
  gap: 18px;
  width: 410px;
  margin-left: 70px;
  padding: 36px 30px;
  border-radius: 8px;
  background: #ddd4ca;
  color: #303030;
  box-shadow: none;
}

.lead-form h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.lead-form > p {
  margin: -4px 0 8px;
  color: #6a625c;
  font-size: 12px;
  text-align: center;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: #303030;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 47px;
  border: 1px solid rgba(48, 48, 48, 0.11);
  border-radius: 10px;
  background: #f4f1ec;
  color: #303030;
  padding: 0 18px;
  outline: 0;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(157, 64, 87, 0.1);
}

.lead-form button {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
}

.lead-form small {
  color: #706963;
  font-family: var(--font-display);
  font-size: 12px;
  text-align: center;
}

.final-panel__content {
  position: relative;
  min-height: 484px;
  padding: 70px 70px 0 118px;
}

.final-panel__content h3 {
  max-width: 620px;
  margin: 0 0 54px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.final-panel__content p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
}

.final-panel__content img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 440px;
  max-width: 56%;
}

.site-footer {
  background: #303030;
  color: #fff;
  height: 350px;
}

.site-footer__inner {
  position: relative;
  display: block;
  width: 1200px;
  max-width: 100%;
  height: 350px;
  margin: 0 auto;
  padding: 0;
}

.footer-brand {
  position: absolute;
  inset: 0 auto auto 20px;
  width: 260px;
  height: 210px;
}

.footer-logo {
  position: absolute;
  top: 75px;
  left: 0;
  display: block;
  width: 200px;
}

.footer-logo img {
  display: block;
  width: 200px;
  height: auto;
}

.footer-brand p {
  position: absolute;
  top: 140px;
  left: 0;
  width: 197px;
  margin: 0;
  color: #b9b4ae;
  font-size: 16px;
  line-height: 1.55;
}

.footer-brand small {
  position: absolute;
  top: 170px;
  left: 0;
  display: block;
  width: 260px;
  margin: 0;
  color: #525252;
  font-size: 12px;
  line-height: 1.55;
}

.footer-links {
  position: absolute;
  top: 67px;
  display: block;
  width: 260px;
  margin: 0;
  color: #d8cfc4;
  font-size: 14px;
  line-height: 2.2;
}

.footer-links--services {
  left: 320px;
}

.footer-links--company {
  left: 620px;
}

.footer-links--legal {
  left: 920px;
}

.footer-links h3 {
  margin: 0 0 2px;
  color: #b9b4ae;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-links a {
  display: block;
  color: #d8cfc4;
  line-height: 2.2;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 15px;
    font-size: 12px;
  }

  .brand-mark {
    width: 142px;
    min-width: 142px;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    justify-content: space-between;
    gap: 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    flex-direction: column;
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 2px;
    max-height: calc(100vh - 74px);
    overflow: auto;
    padding: 18px 20px 26px;
    border-top: 1px solid rgba(157, 64, 87, 0.08);
    background: rgba(251, 250, 247, 0.99);
    box-shadow: 0 24px 50px rgba(48, 48, 48, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 46px;
    border-bottom: 1px solid rgba(48, 48, 48, 0.06);
    color: var(--wine);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu__quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--wine);
    color: #fff !important;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .quote-cluster {
    grid-row: 1;
  }

  .review-cluster,
  .rating-cluster {
    justify-content: center;
  }

  .included-grid,
  .difference-section,
  .final-cta,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .difference-section {
    gap: 28px;
  }

  .difference-copy {
    position: static;
  }

  .final-cta {
    padding: 0;
  }

  .final-panel {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .lead-form {
    width: min(100%, 410px);
    margin: 0 auto;
  }

  .final-panel__content {
    min-height: 360px;
    padding: 38px 18px 0;
    text-align: center;
  }

  .final-panel__content h3 {
    margin-left: auto;
    margin-right: auto;
  }

  .final-panel__content img {
    right: 50%;
    max-width: 420px;
    width: 82%;
    transform: translateX(50%);
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header__inner {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand-mark {
    width: 145px;
    min-width: 145px;
  }

  .mobile-menu {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .mobile-menu-button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .hero-section {
    padding-top: 13px;
  }

  .hero-copy {
    width: min(100% - 72px, 1160px);
  }

  .hero-copy h1 {
    font-size: 29px;
    font-weight: 400;
    line-height: 1.13;
  }

  .hero-copy p {
    margin: 12px 0 6px;
    font-size: 16px;
    line-height: 1.19;
  }

  .hero-media {
    height: 174px;
    background-position: center;
  }

  .hero-proof {
    width: min(100% - 84px, 306px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    margin-top: 12px;
  }

  .quote-cluster {
    grid-column: 1 / -1;
    gap: 35px;
  }

  .primary-cta,
  .section-cta,
  .lead-form button {
    width: min(100%, 243px);
    min-height: 52px;
    padding: 0 28px;
    font-size: 14px;
  }

  .primary-cta {
    width: min(100%, 305px);
    min-height: 23px;
    box-shadow: none;
  }

  .quote-cluster span {
    font-size: 11px;
  }

  .review-cluster {
    justify-content: flex-start;
    gap: 12px;
    order: 2;
  }

  .review-icons {
    width: 72px;
    height: 36px;
  }

  .review-icons span {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .review-icons span:not(:last-child) {
    margin-right: -18px;
  }

  .review-cluster p {
    font-size: 12px;
  }

  .review-icons svg {
    width: 18px;
    height: 18px;
  }

  .rating-cluster {
    order: 3;
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
  }

  .rating-number {
    font-size: 30px;
  }

  .rating-stars {
    font-size: 12px;
  }

  .included-section,
  .services-section,
  .difference-section,
  .final-cta {
    width: min(100% - 34px, 1200px);
  }

  .included-section {
    padding-top: 30px;
  }

  .services-section {
    padding-top: 70px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .difference-copy h2,
  .final-cta h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .section-heading p,
  .difference-copy p,
  .final-cta p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.52;
  }

  .included-grid {
    gap: 13px;
  }

  .included-card {
    border-radius: 15px;
  }

  .included-card summary {
    grid-template-columns: 75px 1fr 24px;
    gap: 11px;
    min-height: 100px;
    padding: 18px 15px;
  }

  .included-card summary img {
    width: 69px;
  }

  .included-card summary span {
    font-size: 21px;
  }

  .included-card ul {
    padding: 0 22px 22px 104px;
    font-size: 13px;
  }

  .section-cta {
    display: flex;
    margin-top: 31px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .service-card {
    min-height: 0;
    padding: 24px 18px 28px;
  }

  .service-card img {
    height: 132px;
  }

  .service-card h3 {
    min-height: 0;
    margin-top: 16px;
    font-size: 24px;
  }

  .service-card p {
    font-size: 13px;
  }

  .service-card a {
    width: min(100%, 240px);
  }

  .difference-section {
    padding-top: 74px;
  }

  .difference-grid article {
    grid-template-columns: 48px 1fr;
    padding: 22px 18px;
  }

  .difference-grid article span {
    font-size: 34px;
  }

  .difference-grid h3 {
    font-size: 22px;
  }

  .difference-grid p {
    font-size: 13px;
  }

  .final-cta {
    gap: 26px;
    margin-top: 74px;
    margin-bottom: 62px;
    padding: 0;
    border-radius: 0;
  }

  .final-cta h2 {
    margin-bottom: 28px;
  }

  .final-panel {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .lead-form {
    padding: 16px;
  }

  .lead-form h3 {
    font-size: 24px;
  }

  .lead-form input,
  .lead-form select {
    height: 46px;
    border-radius: 18px;
  }

  .final-panel__content {
    min-height: 300px;
    padding: 28px 0 0;
  }

  .final-panel__content h3 {
    font-size: 25px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    width: min(100% - 34px, 1200px);
    gap: 24px;
    min-height: 0;
    padding: 34px 0 82px;
  }

  .footer-brand p {
    margin-top: 0;
  }
}

@media (min-width: 960px) {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    border-bottom: 0;
    background: rgba(250, 249, 246, 1);
  }

  .site-header__inner {
    width: 1200px;
    min-height: 68px;
    padding: 0 20px;
    gap: 46px;
  }

  .brand-mark,
  .brand-mark img {
    width: 150px;
    min-width: 150px;
  }

  .desktop-nav {
    gap: 29px;
    font-size: 14px;
    font-weight: 400;
  }

  .nav-link,
  .nav-link--button,
  .nav-quote {
    min-height: 34px;
    font-weight: 400;
  }

  .nav-link[href="/become-a-cleaner"] {
    margin-left: 28px;
  }

  .nav-link--phone {
    margin-left: 0;
  }

  .nav-quote {
    min-height: 42px;
    padding: 0 31px;
    box-shadow: none;
  }

  .nav-link--city {
    min-width: 100px;
    min-height: 40px;
  }

  .hero-section {
    height: 800px;
    padding: 0;
    overflow: hidden;
    background: #faf9f6;
  }

  .hero-copy {
    width: auto;
    margin: 0;
  }

  .hero-copy h1 {
    position: absolute;
    z-index: 4;
    top: 100px;
    left: calc(50% - 600px + 20px);
    width: 1080px;
    max-width: none;
    color: #313131;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
  }

  .hero-copy p {
    position: absolute;
    z-index: 4;
    top: 172px;
    left: calc(50% - 600px + 20px);
    width: 1080px;
    max-width: none;
    margin: 0;
    color: #313131;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
  }

  .hero-media {
    position: absolute;
    z-index: 1;
    top: 125px;
    left: calc(50% - 600px - 107px);
    width: 1414px;
    height: 724px;
    background-image: url("/images/tild3732-6338-4532-b031-326634383861__20260114_2143_image_.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-media::before,
  .hero-media::after,
  .hero-section::before,
  .hero-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .hero-media::before {
    z-index: 2;
    top: 0;
    left: 0;
    width: 1415px;
    height: 160px;
    background: linear-gradient(180deg, #faf9f6 0%, rgba(250, 249, 246, 0.9) 49%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-media::after {
    z-index: 2;
    left: 0;
    bottom: 48px;
    width: 1413px;
    height: 311px;
    background: linear-gradient(0deg, #faf9f6 0%, rgba(250, 249, 246, 0.92) 49%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-section::before {
    z-index: 2;
    top: 144px;
    left: calc(50% - 600px - 107px);
    width: 116px;
    height: 772px;
    background: linear-gradient(90deg, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-section::after {
    z-index: 2;
    top: 0;
    left: calc(50% - 600px + 1191px);
    width: 116px;
    height: 918px;
    background: linear-gradient(270deg, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-proof {
    position: absolute;
    z-index: 5;
    top: 0;
    left: calc(50% - 600px);
    display: block;
    width: 1200px;
    height: 800px;
    margin: 0;
  }

  .review-cluster {
    position: absolute;
    top: 665px;
    left: 20px;
    gap: 10px;
  }

  .review-icons {
    width: 100px;
    height: 50px;
  }

  .review-icons span {
    width: 50px;
    height: 50px;
    box-shadow: none;
  }

  .review-icons span:nth-child(2) {
    left: auto;
  }

  .review-icons span:nth-child(3) {
    left: auto;
  }

  .review-cluster p {
    margin-top: 4px;
    color: #313131;
    font-size: 12px;
    line-height: 1.2;
  }

  .review-cluster strong,
  .review-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
  }

  .quote-cluster {
    position: absolute;
    top: 649px;
    left: 400px;
    width: 400px;
    gap: 10px;
  }

  .primary-cta {
    width: 400px;
    min-height: 70px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: none;
  }

  .quote-cluster span {
    color: #313131;
    font-size: 12px;
  }

  .rating-cluster {
    position: absolute;
    top: 663px;
    left: 1101px;
    align-items: flex-start;
    width: 80px;
  }

  .rating-number {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
  }

  .rating-stars {
    margin-top: 0;
    font-size: 12px;
  }

  .included-section {
    width: 100%;
    padding-top: 0;
    padding-bottom: 15px;
  }

  .included-section > .section-heading {
    position: relative;
    width: 1200px;
    max-width: 100%;
    height: 210px;
    margin: 0 auto;
  }

  .included-section > .section-heading h2 {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 1080px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
  }

  .included-section > .section-heading p {
    position: absolute;
    top: 138px;
    left: 59px;
    width: 1081px;
    max-width: none;
    margin: 0;
    color: #313131;
    font-size: 18px;
    line-height: 1.2;
  }

  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .included-card {
    border-radius: 20px;
    background: rgba(185, 180, 174, 0.2);
    box-shadow: none;
  }

  .included-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 8px 30px 8px 25px;
    gap: 20px;
  }

  .included-card summary img {
    width: 130px;
    height: 130px;
    object-fit: contain;
  }

  .included-card summary span {
    flex: 1;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
  }

  .included-card summary i {
    width: 0;
    height: 0;
    margin-right: 10px;
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    border-top: 12px solid #9e445a;
    transform: none;
  }

  .included-card[open] summary i {
    transform: rotate(180deg);
  }

  .included-card ul {
    margin: 0;
    padding: 0 25px 20px;
    list-style: none;
    color: #313131;
    font-size: 16px;
    line-height: 1.8;
  }

  .included-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
  }

  .included-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9e445a;
    font-size: 20px;
    line-height: 1.6;
  }

  .section-cta {
    width: 400px;
    min-height: 70px;
    margin-top: 75px;
    font-size: 16px;
    box-shadow: none;
  }

  .services-section {
    position: relative;
    width: 100%;
    height: 1268px;
    padding: 0;
  }

  .services-section .section-heading--compact {
    max-width: none;
    margin: 0;
  }

  .services-section .section-heading--compact h2 {
    position: absolute;
    z-index: 2;
    top: 60px;
    left: calc(50% - 600px + 221px);
    width: 758px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
  }

  .services-section .section-heading--compact p {
    display: none;
  }

  .service-grid {
    position: absolute;
    top: 0;
    left: calc(50% - 600px);
    display: block;
    width: 1200px;
    height: 1268px;
    margin: 0;
  }

  .service-card {
    position: absolute;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    box-shadow: none;
    text-align: left;
  }

  .service-card:nth-child(1) {
    top: 186px;
    left: 60px;
    width: 530px;
    height: 526px;
    background-image: url("/images/tild3733-3234-4337-b331-666430303066__4f88a57b-864d-4c12-a.png");
  }

  .service-card:nth-child(2) {
    top: 184px;
    left: 610px;
    width: 530px;
    height: 526px;
    background-image: url("/images/tild3733-3234-4337-b331-666430303066__4f88a57b-864d-4c12-a.png");
  }

  .service-card:nth-child(3) {
    top: 750px;
    left: 60px;
    width: 530px;
    height: 458px;
    background-image: url("/images/tild6138-3733-4439-a133-333637653131__be295795-006d-458e-9.png");
  }

  .service-card:nth-child(4) {
    top: 750px;
    left: 610px;
    width: 530px;
    height: 458px;
    background-image: url("/images/tild6138-3733-4439-a133-333637653131__be295795-006d-458e-9.png");
  }

  .service-card img {
    position: absolute;
    width: auto;
    max-width: none;
    object-fit: contain;
  }

  .service-card:nth-child(1) img {
    top: -50px;
    left: 115px;
    width: 280px;
    height: 207px;
  }

  .service-card:nth-child(2) img {
    top: -40px;
    left: 114px;
    width: 303px;
    height: 217px;
  }

  .service-card:nth-child(3) img {
    top: -40px;
    left: 125px;
    width: 291px;
    height: 217px;
  }

  .service-card:nth-child(4) img {
    top: -30px;
    left: 125px;
    width: 280px;
    height: 207px;
  }

  .service-card h3 {
    position: absolute;
    width: 286px;
    min-height: 0;
    margin: 0;
    color: #313131;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
  }

  .service-card:nth-child(1) h3,
  .service-card:nth-child(2) h3 {
    top: 177px;
    left: 122px;
  }

  .service-card:nth-child(3) h3,
  .service-card:nth-child(4) h3 {
    top: 177px;
    left: 122px;
    width: 287px;
  }

  .service-card p {
    position: absolute;
    width: 489px;
    margin: 0;
    color: #313131;
    font-size: 14px;
    line-height: 1.2;
  }

  .service-card__note {
    top: 219px;
    left: 21px;
    min-height: 0;
    font-size: 10px !important;
    line-height: 1.2;
    text-align: center;
    opacity: 1;
  }

  .service-card:nth-child(1) p:nth-of-type(2),
  .service-card:nth-child(2) p:nth-of-type(1),
  .service-card:nth-child(3) p:nth-of-type(1),
  .service-card:nth-child(4) p:nth-of-type(1) {
    top: 261px;
    left: 20px;
  }

  .service-card:nth-child(1) p:nth-of-type(3),
  .service-card:nth-child(2) p:nth-of-type(2),
  .service-card:nth-child(3) p:nth-of-type(2),
  .service-card:nth-child(4) p:nth-of-type(2) {
    top: 305px;
    left: 20px;
  }

  .service-card__callout {
    top: 342px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 489px;
    height: 54px;
    margin: 0 !important;
    padding: 0;
    border-radius: 0;
    background: #fff;
    font-size: 18px !important;
    line-height: 1.2;
  }

  .service-card a {
    position: absolute;
    left: 139px;
    width: 252px;
    min-height: 50px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
  }

  .service-card:nth-child(1) a {
    top: 434px;
  }

  .service-card:nth-child(2) a {
    top: 436px;
  }

  .service-card:nth-child(3) a,
  .service-card:nth-child(4) a {
    top: 368px;
  }

  .difference-section {
    position: relative;
    width: 100%;
    height: 757px;
    padding-top: 0;
  }

  .difference-copy {
    position: static;
    max-width: none;
    margin: 0;
  }

  .difference-copy h2 {
    position: absolute;
    z-index: 2;
    top: 60px;
    left: calc(50% - 600px + 251px);
    width: 760px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
  }

  .difference-grid {
    position: absolute;
    top: 0;
    left: calc(50% - 600px);
    display: block;
    width: 1200px;
    height: 757px;
  }

  .difference-grid article {
    position: absolute;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    box-shadow: none;
  }

  .difference-grid article:nth-child(1) {
    top: 197px;
    left: 20px;
    width: 360px;
    height: 164px;
    background-image: url("/images/tild3938-6135-4336-b034-303238366333__01fd964d-3846-40ce-b.png");
  }

  .difference-grid article:nth-child(2) {
    top: 197px;
    left: 400px;
    width: 380px;
    height: 235px;
    background-image: url("/images/tild6561-3536-4563-b939-653265653330__39250b6d-1eae-47b4-8.png");
  }

  .difference-grid article:nth-child(3) {
    top: 197px;
    left: 800px;
    width: 380px;
    height: 183px;
    background-image: url("/images/tild3935-3961-4866-a533-303936303337__c5e7e2a9-637b-4d28-9.png");
  }

  .difference-grid article:nth-child(4) {
    top: 381px;
    left: 20px;
    width: 360px;
    height: 211px;
    background-image: url("/images/tild3465-6637-4034-a161-333364393666__2a8645b5-3295-4830-8.png");
  }

  .difference-grid article:nth-child(5) {
    top: 451px;
    left: 400px;
    width: 380px;
    height: 141px;
    background-image: url("/images/tild3230-3561-4334-b463-393831366361__017af1b3-8303-4e2f-8.png");
  }

  .difference-grid article:nth-child(6) {
    top: 400px;
    left: 800px;
    width: 380px;
    height: 192px;
    background-image: url("/images/tild3730-6262-4764-a434-666638326466__62220d95-7c60-468f-a.png");
  }

  .difference-grid article:nth-child(7) {
    top: 612px;
    left: 20px;
    display: block;
    width: 1161px;
    height: 85px;
    background-image: url("/images/tild6535-3132-4537-a636-666436363832__c0c85727-c2fa-4413-a.png");
  }

  .difference-grid article span {
    position: absolute;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .difference-grid article:not(:nth-child(7)) span {
    top: 21px;
    left: 15px;
  }

  .difference-grid article:nth-child(7) span {
    top: 21px;
    left: 16px;
  }

  .difference-grid h3 {
    position: absolute;
    margin: 0;
    color: #313131;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
  }

  .difference-grid p {
    position: absolute;
    margin: 0;
    color: #313131;
    font-size: 14px;
    line-height: 1.2;
  }

  .difference-grid article:nth-child(1) h3 {
    top: 27px;
    left: 69px;
    width: 263px;
  }

  .difference-grid article:nth-child(1) p {
    top: 115px;
    left: 15px;
    width: 317px;
  }

  .difference-grid article:nth-child(2) h3 {
    top: 109px;
    left: 15px;
    width: 263px;
  }

  .difference-grid article:nth-child(2) p {
    top: 185px;
    left: 15px;
    width: 317px;
  }

  .difference-grid article:nth-child(3) h3 {
    top: 15px;
    left: 69px;
    width: 263px;
  }

  .difference-grid article:nth-child(3) p {
    top: 134px;
    left: 15px;
    width: 331px;
  }

  .difference-grid article:nth-child(4) h3 {
    top: 86px;
    left: 15px;
    width: 302px;
  }

  .difference-grid article:nth-child(4) p {
    top: 162px;
    left: 15px;
    width: 317px;
  }

  .difference-grid article:nth-child(5) h3 {
    top: 28px;
    left: 69px;
    width: 263px;
  }

  .difference-grid article:nth-child(5) p {
    top: 92px;
    left: 15px;
    width: 317px;
  }

  .difference-grid article:nth-child(6) h3 {
    top: 95px;
    left: 15px;
    width: 308px;
  }

  .difference-grid article:nth-child(6) p {
    top: 143px;
    left: 15px;
    width: 332px;
  }

  .difference-grid article:nth-child(7) h3 {
    top: 15px;
    left: 74px;
    width: 393px;
  }

  .difference-grid article:nth-child(7) p {
    top: 53px;
    left: 74px;
    width: 420px;
  }

  .final-cta {
    position: relative;
    width: 100%;
    height: 719px;
    margin: 0;
  }

  .final-cta h2 {
    position: absolute;
    top: 60px;
    left: calc(50% - 600px + 172px);
    width: 1000px;
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
  }

  .final-panel {
    position: absolute;
    top: 174px;
    left: calc(50% - 600px + 20px);
    display: block;
    width: 1160px;
    height: 485px;
    min-height: 0;
    border-radius: 0;
    background: #9e435a;
  }

  .lead-form {
    position: absolute;
    top: 30px;
    left: 70px;
    width: 409px;
    height: 424px;
    margin: 0;
    display: block;
    padding: 30px;
    gap: 0;
    border-radius: 8px;
    background: #ddd4ca;
  }

  .lead-form h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
  }

  .lead-form > p {
    margin: 0 0 24px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
  }

  .lead-form label {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 18px;
  }

  .lead-form span {
    margin: 0 0 8px;
    color: #2c2c2c;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
  }

  .lead-form input {
    height: auto;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: #e8e1d9;
    font-size: 16px;
  }

  .lead-form button {
    width: 100%;
    min-height: 0;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
  }

  .lead-form small {
    display: block;
    margin: 10px 0 0;
    color: #888;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;
  }

  .final-panel__content {
    position: absolute;
    inset: 0;
    min-height: 0;
    padding: 0;
  }

  .final-panel__content h3 {
    position: absolute;
    top: 30px;
    left: 518px;
    width: 582px;
    max-width: none;
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
  }

  .final-panel__content p {
    position: absolute;
    left: 561px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
  }

  .final-panel__content p::before {
    position: absolute;
    left: -37px;
    top: -4px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
  }

  .final-panel__content p:nth-of-type(1)::before {
    content: "☎";
  }

  .final-panel__content p:nth-of-type(2)::before {
    content: "✉";
  }

  .final-panel__content p:nth-of-type(1) {
    top: 153px;
  }

  .final-panel__content p:nth-of-type(2) {
    top: 197px;
  }

  .final-panel__content img {
    position: absolute;
    top: 134px;
    left: 686px;
    right: auto;
    bottom: auto;
    width: 474px;
    max-width: none;
  }

  .site-footer {
    height: 350px;
  }

  .site-footer__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 40px;
    width: 1200px;
    max-width: 100%;
    min-height: 350px;
    padding: 0 20px;
  }

  .footer-brand p {
    margin: 140px 0 0;
    color: #b9b4ae;
    font-size: 16px;
    line-height: 1.55;
  }

  .footer-brand small {
    margin-top: 0;
    color: #525252;
    font-size: 12px;
    line-height: 1.55;
  }

  .footer-links {
    gap: 0;
    margin-top: 67px;
    color: #d8cfc4;
    font-size: 14px;
    line-height: 2.2;
  }

  .footer-links h3 {
    margin: 0 0 2px;
    color: rgba(185, 180, 174, 0.2);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.55;
  }

  .footer-links a {
    color: #d8cfc4;
    line-height: 2.2;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .site-header__inner {
    width: 960px;
  }

  .hero-section {
    height: 760px;
  }

  .hero-copy h1 {
    top: 101px;
    left: calc(50% - 480px + 10px);
    width: 942px;
    font-size: 46px;
    line-height: 1.2;
  }

  .hero-copy p {
    top: 165px;
    left: calc(50% - 480px + 10px);
    width: 941px;
  }

  .hero-media {
    top: 163px;
    left: calc(50% - 600px - 107px);
    width: 1169px;
    height: 597px;
  }

  .hero-media::before {
    top: -52px;
    width: 1414px;
    height: 226px;
  }

  .hero-media::after {
    top: 371px;
    bottom: auto;
    width: 1414px;
    height: 226px;
  }

  .hero-section::after {
    left: calc(50% - 480px + 946px);
  }

  .hero-proof {
    left: calc(50% - 480px);
    width: 960px;
    height: 760px;
  }

  .review-cluster {
    top: 639px;
    left: 40px;
  }

  .quote-cluster {
    top: 639px;
    left: 287px;
    width: 386px;
  }

  .primary-cta {
    width: 386px;
    min-height: 50px;
  }

  .rating-cluster {
    top: 637px;
    left: 842px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    border-bottom: 0;
    background: #faf9f6;
  }

  main {
    padding-top: 0;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .hero-copy h1,
  .section-heading h2,
  .difference-copy h2,
  .final-cta h2,
  .included-card summary span,
  .service-card h3,
  .difference-grid h3 {
    font-weight: 400 !important;
  }

  .hero-section {
    height: 590px;
    padding: 0;
    background: #faf9f6;
  }

  .hero-copy {
    width: auto;
    margin: 0;
  }

  .hero-copy h1 {
    position: absolute;
    z-index: 4;
    top: 80px;
    left: calc(50% - 160px);
    width: 358px;
    max-width: none;
    margin: 0;
    color: #313131;
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-copy p {
    position: absolute;
    z-index: 4;
    top: 158px;
    left: calc(50% - 160px);
    width: 320px;
    max-width: none;
    margin: 0;
    color: #313131;
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-media {
    position: absolute;
    z-index: 1;
    top: 189px;
    left: calc(50% - 160px - 80px);
    width: 442px;
    height: 226px;
    background-image: url("/images/tild3732-6338-4532-b031-326634383861__20260114_2143_image_.png");
    background-position: center center;
    background-size: cover;
  }

  .hero-media::before,
  .hero-media::after {
    content: "";
    position: absolute;
    left: 0;
    width: 442px;
    pointer-events: none;
  }

  .hero-media::before {
    top: 0;
    height: 70px;
    background: linear-gradient(180deg, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-media::after {
    bottom: 0;
    height: 122px;
    background: linear-gradient(0deg, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-proof {
    position: absolute;
    z-index: 5;
    top: 0;
    left: calc(50% - 160px);
    display: block;
    width: 320px;
    height: 590px;
    margin: 0;
  }

  .quote-cluster {
    position: absolute;
    top: 409px;
    left: 7px;
    width: 305px;
    gap: 37px;
  }

  .primary-cta,
  .section-cta {
    width: 305px;
    min-height: 23px;
    padding: 0 28px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: none;
  }

  .quote-cluster span {
    color: #313131;
    font-size: 12px;
    line-height: 1.2;
  }

  .review-cluster {
    position: absolute;
    top: 503px;
    left: 10px;
    gap: 7px;
  }

  .review-icons {
    width: 72px;
    height: 36px;
  }

  .review-icons span {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    box-shadow: none;
  }

  .review-icons span:nth-child(2) {
    left: auto;
  }

  .review-icons span:nth-child(3) {
    left: auto;
  }

  .review-icons span:not(:last-child) {
    margin-right: -18px;
  }

  .review-icons svg {
    width: 18px;
    height: 18px;
  }

  .review-cluster p {
    color: #313131;
    font-size: 12px;
    line-height: 1.25;
  }

  .review-cluster strong,
  .review-number {
    width: 42px;
    height: 17.4px;
  }

  .review-cluster p span:not(.review-number) {
    margin-top: 2px;
  }

  .rating-cluster {
    position: absolute;
    top: 503px;
    left: 252px;
    align-items: flex-start;
    width: 58px;
    gap: 0;
  }

  .rating-number {
    width: 58px;
    height: 23.9px;
  }

  .rating-stars {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.25;
  }

  .included-section {
    width: 100%;
    padding-top: 0;
    padding-bottom: 100px;
  }

  .included-section > .section-heading {
    width: 390px;
    max-width: 100%;
    min-height: 150px;
    margin: 0 auto 26px;
    text-align: center;
  }

  .included-section .section-heading h2 {
    width: 299px;
    margin: 0 0 0 -33px;
    font-size: 24px !important;
    line-height: 1.2;
    text-align: center;
  }

  .included-section .section-heading p {
    width: 310px;
    max-width: none;
    margin: 20px auto 0;
    color: #313131;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }

  .included-grid {
    width: 100%;
    gap: 15px;
    padding: 0 15px;
  }

  .included-card {
    border-radius: 15px;
    background: rgba(185, 180, 174, 0.2);
    box-shadow: none;
  }

  .included-card summary {
    display: flex;
    align-items: center;
    min-height: 85px;
    padding: 5px 20px 5px 16px;
    gap: 15px;
  }

  .included-card summary img {
    width: 75px;
    height: 75px;
    object-fit: contain;
  }

  .included-card summary span {
    flex: 1;
    font-size: 18px !important;
    line-height: 1.2;
  }

  .included-card summary i {
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent;
    border-top: 10px solid #9e445a;
    transform: none;
  }

  .included-card[open] summary i {
    transform: rotate(180deg);
  }

  .included-card ul {
    margin: 0;
    padding: 0 24px 20px 24px;
    list-style: none;
    color: #313131;
    font-size: 13px;
    line-height: 1.55;
  }

  .section-cta {
    margin-top: 31px;
  }

  .services-section {
    width: 100%;
    padding-top: 0;
    padding-bottom: 56px;
  }

  .services-section .section-heading--compact {
    width: 320px;
    margin: 0 auto 101px;
  }

  .services-section .section-heading--compact h2 {
    width: 320px;
    margin: 0;
    font-size: 24px !important;
    line-height: 1.2;
    text-align: center;
  }

  .services-section .section-heading--compact p {
    display: none;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 320px;
    gap: 44px;
    margin: 0 auto;
  }

  .service-card {
    position: relative;
    min-height: 429px;
    padding: 0;
    border-radius: 15px;
    background: #ddd4ca;
  }

  .service-card:nth-child(2) {
    min-height: 508px;
  }

  .service-card:nth-child(3) {
    min-height: 458px;
  }

  .service-card:nth-child(4) {
    min-height: 459px;
  }

  .service-card img {
    position: absolute;
    top: -62px;
    left: 30px;
    width: 260px;
    height: 170px;
    margin: 0;
    object-fit: contain;
  }

  .service-card h3 {
    position: absolute;
    top: 144px;
    left: 35px;
    width: 250px;
    min-height: 0;
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
  }

  .service-card p {
    position: absolute;
    left: 20px;
    width: 286px;
    margin: 0;
    color: #313131;
    font-size: 14px;
    line-height: 1.2;
  }

  .service-card__note {
    top: 179px;
    font-size: 10px !important;
    line-height: 1.2 !important;
    text-align: center;
  }

  .service-card:nth-child(1) p:nth-of-type(2) {
    top: 221px;
  }

  .service-card:nth-child(1) p:nth-of-type(3) {
    top: 275px;
  }

  .service-card__callout {
    position: absolute;
    width: 286px;
    height: 66px;
    margin: 0 !important;
    padding: 13px 16px;
    border-radius: 7px;
    font-size: 18px !important;
    line-height: 1.15;
  }

  .service-card a {
    position: absolute;
    left: 60px;
    width: 200px;
    min-height: 23px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    box-shadow: none;
  }

  .service-card:nth-child(1) a {
    top: 349px;
  }

  .service-card:nth-child(2) h3 {
    top: 144px;
    left: 35px;
  }

  .service-card:nth-child(2) p:nth-of-type(1) {
    top: 234px;
  }

  .service-card:nth-child(2) p:nth-of-type(2) {
    top: 288px;
  }

  .service-card:nth-child(2) .service-card__callout {
    top: 338px;
    left: 20px;
  }

  .service-card:nth-child(2) a {
    top: 428px;
  }

  .service-card:nth-child(3) h3 {
    top: 156px;
    left: 52px;
    width: 224px;
  }

  .service-card:nth-child(3) p:nth-of-type(1) {
    top: 246px;
  }

  .service-card:nth-child(3) p:nth-of-type(2) {
    top: 300px;
  }

  .service-card:nth-child(3) a {
    top: 374px;
  }

  .service-card:nth-child(4) h3 {
    top: 172px;
    left: 17px;
    width: 286px;
    font-size: 24px;
  }

  .service-card:nth-child(4) p:nth-of-type(1) {
    top: 241px;
  }

  .service-card:nth-child(4) p:nth-of-type(2) {
    top: 296px;
  }

  .service-card:nth-child(4) a {
    top: 370px;
  }

  .difference-section {
    width: 100%;
    padding-top: 0;
  }

  .difference-copy {
    max-width: none;
    margin: 0 auto 77px;
  }

  .difference-copy h2 {
    width: 390px;
    margin: 0 auto;
    font-size: 24px !important;
    line-height: 1.2;
    text-align: center;
  }

  .difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 320px;
    gap: 20px;
    margin: 0 auto;
  }

  .difference-grid article,
  .difference-grid article:nth-child(7) {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0 6px;
    min-height: 114px;
    padding: 17px 12px 13px 12px;
    border-radius: 15px;
    background: #ddd4ca;
  }

  .difference-grid article:nth-child(3) {
    order: 4;
  }

  .difference-grid article:nth-child(4) {
    order: 3;
  }

  .difference-grid article:nth-child(1) {
    order: 1;
  }

  .difference-grid article:nth-child(2) {
    order: 2;
  }

  .difference-grid article:nth-child(5) {
    order: 5;
  }

  .difference-grid article:nth-child(6) {
    order: 6;
  }

  .difference-grid article:nth-child(7) {
    order: 7;
  }

  .difference-grid article:nth-child(2) {
    min-height: 121px;
  }

  .difference-grid article:nth-child(3),
  .difference-grid article:nth-child(4) {
    min-height: 107px;
  }

  .difference-grid article:nth-child(5) {
    min-height: 100px;
  }

  .difference-grid article:nth-child(6) {
    min-height: 106px;
  }

  .difference-grid article:nth-child(7) {
    min-height: 121px;
  }

  .difference-grid article:nth-child(1),
  .difference-grid article:nth-child(7) {
    background: #c6c0ba;
  }

  .difference-grid article span {
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .difference-grid article span svg {
    width: 20px;
    height: 20px;
  }

  .difference-grid h3 {
    margin: 2px 0 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .difference-grid p,
  .difference-grid article:nth-child(7) p {
    grid-column: 1 / -1;
    margin: 9px 0 0;
    color: #313131;
    font-size: 12px;
    line-height: 1.25;
  }

  .final-cta {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 72px;
  }

  .final-cta h2 {
    width: 320px;
    margin: 0 auto 50px;
    font-size: 24px !important;
    line-height: 1.2;
  }

  .final-panel {
    display: block;
    width: 362px;
    min-height: 804px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    background: #a9445f;
  }

  .lead-form {
    width: 320px;
    margin: 0 auto;
    padding: 26px 20px 21px;
    border-radius: 8px;
    background: #ddd4ca;
  }

  .lead-form h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
  }

  .lead-form > p {
    margin-top: 11px;
    margin-bottom: 26px;
    font-size: 12px;
  }

  .lead-form span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
  }

  .lead-form input,
  .lead-form select {
    height: 50px;
    border-radius: 8px;
    background: #f4f1ec;
  }

  .lead-form button {
    min-height: 50px;
    border-radius: 30px;
  }

  .final-panel__content {
    position: relative;
    min-height: 346px;
    padding: 0;
  }

  .final-panel__content h3 {
    width: 296px;
    margin: 30px auto 29px;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.1;
  }

  .final-panel__content p {
    margin: 0 0 20px 42px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
  }

  .final-panel__content img {
    right: auto;
    left: 64px;
    bottom: -20px;
    width: 298px;
    max-width: none;
    transform: none;
  }

  .site-footer {
    min-height: 798px;
  }

  .site-footer__inner {
    width: 300px;
    gap: 24px;
    padding: 116px 0 39px;
  }

  .footer-brand p {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.55;
  }

  .footer-brand small {
    font-size: 12px;
    line-height: 1.55;
  }

  .footer-links {
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-links h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    border-bottom: 0;
    background: #faf9f6;
  }

  main {
    padding-top: 0;
  }

  .hero-section {
    height: 710px;
    padding: 0;
    overflow: hidden;
    background: #faf9f6;
  }

  .hero-copy {
    width: auto;
    margin: 0;
  }

  .hero-copy h1 {
    position: absolute;
    z-index: 4;
    top: 101px;
    left: calc(50% - 320px + 9px);
    width: 640px;
    max-width: none;
    margin: 0;
    color: #313131;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
  }

  .hero-copy p {
    position: absolute;
    z-index: 4;
    top: 149px;
    left: calc(50% - 320px + 9px);
    width: 630px;
    max-width: none;
    margin: 0;
    color: #313131;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-media {
    position: absolute;
    z-index: 1;
    top: 200px;
    left: calc(50% - 320px - 125px);
    width: 836px;
    height: 426px;
    background-image: url("/images/tild3732-6338-4532-b031-326634383861__20260114_2143_image_.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-media::before,
  .hero-media::after,
  .hero-section::before,
  .hero-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .hero-media::before {
    z-index: 2;
    top: -39px;
    left: 28px;
    width: 818px;
    height: 151px;
    background: linear-gradient(180deg, #faf9f6 0%, rgba(250, 249, 246, 0.9) 49%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-media::after {
    z-index: 2;
    top: 275px;
    bottom: auto;
    left: 18px;
    width: 818px;
    height: 151px;
    background: linear-gradient(0deg, #faf9f6 0%, rgba(250, 249, 246, 0.92) 49%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-section::before {
    z-index: 2;
    top: 149px;
    left: calc(50% - 600px - 107px);
    width: 116px;
    height: 767px;
    background: linear-gradient(90deg, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-section::after {
    z-index: 2;
    top: 92px;
    left: calc(50% - 320px + 595px);
    width: 115px;
    height: 824px;
    background: linear-gradient(270deg, #faf9f6 0%, rgba(250, 249, 246, 0) 100%);
  }

  .hero-proof {
    position: absolute;
    z-index: 5;
    top: 0;
    left: calc(50% - 320px);
    display: block;
    width: 640px;
    height: 710px;
    margin: 0;
  }

  .quote-cluster {
    position: absolute;
    top: 518px;
    left: 127px;
    width: 386px;
    gap: 35.2px;
  }

  .primary-cta {
    width: 386px;
    height: 24.8px;
    min-height: 24.8px;
    font-size: 16px;
    box-shadow: none;
  }

  .quote-cluster span {
    color: #313131;
    font-size: 12px;
    line-height: 1.2;
  }

  .review-cluster {
    position: absolute;
    top: 621px;
    left: 127px;
    gap: 10px;
  }

  .review-icons {
    width: 100px;
    height: 50px;
  }

  .review-icons span {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    box-shadow: none;
  }

  .review-icons span:not(:last-child) {
    margin-right: -25px;
  }

  .review-icons svg {
    width: 25px;
    height: 25px;
  }

  .review-number {
    width: 58px;
    height: 24px;
  }

  .rating-cluster {
    position: absolute;
    top: 621px;
    left: 433px;
    align-items: flex-start;
    width: 80px;
  }

  .rating-number {
    width: 80px;
    height: 33px;
  }
}

@media (min-width: 480px) and (max-width: 639px) {
  .hero-section {
    height: 650px;
  }

  .hero-copy h1 {
    top: 101px;
    left: calc(50% - 240px + 9px);
    width: 480px;
    font-size: 32px;
  }

  .hero-copy p {
    top: 149px;
    left: calc(50% - 240px + 12px);
    width: 459px;
    font-size: 16px;
  }

  .hero-media {
    top: 172px;
    left: calc(50% - 240px - 122px);
    width: 665px;
    height: 341px;
  }

  .hero-media::before {
    top: -24px;
    left: -37px;
    width: 818px;
    height: 207px;
  }

  .hero-media::after {
    top: 208px;
    left: -47px;
    width: 818px;
    height: 207px;
  }

  .hero-section::before {
    top: 172px;
    left: calc(50% - 240px - 125px);
    height: 744px;
  }

  .hero-section::after {
    top: 92px;
    left: calc(50% - 240px + 426px);
  }

  .hero-proof {
    left: calc(50% - 240px);
    width: 480px;
    height: 650px;
  }

  .quote-cluster {
    top: 463px;
    left: 47px;
    width: 386px;
    gap: 10px;
  }

  .primary-cta {
    width: 386px;
    min-height: 50px;
    font-size: 16px;
  }

  .quote-cluster span {
    font-size: 12px;
  }

  .review-cluster {
    top: 566px;
    left: 47px;
    gap: 10px;
  }

  .review-icons {
    width: 100px;
    height: 50px;
  }

  .review-icons span {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .review-icons span:not(:last-child) {
    margin-right: -25px;
  }

  .review-icons svg {
    width: 25px;
    height: 25px;
  }

  .review-number {
    width: 58px;
    height: 24px;
  }

  .rating-cluster {
    top: 566px;
    left: 353px;
    width: 80px;
  }

  .rating-number {
    width: 80px;
    height: 33px;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .included-section > .section-heading {
    position: relative;
    width: 640px;
    max-width: 100%;
    height: 199px;
    min-height: 0;
    margin: 0 auto;
    text-align: center;
  }

  .included-section .section-heading h2 {
    position: absolute;
    top: 60px;
    left: calc(50% - 320px - 220px);
    width: 1080px;
    max-width: none;
    height: auto;
    margin: 0;
    font-size: 30px !important;
    line-height: 1.2;
    text-align: center;
  }

  .included-section .section-heading p {
    position: absolute;
    top: 138px;
    left: calc(50% - 320px - 220px);
    width: 1081px;
    max-width: none;
    height: auto;
    margin: 0;
    color: #313131;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}

@media (min-width: 480px) and (max-width: 639px) {
  .included-section > .section-heading {
    position: relative;
    width: 480px;
    max-width: 100%;
    height: 209px;
    min-height: 0;
    margin: 0 auto;
    text-align: center;
  }

  .included-section .section-heading h2 {
    position: absolute;
    top: 60px;
    left: calc(50% - 240px + 12px);
    width: 459px;
    max-width: none;
    height: 72px;
    margin: 0;
    font-size: 30px !important;
    line-height: 1.2;
    text-align: center;
  }

  .included-section .section-heading p {
    position: absolute;
    top: 152px;
    left: calc(50% - 240px - 300px);
    width: 1081px;
    max-width: none;
    height: auto;
    margin: 0;
    color: #313131;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .included-section > .section-heading {
    position: relative;
    width: 320px;
    max-width: 100%;
    height: 150px;
    min-height: 0;
    margin: 0 auto 26px;
    text-align: center;
  }

  .included-section .section-heading h2 {
    position: absolute;
    top: 0;
    left: calc(50% - 240px + 12px);
    width: 299px;
    max-width: none;
    height: auto;
    margin: 0;
    font-size: 24px !important;
    line-height: 1.2;
    text-align: center;
  }

  .included-section .section-heading p {
    position: absolute;
    top: 82px;
    left: calc(50% - 160px + 5px);
    width: 310px;
    max-width: none;
    height: 38px;
    margin: 0;
    color: #313131;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }
}

/* Footer parity with the original Tilda footer record. */
.site-footer {
  height: 350px;
  min-height: 0;
  background: #303030;
  color: #d8cfc4;
}

.site-footer__inner {
  position: relative;
  display: block;
  width: 1200px;
  max-width: 100%;
  height: 350px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.footer-brand {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
}

.footer-logo {
  position: absolute;
  top: 75px;
  left: 20px;
  display: block;
  width: 200px;
  height: auto;
}

.footer-logo img {
  display: block;
  width: 200px;
  height: auto;
  max-width: none;
}

.footer-brand p {
  position: absolute;
  top: 140px;
  left: 20px;
  width: 197px;
  margin: 0;
  color: #b9b4ae;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  white-space: nowrap;
}

.footer-brand small {
  position: absolute;
  top: 170px;
  left: 20px;
  display: block;
  width: 260px;
  margin: 0;
  color: #525252;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-links {
  position: absolute;
  display: block;
  width: 260px;
  margin: 0;
  padding-top: 39px;
  color: #d8cfc4;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
}

.footer-links--services {
  top: 67px;
  left: 320px;
}

.footer-links--company {
  top: 67px;
  left: 620px;
}

.footer-links--legal {
  top: 67px;
  left: 920px;
}

.footer-links h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  color: #b9b4ae;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-links a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #d8cfc4;
  font-size: inherit;
  font-weight: 400;
  line-height: 2.2;
}

@media (min-width: 960px) and (max-width: 1199px) {
  .site-footer {
    height: 299px;
  }

  .site-footer__inner {
    width: 960px;
    height: 299px;
  }

  .footer-logo {
    top: 69px;
    left: 11px;
  }

  .footer-brand p {
    top: 126px;
    left: 11px;
  }

  .footer-brand small {
    top: 156px;
    left: 10px;
    width: 210px;
  }

  .footer-links {
    width: 220px;
    font-size: 12px;
    padding-top: 36px;
  }

  .footer-links h3 {
    font-size: 21px;
  }

  .footer-links--services {
    top: 68px;
    left: 250px;
  }

  .footer-links--company {
    top: 69px;
    left: 490px;
    padding-top: 35px;
  }

  .footer-links--legal {
    top: 68px;
    left: 731px;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .site-footer {
    height: 420px;
  }

  .site-footer__inner {
    width: 640px;
    height: 420px;
  }

  .footer-logo {
    top: 75px;
    left: 14px;
  }

  .footer-brand p {
    top: 132px;
    left: 14px;
  }

  .footer-brand small {
    top: 162px;
    left: 10px;
    width: 220px;
  }

  .footer-links {
    width: 220px;
    font-size: 12px;
    padding-top: 30px;
  }

  .footer-links h3 {
    font-size: 21px;
  }

  .footer-links--services {
    top: 70px;
    left: 250px;
  }

  .footer-links--company {
    top: 70px;
    left: 452px;
  }

  .footer-links--legal {
    top: 259px;
    left: 250px;
    padding-top: 31px;
  }
}

@media (min-width: 480px) and (max-width: 639px) {
  .site-footer {
    height: 451px;
  }

  .site-footer__inner {
    width: 480px;
    height: 451px;
  }

  .footer-logo {
    top: 61px;
    left: 10px;
  }

  .footer-brand p {
    top: 118px;
    left: 10px;
  }

  .footer-brand small {
    top: 148px;
    left: 10px;
    width: 220px;
  }

  .footer-links {
    width: 220px;
    font-size: 12px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .footer-links--services {
    top: 60px;
    left: 250px;
    padding-top: 28px;
  }

  .footer-links--company {
    top: 237px;
    left: 10px;
    padding-top: 31px;
  }

  .footer-links--legal {
    top: 237px;
    left: 251px;
    padding-top: 31px;
  }
}

@media (max-width: 479px) {
  .site-footer {
    height: 798px;
  }

  .site-footer__inner {
    width: 320px;
    height: 798px;
  }

  .footer-logo {
    top: 60px;
    left: 10px;
  }

  .footer-brand p {
    top: 117px;
    left: 10px;
  }

  .footer-brand small {
    top: 148px;
    left: 10px;
    width: 300px;
  }

  .footer-links {
    width: 300px;
    font-size: 12px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .footer-links--services {
    top: 207px;
    left: 10px;
    padding-top: 29px;
  }

  .footer-links--company {
    top: 400px;
    left: 10px;
    padding-top: 30px;
  }

  .footer-links--legal {
    top: 570px;
    left: 11px;
    padding-top: 28px;
  }
}
