@font-face {
  font-family: "Telegraf";
  src: url("/static/landing/766-nobert/telegraf-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Telegraf";
  src: url("/static/landing/766-nobert/telegraf-ultrabold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --ink: #2d2e32;
  --forest: #c13549;
  --forest-deep: #2d2e32;
  --cream: #f5f5f5;
  --paper: #ffffff;
  --gold: #a52644;
  --line: rgba(45, 46, 50, 0.16);
  --white: #fff;
  --max-width: 1280px;
  --serif: "Telegraf", Arial, sans-serif;
  --sans: "Telegraf", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(45, 46, 50, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(150px, 17vw, 220px);
}

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

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-header nav a {
  transition: opacity 180ms ease;
}

.site-header nav a:hover {
  opacity: 0.72;
}

.header-phone {
  padding-left: clamp(16px, 2.4vw, 36px);
  border-left: 1px solid rgba(45, 46, 50, 0.22);
}

.language-toggle {
  min-width: 40px;
  padding: 7px 9px;
  border: 1px solid var(--forest);
  border-radius: 100px;
  color: var(--forest);
  background: var(--white);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 57%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.74) 0%, rgba(7, 16, 13, 0.28) 58%, rgba(7, 16, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 16, 13, 0.48) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 94svh;
  max-width: 940px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px clamp(20px, 6.5vw, 104px) clamp(82px, 10vh, 120px);
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(52px, 7.6vw, 116px);
  letter-spacing: -0.035em;
}

.hero-address {
  margin: 22px 0 0;
  font-family: var(--sans);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-deep);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(7px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.price-card {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 64px);
  bottom: 0;
  min-width: 250px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--forest);
}

.price-card span,
.price-card small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 2px 0 4px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 800;
}

.facts {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 42px clamp(20px, 4vw, 64px);
  grid-template-columns: repeat(5, 1fr);
}

.facts div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.facts div:first-child {
  padding-left: 0;
}

.facts div:last-child {
  padding-right: 0;
  border: 0;
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.facts span {
  margin-top: 7px;
  color: #6b746f;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 6vw, 80px);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 150px);
}

.section-copy h2,
.feature-copy h2,
.video-copy h2,
.gallery-heading h2,
.visit-copy h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  letter-spacing: -0.04em;
}

.intro-copy {
  align-self: end;
  max-width: 610px;
  color: #463939;
  font-family: var(--sans);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.intro-copy p {
  margin: 0 0 24px;
}

.feature-story {
  display: grid;
  min-height: 720px;
  background: var(--cream);
  grid-template-columns: 58% 42%;
}

.feature-story.reverse {
  background: var(--paper);
  grid-template-columns: 42% 58%;
}

.feature-story.reverse .feature-image {
  order: 2;
}

.feature-image {
  min-height: 650px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.feature-copy p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: #463939;
  font-size: 17px;
}

.feature-number {
  position: absolute;
  top: 44px;
  right: 44px;
  color: rgba(23, 32, 28, 0.22);
  font-family: var(--serif);
  font-size: 24px;
}

.signature-features {
  display: grid;
  padding: clamp(90px, 11vw, 160px) max(20px, calc((100vw - var(--max-width)) / 2 + 64px));
  color: var(--white);
  background: var(--forest-deep);
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(60px, 9vw, 150px);
}

.signature-intro h2 {
  max-width: 570px;
  font-size: clamp(44px, 5.5vw, 74px);
  letter-spacing: -0.045em;
}

.signature-list article {
  position: relative;
  padding: 28px 0 30px 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-list article > span {
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.signature-list h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 800;
}

.signature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.video-section {
  display: grid;
  max-width: 1100px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 5vw, 70px);
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: clamp(50px, 9vw, 140px);
}

.video-copy h2 {
  max-width: 570px;
}

.video-frame {
  position: relative;
  padding: 12px;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(23, 32, 28, 0.16);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #101010;
  object-fit: cover;
}

.gallery-section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 64px);
  background: var(--cream);
}

.gallery-heading {
  display: flex;
  max-width: var(--max-width);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto 48px;
}

.gallery-heading h2 {
  max-width: 720px;
}

.text-button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  max-width: var(--max-width);
  height: 860px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: #d8d8d4;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.visit-section {
  display: grid;
  padding: clamp(90px, 10vw, 150px) max(20px, calc((100vw - var(--max-width)) / 2 + 64px));
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 10vw, 150px);
}

.visit-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.agent-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}

.agent-monogram {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--serif);
}

.agent-card strong,
.agent-card span,
.agent-card a {
  display: block;
}

.agent-card strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 800;
}

