/*
  Curiosidades El Vaquero
  Landing inmersiva — HTML, CSS y JavaScript puros
*/

:root {
  --ink: #11100d;
  --ink-soft: #171510;
  --ink-raised: #1d1a14;
  --paper: #f4ecdf;
  --paper-dim: #d7c9b4;
  --sand: #c8975d;
  --sand-light: #e4bf8d;
  --leather: #75472d;
  --ember: #a44228;
  --sage: #6d7968;
  --line: rgba(244, 236, 223, 0.16);
  --line-strong: rgba(244, 236, 223, 0.32);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  --shell: min(1320px, calc(100vw - 64px));
  --header-h: 88px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --scroll-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 12%, rgba(117, 71, 45, 0.18), transparent 26rem),
    var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--sand-light);
}

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

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

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

img,
svg,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  overflow: visible;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  isolation: isolate;
}

.section-index {
  position: absolute;
  z-index: -1;
  top: 9rem;
  right: max(24px, calc((100vw - min(1320px, calc(100vw - 64px))) / 2));
  color: rgba(244, 236, 223, 0.04);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9rem, 20vw, 23rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.09em;
  pointer-events: none;
  user-select: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: var(--sand-light);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.display {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7.8vw, 7.8rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.display em,
.brands__title em,
.visit__title em {
  color: var(--sand);
  font-weight: 400;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    color 0.45s var(--ease-out),
    background-color 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--paper);
  content: "";
  transform: translateY(105%);
  transition: transform 0.5s var(--ease-out);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg,
.header-cta svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button--solid {
  color: var(--ink);
  background: var(--sand-light);
}

.button--solid::before {
  background: var(--paper);
}

.button--ghost {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(17, 16, 13, 0.15);
  backdrop-filter: blur(16px);
}

.button--ghost::before {
  background: var(--paper);
}

.button--light {
  color: var(--ink);
  background: var(--paper);
}

.button--light::before {
  background: var(--sand-light);
}

.button--outline-light {
  border-color: rgba(244, 236, 223, 0.55);
  color: var(--paper);
  background: rgba(17, 16, 13, 0.08);
  backdrop-filter: blur(12px);
}

.button--outline-light::before {
  background: var(--paper);
}

@media (hover: hover) {
  .button:hover::before {
    transform: translateY(0);
  }

  .button--solid:hover,
  .button--ghost:hover,
  .button--outline-light:hover {
    color: var(--ink);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 110ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ambient layers */
.webgl {
  position: fixed;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s ease;
}

body.three-ready .webgl {
  opacity: 0.78;
}

.ambient-glow {
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 18rem at var(--pointer-x) var(--pointer-y), rgba(200, 151, 93, 0.08), transparent 70%),
    radial-gradient(circle 38rem at 76% 35%, rgba(164, 66, 40, 0.055), transparent 72%);
  mix-blend-mode: screen;
}

.grain {
  position: fixed;
  z-index: 50;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
  animation: grain-shift 0.24s steps(2) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(2%, -3%, 0); }
  50% { transform: translate3d(-3%, 2%, 0); }
  75% { transform: translate3d(3%, 4%, 0); }
  100% { transform: translate3d(-2%, -2%, 0); }
}

/* Preloader */
.preloader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  transition:
    opacity 0.9s var(--ease-in-out),
    visibility 0s linear 0.9s;
}

.preloader::before,
.preloader::after {
  position: absolute;
  border: 1px solid rgba(244, 236, 223, 0.08);
  border-radius: 50%;
  content: "";
}

.preloader::before {
  width: min(60vw, 560px);
  aspect-ratio: 1;
}

.preloader::after {
  width: min(42vw, 390px);
  aspect-ratio: 1;
}

body.is-ready .preloader {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  position: relative;
  z-index: 1;
  width: min(310px, 72vw);
  text-align: center;
}

.preloader__logo {
  display: block;
  width: min(156px, 42vw);
  margin: 0 auto 1rem;
  line-height: 0;
}

.preloader__mark {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
  animation: preloader-mark 2.8s ease-in-out infinite;
}

@keyframes preloader-mark {
  0%, 100% { transform: rotate(-4deg) scale(0.98); }
  50% { transform: rotate(4deg) scale(1.03); }
}

.preloader__eyebrow {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.preloader__name {
  margin: 0.2rem 0 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1;
}

.preloader__track {
  height: 1px;
  overflow: hidden;
  background: rgba(244, 236, 223, 0.14);
}

.preloader__track span {
  display: block;
  width: var(--load-progress, 0%);
  height: 100%;
  background: var(--sand-light);
  transition: width 0.35s ease;
}

.preloader__progress {
  margin: 0.6rem 0 0;
  color: rgba(244, 236, 223, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-h);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: max(24px, calc((100vw - min(1320px, calc(100vw - 64px))) / 2));
  border-bottom: 1px solid transparent;
  transition:
    height 0.45s var(--ease-out),
    background-color 0.45s ease,
    border-color 0.45s ease,
    transform 0.5s var(--ease-out);
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(17, 16, 13, 0.78);
  backdrop-filter: blur(20px) saturate(120%);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  display: inline-grid;
  width: max-content;
  align-items: center;
  gap: 0.08rem;
  line-height: 1;
}

.brand picture {
  display: block;
  line-height: 0;
}

.brand__eyebrow {
  margin-left: 0.18rem;
  color: var(--paper-dim);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.brand__wordmark {
  display: block;
  width: clamp(158px, 13.4vw, 198px);
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(244, 236, 223, 0.18))
    drop-shadow(0 8px 22px rgba(0, 0, 0, 0.28));
  transition: width 0.45s var(--ease-out), filter 0.35s ease;
}

.brand:hover .brand__wordmark {
  filter:
    drop-shadow(0 1px 0 rgba(244, 236, 223, 0.28))
    drop-shadow(0 10px 26px rgba(200, 151, 93, 0.2));
}

.site-header.is-scrolled .brand__wordmark {
  width: clamp(148px, 12.2vw, 184px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(244, 236, 223, 0.72);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--sand-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  gap: 0.8rem;
  padding: 0 1.05rem;
  border: 1px solid rgba(244, 236, 223, 0.24);
  border-radius: 999px;
  background: rgba(17, 16, 13, 0.18);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.header-cta:hover {
  border-color: var(--sand-light);
  color: var(--ink);
  background: var(--sand-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: var(--paper);
  transition: transform 0.45s var(--ease-out);
}

.menu-toggle span:first-child { transform: translateY(-3px); }
.menu-toggle span:last-child { transform: translateY(3px); }

body.menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: calc(var(--header-h) + 4rem) 24px 2rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(117, 71, 45, 0.3), transparent 38%),
    var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2%);
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s,
    transform 0.55s var(--ease-out);
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 11vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.mobile-menu nav span {
  color: var(--sand);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.mobile-menu__footer {
  position: absolute;
  right: 24px;
  bottom: max(2rem, env(safe-area-inset-bottom));
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper-dim);
  font-size: 0.74rem;
}

.mobile-menu__footer p {
  margin: 0;
}

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(calc(1.04 + var(--hero-scale, 0)));
  transform-origin: center 65%;
  will-change: transform;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.76) contrast(1.1) brightness(0.73);
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  will-change: transform;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.96) 0%, rgba(17, 16, 13, 0.76) 34%, rgba(17, 16, 13, 0.22) 70%, rgba(17, 16, 13, 0.5) 100%),
    linear-gradient(0deg, rgba(17, 16, 13, 0.92) 0%, transparent 42%, rgba(17, 16, 13, 0.22) 100%);
}

