/* =================================================================
   HIMÁ · VSL Landing — Design System
   Editorial / luxury real-estate. Warm Caribbean + earth.
   Mobile-first base (375px). min-width queries enhance to desktop.
   ================================================================= */

/* ---------- Fonts ---------- */
/* Body / UI: Epilogue (marca, variable). Display: Fraunces (editorial serif). */
@font-face {
  font-family: "Epilogue";
  src: url("fonts/Epilogue.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Epilogue";
  src: url("fonts/Epilogue-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --gold:       #ab7843;
  --gold-deep:  #936234;
  --ink:        #3f2612;
  --copper:     #6d3914;
  --tan:        #b8957f;
  --beige:      #c7af97;
  --olive:      #464123;

  /* Surfaces (warm cream → deep earth) */
  --cream:      #faf5ee;
  --cream-2:    #f3ebdf;
  --paper:      #ffffff;
  --night:      #241608;   /* deep brown-black for dark sections */
  --night-2:    #2f1d0d;

  /* Semantic text */
  --text:       #2c1c0e;
  --text-soft:  #6a5641;
  --text-onDark:#f4ead9;
  --text-onDark-soft: rgba(244,234,217,.72);

  /* Lines / borders */
  --line:       rgba(63,38,18,.14);
  --line-onDark:rgba(244,234,217,.18);

  /* Type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Epilogue", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale (4px base) */
  --s-1: .25rem; --s-2: .5rem;  --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;   --s-7: 3rem;   --s-8: 4rem;
  --s-9: 6rem;

  /* Radii */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;

  /* Shadows (subtle, warm) */
  --shadow-1: 0 1px 2px rgba(63,38,18,.06), 0 8px 24px rgba(63,38,18,.08);
  --shadow-2: 0 12px 40px rgba(36,22,8,.18);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);

  --easing: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Typography ---------- */
.display, h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 8.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 6vw, 3.1rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 4.5vw, 1.7rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead { font-size: clamp(1.05rem, 3.6vw, 1.3rem); color: var(--text-soft); line-height: 1.55; }
.serif-em { font-style: italic; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 11vw, 6.5rem); }
.section--tight { padding-block: clamp(2rem, 7vw, 3.5rem); }
.stack > * + * { margin-top: var(--s-5); }
.center { text-align: center; }
.muted { color: var(--text-soft); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .7rem; gap: 1rem;
}
.brand-logo { height: 30px; width: auto; }
@media (min-width: 768px) { .brand-logo { height: 38px; } }
.header-tag {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 600;
}

/* ============ HERO ============ */
.hero { position: relative; padding-top: clamp(2rem, 7vw, 3.5rem); }
.hero__inner { display: grid; gap: clamp(1.5rem, 5vw, 2.5rem); }
.hero__eyebrow { margin-bottom: var(--s-4); display: inline-flex; align-items: center; gap: .6rem; }
.hero__eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero__sub { max-width: 56ch; }
.hero__support {
  margin-top: var(--s-5);
  font-size: .95rem; color: var(--text-soft);
  display: flex; align-items: center; gap: .6rem;
}
.hero__support svg { flex: none; color: var(--gold); }

/* Video player */
.vsl {
  position: relative;
  margin-top: clamp(1.5rem, 5vw, 2rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--night);
  box-shadow: var(--shadow-2);
  aspect-ratio: 16 / 9;
}
.vsl__frame, .vsl video, .vsl iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  object-fit: cover;
}
.vsl__hint {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  margin-top: var(--s-4);
  font-size: .82rem; letter-spacing: .04em; color: var(--text-soft);
  text-align: center;
}
.vsl__hint .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s var(--easing) infinite;
}
.vsl__hint--unlocked { color: var(--gold-deep); font-weight: 600; }
.vsl__hint--unlocked .dot { background: #3f8f5e; animation: none; }
@keyframes pulse { 0%,100%{opacity:.4;transform:scale(.8)} 50%{opacity:1;transform:scale(1.15)} }

/* Right column of hero: aerial photo + subtitle */
.hero__aside { display: flex; flex-direction: column; gap: clamp(1.25rem, 3vw, 2rem); }
/* La aérea NO se muestra en móvil — solo en desktop */
.hero__aerial { display: none; }

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__lead-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: stretch; }
  /* La aérea crece para llenar el alto del titular; el subtítulo queda abajo.
     Bordes desvanecidos hacia el fondo (sin recuadro): parece "salir" del papel. */
  .hero__aerial {
    display: block;
    width: 100%;
    flex: 1 1 auto; min-height: 0;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    /* Feather en los 4 lados con ENTRADA EN CURVA (stops intermedios): el
       desvanecido "aterriza" en la foto sin codo visible. Banda delgada. */
    -webkit-mask-image:
      linear-gradient(to right,  transparent 0, rgba(0,0,0,.25) 4%, rgba(0,0,0,.75) 8%, #000 13%, #000 87%, rgba(0,0,0,.75) 92%, rgba(0,0,0,.25) 96%, transparent 100%),
      linear-gradient(to bottom, transparent 0, rgba(0,0,0,.25) 4%, rgba(0,0,0,.75) 8%, #000 13%, #000 87%, rgba(0,0,0,.75) 92%, rgba(0,0,0,.25) 96%, transparent 100%);
    -webkit-mask-composite: source-in;
    -webkit-mask-repeat: no-repeat;
    mask-image:
      linear-gradient(to right,  transparent 0, rgba(0,0,0,.25) 4%, rgba(0,0,0,.75) 8%, #000 13%, #000 87%, rgba(0,0,0,.75) 92%, rgba(0,0,0,.25) 96%, transparent 100%),
      linear-gradient(to bottom, transparent 0, rgba(0,0,0,.25) 4%, rgba(0,0,0,.75) 8%, #000 13%, #000 87%, rgba(0,0,0,.75) 92%, rgba(0,0,0,.25) 96%, transparent 100%);
    mask-composite: intersect;
    mask-repeat: no-repeat;
  }
}

/* ============ LOCKED CONTENT ============ */
#unlockable {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: opacity .7s var(--easing), transform .7s var(--easing);
  pointer-events: none;
}
#unlockable.is-unlocked {
  opacity: 1;
  max-height: none;
  transform: none;
  pointer-events: auto;
}
.locked-curtain {
  text-align: center;
  padding: clamp(2.5rem,9vw,4rem) var(--gutter);
  color: var(--text-soft);
}
.locked-curtain svg { color: var(--gold); margin-bottom: var(--s-3); }
.locked-curtain p { max-width: 34ch; margin-inline: auto; font-size: .95rem; }
#unlockable.is-unlocked ~ .locked-curtain,
.is-unlocked .locked-curtain { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px;
  padding: 1rem 2rem;
  border: 1px solid transparent; border-radius: 2px;   /* crisp, arquitectónico — no pill */
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .14em;     /* tratamiento display de la marca */
  text-decoration: none;
  transition: transform .2s var(--easing), background-color .2s var(--easing),
              color .2s var(--easing), border-color .2s var(--easing);
  width: 100%;
}
@media (min-width: 640px) { .btn { width: auto; } }
/* Sólido dorado + texto marrón (combo firma). Sin gradiente ni glow. */
.btn--primary {
  background: var(--gold);
  color: #2a1809;
  box-shadow: none;
}
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
/* Variante outline para fondos oscuros si se necesita */
.btn--ghost {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #2a1809; }
.btn--lg { min-height: 60px; font-size: .95rem; padding: 1.15rem 2.4rem; }
.btn svg { flex: none; }

/* ============ CTA BLOCK ============ */
.cta-block { text-align: center; }
.cta-block .btn { margin-inline: auto; }
.urgency {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: var(--s-4);
  padding: .55rem 1.1rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .88rem; color: var(--copper); font-weight: 600;
  max-width: 100%;
}
.urgency svg { flex: none; color: var(--gold-deep); }

/* ============ SECTION: section header ============ */
.sec-head { max-width: 60ch; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { display: block; margin-bottom: var(--s-3); }
.sec-head h2 + p { margin-top: var(--s-4); }

/* ============ SECTION: respaldo (dark) ============ */
.proof {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--text-onDark);
}
.proof h2, .proof h3 { color: var(--text-onDark); }
.proof .eyebrow { color: var(--beige); }
.proof p { color: var(--text-onDark-soft); }
.proof__grid { display: grid; gap: 1rem; margin-top: clamp(2rem,7vw,3rem); }
.hotel-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-onDark);
}
.hotel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--easing); }
.hotel-card:hover img { transform: scale(1.05); }
.hotel-card figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 1.4rem 1rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(20,12,4,.85));
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text-onDark);
}
.proof__lead { max-width: 52ch; margin-top: var(--s-4); }
@media (min-width: 640px) { .proof__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .proof__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
}

