/* ============ Nos Meubles — Identidad Patagonia ============ */

:root {
  --color-primary: #0d3c42;
  --color-secondary: #12777c;
  --color-accent: #e14360;
  --color-bg: #f2f6f6;
  --color-bg-dark: #12141b;
  --color-text: #101718;
  --color-text-light: #eef4f4;

  --font-heading: 'Syne', sans-serif;
  --font-body: 'Jost', sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- texture overlays ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.snow {
  position: fixed; inset: 0; z-index: 5; pointer-events: none; overflow: hidden;
}
.snow span {
  position: absolute; top: -10px; border-radius: 50%;
  background: rgba(238,244,244,.55);
  animation: fall linear infinite;
}
@keyframes fall {
  to { transform: translateY(110vh) translateX(var(--drift, 0px)); }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 20000;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, #163f45 0%, var(--color-bg-dark) 65%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,217,217,.35), transparent 70%);
  filter: blur(10px);
  animation: glowpulse 2.2s ease-in-out infinite;
}
@keyframes glowpulse {
  0%, 100% { transform: scale(.9); opacity: .6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.preloader-logo {
  width: 110px; position: relative; z-index: 1;
  animation: logospin 1.8s var(--ease) infinite;
  filter: drop-shadow(0 0 18px rgba(45,217,217,.55));
}
@keyframes logospin {
  0% { transform: scale(.85) rotate(0deg); opacity: .5; }
  50% { transform: scale(1.05) rotate(180deg); opacity: 1; }
  100% { transform: scale(.85) rotate(360deg); opacity: .5; }
}
.preloader-bar {
  width: 160px; height: 2px; background: rgba(238,244,244,.15);
  position: relative; overflow: hidden; border-radius: 2px;
}
.preloader-bar span {
  position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-secondary), var(--color-accent), transparent);
  animation: barsweep 1.1s ease-in-out infinite;
}
@keyframes barsweep {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 4vw;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: padding .4s var(--ease), background .5s var(--ease), height .4s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
}
.nav.scrolled {
  height: 66px;
  padding: 1rem 4vw;
  background: rgba(13,60,66,.32);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(238,244,244,.1);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,.35);
}
.nav-brand {
  display: flex; align-items: center; gap: .7rem;
}
.nav-logo {
  width: 40px; height: 40px; object-fit: contain;
  transition: width .4s var(--ease), height .4s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.nav.scrolled .nav-logo { width: 32px; height: 32px; }
.nav-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.01em;
}
.nav-links {
  display: flex; gap: 2.4rem;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; opacity: .85; transition: opacity .3s; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--color-accent); transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-social { display: flex; gap: .7rem; }
.nav-social a {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(238,244,244,.25);
  transition: all .3s;
}
.nav-social a:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-2px); }
.nav-social svg { width: 14px; height: 14px; fill: currentColor; }
.nav-cta {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
  border: 1px solid currentColor; padding: .55rem 1.3rem; border-radius: 999px;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-brand span { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 6vw 4rem;
  color: var(--color-text-light);
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(160deg, var(--color-bg-dark) 0%, #0c2427 60%, #081113 100%);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: kenburns 20s ease-in-out infinite, slidefade 20s ease-in-out infinite;
}
@keyframes slidefade {
  0%, 100% { opacity: 0; }
  4%, 27% { opacity: 1; }
  33% { opacity: 0; }
}
@keyframes kenburns {
  0% { transform: scale(1.05) translate(0, 0); }
  50% { transform: scale(1.16) translate(-1%, -1%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 120% 80% at 20% -10%, rgba(225,67,96,.15), transparent 60%),
    linear-gradient(180deg, rgba(18,20,27,.55) 0%, rgba(12,14,19,.72) 55%, rgba(9,11,15,.9) 100%);
}
.hero-scrim::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 90px);
  animation: windshift 22s linear infinite;
}
@keyframes windshift {
  from { transform: translateX(0); }
  to { transform: translateX(-260px); }
}
.hero-content { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  font-size: .74rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: #ffe1cf;
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
  padding: .5rem 1.1rem;
  border: 1px solid rgba(238,244,244,.28);
  border-radius: 999px;
  background: rgba(9,11,15,.35);
  backdrop-filter: blur(6px);
  margin-bottom: 1.7rem;
  opacity: 0;
  transform: translateY(18px);
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
  margin-right: .6rem;
  vertical-align: middle;
  box-shadow: 0 0 8px 2px rgba(225,67,96,.7);
}
.hero-kicker.reveal-in, .hero-subtitle.reveal-in, .hero-actions.reveal-in {
  animation: rise .9s var(--ease) forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 4.9rem);
  line-height: 1.08;
  max-width: 19ch;
  letter-spacing: -.01em;
}
.hero-title .word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title .word { display: inline-block; transform: translateY(115%); }
.hero-subtitle {
  margin: 1.7rem auto 0;
  max-width: 46ch;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(238,244,244,.75);
  opacity: 0;
  transform: translateY(18px);
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  transform: translateY(18px);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 2.1rem;
  font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  border: 1px solid transparent;
}
.btn-primary {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: #fff;
  box-shadow: 0 8px 26px -8px rgba(225,67,96,.55);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 38px -8px rgba(225,67,96,.75); }