.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 7.8rem;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--sand-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__kicker .line {
  width: 2.6rem;
  height: 1px;
  background: currentColor;
}

.hero__title {
  display: grid;
  max-width: 1100px;
  margin: 0;
  line-height: 0.79;
  text-transform: uppercase;
}

.title-small {
  margin-left: 0.06em;
  color: var(--paper-dim);
  font-size: clamp(1.65rem, 3.4vw, 3.45rem);
  font-weight: 500;
  letter-spacing: 0.35em;
}

.hero__wordmark {
  display: block;
  width: min(100%, 1080px);
  margin-top: 0.3rem;
  line-height: 0;
  filter:
    drop-shadow(0 2px 1px rgba(17, 16, 13, 0.38))
    drop-shadow(0 22px 54px rgba(0, 0, 0, 0.42));
}

.hero__wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__bottom {
  display: grid;
  max-width: 860px;
  grid-template-columns: minmax(250px, 430px) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-top: 2.2rem;
}

.hero__bottom p {
  margin: 0;
  color: rgba(244, 236, 223, 0.76);
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__coordinates {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: rgba(244, 236, 223, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero__ticker {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.36);
  backdrop-filter: blur(14px);
}

.hero__ticker div,
.brand-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.1rem;
  padding: 0.8rem 0;
  animation: marquee 34s linear infinite;
}

.hero__ticker span {
  color: rgba(244, 236, 223, 0.72);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.hero__ticker i,
.brand-marquee i {
  color: var(--sand);
  font-size: 0.65rem;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  right: max(24px, calc((100vw - min(1320px, calc(100vw - 64px))) / 2));
  bottom: 5.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(244, 236, 223, 0.54);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  width: 3.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(244, 236, 223, 0.22);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--sand-light);
  content: "";
  animation: cue 2.1s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* Story */
.story {
  z-index: 4;
  padding: clamp(8rem, 15vw, 14rem) 0 clamp(8rem, 14vw, 13rem);
  background:
    radial-gradient(circle at 12% 45%, rgba(117, 71, 45, 0.16), transparent 28rem),
    var(--ink-soft);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.story__lead {
  max-width: 600px;
  margin: 2.6rem 0 0;
  color: rgba(244, 236, 223, 0.64);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.story__facts {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story__facts div {
  min-height: 130px;
  padding: 1.5rem 1.15rem 1.2rem 0;
}

.story__facts div + div {
  padding-left: 1.15rem;
  border-left: 1px solid var(--line);
}

.story__facts strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
}

.story__facts span {
  display: block;
  color: rgba(244, 236, 223, 0.52);
  font-size: 0.78rem;
  line-height: 1.45;
}

.store-frame {
  position: relative;
  margin: 0;
  transform: translateY(var(--parallax-shift, 0));
  will-change: transform;
}

.store-frame::before {
  position: absolute;
  z-index: -1;
  inset: -1rem 1.25rem 1.25rem -1rem;
  border: 1px solid rgba(200, 151, 93, 0.35);
  content: "";
}

.store-frame__image {
  aspect-ratio: 0.82;
  overflow: hidden;
  background: #29241c;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 6%, 94% 100%, 4% 94%);
}

.store-frame__image picture,
.store-frame__image img {
  width: 100%;
  height: 100%;
}

.store-frame__image img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) sepia(0.08) contrast(1.04);
  transform: scale(1.08);
  transition: transform 1.5s var(--ease-out);
}

.store-frame.is-visible .store-frame__image img {
  transform: scale(1);
}

.store-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  color: rgba(244, 236, 223, 0.5);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement {
  margin-top: clamp(9rem, 18vw, 18rem);
}

.statement__line {
  margin: 0;
  color: rgba(244, 236, 223, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9.6vw, 10rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.075em;
  transition: color 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}

.statement__line:nth-child(2) {
  margin-left: clamp(0rem, 8vw, 8rem);
  font-style: italic;
}

.statement__line.is-active {
  color: var(--paper);
  transform: translateX(0.03em);
}

/* Collection */
.collection {
  z-index: 4;
  overflow: hidden;
  padding: clamp(8rem, 14vw, 13rem) 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, #13110e 100%);
}

.collection__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 4rem;
}

.collection__intro {
  margin: 0 0 0.6rem;
  color: rgba(244, 236, 223, 0.6);
  font-size: 1rem;
  line-height: 1.75;
}

.collection-rail {
  margin-top: clamp(4.5rem, 8vw, 7.5rem);
}

.collection-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  padding: 0 max(32px, calc((100vw - min(1320px, calc(100vw - 64px))) / 2)) 2rem;
  cursor: grab;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}

.collection-track::-webkit-scrollbar {
  display: none;
}

.collection-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.product-card {
  position: relative;
  flex: 0 0 clamp(280px, 28vw, 420px);
  aspect-ratio: 0.74;
  overflow: hidden;
  background: #2b261f;
  scroll-snap-align: center;
}

.product-card--wide {
  flex-basis: clamp(360px, 42vw, 620px);
  aspect-ratio: 1.08;
}

.product-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 236, 223, 0.14);
  content: "";
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transform: scale(1.025);
  transition: filter 0.8s var(--ease-out), transform 1.1s var(--ease-out);
}