/* ============ SECTION: ventaja (comparison) ============ */
.advantage__grid { display: grid; gap: clamp(2rem,6vw,3.5rem); align-items: center; margin-top: clamp(2rem,7vw,3rem); }
.advantage__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.advantage__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.compare {
  display: grid; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  background: var(--paper);
}
.compare__row { display: grid; grid-template-columns: 1fr 1fr; }
.compare__row + .compare__row { border-top: 1px solid var(--line); }
.compare__cell { padding: 1.1rem 1.2rem; }
.compare__cell--label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-soft); grid-column: 1 / -1; padding-bottom: .3rem; border-bottom: 1px solid var(--line); background: var(--cream-2); }
.compare__cell--them { color: var(--text-soft); border-right: 1px solid var(--line); }
.compare__cell--us { background: color-mix(in srgb, var(--gold) 9%, var(--paper)); font-weight: 600; color: var(--ink); }
.compare__tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: .25rem; font-weight: 700; }
.compare__cell--them .compare__tag { color: var(--tan); }
.compare__cell--us .compare__tag { color: var(--gold-deep); }
.stat-row { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: var(--s-6); }
.stat { }
.stat__num { font-family: var(--serif); font-size: clamp(1.9rem,7vw,2.6rem); color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--text-soft); margin-top: .3rem; }
@media (min-width: 900px) {
  .advantage__grid { grid-template-columns: .9fr 1.1fr; }
}