.btn-ghost {
  border-color: rgba(238,244,244,.35); color: var(--color-text-light);
}
.btn-ghost:hover { border-color: var(--color-text-light); transform: translateY(-3px); }
.btn-outline {
  border-color: var(--color-primary); color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-text-light); }
.btn-lg { padding: 1.15rem 2.8rem; font-size: .9rem; }

.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(238,244,244,.5);
  z-index: 1;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(rgba(238,244,244,.6), transparent);
  animation: scrolldown 1.8s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- stat strip ---------- */
.strip {
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding: 3.4rem 6vw;
  border-bottom: 1px solid rgba(13,60,66,.1);
}
.strip-item { text-align: center; }
.strip-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-secondary);
}
.strip-label {
  display: block; margin-top: .35rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(16,23,24,.55);
}
.strip-sep { width: 1px; height: 34px; background: rgba(13,60,66,.15); }
@media (max-width: 680px) { .strip-sep { display: none; } }

/* ---------- section titles ---------- */
.section-kicker {
  font-size: .76rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .9rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  max-width: 20ch;
  line-height: 1.14;
  letter-spacing: -.01em;
}
.section-title--light { color: var(--color-text-light); }

/* ---------- valores ---------- */
.valores { padding: 7rem 6vw 6rem; }
.valores-grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(13,60,66,.12);
  border: 1px solid rgba(13,60,66,.12);
  perspective: 1200px;
}
.valor-card {
  background: var(--color-bg);
  padding: 2.6rem 2rem;
  transition: background .4s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  transform: translateY(30px);
}
.valor-card:hover { background: #e3edec; box-shadow: 0 20px 40px -18px rgba(13,60,66,.35); z-index: 2; }
.valor-card .valor-num, .valor-card .valor-titulo, .valor-card .valor-texto { transform: translateZ(28px); }
.valor-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 1.6rem;
  display: block;
}
.valor-titulo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.28rem;
  margin-bottom: .8rem;
}
.valor-texto {
  font-size: .92rem; line-height: 1.6;
  color: rgba(16,23,24,.68);
}

/* ---------- historia / timeline ---------- */
.historia {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 7rem 6vw 8rem;
  position: relative;
  overflow: hidden;
}
.historia::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45,217,217,.1), transparent 60%);
  pointer-events: none;
}
.historia-header { max-width: 60ch; position: relative; z-index: 1; }
.historia-texto {
  margin-top: 1.4rem;
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(238,244,244,.68);
}
.timeline-v {
  margin-top: 5rem;
  position: relative;
  max-width: 780px;
  z-index: 1;
}
.timeline-v-line {
  position: absolute; top: 0; bottom: 0; left: 27px;
  width: 2px;
  background: rgba(238,244,244,.14);
}
@media (min-width: 720px) { .timeline-v-line { left: 50%; margin-left: -1px; } }
.timeline-v-line-fill {
  display: block; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
  transform-origin: top;
}
.timeline-v-item {
  position: relative;
  padding: 0 0 4.5rem 4.4rem;
  opacity: 0;
  transform: translateY(40px);
}
@media (min-width: 720px) {
  .timeline-v-item { width: 50%; padding: 0 0 4.5rem 0; }
  .timeline-v-item:nth-child(odd) { padding-right: 3.6rem; text-align: right; margin-left: 0; }
  .timeline-v-item:nth-child(even) { padding-left: 3.6rem; margin-left: 50%; }
}
.timeline-v-dot {
  position: absolute; top: 4px; left: 20px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--color-bg-dark);
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 5px rgba(225,67,96,.12);
  transform: scale(0);
  transition: transform .4s var(--ease);
}
@media (min-width: 720px) { .timeline-v-dot { left: -8px; } }
.timeline-v-item.in .timeline-v-dot { transform: scale(1); }
@media (min-width: 720px) {
  .timeline-v-item:nth-child(odd) .timeline-v-dot { left: auto; right: -9px; }
}
.timeline-v-frame {
  display: inline-block;
  border: 1px solid rgba(238,244,244,.18);
  padding: 1.5rem 1.5rem 1.2rem;
  background: rgba(238,244,244,.03);
  border-radius: 10px;
  transition: border-color .4s, transform .4s var(--ease);
  max-width: 260px;
}
.timeline-v-frame:hover { border-color: var(--color-accent); transform: translateY(-5px); }
.timeline-v-frame img {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: rgba(238,244,244,.05);
  border-radius: 6px;
}
.timeline-v-anio {
  margin-top: 1rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-accent);
}
.timeline-v-label {
  margin-top: .35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
}

