@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/Newsreader-Text-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --mineral: #f3efe5;
  --paper: #fffdf8;
  --charcoal: #252722;
  --forest: #254c3a;
  --terracotta: #8f4e31;
  --terracotta-light: #e3b297;
  --stone: #5f625c;
  --line: #d8d1c5;
  --forest-line: #6c8578;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 78rem;
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --radius: 1.125rem;
  --shadow-focus: 0 0 0 0.22rem rgba(143, 78, 49, 0.32);
}

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

html {
  background: var(--mineral);
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--mineral);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.25vw + 0.96rem, 1.125rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--terracotta-light);
  color: var(--charcoal);
}

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

img {
  height: auto;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 6vw, 5.5rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 4.6vw, 4.5rem);
}

h3 {
  line-height: 1.25;
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.25rem;
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 700;
}

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

:focus-visible {
  outline: 0.2rem solid var(--terracotta);
  outline-offset: 0.22rem;
}

.section-kicker,
.overline {
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-kicker span {
  display: inline-block;
  margin-right: 0.8rem;
}

.microcopy,
.form-security,
.noscript-note {
  color: var(--stone);
  font-size: 0.75rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.55rem;
  border: 0;
  border-radius: 0.35rem;
  background: var(--forest);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: #183e2d;
  transform: translateY(-0.1rem);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 3rem;
  padding-inline: 1.25rem;
  font-size: 0.78rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link--light {
  color: var(--paper);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(37, 39, 34, 0.12);
  background: rgba(243, 239, 229, 0.96);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 0.45rem 1.2rem rgba(37, 39, 34, 0.07);
}

.site-header__inner {
  display: grid;
  min-height: 6.1rem;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--charcoal);
  text-decoration: none;
}

.brand__primary {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand__secondary {
  margin-left: 0.18rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.15rem, 2.2vw, 2.35rem);
}

.primary-nav a {
  position: relative;
  min-height: 2.75rem;
  align-content: center;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 0.1rem;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  padding-top: clamp(2.2rem, 5vw, 4.2rem);
}

.hero__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 5.3rem);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  padding-block: clamp(1rem, 2vw, 2rem) 0.5rem;
}

.hero__copy h1 {
  margin-top: 2rem;
}

.hero__meta {
  margin-top: 2rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.015em;
}

.hero__lead {
  max-width: 30rem;
  margin-top: 1.65rem;
  font-size: clamp(1.05rem, 1.2vw, 1.24rem);
  line-height: 1.55;
}

.hero__lead strong {
  font-weight: 650;
}

.actions {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
}

.hero__actions {
  margin-top: 2.25rem;
}

.hero__copy .microcopy {
  margin-top: 1rem;
}

.continuation {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
  gap: 1.4rem;
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.continuation span {
  color: var(--terracotta);
  font-size: 1.1rem;
}

.hero__media {
  min-height: 41rem;
  aspect-ratio: 1 / 1.01;
}

.parallax-media,
.offer__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.parallax-media picture,
.parallax-media img,
.offer__media picture,
.offer__media img {
  width: 100%;
  height: 100%;
}

.parallax-media img,
.offer__media img {
  object-fit: cover;
}

.parallax-media img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.055);
  will-change: transform;
}

.media-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--charcoal);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-facts {
  display: grid;
  margin-top: clamp(3rem, 5vw, 4.6rem);
  overflow: hidden;
  border-radius: 0.7rem;
  background: var(--paper);
  grid-template-columns: repeat(3, 1fr);
}

.quick-facts > div {
  min-width: 0;
  padding: 1.75rem 2rem 2rem;
}

.quick-facts > div + div {
  border-left: 1px solid var(--line);
}

