@font-face {
  font-family: "Lyon Display";
  src: url("/assets/fonts/lyon-display.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Maytra";
  src: url("/assets/fonts/maytra.ttf") format("truetype");
  font-display: swap;
}

:root {
  --brown: #5a4032;
  --brown-dark: #463126;
  --cream: #f2eee8;
  --cream-deep: #e9e1d8;
  --white: #fff;
  --green: #25d366;
  --serif: "the-seasons", "Lyon Display", Georgia, serif;
  --display: "Lyon Display", "the-seasons", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --content: 1440px;
  --page-pad: clamp(16px, 2vw, 28px);
  --section-y: clamp(72px, 9vw, 130px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.42;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(44px, 5.2vw, 78px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.2vw, 64px);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(27px, 2.4vw, 38px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--brown);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, var(--content));
  min-height: 82px;
  margin: 0 auto;
  padding: 16px var(--page-pad);
}

.header-social {
  justify-self: start;
}

.brand {
  display: block;
  width: clamp(220px, 25vw, 320px);
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  transition: opacity .2s ease, transform .2s ease;
}

.social-links a:hover {
  opacity: .7;
  transform: translateY(-2px);
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.social-links .icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-links--light {
  color: var(--cream);
}

.menu-toggle {
  position: relative;
  z-index: 1101;
  display: grid;
  justify-self: end;
  width: 46px;
  height: 34px;
  padding: 5px 0;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 100%;
  height: 1.5px;
  transform-origin: center;
  background: currentColor;
  transition: transform .35s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] {
  position: fixed;
  top: 24px;
  right: max(var(--page-pad), calc((100vw - var(--content)) / 2 + var(--page-pad)));
  color: var(--cream);
}

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

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

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

.menu-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-y: auto;
  visibility: hidden;
  transform: translateY(-100%);
  background: var(--brown);
  color: var(--cream);
  transition: transform .6s cubic-bezier(.77, 0, .18, 1), visibility .6s;
}

.menu-overlay[aria-hidden="false"] {
  visibility: visible;
  transform: translateY(0);
}

.menu-overlay__top {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  padding: 16px var(--page-pad);
}

.menu-overlay__content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  width: min(100%, 1160px);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(50px, 8vh, 100px) var(--page-pad);
}

.menu-overlay ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-overlay nav a {
  display: inline-block;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 75px);
  line-height: 1.13;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.menu-overlay nav a:hover,
.menu-overlay nav a[aria-current="page"] {
  opacity: .55;
  transform: translateX(8px);
}

.menu-overlay__details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 8px;
}

.menu-overlay__details > a {
  text-decoration: none;
}

.menu-overlay__details .social-links {
  margin-top: 24px;
}

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.eyebrow {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cream);
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 27px;
  border: 1px solid currentColor;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.button svg,
.form-actions button svg {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: var(--cream);
}

.button--light:hover,
.button--solid {
  background: var(--cream);
  color: var(--brown);
}

.button--solid:hover {
  background: var(--brown);
  color: var(--cream);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading h2 em {
  font-weight: 300;
}

.hero {
  position: relative;
  display: grid;
  width: calc(100% - var(--page-pad) * 2);
  min-height: min(720px, calc(100vh - 100px));
  margin: 0 auto 40px;
  overflow: hidden;
  place-items: center;
  background: #222;
  color: var(--cream);
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .24)), url("/assets/images/hero-brows.jpg") center 48% / cover no-repeat;
  transition: background .3s, border-radius .3s, opacity .3s;
}

.hero:hover::before {
  transform: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(92%, 700px);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 400;
  line-height: .95;
}

.hero h1 em {
  font-weight: 300;
}

.rating {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px;
  font-family: var(--sans);
  font-size: 12px;
}

.rating__google {
  color: #4285f4;
  font-size: 17px;
  font-weight: 600;
}

.rating__stars {
  color: #e8a94b;
  letter-spacing: 2px;
}

.home-intro {
  padding: var(--section-y) var(--page-pad);
  background: var(--brown);
  color: var(--cream);
}

.home-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  width: min(100%, var(--content));
  margin: 0 auto;
}

