/* ══════════════════════════════════════════════
   OBSIDIAN — Private Estates
   ══════════════════════════════════════════════ */

:root {
  --bg: #070707;
  --bg-2: #0d0d0c;
  --ink: #e9e4da;
  --ink-dim: #8a857b;
  --gold: #c8a35f;
  --gold-soft: rgba(200, 163, 95, 0.35);
  --line: rgba(233, 228, 218, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: #2a2a28 var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #0a0a0a; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* fine-grain film noise over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ═══════════ PRELOADER ═══════════ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner { text-align: center; }
.preloader__brand { overflow: hidden; }
.preloader__word {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: 0.42em;
  margin-right: -0.42em;
  transform: translateY(110%);
}
.preloader__count {
  margin-top: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ═══════════ CURSOR ═══════════ */

.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 2500;
  pointer-events: none;
  mix-blend-mode: exclusion;
}
.cursor__dot {
  position: absolute;
  top: -4px; left: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              top 0.35s var(--ease), left 0.35s var(--ease),
              opacity 0.3s;
}
.cursor.-hover .cursor__dot {
  width: 64px; height: 64px;
  top: -32px; left: -32px;
  opacity: 0.25;
}
.cursor__label {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%) scale(0.6);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s, transform 0.35s var(--ease);
  white-space: nowrap;
}
.cursor.-label .cursor__dot {
  width: 92px; height: 92px;
  top: -46px; left: -46px;
  opacity: 0.92;
  background: var(--ink);
}
.cursor.-label .cursor__label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  color: #0a0a0a;
  mix-blend-mode: normal;
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ═══════════ NAV ═══════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.4rem, 4vw, 3.5rem);
  transition: background 0.6s, backdrop-filter 0.6s, padding 0.6s, transform 0.6s var(--ease);
}
.nav.-scrolled {
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.nav.-hidden { transform: translateY(-100%); }
.nav__logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.34em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-sub {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.44em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
}
.nav__link {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.4s;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s;
}
.nav__cta:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
@media (max-width: 720px) {
  .nav__link { display: none; }
}

/* ═══════════ HERO ═══════════ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.15) 40%, rgba(7,7,7,0.88) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(7,7,7,0.5), transparent 60%);
}
.hero__content {
  position: relative;
  width: 100%;
  padding: 0 clamp(1.4rem, 4vw, 3.5rem) clamp(5.5rem, 10vh, 8rem);
}
.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.4rem, 13.5vw, 12.5rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  margin-left: -0.04em;
  display: flex;
  overflow: hidden;
}
.hero__char { display: inline-block; transform: translateY(115%); }
.hero__sub {
  margin-top: 1.8rem;
  max-width: 34rem;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--ink-dim);
}
.hero__sub em { font-family: var(--serif); font-size: 1.25em; color: var(--ink); }
.hero__scroll {
  position: absolute;
  right: clamp(1.4rem, 4vw, 3.5rem);
  bottom: clamp(5.5rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 64px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(280%); }
}

/* ═══════════ MARQUEE ═══════════ */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  white-space: nowrap;
}
.marquee__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ═══════════ SECTION BASICS ═══════════ */

section { padding-left: clamp(1.4rem, 4vw, 3.5rem); padding-right: clamp(1.4rem, 4vw, 3.5rem); }

.manifesto { padding-top: clamp(7rem, 16vh, 12rem); padding-bottom: clamp(7rem, 16vh, 12rem); max-width: 1200px; margin: 0 auto; }
.manifesto__label,
.collection__label,
.approach__label,
.cta__label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.4rem;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  line-height: 1.32;
  letter-spacing: 0.01em;
}
.manifesto__text .w { opacity: 0.14; transition: none; }
.manifesto__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 3.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══════════ FILM ═══════════ */

.film { padding-top: 2rem; padding-bottom: clamp(6rem, 14vh, 10rem); }
.film__frame {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 8.2;
  min-height: 320px;
}
.film__video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.film__caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══════════ COLLECTION ═══════════ */