/* ============ SECTION: tipologías ============ */
.tipos { background: var(--cream); }
.tipos__grid { display: grid; gap: clamp(1.25rem, 3.5vw, 2rem); margin-top: clamp(2rem, 6vw, 3rem); }
@media (min-width: 760px) { .tipos__grid { grid-template-columns: repeat(3, 1fr); } }
/* Cada tipología es una TARJETA blanca sobre el fondo crema */
.tipo {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.tipo__plan {
  height: clamp(160px, 20vw, 210px);   /* altura FIJA e igual en las 3 tarjetas */
  padding: clamp(.9rem, 2.5vw, 1.3rem);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.tipo__plan img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.tipo__body { padding: clamp(1.2rem, 3.5vw, 1.6rem); }
.tipo__head { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.tipo__head h3 { margin: 0; }
.tipo__level { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: var(--text-soft); white-space: nowrap; }
.tipo__body p { color: var(--text-soft); margin-top: var(--s-3); }
.tipo__price { margin-top: var(--s-3); font-size: .95rem; color: var(--ink); }
.tipo__price strong { color: var(--gold-deep); font-weight: 600; }
.tipo__specs { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.tipo__specs li {
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  color: var(--gold-deep); background: var(--cream-2);
  border: 1px solid var(--line); border-radius: 2px; padding: .42rem .72rem;
}
.tipos__strip { display: flex; justify-content: center; margin-top: clamp(2rem, 6vw, 3rem); }
.tipos__strip > div {
  display: inline-flex; align-items: baseline; gap: .55rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .6rem 1.3rem;
}
.tipos__lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-soft); }
.tipos__num { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-deep); line-height: 1; }

/* ============ SECTION: cero riesgo ============ */
.norisk {
  background: var(--cream-2);
  position: relative;
}
.norisk__inner { display: grid; gap: clamp(1.5rem,5vw,2.5rem); }
.norisk blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 5.5vw, 2.4rem); line-height: 1.25; color: var(--ink);
  max-width: 22ch;
}
.norisk blockquote .accent { color: var(--gold-deep); font-style: normal; }
.norisk__points { display: grid; gap: 1rem; }
.norisk__point { display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; }
.norisk__point svg { flex: none; color: var(--gold-deep); margin-top: 3px; }
.norisk__media { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: var(--s-5); }
.norisk__media img { width: 100%; border-radius: var(--r-md); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-1); }
@media (min-width: 900px) {
  .norisk__inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .norisk__media { margin-top: 0; }
}