.product-card:nth-child(1) img {
  object-position: 52% 50%;
}

.product-card:nth-child(3) img {
  object-position: center top;
}

.product-card:nth-child(4) img {
  image-rendering: auto;
}

.product-card:nth-child(6) img {
  object-position: center 70%;
}

.product-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 16, 13, 0.94) 0%, rgba(17, 16, 13, 0.12) 55%, rgba(17, 16, 13, 0.06) 100%);
}

.product-card__meta {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1rem;
}

.product-card__meta > span {
  color: var(--sand-light);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.product-card__meta p {
  margin: 0 0 0.25rem;
  color: rgba(244, 236, 223, 0.55);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-card__meta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.product-card__meta a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 236, 223, 0.35);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s var(--ease-out);
}

@media (hover: hover) {
  .product-card:hover img {
    filter: saturate(1) contrast(1.05);
    transform: scale(1.075);
  }

  .product-card__meta a:hover {
    color: var(--ink);
    background: var(--paper);
    transform: rotate(45deg);
  }
}

.rail-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.9rem;
  color: rgba(244, 236, 223, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rail-hint i {
  position: relative;
  width: 5rem;
  height: 1px;
  background: var(--line);
}

.rail-hint i::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--paper-dim);
  border-right: 1px solid var(--paper-dim);
  content: "";
  transform: rotate(45deg);
}

