:root {
  --paper: oklch(97% 0.012 55);
  --paper-strong: oklch(99% 0.007 50);
  --ink: oklch(23% 0.018 38);
  --muted: oklch(46% 0.026 42);
  --line: oklch(86% 0.025 56);
  --gold: oklch(64% 0.092 82);
  --gold-soft: oklch(90% 0.05 83);
  --wine: oklch(39% 0.122 9);
  --rose: oklch(83% 0.058 19);
  --shadow: 0 26px 70px oklch(34% 0.035 38 / 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 72px;
  background:
    radial-gradient(circle at 13% 8%, oklch(91% 0.044 18 / 0.55), transparent 27rem),
    linear-gradient(180deg, var(--paper-strong), var(--paper));
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid oklch(89% 0.02 55 / 0.82);
  background: oklch(98% 0.012 55 / 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: oklch(98% 0.012 55 / 0.96);
  box-shadow: 0 14px 34px oklch(34% 0.035 38 / 0.12);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(178px, 19vw, 285px);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a,
.nav-cta,
.menu-toggle,
.button,
.ghost-button {
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
  background: oklch(93% 0.028 54);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  background: var(--wine);
  color: oklch(98% 0.012 55);
  box-shadow: 0 12px 28px oklch(39% 0.122 9 / 0.22);
}

.nav-cta:hover,
.button:hover {
  background: oklch(34% 0.126 9);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: oklch(98% 0.012 55);
}

.button,
.ghost-button {
  text-align: center;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid var(--line);
  background: oklch(98% 0.012 55 / 0.75);
  color: var(--ink);
}

.menu-toggle {
  order: 3;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.25rem;
}

.section {
  padding: clamp(58px, 8vw, 112px) 0;
}

.section.tight {
  padding-top: clamp(34px, 5vw, 68px);
}

.photo-marquee {
  padding: clamp(26px, 5vw, 54px) 0 clamp(12px, 3vw, 28px);
  overflow: hidden;
}

.photo-marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}

.photo-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: photo-marquee 54s linear infinite;
  will-change: transform;
}

.photo-marquee:hover .photo-marquee-track {
  animation-play-state: paused;
}

.photo-marquee-set {
  display: flex;
  gap: 14px;
}

.photo-marquee img {
  flex: 0 0 auto;
  width: clamp(165px, 16vw, 242px);
  height: clamp(138px, 13vw, 198px);
  object-fit: contain;
  border-radius: 16px;
  background: oklch(98% 0.01 42);
  box-shadow: 0 12px 28px oklch(34% 0.035 38 / 0.08);
}

@keyframes photo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-marquee-track {
    animation: none;
  }
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: oklch(18% 0.02 40);
}

.hero-showcase {
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% 38%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, oklch(8% 0.018 40 / 0.9) 0%, oklch(10% 0.018 40 / 0.62) 28%, transparent 55%),
    linear-gradient(90deg, oklch(99% 0.01 55 / 0.18) 0%, oklch(99% 0.01 55 / 0.08) 32%, transparent 55%);
}

.hero-scrim::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: oklch(9% 0.018 40 / 0.42);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  mask-image: linear-gradient(to top, black 0%, black 58%, transparent 100%);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(28px, 6vw, 96px);
  width: min(1480px, calc(100% - 64px));
  padding: clamp(245px, 31vw, 410px) 0 clamp(34px, 4vw, 52px);
}

.hero-copy {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  color: oklch(98% 0.01 55);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 22px;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 13ch;
  margin: 0 auto;
  color: oklch(98% 0.01 55);
  font-size: clamp(2.15rem, 4vw, 3.72rem);
  text-shadow: 0 18px 52px oklch(10% 0.01 40 / 0.42);
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  color: oklch(94% 0.012 55);
  font-size: clamp(1.06rem, 1.55vw, 1.32rem);
  line-height: 1.75;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  justify-content: center;
  color: oklch(95% 0.012 55);
  font-weight: 900;
}