.collection { padding-bottom: clamp(6rem, 14vh, 10rem); }
.collection__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3.5rem, 8vh, 6rem);
}
.collection__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 1.08;
}
.collection__title em { color: var(--gold); }
.collection__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  row-gap: clamp(4rem, 9vh, 7rem);
}
.card { cursor: pointer; }
.card:nth-child(6n + 1) { grid-column: 1 / 8; }
.card:nth-child(6n + 2) { grid-column: 9 / 13; margin-top: clamp(3rem, 9vh, 7rem); }
.card:nth-child(6n + 3) { grid-column: 1 / 6; }
.card:nth-child(6n + 4) { grid-column: 7 / 13; margin-top: clamp(2rem, 6vh, 4.5rem); }
.card:nth-child(6n + 5) { grid-column: 1 / 8; }
.card:nth-child(6n + 6) { grid-column: 9 / 13; margin-top: clamp(3rem, 9vh, 7rem); }
@media (max-width: 860px) {
  .card { grid-column: 1 / 13 !important; margin-top: 0 !important; }
}
.card__media {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  position: relative;
}
.card:nth-child(6n + 2) .card__media,
.card:nth-child(6n + 6) .card__media { aspect-ratio: 3 / 3.6; }
.card:nth-child(6n + 3) .card__media { aspect-ratio: 3 / 3.4; }
.card__img {
  width: 100%; height: 118%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  filter: saturate(0.82) brightness(0.92);
  will-change: transform;
}
.card:hover .card__img { transform: scale(1.055); filter: saturate(1) brightness(1); }
.card__badge {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.card__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.card__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: 0.02em;
}
.card__loc {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.35rem;
}
.card__price {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ═══════════ STATS ═══════════ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0;
}
.stats__item {
  padding: clamp(2.6rem, 6vh, 4.5rem) clamp(1.4rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.stats__item:first-child { border-left: none; }
.stats__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stats__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 860px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(3) { border-left: none; }
  .stats__item { border-top: 1px solid var(--line); }
  .stats__item:nth-child(-n + 2) { border-top: none; }
}

/* ═══════════ APPROACH ═══════════ */

.approach { padding-top: clamp(6rem, 14vh, 10rem); padding-bottom: clamp(6rem, 14vh, 10rem); }
.approach__row {
  display: grid;
  grid-template-columns: 6rem 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding: clamp(2rem, 5vh, 3.2rem) 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.6s var(--ease);
}
.approach__row:last-child { border-bottom: 1px solid var(--line); }
.approach__row:hover { padding-left: 1.4rem; }
.approach__index {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.approach__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  transition: color 0.5s;
}
.approach__row:hover .approach__name { color: var(--gold); }
.approach__desc { color: var(--ink-dim); font-size: 0.92rem; max-width: 34rem; }
@media (max-width: 720px) {
  .approach__row { grid-template-columns: 1fr; gap: 0.7rem; }
}

/* ═══════════ CTA ═══════════ */

.cta {
  padding-top: clamp(6rem, 16vh, 12rem);
  padding-bottom: clamp(6rem, 16vh, 12rem);
  text-align: center;
}
.cta__title { display: block; }
.cta__line {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 1.04;
  transition: letter-spacing 0.8s var(--ease);
}
.cta__line em { color: var(--gold); }
.cta__btn {
  display: inline-block;
  margin-top: 3.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 1.25rem 3rem;
  border-radius: 100px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.cta__btn:hover {
  background: transparent;
  color: var(--gold);
  letter-spacing: 0.4em;
}
.cta__note {
  margin-top: 2.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══════════ FOOTER ═══════════ */

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vh, 5rem) clamp(1.4rem, 4vw, 3.5rem) 2rem;
  background: var(--bg-2);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer__logo {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.3em;
}
.footer__cols { display: flex; flex-wrap: wrap; gap: clamp(2.5rem, 6vw, 6rem); }
.footer__col { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.78rem; color: var(--ink-dim); }
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: var(--gold); }
.footer__head {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══════════ MODAL ═══════════ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: none;
}
.modal.-open { display: block; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
}
.modal__panel {
  position: absolute;
  inset: clamp(0.8rem, 3vh, 2.5rem);
  margin: 0 auto;
  max-width: 1180px;
  background: #0b0b0a;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  clip-path: inset(50% 0 50% 0);
}
.modal__media { position: relative; overflow: hidden; }
.modal__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.modal__body {
  padding: clamp(1.8rem, 4vw, 3.4rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #2a2a28 transparent;
}
.modal__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.modal__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.modal__price {
  margin-top: 0.9rem;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.modal__specs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  margin: 1.8rem 0;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.modal__spec { display: flex; flex-direction: column; gap: 0.3rem; }
.modal__spec b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
}
.modal__spec span {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.modal__desc { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.75; }
.modal__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.8rem 0 2.2rem;
}
.modal__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  filter: saturate(0.85) brightness(0.9);
  transition: filter 0.5s, transform 0.5s var(--ease);
}
.modal__gallery img:hover { filter: saturate(1) brightness(1); transform: scale(1.02); }
.modal__cta {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.modal__cta:hover { background: var(--gold); color: #0a0a0a; }
.modal__close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.6);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.4s, transform 0.4s var(--ease);
}
.modal__close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.modal__close:hover { background: var(--gold); transform: rotate(90deg); }
.modal__close:hover span { background: #0a0a0a; }
@media (max-width: 860px) {
  .modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: 38% 1fr;
    inset: 0.6rem;
  }
}

/* ═══════════ REVEAL / MOTION PREP ═══════════ */

[data-reveal] { opacity: 0; transform: translateY(28px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal], .hero__char, .preloader__word { opacity: 1 !important; transform: none !important; }
  body::after { display: none; }
}
