/* ============================================================
   Ana María & Diego — Boda civil
   Paleta y tipografía tomadas de la tarjeta de agradecimiento.
   ============================================================ */

:root{
  --paper:      #F6F1E7;
  --paper-2:    #F1EADC;
  --paper-3:    #EBE3D3;
  --sand:       #DCD3C1;
  --sand-2:     #CFC4AE;
  --ink:        #232B24;
  --ink-soft:   #5A6357;
  --olive:      #46523E;
  --olive-2:    #6E7B62;
  --gold:       #B08D42;
  --gold-soft:  #CDB07A;
  --line:       #DDD4C2;

  --f-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --f-body:    "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
  --f-script:  "Parisienne", "Snell Roundhand", cursive;

  --track:  .34em;   /* versalitas anchas de la tarjeta */
  --gutter: clamp(1.35rem, 5vw, 3rem);
  --ease:   cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--f-body);
  font-weight:300;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img,svg{ max-width:100%; }
::selection{ background:var(--gold-soft); color:#fff; }

:focus-visible{
  outline:2px solid var(--olive);
  outline-offset:3px;
  border-radius:2px;
}

/* ---------- Grano de papel ---------- */
.paper-grain{
  position:fixed; inset:0; z-index:60; pointer-events:none;
  opacity:.05; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Tipografía compartida
   ============================================================ */

.eyebrow{
  margin:0;
  font-family:var(--f-body);
  font-size:clamp(.63rem,1.55vw,.76rem);
  font-weight:400;
  letter-spacing:var(--track);
  text-transform:uppercase;
  line-height:2;
  color:var(--ink);
}
.eyebrow--lg{ font-size:clamp(.78rem,2vw,.95rem); letter-spacing:.4em; }

.script{
  margin:0;
  font-family:var(--f-script);
  font-weight:400;
  color:var(--olive);
  line-height:1.25;
}

.h2{
  margin:.5rem 0 0;
  font-family:var(--f-display);
  font-weight:400;
  font-size:clamp(2.5rem,8vw,4.1rem);
  letter-spacing:.02em;
  line-height:1.05;
  color:var(--olive);
}

.lede{
  max-width:34ch;
  margin:1.35rem auto 0;
  font-size:clamp(.92rem,2.3vw,1.02rem);
  color:var(--ink-soft);
  line-height:1.8;
}

.micro{
  margin:0;
  font-size:.63rem;
  letter-spacing:var(--track);
  text-transform:uppercase;
  color:var(--olive-2);
}

/* ============================================================
   Riel de vuelo — indicador de scroll
   ============================================================ */

.rail{
  position:fixed; left:clamp(18px,2.6vw,40px); top:50%;
  transform:translateY(-50%);
  height:min(52vh,420px);
  width:26px; z-index:40;
  display:none;
  opacity:0; transition:opacity .8s var(--ease) 1s;
}
.rail.is-ready{ opacity:1; }
@media (min-width:1080px){ .rail{ display:block; } }

.rail__line{
  position:absolute; left:12px; top:0; bottom:0; width:2px;
  background-image:radial-gradient(circle, var(--sand-2) 1px, transparent 1.2px);
  background-size:2px 9px;
}

.rail__plane{
  position:absolute; left:1px; top:0; width:24px; height:24px;
  fill:var(--olive);
  transform:translateY(-50%) rotate(90deg);
  transition:top .12s linear;
}

.rail__stop{
  position:absolute; left:0; width:26px; height:26px;
  display:grid; place-items:center;
  text-decoration:none;
}
.rail__stop:nth-of-type(1){ top:calc(25% - 13px); }
.rail__stop:nth-of-type(2){ top:calc(50% - 13px); }
.rail__stop:nth-of-type(3){ top:calc(75% - 13px); }
.rail__stop:nth-of-type(4){ top:calc(100% - 13px); }

.rail__stop span{
  width:7px; height:7px; border-radius:50%;
  background:var(--paper); border:1px solid var(--sand-2);
  transition:background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.rail__stop.is-active span,
.rail__stop:hover span{
  background:var(--gold); border-color:var(--gold); transform:scale(1.28);
}

.rail__stop em{
  position:absolute; left:26px; white-space:nowrap;
  font-style:normal; font-size:.6rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--olive-2);
  opacity:0; transform:translateX(-4px);
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.rail__stop:hover em,
.rail__stop:focus-visible em{ opacity:1; transform:translateX(0); }

/* ============================================================
   HERO
   ============================================================ */

.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center; justify-content:center;
  padding:clamp(1.5rem,4svh,3rem) var(--gutter) clamp(4.75rem,11svh,6.5rem);
  background:
    radial-gradient(120% 85% at 50% 12%, #FBF7EF 0%, var(--paper) 46%, var(--paper-3) 100%);
}

.hero__inner{
  width:100%; max-width:640px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
}

/* --- Mapa y vuelo ---
   El ancho se ata al alto de la ventana (el SVG tiene una
   proporción de 2.144:1) para que el hero entre completo. */
.flight{
  width:min(100%, calc(31svh * 2.144));
  margin:0 auto clamp(1.1rem,3svh,2.25rem);
}
.flight__svg{ display:block; width:100%; height:auto; }

/* Ojo: el posicionamiento de los mapas vive en el atributo
   transform del SVG, así que aquí sólo animamos la opacidad. */
.map{
  fill:var(--sand);
  opacity:0;
  animation:mapIn 1.6s var(--ease) .15s forwards;
}
.flight__maps .map:nth-child(2){ animation-delay:.5s; }

@keyframes mapIn{ to{ opacity:1; } }

.flight__dots{
  stroke:var(--ink);
  stroke-width:2.4;
  stroke-dasharray:0 9.5;
}

.flight__plane{ fill:var(--olive); opacity:0; }
.flight__plane.is-flying{ opacity:1; }

.pin{
  fill:var(--gold);
  opacity:0;
  transform-box:fill-box; transform-origin:center;
  animation:pinIn .75s var(--ease) forwards;
}
.pin:nth-of-type(1){ animation-delay:1.05s; }
.pin:nth-of-type(2){ animation-delay:3.55s; }

@keyframes pinIn{
  0%  { opacity:0; transform:scale(0); }
  60% { opacity:1; transform:scale(1.45); }
  100%{ opacity:1; transform:scale(1); }
}

.place{
  font-family:var(--f-body);
  font-size:19px; font-weight:400;
  letter-spacing:5px;
  fill:var(--ink);
  opacity:0;
  animation:fadeIn .9s var(--ease) forwards;
}
.place:nth-of-type(1){ animation-delay:3.7s; }
.place:nth-of-type(2){ animation-delay:1.2s; }

@keyframes fadeIn{ to{ opacity:1; } }

/* --- Bloque de texto --- */
.hero__text > *{ opacity:0; transform:translateY(12px); }
.hero__text > .hero__a{ animation:riseIn .95s var(--ease) 4.05s forwards; }
.hero__text > .hero__b{ animation:riseIn .95s var(--ease) 4.25s forwards; }
.hero__text > .hero__c{ animation:riseIn .95s var(--ease) 4.45s forwards; }
.hero__text > .hero__d{ animation:riseIn .95s var(--ease) 4.60s forwards; }
.hero__text > .hero__e{ animation:riseIn .95s var(--ease) 4.80s forwards; }
.hero__text > .hero__f{ animation:riseIn .95s var(--ease) 4.95s forwards; }
.hero__text > .hero__g{ animation:riseIn .95s var(--ease) 5.05s forwards; }
.hero__text > .hero__h{ animation:riseIn .95s var(--ease) 5.15s forwards; }

.hero .scroll-cue{ opacity:0; animation:riseIn 1s var(--ease) 5.6s forwards; }

@keyframes riseIn{ to{ opacity:1; transform:translateY(0); } }

/* La frase es más larga que la del borrador, así que el tamaño se
   ata al ancho para que siempre quepa en un solo renglón. */
.hero .script{
  font-size:clamp(1.35rem,7vw,3.2rem);
  margin:.35rem 0 0;
  color:var(--ink);
  text-wrap:balance;
}

.hero .heart{
  margin:.6rem 0 .35rem;
  font-size:.95rem;
  color:var(--gold);
  line-height:1;
}

.names{
  margin:0;
  font-family:var(--f-display);
  font-weight:500;
  font-size:clamp(1.9rem,7.4vw,3.05rem);
  letter-spacing:.045em;
  line-height:1.15;
  color:var(--olive);
  text-transform:uppercase;
}
.names span{ color:var(--gold); font-weight:400; font-style:italic; text-transform:none; }

.hero__e{ width:min(100%,325px); margin:1rem auto 1.05rem; }

.botanical{ display:block; width:100%; height:auto; }
.bot-rule{ stroke:var(--gold); stroke-width:1; }
.bot-stem{ fill:none; stroke:var(--olive-2); stroke-width:1.1; }
.bot-leaf path{ fill:var(--olive-2); }
.bot-sprig path{ fill:none; stroke:var(--gold); stroke-width:1.1; }
.bot-sprig circle{ fill:var(--gold); }

.hero .dot{
  display:block; width:5px; height:5px; border-radius:50%;
  background:var(--gold); margin:.7rem auto .6rem;
}

.date{
  margin:0;
  font-family:var(--f-body);
  font-weight:400;
  font-size:clamp(1.05rem,3.6vw,1.45rem);
  letter-spacing:.28em;
  color:var(--ink);
}

/* Se centra con left/right + margin auto, no con translateX(-50%):
   así ninguna animación ni el reset de movimiento reducido pueden
   descentrarlo al pisar la propiedad transform. */
.scroll-cue{
  position:absolute; bottom:clamp(1.5rem,4svh,2.4rem);
  left:0; right:0; margin-inline:auto; width:max-content;
  display:grid; justify-items:center; gap:.55rem;
  text-decoration:none; color:var(--olive-2);
}
.scroll-cue span{
  font-size:.58rem; letter-spacing:var(--track); text-transform:uppercase;
  /* letter-spacing deja un hueco tras la última letra; ese hueco corre
     el texto media pulsación a la izquierda dentro de su caja centrada.
     El padding-left equivale a ese hueco y devuelve el texto al centro. */
  padding-left:var(--track);
}
.scroll-cue svg{
  width:11px; fill:none; stroke:var(--olive-2); stroke-width:1.2;
  stroke-linecap:round; stroke-linejoin:round;
  animation:bob 2.4s var(--ease) infinite;
}
@keyframes bob{ 0%,100%{ transform:translateY(0); opacity:.55; } 50%{ transform:translateY(5px); opacity:1; } }

/* ============================================================
   Secciones
   ============================================================ */

.section{
  padding:clamp(4.5rem,13vh,8rem) var(--gutter);
  text-align:center;
}
.section--dress{ background:var(--paper-2); }
.section--place{ background:var(--paper); }
.section--gift { background:var(--paper-2); }
.section--rsvp { background:var(--paper-3); }

.wrap{ max-width:860px; margin:0 auto; }
.wrap--narrow{ max-width:520px; }

[data-reveal]{
  opacity:0; transform:translateY(16px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in{ opacity:1; transform:none; }

/* ---------- Dress code ---------- */

.figures{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(1rem,5vw,3.5rem);
  max-width:600px;
  margin:clamp(2.4rem,7vw,3.6rem) auto 0;
}

.figure{ margin:0; }

.fig{
  display:block; width:100%; height:auto;
  max-height:min(42vh,330px);
}
.fig-line{
  fill:none; stroke:var(--olive); stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.fig-gold{ fill:var(--gold); }
.fig-olive{ fill:var(--olive-2); }

.figure.is-in .fig-line path,
.figure.is-in .fig-line circle{
  animation:trace 1.9s var(--ease) forwards;
}
.figure .fig-line path,
.figure .fig-line circle{
  stroke-dasharray:420; stroke-dashoffset:420;
}
.figure:nth-child(2) .fig-line path,
.figure:nth-child(2) .fig-line circle{ animation-delay:.18s; }

@keyframes trace{ to{ stroke-dashoffset:0; } }

.figure .fig-gold,
.figure .fig-olive{ opacity:0; transition:opacity .8s var(--ease) 1.5s; }
.figure.is-in .fig-gold,
.figure.is-in .fig-olive{ opacity:1; }

.figure figcaption{
  margin-top:1.35rem;
  display:grid; gap:.45rem;
}
.figure strong{
  font-family:var(--f-body); font-weight:400;
  font-size:.66rem; letter-spacing:var(--track); text-transform:uppercase;
  color:var(--olive);
}
.figure span{
  font-size:.85rem; line-height:1.65; color:var(--ink-soft);
  max-width:22ch; margin:0 auto;
}

/* ---------- Paleta ---------- */

.palette{ margin-top:clamp(3rem,8vw,4.5rem); }

.swatches{
  list-style:none; margin:1.25rem 0 0; padding:0;
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:clamp(1.1rem,4vw,2.1rem);
}
.swatches li{
  display:grid; justify-items:center; gap:.6rem;
  font-size:.6rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-soft);
}
.swatches span{
  width:clamp(30px,8vw,38px); height:clamp(30px,8vw,38px);
  border-radius:50%; background:var(--s);
  box-shadow:0 0 0 1px rgba(35,43,36,.07) inset;
}

.note{
  margin:2.1rem auto 0; max-width:34ch;
  font-family:var(--f-display); font-style:italic;
  font-size:1.05rem; color:var(--olive-2);
  text-wrap:balance;   /* evita dejar una palabra sola al final */
}

/* ---------- Regalos ---------- */

/* El titular es largo y va a partirse en dos: balance reparte las
   dos líneas en vez de dejar una palabra suelta abajo. */
.h2--balance{ text-wrap:balance; }

.sobre{
  display:block; width:min(100%,208px); height:auto;
  margin:clamp(2rem,5vw,2.6rem) auto clamp(1.6rem,4vw,2.1rem);
}
.sobre-linea{
  fill:none; stroke:var(--olive-2); stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.sobre-sello{ fill:var(--gold); }

.lede b{ font-weight:400; color:var(--olive); }

.cuenta{
  display:grid; gap:.35rem;
  margin:2.4rem auto 0; max-width:34ch;
  padding-top:1.6rem;
  border-top:1px solid var(--line);
  color:var(--ink-soft);
}
.cuenta span{
  font-size:.6rem; letter-spacing:var(--track); text-transform:uppercase;
  color:var(--olive-2);
}
.cuenta b{
  font-family:var(--f-display); font-weight:400;
  font-size:1.02rem; color:var(--ink);
}

/* ---------- Cuándo y dónde ---------- */

.when{
  margin:1.6rem 0 0;
  display:flex; align-items:center; justify-content:center;
  gap:clamp(.7rem,3vw,1.5rem);
  font-family:var(--f-display);
  color:var(--olive);
}
.when__side{
  font-size:clamp(.95rem,3.4vw,1.35rem);
  font-style:italic; font-weight:300;
  letter-spacing:.04em;
  color:var(--olive-2);
}
.when__num{
  font-size:clamp(4.5rem,19vw,8rem);
  font-weight:300; line-height:.85;
  letter-spacing:-.02em;
}

.when__year{
  margin:.9rem 0 0;
  font-size:clamp(.72rem,2.2vw,.85rem);
  letter-spacing:var(--track); text-transform:uppercase;
  color:var(--ink);
}
.when__year span{ color:var(--gold); }

/* La vista desde la terraza; hace también de separador. */
.skyline{
  display:block; width:min(100%,560px); height:auto;
  margin:clamp(2.4rem,6vw,3.4rem) auto clamp(2rem,5vw,2.8rem);
}
.sky-line path{
  fill:none; stroke:var(--olive-2); stroke-width:1.5;
  stroke-linecap:round; stroke-linejoin:round;
}
.sky-horizonte{
  fill:none; stroke:var(--sand-2); stroke-width:1;
}

.venue{
  font-style:normal;
  font-size:clamp(.9rem,2.4vw,1rem);
  line-height:1.9; color:var(--ink-soft);
}
.venue strong{
  display:block; margin-bottom:.5rem;
  font-family:var(--f-body); font-weight:400;
  font-size:clamp(.78rem,2.2vw,.9rem);
  letter-spacing:var(--track); text-transform:uppercase;
  color:var(--ink);
}

/* ---------- Botones ---------- */

.btn{
  display:inline-block;
  margin-top:2.1rem;
  padding:.95rem 2.1rem;
  border:1px solid var(--olive);
  border-radius:2px;
  background:transparent;
  font-family:var(--f-body); font-weight:400;
  font-size:.66rem; letter-spacing:var(--track); text-transform:uppercase;
  color:var(--olive);
  text-decoration:none; cursor:pointer;
  transition:background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover{ background:var(--olive); color:var(--paper); }

.btn--solid{
  width:100%; margin-top:.6rem;
  background:var(--olive); color:var(--paper);
}
.btn--solid:hover{ background:var(--ink); border-color:var(--ink); }
.btn--solid[disabled]{ opacity:.5; cursor:progress; }

.linkish{
  margin-top:1.5rem; padding:0;
  background:none; border:0; cursor:pointer;
  font-family:var(--f-body); font-size:.62rem;
  letter-spacing:var(--track); text-transform:uppercase;
  color:var(--olive-2);
  border-bottom:1px solid var(--sand-2); padding-bottom:3px;
}
.linkish:hover{ color:var(--olive); border-color:var(--olive); }

/* ---------- Cuenta regresiva ---------- */

.countdown{ margin-top:clamp(3rem,8vw,4.5rem); }

.count{
  list-style:none; margin:1.1rem 0 0; padding:0;
  display:flex; justify-content:center;
  gap:clamp(1.1rem,5vw,2.6rem);
}
.count li{
  display:grid; justify-items:center; gap:.2rem;
  min-width:3.4rem;
  position:relative;
}
.count li + li::before{
  content:""; position:absolute;
  left:calc(-1 * clamp(.55rem,2.5vw,1.3rem));
  top:22%; height:34%; width:1px; background:var(--line);
}
.count b{
  font-family:var(--f-display); font-weight:300;
  font-size:clamp(1.9rem,7vw,2.6rem); line-height:1;
  color:var(--olive);
  font-variant-numeric:tabular-nums;
}
.count span{
  font-size:.56rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--olive-2);
}

/* ============================================================
   Formulario RSVP
   ============================================================ */

.form{
  margin-top:clamp(2.4rem,6vw,3.2rem);
  display:grid; gap:1.5rem;
  text-align:left;
}

.field{ display:grid; gap:.55rem; }
.field[hidden], .form[hidden]{ display:none; }

.field__label{
  font-size:.6rem; letter-spacing:var(--track); text-transform:uppercase;
  color:var(--olive-2);
}
.field__label i{
  font-style:normal; letter-spacing:.1em;
  color:var(--sand-2); text-transform:none;
}
.field__label i b{ font-weight:400; color:var(--olive-2); }

.form input[type="text"],
.form textarea{
  width:100%;
  padding:.85rem .2rem;
  border:0; border-bottom:1px solid var(--sand-2);
  border-radius:0;
  background:transparent;
  font-family:var(--f-display);
  font-size:1.12rem; font-weight:400;
  color:var(--ink);
  transition:border-color .35s var(--ease);
}
.form textarea{ resize:vertical; line-height:1.6; }
.form input::placeholder,
.form textarea::placeholder{ color:var(--sand-2); font-style:italic; }

.form input:focus,
.form textarea:focus{ outline:none; border-bottom-color:var(--olive); }
.form input:focus-visible,
.form textarea:focus-visible{ outline:none; }

/* ---------- Lista de invitados del enlace ---------- */

.guests{ border:0; margin:0; padding:0; display:grid; gap:.8rem; }
.guests legend{ padding:0; }

.guest-list{ list-style:none; margin:0; padding:0; display:grid; gap:.6rem; }

.guest{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem;
  padding:.85rem 1rem;
  border:1px solid var(--sand-2);
  border-radius:2px;
  background:rgba(255,255,255,.38);
}
.guest__name{
  font-family:var(--f-display);
  font-size:1.1rem; line-height:1.3;
  color:var(--olive);
}
.guest__answer{ display:flex; gap:.4rem; flex-shrink:0; }

.pick{ cursor:pointer; }
.pick input{ position:absolute; opacity:0; width:0; height:0; }
.pick span{
  display:block; min-width:3.1rem;
  padding:.45rem .5rem;
  text-align:center;
  border:1px solid var(--sand-2); border-radius:2px;
  font-size:.62rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-soft);
  transition:background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.pick:hover span{ border-color:var(--olive-2); color:var(--olive); }
.pick input:checked + span{
  background:var(--olive); border-color:var(--olive); color:var(--paper);
}
.pick input:focus-visible + span{ outline:2px solid var(--olive); outline-offset:3px; }

@media (max-width:430px){
  .guest{ flex-direction:column; align-items:stretch; gap:.75rem; }
  .guest__answer{ gap:.5rem; }
  .pick{ flex:1; }
}

.form__error{
  margin:0; font-size:.78rem; color:#A4553C; letter-spacing:.02em;
}

/* ---------- Agradecimiento ---------- */

.thanks{
  margin-top:clamp(2.4rem,6vw,3.2rem);
  display:grid; justify-items:center;
  opacity:0; transform:translateY(14px);
  animation:riseIn .8s var(--ease) forwards;
}
.thanks[hidden]{ display:none; }
.thanks__script{ font-size:clamp(2.6rem,10vw,3.6rem); }
.thanks__body{
  margin:1rem 0 0; max-width:30ch;
  color:var(--ink-soft); line-height:1.8;
}

/* ============================================================
   Pie
   ============================================================ */

.footer{
  padding:clamp(3.5rem,9vh,5.5rem) var(--gutter) clamp(2.5rem,7vh,4rem);
  background:var(--olive);
  color:var(--paper);
  text-align:center;
  display:grid; justify-items:center; gap:.9rem;
}
.footer__plane{ width:26px; fill:var(--gold-soft); transform:rotate(-8deg); }
.footer__script{ color:var(--paper); font-size:clamp(2.1rem,8vw,2.9rem); }
.footer .eyebrow{ color:rgba(246,241,231,.62); font-size:.6rem; }

/* ============================================================
   Ajustes de pantalla pequeña
   ============================================================ */

@media (max-width:560px){
  .hero{ padding-top:clamp(1.5rem,5vh,3rem); }
  .flight{ margin-bottom:1rem; }
  .place{ font-size:24px; letter-spacing:3.5px; }
  .fig{ max-height:270px; }
  .figures{ gap:1rem; }
  .figure span{ font-size:.78rem; }
  .count li{ min-width:2.9rem; }
}

/* ============================================================
   Movimiento reducido
   ============================================================ */

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-delay:0ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  /* Ojo con transform:none. Sólo puede tocar elementos que usan
     transform para ANIMARSE. En los mapas el transform es lo que
     los coloca sobre el lienzo (vive en el atributo del SVG), y
     borrarlo mandaba a México y Colombia encimados al origen. */
  .hero__text > *,
  [data-reveal]{ opacity:1 !important; transform:none !important; }

  .map,.pin,.place,
  .figure .fig-gold,.figure .fig-olive,
  .hero .scroll-cue{ opacity:1 !important; }
  .figure .fig-line path,
  .figure .fig-line circle{ stroke-dashoffset:0 !important; }
}