.hero-rating .stars {
  color: oklch(83% 0.15 87);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.hero-review {
  max-width: 48ch;
  margin: 16px 0 0;
  color: oklch(97% 0.01 55);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.34;
}

.hero-ghost {
  border-color: oklch(96% 0.012 55 / 0.72);
  background: transparent;
  color: oklch(98% 0.01 55);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 8.2vw, 7.7rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 5.3vw, 5.25rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section .wrap > .eyebrow,
.section .wrap > h2,
.section .wrap > .lead,
.section .wrap > .note {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.point {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.point strong {
  display: block;
  font-size: 1rem;
}

.point span {
  color: var(--muted);
  font-size: 0.91rem;
}

.hero-media {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 465px);
  min-height: 575px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.availability {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 220px;
  padding: 16px;
  border: 1px solid oklch(94% 0.012 55 / 0.78);
  border-radius: var(--radius);
  background: oklch(98% 0.012 55 / 0.9);
  backdrop-filter: blur(12px);
}

.availability span {
  color: var(--wine);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.availability p {
  margin: 6px 0 0;
  font-weight: 800;
  line-height: 1.35;
}

.availability a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--wine);
  color: oklch(98% 0.012 55);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px oklch(39% 0.122 9 / 0.22);
}

.availability a:hover {
  background: oklch(34% 0.126 9);
  transform: translateY(-1px);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.split > div:first-child {
  text-align: center;
}

.split > div:first-child h2,
.split > div:first-child .lead {
  margin-right: auto;
  margin-left: auto;
}

.process-section .split > div:first-child {
  text-align: left;
}

.process-section .split > div:first-child h2,
.process-section .split > div:first-child .lead {
  margin-left: 0;
}

.process-section .step {
  grid-template-columns: 42px 1fr;
  justify-items: stretch;
  gap: 16px;
  text-align: left;
}

.process-section .step-number {
  justify-self: start;
}

.media-section h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.4vw, 4.15rem);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  align-items: start;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--wine);
  font-weight: 900;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(18px, 2.4vw, 26px);
}

.offer-card,
.review-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(98% 0.012 55 / 0.82);
  box-shadow: 0 18px 44px oklch(34% 0.035 38 / 0.08);
}

.offer-card {
  overflow: hidden;
}

.offer-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offer-image-stack {
  display: grid;
  gap: 8px;
  padding: 0;
  background: transparent;
}

.offer-image-stack img {
  aspect-ratio: 1.45;
  border-radius: 0;
  overflow: hidden;
}

.offer-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  aspect-ratio: 1.45;
  background: transparent;
}

.offer-image-pair img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  background: transparent;
}

@media (min-width: 931px) {
  .offer-grid {
    align-items: stretch;
  }

  .offer-card {
    display: flex;
    flex-direction: column;
  }

  .offer-image-stack,
  .offer-image-pair {
    height: 330px;
  }

  .offer-image-stack {
    grid-template-rows: 1fr 1fr;
  }

  .offer-image-stack img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    background: oklch(98% 0.012 55);
  }

  .offer-card:first-child .offer-image-stack {
    padding: 10px;
    gap: 10px;
    background: oklch(98% 0.012 55);
  }

  .offer-card:first-child .offer-image-stack img {
    border-radius: 8px;
  }

  .offer-image-pair {
    aspect-ratio: auto;
  }

  .offer-body {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
}

.offer-body {
  position: relative;
  padding: 22px;
  text-align: center;
}