.quick-facts dt,
.offer-details dt,
.trust-facts dt {
  color: var(--terracotta);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

/* Shared sections */

.section-intro {
  margin-bottom: clamp(3.5rem, 6vw, 5.25rem);
}

.section-intro--split {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-intro h2,
.faq__intro h2 {
  margin-top: 1.7rem;
}

.section-intro > p {
  max-width: 34rem;
  color: var(--stone);
}

.benefit-list {
  display: grid;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
}

.benefit-list li {
  padding-top: 1.25rem;
  border-top: 2px solid var(--terracotta);
}

.benefit-list__number {
  display: block;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.benefit-list h3 {
  margin-top: 1.1rem;
  font-size: 1rem;
}

.benefit-list p {
  max-width: 22rem;
  margin-top: 0.8rem;
  color: var(--stone);
  font-size: 0.88rem;
}

.editorial-media {
  height: clamp(30rem, 42vw, 37rem);
  margin-top: clamp(4.5rem, 8vw, 7rem);
}

/* Offer */

.offer {
  background: var(--paper);
}

.offer__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  gap: 1.5rem;
}

.offer__media {
  min-height: 38rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--radius);
  background: var(--mineral);
}

.offer-card h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
}

.offer-details {
  margin-block: 2rem;
}

.offer-details > div {
  display: grid;
  min-height: 4.5rem;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
}

.offer-details dd {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.offer-card .button {
  width: fit-content;
  margin-top: auto;
}

.offer-card .microcopy {
  margin-top: 1rem;
}

/* Trust */

.trust {
  background: var(--forest);
  color: var(--paper);
}

.section-intro--light > p {
  color: #d4dace;
}

.trust .section-kicker,
.trust .overline,
.conversion .section-kicker,
.conversion .overline {
  color: var(--terracotta-light);
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.trust-facts > div {
  padding-top: 1.4rem;
  border-top: 1px solid var(--forest-line);
}

.trust-facts dt {
  color: var(--terracotta-light);
}

.trust-facts dd {
  margin-top: 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust__lower {
  display: grid;
  align-items: stretch;
  margin-top: clamp(4rem, 7vw, 6.5rem);
  grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.map-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--mineral);
  color: var(--charcoal);
}

.map-card > p {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.map-card > small {
  position: absolute;
  bottom: 1.75rem;
  left: 2rem;
  color: var(--stone);
  font-size: 0.72rem;
}

.map-card__route {
  position: absolute;
  inset: 4.5rem 2.6rem 4rem;
}

.route-segment {
  position: absolute;
  height: 0.14rem;
  background: #b9b2a7;
  transform-origin: left center;
}

.route-segment--one {
  top: 63%;
  left: 4%;
  width: 31%;
  transform: rotate(-27deg);
}

.route-segment--two {
  top: 49%;
  left: 32%;
  width: 29%;
  transform: rotate(23deg);
}

.route-segment--three {
  top: 60%;
  left: 57%;
  width: 35%;
  transform: rotate(-28deg);
}

.map-pin {
  position: absolute;
  width: 0.82rem;
  height: 0.82rem;
  border: 0.12rem solid var(--paper);
  border-radius: 50%;
  background: var(--terracotta);
}

.map-pin--one {
  top: 61%;
  left: 3%;
}

.map-pin--two {
  top: 45%;
  left: 31%;
}

.map-pin--three {
  top: 56%;
  left: 56%;
}

.map-pin--four {
  top: 39%;
  left: 89%;
}

.trust-note {
  align-self: center;
}

.trust-note h3 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  font-weight: 400;
  line-height: 1.02;
}

.trust-note > p:not(.overline) {
  max-width: 31rem;
  margin-top: 1.6rem;
  color: #d4dace;
}

.trust-note .overline {
  margin-top: 2.4rem;
}

/* FAQ */

.faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(20rem, 5fr) minmax(0, 7fr);
  gap: clamp(3.5rem, 8vw, 8rem);
}

.faq__intro > p:not(.section-kicker) {
  max-width: 28rem;
  margin-top: 2rem;
  color: var(--stone);
}

.faq-list {
  border-top: 1px solid #c6bfb4;
}

.faq-list details {
  border-bottom: 1px solid #c6bfb4;
}

.faq-list summary {
  position: relative;
  min-height: 4.8rem;
  padding: 1.55rem 3.5rem 1.35rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.35rem;
  right: 0.4rem;
  content: "+";
  color: var(--terracotta);
  font-size: 1.45rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 40rem;
  padding: 0 3.5rem 1.6rem 0;
  color: var(--stone);
  font-size: 0.88rem;
}

/* Conversion */

.conversion {
  background: var(--charcoal);
  color: var(--paper);
}

.conversion-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  grid-template-columns: minmax(21rem, 5fr) minmax(0, 7fr);
}