/* Brands */
.brands {
  z-index: 4;
  display: grid;
  min-height: 95svh;
  place-items: center;
  overflow: hidden;
  padding: 9rem 0;
  background: #0e0d0b;
}

.brands::before,
.brands::after {
  position: absolute;
  border: 1px solid rgba(200, 151, 93, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.brands::before {
  width: min(72vw, 880px);
  aspect-ratio: 1;
}

.brands::after {
  width: min(48vw, 580px);
  aspect-ratio: 1;
}

.brands__halo {
  position: absolute;
  width: min(55vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 66, 40, 0.17), transparent 68%);
  filter: blur(12px);
}

.brands__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
}

.brands__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.brands__copy {
  max-width: 500px;
  margin: 2.5rem auto 0;
  color: rgba(244, 236, 223, 0.55);
}

.brand-marquee {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 2.5rem;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(-2deg) scale(1.03);
}

.brand-marquee div {
  gap: 2.4rem;
  padding: 0.55rem 0;
  animation-duration: 42s;
}

.brand-marquee span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  font-style: italic;
  white-space: nowrap;
}

/* Purchase */
.purchase {
  z-index: 4;
  padding: clamp(8rem, 14vw, 14rem) 0;
  background:
    radial-gradient(circle at 88% 30%, rgba(117, 71, 45, 0.18), transparent 28rem),
    var(--ink-soft);
}