.offer-kicker {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-kicker span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offer-kicker span:last-child {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: 12ch;
  color: oklch(50% 0.055 18);
  font-size: 0.58rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: right;
}

.prices {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid oklch(89% 0.025 56);
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.included {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
  justify-items: center;
}

.included li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
  font-weight: 900;
}

.note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.note + .note {
  margin-top: 6px;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.showcase-product {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: clamp(18px, 3vw, 34px);
  aspect-ratio: 1.3;
  border-radius: var(--radius);
  border: 1px solid oklch(88% 0.023 56);
  background:
    radial-gradient(ellipse at 50% 78%, oklch(75% 0.035 44 / 0.28), transparent 34%),
    oklch(98% 0.012 55 / 0.68);
  box-shadow: 0 18px 44px oklch(34% 0.035 38 / 0.08);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.showcase-product.is-active {
  border-color: var(--wine);
  background:
    radial-gradient(ellipse at 50% 78%, oklch(74% 0.055 18 / 0.24), transparent 34%),
    oklch(98% 0.012 55 / 0.86);
  box-shadow: 0 22px 54px oklch(34% 0.035 38 / 0.12);
}

.showcase-product img {
  width: min(78%, 260px);
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px oklch(30% 0.025 38 / 0.16));
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.showcase-product.is-active img {
  opacity: 0.28;
  transform: scale(0.96);
  filter: blur(5px) drop-shadow(0 16px 16px oklch(30% 0.025 38 / 0.12));
}

.showcase-product::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--wine);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.showcase-product.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 931px) {
  .showcase-product {
    cursor: default;
  }

  .showcase-product:hover {
    border-color: var(--wine);
    background:
      radial-gradient(ellipse at 50% 78%, oklch(74% 0.055 18 / 0.24), transparent 34%),
      oklch(98% 0.012 55 / 0.86);
    box-shadow: 0 22px 54px oklch(34% 0.035 38 / 0.12);
  }

  .showcase-product:hover img {
    opacity: 0.28;
    transform: scale(0.96);
    filter: blur(5px) drop-shadow(0 16px 16px oklch(30% 0.025 38 / 0.12));
  }

  .showcase-product:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.reviews-hero h1 {
  font-size: clamp(2.35rem, 5.6vw, 5.05rem);
}

.reviews-proof {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-proof img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.review-card {
  padding: clamp(22px, 3vw, 34px);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.review-card blockquote {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(24px, 6vw, 76px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-whatsapp {
  margin-top: 26px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  color: var(--muted);
}

.contact-item a {
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-panel {
  padding: clamp(22px, 4vw, 38px);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.007 50);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid oklch(83% 0.058 19 / 0.45);
  border-color: var(--wine);
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-wrap,
.footer-main,
.footer-links,
.authority-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-wrap {
  flex-wrap: wrap;
}

.footer-main {
  flex-wrap: wrap;
}

.footer-phone-small {
  font-size: 0.86rem;
}

.footer-links {
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

.footer-links > a {
  font-size: 0.88rem;
}

.authority-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 232px;
  min-height: 50px;
  padding: 7px 10px;
  border: 1px solid oklch(91% 0.018 265);
  border-radius: 12px;
  background: oklch(99% 0.004 260);
  color: oklch(36% 0.12 272);
  box-shadow: 0 8px 18px oklch(18% 0.025 40 / 0.07);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.authority-button span {
  display: block;
}

.authority-button small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 15px;
  padding: 2px 8px;
  border-radius: 999px;
  background: oklch(35% 0.12 272);
  color: oklch(99% 0.004 260);
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.authority-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  color: oklch(36% 0.12 272);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.authority-button:hover {
  border-color: oklch(78% 0.06 265);
  box-shadow: 0 12px 26px oklch(18% 0.025 40 / 0.12);
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.authority-sol {
  width: 232px;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
}

.authority-sal {
  justify-content: flex-start;
  font-size: 0.61rem;
}

.legal-wrap {
  max-width: 860px;
}

.legal-block {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.legal-block p {
  max-width: 72ch;
  color: var(--muted);
}

.legal-authorities {
  margin-top: 18px;
}

@media (max-width: 930px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    order: 4;
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper-strong);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px oklch(34% 0.035 38 / 0.15);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .split,
  .reviews-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 320px;
    padding-bottom: 34px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, oklch(8% 0.018 40 / 0.92) 0%, oklch(10% 0.018 40 / 0.58) 34%, transparent 62%),
      linear-gradient(90deg, oklch(99% 0.01 55 / 0.16) 0%, transparent 42%);
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
    min-height: 500px;
  }

  .offer-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .nav {
    width: calc(100% - 32px);
    gap: 12px;
  }

  .brand {
    width: 132px;
  }

  .brand img {
    max-height: 44px;
  }

  .wrap {
    width: calc(100% - 32px);
    max-width: var(--max);
  }

  .photo-marquee {
    padding-top: 34px;
  }

  .photo-marquee-track,
  .photo-marquee-set {
    gap: 12px;
  }

  .photo-marquee-track {
    animation-duration: 52s;
  }

  .photo-marquee img {
    width: 58vw;
    height: 44vw;
    border-radius: 16px;
  }

  .hero-content {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    margin: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 2.85rem);
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(1.74rem, 7.7vw, 2.18rem);
    text-align: center;
  }

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

  .process-section .split > div:first-child {
    text-align: center;
  }

  .process-section .split > div:first-child h2,
  .process-section .split > div:first-child .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-text,
  .hero-review {
    width: 100%;
    max-width: 23ch;
    overflow-wrap: break-word;
    text-align: center;
  }

  .hero-rating {
    justify-content: center;
    text-align: center;
  }

  .hero-rating span:not(.stars) {
    display: none;
  }

  .hero-review {
    font-size: 0.9rem;
  }

  .hero-rating {
    gap: 10px;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

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

  .hero-points,
  .showcase,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 440px;
  }

  .availability {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .footer .wrap {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .footer-wrap,
  .footer-main,
  .footer-links {
    align-items: center;
    flex-direction: column;
  }

  .footer-links {
    margin-left: 0;
  }

  .authority-links {
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .authority-button,
  .authority-sol {
    width: min(100%, 232px);
  }
}