.agent-card span {
  max-width: 370px;
  margin: 3px 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.agent-card a {
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}

.visit-call-now {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.visit-call-now a {
  margin-left: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.lead-form {
  padding: clamp(26px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
}

/* Barre d'action permanente : le formulaire est en bas d'une page longue, la
   majorité du trafic vient de Facebook sur mobile et ne défile jamais jusqu'en
   bas. Appel direct + raccourci vers le formulaire, toujours visibles. */
.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(45, 46, 50, 0.96);
  backdrop-filter: blur(6px);
}

.sticky-cta a {
  flex: 1;
  padding: 15px 10px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-align: center;
  text-decoration: none;
}

.sticky-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.sticky-cta-visit {
  color: var(--white);
  background: var(--forest);
}

@media (max-width: 900px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label {
  display: block;
  margin-bottom: 19px;
}

.lead-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #59635e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 3px;
  border: 0;
  border-bottom: 1px solid #bdc6c1;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  transition: border-color 150ms ease;
}

.lead-form textarea {
  min-height: 84px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-bottom-color: var(--forest);
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  color: #68726d;
  font-size: 11px;
  line-height: 1.5;
}

.lead-form .consent input {
  margin-top: 3px;
}

.lead-form .consent span {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.submit-button {
  width: 100%;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--forest);
  font-size: 13px;
  text-align: center;
}

.form-status.error {
  color: #a33931;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

footer {
  display: grid;
  padding: 42px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: #2d2e32;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  font-size: 11px;
}

footer strong,
footer span {
  display: block;
}

footer strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
}

.legal {
  margin: 0;
  grid-column: 1 / -1;
  opacity: 0.58;
}

.mobile-cta {
  display: none;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 55px;
  border: 0;
  color: var(--white);
  background: rgba(5, 12, 10, 0.96);
}

.lightbox::backdrop {
  background: rgba(5, 12, 10, 0.88);
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox img {
  width: min(1240px, calc(100vw - 130px));
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  border: 0;
  color: var(--white);
  background: none;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 26px;
  font-size: 38px;
  font-weight: 200;
}

.lightbox-nav {
  top: 50%;
  font-family: var(--serif);
  font-size: 54px;
  transform: translateY(-50%);
}

.lightbox-nav.previous {
  left: 25px;
}

.lightbox-nav.next {
  right: 25px;
}

.lightbox-count {
  position: fixed;
  right: 30px;
  bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.button-secondary {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--forest);
}

.thank-you-page {
  min-height: 100svh;
  background:
    linear-gradient(rgba(45, 46, 50, 0.68), rgba(45, 46, 50, 0.76)),
    url("/static/landing/766-nobert/hero.webp") center 57% / cover fixed;
}

.thank-you-header {
  position: fixed;
}

.thank-you-main {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 140px 24px 70px;
}

.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(38px, 7vw, 78px);
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.thank-you-check {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 32px;
  font-weight: 800;
}

.thank-you-card .eyebrow {
  color: var(--gold);
}

.thank-you-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.thank-you-copy {
  max-width: 590px;
  margin: 26px auto 0;
  color: rgba(45, 46, 50, 0.78);
  font-size: 18px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.thank-you-note {
  margin: 28px 0 0;
  color: rgba(45, 46, 50, 0.58);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header nav > a:not(.header-phone) {
    display: none;
  }

  .facts {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }

  .facts div:nth-child(3) {
    border: 0;
  }

  .facts div:nth-child(4),
  .facts div:nth-child(5) {
    grid-column: span 1;
  }

  .content-grid,
  .signature-features,
  .video-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .feature-story,
  .feature-story.reverse {
    grid-template-columns: 1fr;
  }

  .feature-story.reverse .feature-image {
    order: 0;
  }

  .feature-image {
    min-height: min(68vw, 600px);
  }

  .feature-copy {
    min-height: 500px;
  }

  .video-frame {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .gallery-grid {
    height: 760px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding: 18px;
  }

  .brand small {
    display: none;
  }

  .site-header nav {
    gap: 10px;
  }

  .header-phone {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 87svh;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 130px 20px 104px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 67px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .price-card {
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .price-card span {
    display: none;
  }

  .price-card strong {
    margin: 0;
    font-size: 24px;
  }

  .facts {
    padding: 35px 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .facts div,
  .facts div:first-child,
  .facts div:last-child {
    padding: 0 8px;
    border: 0;
  }

  .facts div:last-child {
    grid-column: 1 / -1;
  }

  .facts strong {
    font-size: 29px;
  }

  .content-grid {
    padding-top: 78px;
    padding-bottom: 78px;
    gap: 38px;
  }

  .section-copy h2,
  .feature-copy h2,
  .video-copy h2,
  .gallery-heading h2,
  .visit-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .feature-story {
    min-height: 0;
  }

  .feature-image {
    min-height: 72vw;
  }

  .feature-copy {
    min-height: 0;
    padding: 70px 20px;
  }

  .feature-number {
    top: 22px;
    right: 20px;
  }

  .signature-features,
  .visit-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .signature-list article {
    padding-left: 42px;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    height: auto;
    grid-auto-rows: 250px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(n + 5) {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    margin-right: -20px;
    margin-left: -20px;
  }

  footer {
    padding-bottom: 45px;
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 62px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    box-shadow: 0 -8px 30px rgba(7, 16, 13, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .lightbox {
    padding: 50px 15px;
  }

  .lightbox img {
    width: calc(100vw - 30px);
    max-height: calc(100vh - 110px);
  }

  .lightbox-nav {
    padding: 20px 12px;
    font-size: 44px;
    text-shadow: 0 1px 8px #000;
  }

  .lightbox-nav.previous {
    left: 0;
  }

  .lightbox-nav.next {
    right: 0;
  }

  .thank-you-main {
    padding: 120px 16px 30px;
  }

  .thank-you-card {
    padding: 38px 22px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