/* Avance de obra — video debajo de las 2 columnas */
.obra { margin-top: clamp(2.5rem, 8vw, 4.5rem); }
.obra__head { max-width: 50ch; margin-bottom: var(--s-5); }
.obra__head .eyebrow { display: block; margin-bottom: var(--s-3); }
.obra__head h3 { color: var(--ink); }
.obra__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--night);
  box-shadow: var(--shadow-1);
}
.obra__video .vsl__frame,
.obra__video video,
.obra__video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  object-fit: cover;
}

/* ============ FINAL CTA (dark) ============ */
.final-cta {
  background:
    linear-gradient(180deg, rgba(36,22,8,.78), rgba(36,22,8,.9)),
    url("img/roof.jpg") center/cover no-repeat;
  color: var(--text-onDark);
  text-align: center;
}
.final-cta h2 { color: var(--text-onDark); max-width: 18ch; margin-inline: auto; }
.final-cta p { color: var(--text-onDark-soft); max-width: 46ch; margin-inline: auto; }
.final-cta .urgency { background: rgba(244,234,217,.1); border-color: var(--line-onDark); color: var(--beige); }

/* ============ FOOTER ============ */
.site-footer {
  background: #1c1107;                 /* tono más profundo que la sección CTA de arriba */
  border-top: 1px solid rgba(171,120,67,.32);  /* hairline dorado: separa del CTA final */
  color: var(--text-onDark-soft);
  padding-block: var(--s-8); text-align: center; font-size: .82rem;
}
.site-footer img { height: 38px; margin-inline: auto; margin-bottom: var(--s-5); opacity: 1; }
.site-footer a { color: var(--beige); text-decoration: underline; text-underline-offset: 2px; }

/* ============ MODAL (opt-in) ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(24,14,5,.55);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--easing), visibility .3s var(--easing);
  padding: 0;
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--cream);
  width: 100%; max-width: 480px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: clamp(1.5rem, 6vw, 2.4rem);
  max-height: 92vh; overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s var(--easing);
  box-shadow: var(--shadow-2);
}
.modal-backdrop.is-open .modal { transform: translateY(0); }
@media (min-width: 640px) {
  .modal-backdrop { align-items: center; padding: var(--gutter); }
  .modal { border-radius: var(--r-lg); }
}
.modal__close {
  position: absolute; top: .8rem; right: .8rem;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: transparent; border: 0; color: var(--text-soft); border-radius: 50%;
}
.modal__close:hover { background: var(--cream-2); color: var(--ink); }
.modal__head { margin-bottom: var(--s-5); }
.modal__head h3 { margin-bottom: var(--s-2); }
.modal__head p { font-size: .92rem; color: var(--text-soft); }

/* Form */
.field { margin-bottom: var(--s-4); }
.field > label {
  display: block; font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--ink); margin-bottom: .4rem;
}
.field input, .field select {
  width: 100%; min-height: 52px;
  padding: .8rem 1rem;
  font: inherit; font-size: 1rem;
  color: var(--text); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  transition: border-color .15s var(--easing), box-shadow .15s var(--easing);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent);
}
.field input[aria-invalid="true"] { border-color: #c0392b; }
.field__error { display: none; color: #c0392b; font-size: .8rem; margin-top: .35rem; }
.field input[aria-invalid="true"] ~ .field__error { display: block; }
.phone-row { display: grid; grid-template-columns: 116px 1fr; gap: .6rem; }
.phone-row select { padding-inline: .6rem; }
.modal .btn { margin-top: var(--s-3); }
.modal__legal { font-size: .74rem; color: var(--text-soft); text-align: center; margin-top: var(--s-4); line-height: 1.5; }

/* Body scroll lock when modal open */
body.modal-open { overflow: hidden; }

/* Utility: visually hidden but accessible */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--easing), transform .7s var(--easing); }
.reveal.in { opacity: 1; transform: none; }