.home-intro__image {
  position: relative;
  max-width: 620px;
}

.home-intro__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.promo-badge {
  position: absolute;
  top: 9%;
  right: -55px;
  display: grid;
  width: clamp(118px, 10vw, 160px);
  aspect-ratio: 1;
  padding: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.promo-badge strong {
  display: block;
  font-weight: 600;
}

.home-intro__content {
  max-width: 610px;
}

.home-intro__content .eyebrow,
.home-intro__content h2 {
  color: var(--cream);
}

.home-intro__content p {
  margin-bottom: 30px;
  font-size: clamp(16px, 1.35vw, 20px);
}

.results-preview,
.results-page {
  padding: var(--section-y) 0;
}

.results-preview .section-heading,
.results-page .section-heading {
  margin-bottom: clamp(45px, 6vw, 80px);
  padding-inline: var(--page-pad);
}

.image-strip {
  display: grid;
  grid-auto-columns: min(440px, 72vw);
  grid-auto-flow: column;
  gap: 18px;
  padding: 0 var(--page-pad) 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--brown) transparent;
  scrollbar-width: thin;
}

.image-strip__item {
  position: relative;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 0;
  border-radius: 10px;
  background: #ddd;
  cursor: zoom-in;
}

.image-strip__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease;
}

.image-strip__item:hover img {
  transform: scale(1.025);
}

.results-preview__action {
  margin-top: 35px;
  padding-inline: var(--page-pad);
  text-align: center;
}

.testimonials {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.testimonials .section-heading {
  margin-bottom: 55px;
}

.testimonials .section-heading h2 {
  font-size: clamp(28px, 3vw, 43px);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin: 0;
  padding: 35px 30px;
  border: 1px solid var(--brown);
  text-align: center;
}

.testimonial-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 17px;
}