.purchase__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(5rem, 10vw, 12rem);
}

.purchase__sticky {
  position: sticky;
  top: calc(var(--header-h) + 4rem);
}

.purchase__note {
  max-width: 500px;
  margin: 2.5rem 0 2rem;
  color: rgba(244, 236, 223, 0.58);
}

.purchase__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  display: grid;
  min-height: 280px;
  grid-template-columns: 54px 1fr 76px;
  gap: 1.4rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step__number {
  color: var(--sand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step__label {
  margin: 0 0 0.8rem;
  color: rgba(244, 236, 223, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.step div > p:last-child {
  max-width: 480px;
  margin: 1.2rem 0 0;
  color: rgba(244, 236, 223, 0.52);
}

.step__icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sand-light);
  transition: color 0.5s ease, background-color 0.5s ease, transform 0.6s var(--ease-out);
}

.step__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.step.is-visible .step__icon {
  transform: rotate(-8deg);
}

@media (hover: hover) {
  .step:hover .step__icon {
    color: var(--ink);
    background: var(--sand-light);
    transform: rotate(8deg) scale(1.04);
  }
}

/* Visit */
.visit {
  z-index: 4;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(8rem, 14vw, 12rem) 0 7rem;
  background: #17130f;
}

.visit__photo,
.visit__overlay {
  position: absolute;
  inset: 0;
}

.visit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  filter: saturate(0.62) contrast(1.12) brightness(0.66);
  transform: scale(calc(1.06 + var(--visit-scale, 0)));
  will-change: transform;
}

.visit__overlay {
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.96) 0%, rgba(17, 16, 13, 0.68) 42%, rgba(17, 16, 13, 0.22) 80%),
    linear-gradient(0deg, rgba(17, 16, 13, 0.92), transparent 55%);
}

.visit__content {
  position: relative;
  z-index: 2;
}

.visit__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.visit__details {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 3rem;
}

.visit__details div {
  display: grid;
  gap: 0.35rem;
}

.visit__details span {
  color: var(--sand-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit__details strong,
.visit__details a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* Social */
.social {
  z-index: 4;
  padding: clamp(8rem, 14vw, 13rem) 0;
  background: var(--paper);
  color: var(--ink);
}

.social .eyebrow {
  color: var(--leather);
}

.social__layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 4rem;
}

.social__copy {
  margin: 0 0 0.8rem;
  color: rgba(17, 16, 13, 0.62);
  font-size: 1.04rem;
}

.social-links {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(17, 16, 13, 0.2);
}

.social-link {
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.7fr) 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 120px;
  border-bottom: 1px solid rgba(17, 16, 13, 0.2);
  transition: color 0.45s ease, padding 0.45s var(--ease-out), background-color 0.45s ease;
}

.social-link__index {
  color: rgba(17, 16, 13, 0.45);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.social-link__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
}

.social-link__handle {
  color: rgba(17, 16, 13, 0.55);
  font-size: 0.78rem;
}

.social-link__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(17, 16, 13, 0.26);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 0.45s var(--ease-out), color 0.45s ease, background-color 0.45s ease;
}

@media (hover: hover) {
  .social-link:hover {
    padding-inline: 1.2rem;
    color: var(--paper);
    background: var(--ink);
  }

  .social-link:hover .social-link__index,
  .social-link:hover .social-link__handle {
    color: rgba(244, 236, 223, 0.55);
  }

  .social-link:hover .social-link__arrow {
    color: var(--ink);
    background: var(--sand-light);
    transform: rotate(45deg);
  }
}

/* Final CTA */
.final-cta {
  z-index: 4;
  display: grid;
  min-height: 92svh;
  place-items: center;
  overflow: hidden;
  padding: 8rem 0;
  background: #0d0c0a;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(244, 236, 223, 0.08);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: min(82vw, 980px);
  aspect-ratio: 1;
}