.conversion-panel__pitch {
  display: flex;
  flex-direction: column;
  min-height: 48rem;
  padding: clamp(2.5rem, 5vw, 4.6rem);
  background: var(--forest);
}

.conversion-panel__pitch h2 {
  margin-top: 1.8rem;
  color: var(--paper);
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.conversion-panel__pitch > p:not(.section-kicker) {
  max-width: 27rem;
  margin-top: 2.3rem;
  color: #d4dace;
}

.whatsapp-info {
  margin-top: auto;
  scroll-margin-top: 8rem;
}

.whatsapp-info .text-link {
  margin-top: 0.8rem;
}

.whatsapp-info small {
  display: block;
  margin-top: 1rem;
  color: #d4dace;
  font-size: 0.68rem;
  line-height: 1.5;
}

.lead-form {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.6rem);
  color: var(--charcoal);
}

.form-field + .form-field {
  margin-top: 0.9rem;
}

.form-field label {
  display: block;
  margin: 0 0 0.45rem 0.9rem;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 4.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--paper);
  color: var(--charcoal);
  font-size: 1rem;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.form-field input:hover,
.form-field select:hover {
  border-color: #a9a093;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--terracotta);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.form-field input::placeholder {
  color: #777970;
  opacity: 1;
}

.consent-field {
  display: grid;
  align-items: start;
  margin-block: 1.4rem;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}

.consent-field input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.15rem 0 0;
  accent-color: var(--forest);
}

.consent-field label {
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-security {
  margin-top: 0.4rem;
}

.noscript-note {
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  padding-block: 3.5rem;
  background: var(--mineral);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(16rem, 1fr);
  gap: 3rem;
}

.brand--footer .brand__primary {
  font-size: 1.35rem;
}

.brand--footer .brand__secondary {
  font-size: 0.48rem;
}

.site-footer p {
  margin-top: 1.5rem;
  font-size: 0.78rem;
}

.site-footer small {
  display: block;
  margin-top: 0.6rem;
  color: var(--stone);
  font-size: 0.7rem;
}

.site-footer__links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}