.testimonial-card p {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.swipe-hint {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.swipe-hint span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
  opacity: .25;
}

.swipe-hint span:first-child {
  opacity: 1;
}

.texture-section {
  background: linear-gradient(rgba(242, 238, 232, .08), rgba(242, 238, 232, .08)), url("/assets/images/palm-shadow.jpg") center / cover no-repeat;
}

.site-footer {
  color: var(--cream);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  padding: 70px var(--page-pad);
  color: var(--brown);
  text-align: center;
}

.footer-cta > img {
  width: 92px;
  margin-bottom: 20px;
}

.footer-cta__title {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
}

.footer-cta__title em {
  font-weight: 300;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .7fr .6fr 1fr;
  gap: clamp(35px, 5vw, 80px);
  padding: 85px max(var(--page-pad), calc((100vw - var(--content)) / 2 + var(--page-pad)));
  background: var(--brown);
}

.footer-brand img {
  width: min(100%, 330px);
  margin-bottom: 24px;
}

.footer-brand p {
  opacity: .78;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 7px;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact .eyebrow {
  width: 100%;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(var(--page-pad), calc((100vw - var(--content)) / 2 + var(--page-pad)));
  border-top: 1px solid rgba(242, 238, 232, .22);
  background: var(--brown);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.footer-legal button {
  padding: 0;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.footer-legal button:hover {
  border-bottom-color: currentColor;
}

.consent-banner {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 24px 26px;
  border: 1px solid rgba(90, 64, 50, .25);
  background: var(--cream);
  box-shadow: 0 16px 50px rgba(41, 27, 20, .18);
}

.consent-banner__copy .eyebrow {
  margin-bottom: 7px;
}

.consent-banner__copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 14px;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
}

.consent-banner .button {
  cursor: pointer;
  white-space: nowrap;
}

.consent-banner .button--solid {
  background: var(--brown);
  color: var(--cream);
}

.consent-banner .button--solid:hover {
  background: var(--brown-dark);
}

.whatsapp-float {
  position: fixed;
  z-index: 500;
  right: clamp(18px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 40px);
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 9px solid rgba(37, 211, 102, .16);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  transition: transform .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-float::after {
  position: absolute;
  top: -8px;
  right: -7px;
  display: grid;
  width: 18px;
  height: 18px;
  content: "1";
  place-items: center;
  border-radius: 50%;
  background: #f01931;
  color: white;
  font-family: var(--sans);
  font-size: 9px;
}

.page-hero-dark {
  width: calc(100% - var(--page-pad) * 2);
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 135px) var(--page-pad);
  background: var(--brown);
  color: var(--cream);
  text-align: center;
}

.page-hero-dark__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.page-hero-dark h1,
.page-hero-dark .eyebrow {
  color: var(--cream);
}

.page-hero-dark p {
  margin-bottom: 22px;
  font-size: 17px;
}

.page-hero-dark .button {
  margin-top: 14px;
}

.about-section,
.prices-section {
  display: grid;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  padding-top: clamp(35px, 5vw, 70px);
  padding-bottom: clamp(70px, 8vw, 120px);
}

.about-section {
  grid-template-columns: .85fr 1.15fr;
}

.about-section__image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.about-section__copy {
  max-width: 660px;
}

.about-section__copy h1 {
  font-family: var(--serif);
}

.about-section__copy p {
  margin-bottom: 18px;
  font-size: 17px;
}

.signature {
  margin: 10px 0 0;
  font-family: "Maytra", cursive;
  font-size: 56px;
  line-height: 1;
}

.prices-section {
  grid-template-columns: .72fr 1.28fr;
}

.prices-section h1 {
  max-width: 430px;
  font-family: var(--serif);
}

.prices-section h1 em {
  font-weight: 300;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px 35px;
  max-width: 440px;
  margin: 0;
  font-size: 17px;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.price-list dd {
  text-align: right;
}

.prices-section__image {
  position: relative;
}

.prices-section__image img {
  width: 100%;
  max-height: 650px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prices-section__image .promo-badge {
  top: 7%;
  right: auto;
  left: 6%;
}

.page-texture {
  width: calc(100% - var(--page-pad) * 2);
  max-width: var(--content);
  min-height: 270px;
  margin: 0 auto 100px;
}

.contact-section {
  width: min(100%, 850px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) var(--page-pad) clamp(80px, 9vw, 130px);
  text-align: center;
}

.contact-section h1 {
  margin-bottom: clamp(60px, 9vw, 120px);
}

.contact-form {
  display: grid;
  gap: 34px;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 4px 13px;
  border: 0;
  border-bottom: 1px solid var(--brown);
  border-radius: 0;
  outline: 0;
  background: transparent;
  text-align: center;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-width: 2px;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.form-actions button {
  padding: 8px 0;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-actions button:hover {
  border-color: currentColor;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: .55;
}

.form-status {
  flex: 1 1 100%;
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.results-page {
  padding-top: clamp(65px, 8vw, 110px);
}

.results-page .image-strip {
  grid-auto-columns: min(520px, 75vw);
}

.results-page .image-strip__item img {
  aspect-ratio: 4 / 3;
}

.lightbox {
  width: min(94vw, 1100px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
}

.lightbox::backdrop {
  background: rgba(20, 12, 9, .9);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
}

.lightbox button {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  color: white;
  font-family: var(--sans);
  font-size: 24px;
}

.lightbox p {
  margin: 12px 0 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.confirmation {
  display: grid;
  min-height: 65vh;
  padding: var(--section-y) var(--page-pad);
  place-items: center;
  background: var(--brown);
  color: var(--cream);
  text-align: center;
}

.confirmation__inner {
  width: min(100%, 760px);
}

.confirmation h1,
.confirmation .eyebrow {
  color: var(--cream);
}

.confirmation p {
  margin-bottom: 30px;
  font-size: 18px;
}

.not-found {
  display: grid;
  min-height: 62vh;
  padding: var(--section-y) var(--page-pad);
  place-items: center;
  text-align: center;
}

.not-found__inner {
  width: min(100%, 700px);
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .menu-overlay__content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 55px;
  }

  .home-intro__inner,
  .about-section,
  .prices-section {
    grid-template-columns: 1fr;
  }

  .home-intro__image {
    width: min(85%, 600px);
  }

  .home-intro__content {
    max-width: 720px;
  }

  .about-section__image {
    width: min(100%, 620px);
  }

  .prices-section__copy {
    order: 1;
  }

  .prices-section__image {
    order: 2;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --section-y: 74px;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 66px;
    padding-block: 12px;
  }

  .brand {
    width: clamp(174px, 48vw, 230px);
  }

  .header-social {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header > .brand {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    grid-column: 2;
    width: 44px;
    height: 32px;
  }

  .menu-toggle[aria-expanded="true"] {
    top: 17px;
  }

  .menu-overlay__top {
    justify-content: flex-start;
    min-height: 66px;
  }

  .menu-overlay__content {
    min-height: calc(100vh - 66px);
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .menu-overlay nav a {
    font-size: clamp(39px, 13vw, 54px);
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero {
    width: calc(100% - 22px);
    min-height: min(620px, calc(100svh - 80px));
    margin-bottom: 22px;
  }

  .hero::before {
    background-position: center;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .home-intro {
    padding-top: 22px;
  }

  .home-intro__inner {
    gap: 65px;
  }

  .home-intro__image {
    width: 100%;
  }

  .promo-badge {
    top: 18px;
    right: 14px;
    width: 118px;
    font-size: 10px;
  }

  .home-intro__content p {
    font-size: 15px;
  }

  .image-strip,
  .results-page .image-strip {
    grid-auto-columns: 82vw;
    gap: 10px;
  }

  .testimonials {
    overflow: hidden;
  }

  .testimonial-grid {
    display: grid;
    grid-auto-columns: calc(100vw - var(--page-pad) * 2);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-height: 310px;
    scroll-snap-align: center;
  }

  .swipe-hint {
    display: flex;
  }

  .page-hero-dark {
    width: 100%;
    padding-inline: 22px;
  }

  .page-hero-dark p {
    font-size: 14px;
  }

  .about-section,
  .prices-section {
    gap: 42px;
    padding-top: 20px;
  }

  .about-section__copy p,
  .price-list {
    font-size: 14px;
  }

  .signature {
    font-size: 48px;
  }

  .prices-section h1 {
    font-size: 48px;
  }

  .price-list {
    gap: 11px 18px;
  }

  .page-texture {
    width: 100%;
    min-height: 320px;
    margin-bottom: 0;
  }

  .contact-section {
    padding-top: 65px;
  }

  .contact-section h1 {
    margin-bottom: 75px;
  }

  .footer-cta {
    min-height: 390px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
    padding-block: 65px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 20px);
    padding: 20px;
  }

  .consent-banner__actions {
    flex-direction: column-reverse;
  }

  .consent-banner .button {
    width: 100%;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    border-width: 8px;
  }
}

/* Pixel parity with the original Elementor layouts */
img {
  height: auto;
}

:root {
  --page-pad: 20px;
  --content: 1440px;
}

body {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
}

.site-header {
  width: 100%;
  height: 80px;
  min-height: 80px;
  padding: 20px;
}

.brand {
  width: 260px;
}

.social-links {
  gap: 15px;
}

.site-header .social-links {
  gap: 0;
}

.site-header .social-links a {
  width: 40px;
  height: 40px;
}

.site-header .social-links svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  grid-template-rows: repeat(3, 2px);
  align-content: space-between;
  width: 60px;
  height: 30px;
  padding: 0;
}

.menu-toggle span {
  width: 60px;
  height: 2px;
}

.menu-toggle[aria-expanded="true"] {
  top: 20px;
  right: 20px;
  width: 60px;
  height: 44px;
}

.menu-toggle[aria-expanded="true"] span {
  width: 60px;
  justify-self: end;
}

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

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

@media (min-width: 701px) {
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(19px) rotate(45deg);
  }

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

.menu-overlay {
  transform: scale(0);
  transform-origin: center;
  transition: transform .75s ease, visibility .75s;
}

.menu-overlay[aria-hidden="false"] {
  transform: scale(1);
}

.menu-overlay__top,
.menu-overlay__details {
  display: none;
}

.menu-overlay__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  place-items: center;
}

.menu-overlay nav {
  text-align: center;
}

.menu-overlay nav a {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.menu-overlay nav li + li {
  margin-top: 10px;
}

.menu-overlay nav a:hover,
.menu-overlay nav a[aria-current="page"] {
  opacity: .7;
  transform: none;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.2;
}

.button {
  min-height: 46px;
  padding: 15px 30px;
  font-size: 14px;
}

.hero {
  width: calc(100% - 40px);
  height: 80vh;
  min-height: 0;
  margin: 0 auto 40px;
}

.hero::before {
  background: url("/assets/images/hero-brows.jpg") center 64% / cover no-repeat;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 520px;
}

.hero h1 {
  order: 2;
  width: 520px;
  margin: 0 0 20px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 em {
  font-weight: 700;
}

.hero .rating {
  order: 1;
  display: block;
  width: 180px;
  height: 24px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 16px;
  gap: 20px;
  line-height: 24px;
}

.hero .rating img {
  position: relative;
  top: 3.75px;
  display: inline-block;
  width: 180px;
  height: auto;
}

.hero .button {
  order: 3;
  min-width: 0;
}

.home-intro {
  height: 740px;
  padding: 40px 20px;
}

.home-intro__inner {
  grid-template-columns: 660px 520px;
  gap: 80px;
  align-items: center;
  width: 1400px;
  height: 660px;
}

.home-intro__image {
  width: 660px;
  max-width: none;
  height: 660px;
}

.home-intro__image img {
  width: 660px;
  height: 660px;
  aspect-ratio: auto;
  object-fit: cover;
}

.promo-badge {
  top: 62px;
  right: -70px;
  width: 160px;
  padding: 18px;
  font-size: 12px;
}

.home-intro__content {
  align-self: end;
  width: 520px;
  max-width: none;
}

.home-intro__content .eyebrow {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
}

.home-intro__content h2 {
  width: 400px;
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.home-intro__content > p:not(.eyebrow) {
  height: 168px;
  margin-bottom: 24.4px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.home-intro__content .button {
  display: flex;
  gap: 4px;
  width: 87.9375px;
  height: 36px;
  min-width: 0;
  min-height: 36px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
}

.results-preview,
.results-page {
  height: 654px;
  padding: 100px 0 0;
  overflow: hidden;
}

.results-preview .section-heading,
.results-page .section-heading {
  margin-bottom: 40px;
  padding: 0 20px;
}

.results-preview .section-heading .eyebrow,
.results-page .section-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
}

.results-preview .section-heading h2,
.results-page .section-heading h1 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.image-strip {
  --strip-gap: 20px;
  display: block;
  height: 432px;
  padding: 0;
  overflow: hidden;
  scrollbar-width: none;
}

.image-strip__track,
.image-strip__group {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--strip-gap);
  width: max-content;
}

.image-strip__track {
  animation: results-marquee 108s linear infinite;
  will-change: transform;
}

.image-strip:hover .image-strip__track,
.image-strip:focus-within .image-strip__track {
  animation-play-state: paused;
}

.image-strip__item,
.results-page .image-strip__item {
  flex: 0 0 340px;
  width: 340px;
  height: 425px;
  border-radius: 5px;
}

.image-strip__item img,
.results-page .image-strip__item img {
  width: 340px;
  height: 425px;
  aspect-ratio: auto;
  object-fit: cover;
}

@keyframes results-marquee {
  from { transform: translate3d(calc(-50% - 10px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.results-preview__action {
  display: none;
}

.testimonials {
  width: 100%;
  height: 621.59375px;
  padding: 100px 20px 0;
  overflow: hidden;
}

.page-home .testimonials {
  height: 631.203125px;
}

.page-results .testimonials {
  height: 631.203125px;
}

.testimonials .section-heading {
  margin-bottom: 40px;
}

.testimonials .section-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonials .section-heading h2 {
  margin: 0;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.page-home .testimonials .section-heading h2,
.page-results .testimonials .section-heading h2 {
  font-size: 32px;
}

.testimonial-slider {
  width: 100%;
  height: 266px;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform .5s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 var(--testimonial-card-width);
  width: var(--testimonial-card-width);
  height: 266px;
  min-height: 0;
  padding: 25px 30px;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 17px;
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
}

.testimonial-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.swipe-hint {
  display: flex;
  height: 40px;
  margin-top: 0;
  align-items: flex-end;
}

.swipe-hint button {
  width: 7px;
  height: 7px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  opacity: .25;
}

.swipe-hint button.is-active {
  opacity: 1;
}

.page-hero-dark {
  width: calc(100% - 40px);
  max-width: none;
  height: 743.5625px;
  padding: 80px 20px;
}

.page-hero-dark__inner {
  width: 860px;
}

.page-hero-dark .eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.2;
}

.page-hero-dark h1 {
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.page-hero-dark p {
  margin-bottom: 14.4px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.page-hero-dark p:last-of-type {
  margin-bottom: 34.40625px;
}

.page-hero-dark .button {
  min-width: 0;
  margin-top: 0;
}

.about-section,
.prices-section {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-section {
  grid-template-columns: 536px 784px;
  gap: 80px;
  height: 750px;
  padding: 40px 20px;
}

.about-section__image,
.about-section__image img {
  width: 536px;
  height: 670px;
  max-height: none;
  object-fit: cover;
}

.about-section__copy {
  align-self: stretch;
  width: 784px;
  max-width: none;
  padding-top: 19px;
}

.about-section__copy .eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.about-section__copy h1 {
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.about-section__copy > p:not(.signature):not(.eyebrow) {
  width: 540px;
  margin-bottom: 14.4px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.about-section__copy .signature {
  margin-top: 24.4px;
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.prices-section {
  grid-template-columns: 560px 760px;
  gap: 80px;
  height: 650px;
  padding: 40px 20px;
}

.prices-section__copy {
  align-self: stretch;
  padding-top: 85px;
}

.prices-section .eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
}

.prices-section h1 {
  width: 420px;
  max-width: none;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.prices-section h1 em {
  font-weight: 700;
}

.price-list {
  grid-template-columns: 71.785% 28.215%;
  gap: 0;
  width: 400px;
  font-size: 14.4px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.price-list dt,
.price-list dd {
  min-height: 33.6px;
  padding: 6px 0;
}

.price-list dd {
  text-align: left;
}

.prices-section__image,
.prices-section__image img {
  width: 760px;
  height: 570px;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}

.prices-section__image .promo-badge {
  top: 40px;
  left: 40px;
  width: 180px;
}

.page-texture {
  display: none;
}

.contact-section {
  position: relative;
  z-index: 2;
  width: 800px;
  height: 703.375px;
  padding: 80px 0 0;
}

.contact-section > .eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-section h1 {
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form {
  width: 680px;
  margin: 60px auto 0;
  padding-top: 0;
  gap: 30px;
}

.form-field {
  min-height: 47px;
}

.form-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-field input,
.form-field textarea {
  display: block;
  height: 47px;
  min-height: 47px;
  padding: 6px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.form-field textarea {
  height: 91.4px;
  min-height: 91.4px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--brown);
  opacity: 1;
}

.form-actions {
  height: 47px;
}

.form-actions button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 186.1px;
  height: 47px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}

.form-status:empty {
  display: none;
}

.texture-section {
  background-image: url("/assets/images/palm-shadow.jpg");
  background-position: center;
  background-size: cover;
}

.footer-cta {
  height: 800px;
  min-height: 800px;
  padding: 20px;
}

.footer-rating {
  display: block;
  width: 180px;
  height: 24px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 24px;
}

.footer-rating img {
  position: relative;
  top: 3.75px;
  display: inline-block;
  width: 180px;
  height: auto;
}

.footer-cta__title {
  width: 520px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-cta__title em {
  font-weight: 700;
}

.footer-cta .button {
  min-width: 0;
}

.footer-main {
  grid-template-columns: 366px 488px 366px;
  gap: 90px;
  align-items: start;
  width: 100%;
  height: 343.1875px;
  padding: 80px 20px;
}

.footer-heading {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.footer-column,
.footer-contact {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.footer-column li + li {
  margin-top: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 488px;
  gap: 30px;
}

.footer-brand > a:first-child,
.footer-brand img {
  width: 260px;
  height: 29px;
  margin: 0;
}

.footer-contact-button {
  min-width: 0;
}

.footer-brand .social-links {
  gap: 10px;
}

.footer-brand .social-links a {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.footer-contact {
  align-items: flex-end;
  text-align: right;
}

.footer-legal {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.whatsapp-float {
  right: 30px;
  bottom: 31px;
  width: 80px;
  height: 80px;
  padding: 20px;
  border: 0;
  box-shadow: 0 0 0 15px rgba(37, 211, 102, .047);
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
}

.whatsapp-float::after {
  top: 0;
  right: 6px;
  width: 20px;
  height: 20px;
  background: #f00;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 11px;
}

.has-reveal [data-reveal] {
  transform: none;
  transition: opacity 1.25s ease;
}

@media (max-width: 700px) {
  body {
    font-size: 13px;
    line-height: 1.5;
  }

  .site-header {
    height: 70px;
    min-height: 70px;
    padding: 20px;
  }

  .brand {
    width: 200px;
  }

  .menu-toggle {
    width: 60px;
    height: 30px;
  }

  .menu-toggle span {
    width: 60px;
  }

  .menu-toggle[aria-expanded="true"] {
    top: 13px;
  }

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

  .menu-overlay nav a {
    font-size: 24px;
    line-height: 1.5;
  }

  .menu-overlay nav li + li {
    margin-top: 10px;
  }

  .button {
    min-height: 44px;
    font-size: 12px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero {
    width: calc(100% - 40px);
    height: 540px;
    min-height: 540px;
    margin-bottom: 40px;
  }

  .hero::before {
    background-position: center bottom;
  }

  .hero__content {
    width: 310px;
    height: 100%;
    padding: 80px 0 40px;
  }

  .hero h1 {
    order: 1;
    width: 310px;
    margin: 0 0 auto;
    font-size: 36px;
    line-height: 1.1;
  }

  .hero .rating {
    order: 2;
    display: block;
    width: 160px;
    height: 19.5px;
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .hero .rating img {
    top: 2.53125px;
    width: 160px;
    height: auto;
  }

  .hero .button {
    min-width: 0;
  }

  .home-intro {
    height: 859.78125px;
    padding: 40px 20px;
  }

  .home-intro__inner {
    grid-template-columns: 350px;
    grid-template-rows: 350px 390px;
    gap: 40px;
    width: 350px;
    height: 780px;
  }

  .home-intro__image,
  .home-intro__image img {
    width: 350px;
    height: 350px;
  }

  .promo-badge {
    top: 20px;
    right: -10px;
    width: 100px;
    padding: 12px;
    font-size: 10px;
  }

  .home-intro__content {
    align-self: start;
    width: 350px;
  }

  .home-intro__content .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .home-intro__content h2 {
    width: 260px;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.2;
  }

  .home-intro__content > p:not(.eyebrow) {
    height: 210px;
    margin-bottom: 24.4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .home-intro__content .button {
    width: 83.125px;
    height: 35px;
    min-height: 35px;
    font-size: 15px;
  }

  .results-preview,
  .results-page {
    height: 445.6875px;
    padding-top: 60px;
  }

  .results-preview .section-heading,
  .results-page .section-heading {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .results-preview .section-heading .eyebrow,
  .results-page .section-heading .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .results-preview .section-heading h2,
  .results-page .section-heading h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .image-strip {
    --strip-gap: 10px;
    height: 299px;
  }

  .image-strip__item,
  .results-page .image-strip__item {
    flex-basis: 234px;
    width: 234px;
    height: 292px;
  }

  .image-strip__item img,
  .results-page .image-strip__item img {
    width: 234px;
    height: 292px;
  }

  @keyframes results-marquee {
    from { transform: translate3d(calc(-50% - 5px), 0, 0); }
    to { transform: translate3d(0, 0, 0); }
  }

  .testimonials,
  .page-home .testimonials,
  .page-results .testimonials {
    height: 534.90625px;
    padding: 60px 20px 0;
  }

  .testimonials .section-heading {
    margin-bottom: 30px;
  }

  .testimonials .section-heading .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .testimonials .section-heading h2,
  .page-home .testimonials .section-heading h2,
  .page-results .testimonials .section-heading h2 {
    font-size: 20px;
  }

  .testimonial-slider {
    height: 277px;
  }

  .testimonial-grid {
    gap: 10px;
    padding: 0;
    overflow: visible;
  }

  .testimonial-card {
    height: 277px;
    padding: 25px 30px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .swipe-hint {
    height: 40px;
  }

  .swipe-hint button {
    width: 6px;
    height: 6px;
  }

  .page-hero-dark {
    width: 100%;
    height: 1075.375px;
    padding: 60px 20px;
  }

  .page-hero-dark__inner {
    width: 350px;
  }

  .page-hero-dark .eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .page-hero-dark h1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;
  }

  .page-hero-dark p {
    margin-bottom: 14.4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .page-hero-dark p:last-of-type {
    margin-bottom: 34.40625px;
  }

  .page-hero-dark .button {
    width: auto;
    min-width: 0;
  }

  .about-section {
    grid-template-columns: 350px;
    grid-template-rows: 437.5px 691px;
    gap: 40px;
    height: 1248.28125px;
    padding: 20px 20px 59px;
  }

  .about-section__image,
  .about-section__image img {
    width: 350px;
    height: 437.5px;
  }

  .about-section__copy {
    width: 350px;
    padding: 0;
  }

  .about-section__copy .eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .about-section__copy h1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;
  }

  .about-section__copy > p:not(.signature):not(.eyebrow) {
    width: 350px;
    margin-bottom: 14.4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .about-section__copy .signature {
    margin-top: 24.4px;
    font-size: 36px;
  }

  .prices-section {
    grid-template-columns: 350px;
    grid-template-rows: 331.15625px 262.5px;
    gap: 40px;
    height: 753.65625px;
    padding: 60px 20px;
  }

  .prices-section__copy {
    order: 1;
    padding: 0;
  }

  .prices-section .eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .prices-section h1 {
    width: 280px;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;
  }

  .price-list {
    grid-template-columns: 251.5px 98.5px;
    width: 350px;
    font-size: 12.6px;
    line-height: 1.5;
  }

  .price-list dt,
  .price-list dd {
    min-height: 30.9px;
    padding: 6px 0;
  }

  .prices-section__image,
  .prices-section__image img {
    order: 2;
    width: 350px;
    height: 262.5px;
  }

  .prices-section__image .promo-badge {
    top: 20px;
    left: 20px;
    width: 100px;
  }

  .contact-section {
    width: 350px;
    height: 605.796875px;
    padding-top: 60px;
  }

  .contact-section > .eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .contact-section h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .contact-form {
    width: 350px;
    margin-top: 64.6px;
    padding-top: 0;
    gap: 30px;
  }

  .form-field input,
  .form-field textarea,
  .form-actions button {
    font-size: 12px;
  }

  .form-field textarea {
    height: 80.2px;
    min-height: 80.2px;
  }

  .form-actions button {
    width: 163.2px;
  }

  .footer-cta {
    height: 400px;
    min-height: 400px;
    padding: 20px;
  }

  .footer-rating {
    width: 160px;
    height: 19.5px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .footer-rating img {
    top: 2.53125px;
    width: 160px;
  }

  .footer-cta__title {
    width: 280px;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;
  }

  .footer-cta .button {
    min-width: 0;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 728.53125px;
    padding: 80px 20px;
  }

  .footer-brand {
    order: 1;
    width: 350px;
  }

  .footer-brand > a:first-child,
  .footer-brand img {
    width: 200px;
    height: 22px;
  }

  .footer-contact-button {
    min-width: 0;
  }

  .footer-brand .social-links {
    gap: 6px;
  }

  .footer-links {
    order: 2;
    flex: 0 0 183px;
    margin-top: 40px;
  }

  .footer-contact {
    order: 3;
    flex: 0 0 159px;
    margin-top: 20px;
    align-items: center;
  }

  .footer-column,
  .footer-contact {
    width: 350px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-heading {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 76px;
    height: 76px;
    padding: 19px;
    box-shadow: 0 0 0 14px rgba(37, 211, 102, .047);
  }

  .whatsapp-float svg {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