.final-cta::after {
  width: min(58vw, 700px);
  aspect-ratio: 1;
}

.final-cta__orb {
  position: absolute;
  width: min(45vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 71, 45, 0.35), transparent 68%);
  filter: blur(30px);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.final-cta__brand {
  display: block;
  width: clamp(176px, 19vw, 278px);
  margin-bottom: 1.2rem;
  line-height: 0;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.48));
}

.final-cta__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.final-cta__content .eyebrow::before {
  display: none;
}

.final-cta h2 {
  max-width: 12ch;
  margin: 0 0 2.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 4;
  padding: 5.5rem 0 1.8rem;
  border-top: 1px solid var(--line);
  background: #0a0908;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.brand--footer .brand__eyebrow {
  font-size: 0.54rem;
}

.brand--footer .brand__wordmark {
  width: clamp(210px, 18vw, 260px);
}

.site-footer__top > p {
  margin: 0;
  color: rgba(244, 236, 223, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-style: italic;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  gap: 0.8rem;
  color: rgba(244, 236, 223, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.site-footer__nav a,
.site-footer__contact a {
  transition: color 0.3s ease;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--sand-light);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: rgba(244, 236, 223, 0.34);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: rgba(244, 236, 223, 0.62);
}

/* Floating UI */
.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 1.3rem;
  bottom: 1.3rem;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1rem;
  border: 1px solid rgba(244, 236, 223, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.35s var(--ease-out);
}

.whatsapp-float svg {
  width: 23px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: var(--sand-light);
  transform: translateY(-3px);
}

.cursor,
.cursor-dot {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
}

.cursor {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(244, 236, 223, 0.48);
  border-radius: 50%;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.cursor span {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(200, 151, 93, 0.35);
  border-radius: 50%;
}

.cursor-dot {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: var(--sand-light);
}

body.has-pointer .cursor,
body.has-pointer .cursor-dot {
  opacity: 1;
}

body.cursor-active .cursor {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--sand-light);
  background: rgba(200, 151, 93, 0.08);
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .desktop-nav {
    gap: 1.1rem;
  }

  .desktop-nav a {
    font-size: 0.59rem;
  }

  .story__grid {
    gap: 4rem;
  }

  .purchase__layout {
    gap: 5rem;
  }

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

@media (max-width: 860px) {
  :root {
    --header-h: 76px;
    --shell: calc(100vw - 40px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
  }

  .hero__content {
    padding-bottom: 7rem;
  }

  .hero__media img {
    object-position: 56% 55%;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(17, 16, 13, 0.88), rgba(17, 16, 13, 0.28)),
      linear-gradient(0deg, rgba(17, 16, 13, 0.96) 0%, rgba(17, 16, 13, 0.35) 54%, rgba(17, 16, 13, 0.3) 100%);
  }

  .hero__wordmark {
    width: min(100%, 840px);
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero__bottom p {
    max-width: 540px;
  }

  .scroll-cue,
  .hero__coordinates {
    display: none;
  }

  .story__grid,
  .collection__heading,
  .purchase__layout,
  .social__layout {
    grid-template-columns: 1fr;
  }

  .story__grid {
    gap: 6rem;
  }

  .store-frame {
    width: min(620px, 94%);
    margin-left: auto;
  }

  .story__facts {
    max-width: none;
  }

  .collection__heading,
  .social__layout {
    gap: 2rem;
  }

  .collection__intro,
  .social__copy {
    max-width: 560px;
  }

  .purchase__sticky {
    position: relative;
    top: auto;
  }

  .purchase__steps {
    margin-top: 4rem;
  }

  .visit__title {
    font-size: clamp(4.5rem, 18vw, 9rem);
  }

  .social-link {
    grid-template-columns: 48px 1fr auto;
  }

  .social-link__handle {
    display: none;
  }

  .site-footer__top {
    gap: 4rem 2rem;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand__eyebrow {
    font-size: 0.43rem;
    letter-spacing: 0.22em;
  }

  .brand__wordmark,
  .site-header.is-scrolled .brand__wordmark {
    width: 152px;
  }

  .hero__content {
    padding-bottom: 6.6rem;
  }

  .hero__kicker {
    margin-bottom: 0.8rem;
    font-size: 0.58rem;
  }

  .title-small {
    font-size: clamp(1.15rem, 5.6vw, 1.7rem);
    letter-spacing: 0.28em;
  }

  .hero__wordmark {
    width: min(100%, 620px);
    margin-top: 0.5rem;
  }

  .hero__bottom {
    margin-top: 1.55rem;
  }

  .hero__bottom p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__ticker div {
    gap: 1.4rem;
    animation-duration: 28s;
  }

  .display {
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

  .section-index {
    top: 6rem;
    right: 16px;
    font-size: 9rem;
  }

  .story,
  .collection,
  .purchase,
  .social {
    padding-block: 7rem;
  }

  .story__facts {
    grid-template-columns: 1fr;
  }

  .story__facts div {
    min-height: auto;
    padding: 1.15rem 0;
  }

  .story__facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .store-frame {
    width: 92%;
  }

  .store-frame__image {
    aspect-ratio: 0.78;
  }

  .statement {
    margin-top: 8rem;
  }

  .statement__line {
    font-size: clamp(3.1rem, 16vw, 5.8rem);
  }

  .statement__line:nth-child(2) {
    margin-left: 0;
  }

  .collection-track {
    padding-inline: 16px;
  }

  .product-card,
  .product-card--wide {
    flex-basis: min(82vw, 360px);
    aspect-ratio: 0.76;
  }

  .product-card__meta {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    gap: 0.65rem;
  }

  .product-card__meta h3 {
    font-size: 1.35rem;
  }

  .rail-hint {
    display: none;
  }

  .brands {
    min-height: 80svh;
  }

  .brands::before {
    width: 115vw;
  }

  .brands::after {
    width: 78vw;
  }

  .brands__title {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
  }

  .brand-marquee {
    bottom: 1.5rem;
  }

  .step {
    min-height: auto;
    grid-template-columns: 38px 1fr;
    padding: 2rem 0;
  }

  .step__icon {
    display: none;
  }

  .step h3 {
    font-size: 2.2rem;
  }

  .visit {
    min-height: 92svh;
    padding-bottom: 5.5rem;
  }

  .visit__photo img {
    object-position: 58% 52%;
  }

  .visit__overlay {
    background:
      linear-gradient(0deg, rgba(17, 16, 13, 0.97) 0%, rgba(17, 16, 13, 0.38) 66%, rgba(17, 16, 13, 0.38) 100%),
      linear-gradient(90deg, rgba(17, 16, 13, 0.45), transparent);
  }

  .visit__title {
    font-size: clamp(4rem, 21vw, 6.4rem);
  }

  .visit__details {
    display: grid;
    gap: 1.6rem;
  }

  .visit__actions {
    display: grid;
  }

  .social-link {
    min-height: 96px;
    grid-template-columns: 32px 1fr auto;
    gap: 0.8rem;
  }

  .social-link__name {
    font-size: 2rem;
  }

  .social-link__arrow {
    width: 40px;
    height: 40px;
  }

  .final-cta {
    min-height: 82svh;
  }

  .final-cta h2 {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__bottom {
    display: grid;
    gap: 0.65rem;
    margin-top: 3.5rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    width: 50px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (pointer: coarse), (hover: none) {
  .cursor,
  .cursor-dot {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .webgl,
  .grain {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__media,
  .hero__media img,
  .store-frame,
  .visit__photo img {
    transform: none !important;
  }
}