/* ---------- galeria ---------- */
.galeria { padding: 7rem 6vw 6rem; }
.galeria-filters {
  margin-top: 2.2rem;
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.filter-btn {
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(13,60,66,.25);
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--color-text);
  transition: all .3s;
  font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-primary); color: var(--color-text-light); border-color: var(--color-primary);
}
.galeria-grid {
  margin-top: 2.6rem;
  columns: 4 220px;
  column-gap: .9rem;
  transition: opacity .28s var(--ease);
}
.galeria-grid.filtering { opacity: 0; }
@media (max-width: 900px) { .galeria-grid { columns: 2 180px; } }
.g-item {
  break-inside: avoid;
  margin-bottom: .9rem;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  background: #d6e2e1;
  opacity: 0;
  animation: rise .6s var(--ease) forwards;
}
.g-item img {
  width: 100%; height: auto; display: block;
  filter: blur(14px);
  opacity: 0;
  transform: scale(1.03);
  transition: transform .6s var(--ease), filter .6s var(--ease), opacity .6s var(--ease);
}
.g-item img.loaded {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}
.g-item:hover img.loaded { transform: scale(1.06); }
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,60,66,.75), transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.g-item:hover::after { opacity: 1; }
.g-item-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .9rem 1rem;
  color: #fff;
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s, transform .35s;
  z-index: 1;
}
.g-item:hover .g-item-caption { opacity: 1; transform: translateY(0); }
.galeria-more { margin-top: 3rem; text-align: center; }

/* ---------- contacto ---------- */
.contacto {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 8rem 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(225,67,96,.18), transparent 60%);
}
.contacto-inner { position: relative; z-index: 1; max-width: 56ch; margin: 0 auto; }
.contacto-texto { margin: 1.2rem 0 2.4rem; opacity: .78; font-size: 1.05rem; }
.contacto-social { display: flex; gap: .9rem; justify-content: center; margin-top: 2rem; }
.contacto-social a {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(238,244,244,.3);
  transition: all .3s;
}
.contacto-social a:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-3px); }
.contacto-social svg { width: 18px; height: 18px; fill: currentColor; }
.contacto-meta {
  margin-top: 1.6rem;
  font-size: .82rem; letter-spacing: .06em;
  opacity: .6;
}

/* ---------- footer ---------- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(238,244,244,.5);
  padding: 2rem 6vw;
  display: flex; gap: .6rem; flex-wrap: wrap;
  font-size: .78rem;
  border-top: 1px solid rgba(238,244,244,.08);
}
.footer span:first-child { color: var(--color-accent); font-family: var(--font-heading); font-weight: 700; }

/* ---------- whatsapp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(37,211,102,.6);
  animation: wapulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 10px 28px -6px rgba(37,211,102,.6); }
  50% { box-shadow: 0 10px 28px -6px rgba(37,211,102,.9), 0 0 0 10px rgba(37,211,102,.12); }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(9,11,15,.94);
  display: none; align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 86vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 2rem; right: 2.5rem;
  background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(238,244,244,.08); border: 1px solid rgba(238,244,244,.2); color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  transition: background .3s;
}
.lightbox-nav:hover { background: rgba(238,244,244,.2); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
@media (max-width: 640px) {
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-prev { left: .6rem; }
  .lightbox-next { right: .6rem; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