.site-footer__links a {
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

/* Tablet */

@media (max-width: 64rem) {
  :root {
    --gutter: clamp(1.5rem, 4vw, 3rem);
  }

  .site-header__inner {
    gap: 1.5rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__media {
    min-height: 34rem;
  }

  .offer__grid,
  .trust__lower {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  }
}

/* Mobile */

@media (max-width: 47.999rem) {
  :root {
    --gutter: 1.25rem;
    --section-space: 5.5rem;
    --radius: 0.9rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  body {
    line-height: 1.6;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3.1rem, 14vw, 4rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.7rem, 11vw, 3.5rem);
    line-height: 1;
  }

  .site-header__inner {
    position: relative;
    min-height: 4.7rem;
    grid-template-columns: 1fr auto;
  }

  .brand__primary {
    font-size: 1.55rem;
  }

  .js .menu-toggle {
    display: inline-flex;
    min-width: 3.1rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    display: block;
    width: 1rem;
    height: 0.1rem;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle__lines {
    position: relative;
  }

  .menu-toggle__lines::before {
    position: absolute;
    top: -0.35rem;
  }

  .menu-toggle__lines::after {
    position: absolute;
    top: 0.35rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  .js .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: calc(-1 * var(--gutter));
    left: calc(-1 * var(--gutter));
    display: grid;
    padding: 0.8rem var(--gutter) 1.3rem;
    border-bottom: 1px solid var(--line);
    background: var(--mineral);
    box-shadow: 0 0.7rem 1.4rem rgba(37, 39, 34, 0.08);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
    visibility: hidden;
  }

  .js .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    min-height: 3.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
  }

  .no-js .site-header__inner {
    padding-block: 0.85rem;
  }

  .no-js .primary-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 1.3rem;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
  }

  .hero__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    order: -1;
  }

  .hero__copy {
    padding: 0;
  }

  .hero__copy h1 {
    margin-top: 1.8rem;
  }

  .hero__meta {
    margin-top: 1.5rem;
  }

  .hero__lead {
    margin-top: 1.4rem;
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    margin-top: 2rem;
    gap: 1.1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: space-between;
  }

  .continuation {
    margin-top: 2.7rem;
    padding-top: 0;
  }

  .media-label {
    bottom: 0.9rem;
    left: 0.9rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.56rem;
  }

  .quick-facts {
    margin-top: 3.2rem;
    background: transparent;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .quick-facts > div {
    padding: 1.2rem 1.25rem 1.35rem;
    border: 0 !important;
    border-radius: 0.65rem;
    background: var(--paper);
  }

  .quick-facts dd {
    margin-top: 0.45rem;
    font-size: 1.55rem;
  }

  .section-intro--split,
  .offer__grid,
  .trust__lower,
  .faq__grid,
  .conversion-panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .section-intro--split {
    gap: 1.6rem;
  }

  .section-intro > p {
    font-size: 0.92rem;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .benefit-list li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    column-gap: 1rem;
  }

  .benefit-list__number {
    grid-row: 1 / span 2;
  }

  .benefit-list h3 {
    margin-top: 0.25rem;
  }

  .benefit-list p {
    margin-top: 0.45rem;
  }

  .editorial-media {
    height: auto;
    aspect-ratio: 0.78;
    margin-top: 4rem;
  }

  .offer__grid {
    gap: 1.1rem;
  }

  .offer__media {
    min-height: 0;
    aspect-ratio: 0.96;
  }

  .offer-card {
    min-height: 31rem;
    padding: 1.7rem;
  }

  .offer-details > div {
    grid-template-columns: 6.7rem minmax(0, 1fr);
  }

  .offer-card .button {
    width: 100%;
  }

  .trust-facts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-facts > div {
    display: grid;
    align-items: start;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 1rem;
  }

  .trust-facts dd {
    margin-top: 0;
  }

  .trust__lower {
    margin-top: 3.5rem;
    gap: 3rem;
  }

  .map-card {
    min-height: 20rem;
  }

  .trust-note h3 {
    max-width: 14ch;
  }

  .faq__grid {
    gap: 3.5rem;
  }

  .faq__intro > p:not(.section-kicker) {
    margin-top: 1.5rem;
    font-size: 0.92rem;
  }

  .faq-list summary {
    min-height: 4.6rem;
    padding-right: 2.5rem;
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding-right: 1.5rem;
  }

  .conversion {
    padding-inline: 0;
  }

  .conversion .container {
    width: 100%;
  }

  .conversion-panel {
    border-radius: 0;
  }

  .conversion-panel__pitch {
    min-height: 32rem;
    padding: 3.8rem var(--gutter);
  }

  .whatsapp-info {
    margin-top: 4rem;
  }

  .lead-form {
    padding: 3.2rem var(--gutter) 4rem;
  }

  .form-field input,
  .form-field select {
    min-height: 4.25rem;
  }

  .site-footer {
    padding-block: 3.2rem;
  }

  .site-footer__grid {
    gap: 2.5rem;
  }

  .site-footer__links {
    align-items: flex-start;
    text-align: left;
  }

  .parallax-media img {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 23rem) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .offer-details > div,
  .trust-facts > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

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

  .parallax-media img {
    transform: none !important;
    will-change: auto;
  }
}

@media print {
  .site-header,
  .hero__actions,
  .continuation,
  .button,
  .menu-toggle {
    display: none !important;
  }

  .section,
  .conversion,
  .trust {
    break-inside: avoid;
  }
}
