/* ════════════════════════════════════════════════════════
   STYLES v3 — "Expedición Dorada" · Mundo continuo
   Elevación premium: escenas integradas, no tarjetas.
   Leyes aplicadas: impeccable (cards = respuesta floja,
   ritmo variado, materia/textura) + Emil (física del motion)
   ════════════════════════════════════════════════════════ */

:root {
  --papel:   #F7EFDF;
  --papel-2: #F1E6CF;
  --selva:   #1F4234;
  --selva-2: #35594A;
  --atard:   #C75B2A;
  --miel:    #E9B44C;
  --salvia:  #8FAE8B;
  --madera:  #9A6D32;
  --madera-2:#7A5A34;
  --tinta-suave: rgba(31, 66, 52, .62);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --font-display: "Alfa Slab One", serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --max-w: 480px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--selva);
  background: var(--papel);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.bloqueado { overflow: hidden; height: 100dvh; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--atard); outline-offset: 3px; border-radius: 6px;
}

/* ═══════════ EL MUNDO: cielo, sol, cordillera, niebla, grano ═══════════ */
.cielo { position: fixed; inset: 0; z-index: -6; pointer-events: none; }
.cielo-dia {
  background:
    radial-gradient(130% 65% at 50% 0%, #FDF8EC 0%, var(--papel) 58%),
    var(--papel);
}
.cielo-tarde {
  z-index: -5; opacity: 0;
  background:
    radial-gradient(130% 75% at 50% 100%, rgba(233,180,76,.55) 0%, rgba(199,91,42,.3) 42%, transparent 75%);
  transition: opacity .4s linear;
}
.sol {
  position: fixed; top: 6vh; right: 11vw; z-index: -5;
  width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #F6D183, var(--miel) 65%);
  box-shadow: 0 0 70px 22px rgba(233, 180, 76, .38);
  pointer-events: none; will-change: transform;
}
.paisaje {
  position: fixed; left: 0; right: 0; bottom: 0;
  pointer-events: none; will-change: transform;
}
.paisaje svg { display: block; width: 100%; }
.paisaje-lejos { z-index: -4; height: 26vh; opacity: .8; }
.paisaje-medio { z-index: -3; height: 19vh; opacity: .55; }
.paisaje-lejos svg, .paisaje-medio svg { height: 100%; }
.niebla {
  position: fixed; left: 0; right: 0; bottom: 0; height: 30vh; z-index: -2;
  background: linear-gradient(0deg, var(--papel) 12%, rgba(247,239,223,.75) 45%, transparent 100%);
  pointer-events: none;
}
#canvas-part { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* grano de película: materia sobre todo, muy sutil */
.grano {
  position: fixed; inset: -50%; z-index: 70; pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════ APERTURA: MAPA PLEGADO ═══════════ */
.mapa-overlay {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  background: radial-gradient(110% 70% at 50% 20%, #FBF4E6 0%, var(--papel-2) 70%);
  transition: opacity .55s var(--ease-out), visibility .55s;
}
.mapa-overlay.fuera { opacity: 0; visibility: hidden; }
.mapa-escena { text-align: center; perspective: 1100px; padding: 24px; }
.mapa {
  position: relative; display: block;
  width: min(78vw, 300px);
  color: var(--selva);
  transform-style: preserve-3d;
  transition: transform .18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .mapa:hover { transform: scale(1.02); } }
.mapa:active { transform: scale(0.98); }
.mapa-cuerpo {
  position: relative;
  background: linear-gradient(160deg, #FBF4E4 0%, var(--papel-2) 100%);
  border: 1.5px solid rgba(31, 66, 52, .22);
  border-radius: 10px;
  padding: 26px 20px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(31,66,52,.12);
}
.mapa-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--atard); }
.mapa-nombre { font-family: var(--font-display); font-size: clamp(26px, 8vw, 34px); line-height: 1.05; }
.mapa-ruta { width: 80%; color: var(--atard); }
.mapa-fecha { font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--tinta-suave); text-transform: uppercase; }
.mapa-panel {
  position: absolute; left: 0; right: 0; height: 52%;
  background: linear-gradient(180deg, #EFE2C6 0%, #E7D7B4 100%);
  border: 1.5px solid rgba(31, 66, 52, .25);
  color: var(--selva-2);
  overflow: hidden; backface-visibility: hidden;
  transition: transform .7s var(--ease-in-out);
}
.mapa-topo { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapa-panel-top { top: 0; border-radius: 10px 10px 0 0; transform-origin: top center; display: grid; place-items: center; }
.mapa-panel-bottom { bottom: 0; border-radius: 0 0 10px 10px; transform-origin: bottom center; box-shadow: 0 -4px 12px rgba(31,66,52,.12); }
.mapa-sello { color: var(--atard); opacity: .9; }
.mapa.abierto .mapa-panel-top { transform: rotateX(178deg); }
.mapa.abierto .mapa-panel-bottom { transform: rotateX(-178deg); transition-delay: .12s; }
.mapa-para { margin-top: 26px; font-size: 15px; font-weight: 600; }
.mapa-hint {
  margin-top: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--tinta-suave);
  animation: latido 2.4s var(--ease-in-out) infinite;
}
@keyframes latido { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

/* ═══════════ SENDERO + HUELLAS + LEÓN ═══════════ */
.sendero { position: absolute; top: 0; left: 0; z-index: 0; width: 100%; pointer-events: none; }
#sendero-base { stroke: rgba(31, 66, 52, .16); stroke-width: 3; stroke-dasharray: 1 12; stroke-linecap: round; }
#sendero-dibujo { stroke: var(--atard); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1 12; }
.huellas { position: absolute; top: 0; left: 0; z-index: 0; pointer-events: none; }
.huella {
  position: absolute; width: 11px; height: 13px;
  opacity: 0; transform: scale(.7);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  color: rgba(199, 91, 42, .55);
}
.huella.pisada { opacity: 1; transform: scale(1); }
.leon-viajero {
  position: absolute; z-index: 1; pointer-events: none;
  filter: drop-shadow(0 3px 5px rgba(31, 66, 52, .25));
  will-change: transform;
}

/* ═══════════ BRÚJULA + VINILO + BANNER ═══════════ */
.brujula {
  position: fixed; left: 16px; bottom: 18px; z-index: 40;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--selva); color: var(--papel);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(31, 66, 52, .3);
  transition: transform .16s var(--ease-out);
}
.brujula:active { transform: scale(0.94); }
.brujula svg { transition: transform .5s var(--ease-in-out); }
.brujula[aria-expanded="true"] svg { transform: rotate(135deg); }
.brujula-panel {
  position: fixed; left: 16px; bottom: 76px; z-index: 40;
  background: var(--papel);
  border: 1.5px solid rgba(31, 66, 52, .18);
  border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(31,66,52,.15);
  min-width: 190px;
  transform-origin: bottom left;
  opacity: 0; transform: scale(.97) translateY(6px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  pointer-events: none;
}
.brujula-panel.abierto { opacity: 1; transform: none; pointer-events: auto; }
.bp-titulo { font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--atard); margin-bottom: 8px; }
.bp-lista { list-style: none; }
.bp-lista button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 7px 4px;
  font-size: 14px; font-weight: 600; color: var(--selva);
  border-radius: 8px;
  transition: background .15s ease;
}
.bp-lista button:active { background: rgba(31, 66, 52, .07); }
.bp-punto { width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--atard); flex: none; transition: background .2s ease; }
.bp-lista button.visitada .bp-punto { background: var(--atard); }

.vinilo {
  position: fixed; right: 16px; bottom: 18px; z-index: 40;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--papel);
  border: 1.5px solid rgba(31, 66, 52, .18);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(31,66,52,.12);
  transition: transform .16s var(--ease-out);
}
.vinilo:active { transform: scale(0.94); }
.vinilo.girando svg { animation: girar 3.5s linear infinite; }
@keyframes girar { to { transform: rotate(360deg); } }

.caducidad-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--selva); color: var(--papel);
  font-size: 12.5px; font-weight: 600; text-align: center;
  padding: 9px 14px;
}

/* ═══════════ LAYOUT: ritmo variado, no uniforme ═══════════ */
.page { position: relative; z-index: 0; }
.sec { position: relative; max-width: var(--max-w); margin: 0 auto; }
.esc-fecha   { padding: 96px 26px 60px 54px; }
.esc-lugar   { padding: 70px 26px 84px 54px; }
.esc-papas   { padding: 88px 26px 70px 54px; }
.esc-dress   { padding: 64px 26px 90px 54px; }
.esc-regalos { padding: 76px 26px 70px 54px; }
.esc-rsvp    { padding: 90px 26px 96px 54px; }
.sec-tag { font-size: 13px; font-weight: 700; color: var(--tinta-suave); margin-bottom: 22px; }
.parada-num {
  display: block; font-size: 10.5px; font-weight: 800;
  letter-spacing: .26em; text-transform: uppercase; color: var(--atard);
  margin-bottom: 6px;
}
.parada-num::before {
  content: ""; display: inline-block;
  width: 11px; height: 12px; margin-right: 7px; vertical-align: -1px;
  background: var(--atard);
  clip-path: polygon(0 0, 100% 25%, 0 55%, 0 100%, 0 0);
}

.reveal { opacity: 0; transform: translateY(14px) scale(.985) rotate(var(--rot, 0deg)); }
.reveal.dentro {
  opacity: 1; transform: translateY(0) scale(1) rotate(var(--rot, 0deg));
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}

/* ═══════════ ESCENA 0 · HERO ═══════════ */
.hero {
  position: relative; min-height: 100dvh;
  max-width: var(--max-w); margin: 0 auto;
  padding: 76px 26px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.mariposas { position: absolute; inset: 0; pointer-events: none; }
.mposa { position: absolute; animation: volar 9s var(--ease-in-out) infinite; }
.mposa:nth-child(1) { top: 20%; left: 10%; }
.mposa:nth-child(2) { top: 13%; right: 13%; animation-delay: -3s; animation-duration: 11s; }
.mposa:nth-child(3) { top: 32%; right: 22%; animation-delay: -6s; animation-duration: 8s; }
@keyframes volar {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  33% { transform: translate(14px, -16px) rotate(6deg); }
  66% { transform: translate(-10px, -6px) rotate(-8deg); }
}
.hero-pretitle {
  font-size: 13px; font-weight: 800; letter-spacing: .32em;
  text-transform: uppercase; color: var(--atard); margin-top: 26px;
}
.hero-invitado { margin-top: 14px; font-size: 15px; font-weight: 600; font-style: italic; color: var(--selva-2); }

/* letrero de parque a escala EDITORIAL: el nombre es un momento */
.letrero { position: relative; margin-top: 22px; }
.letrero-poste {
  position: absolute; top: 60%; width: 11px; height: 96px;
  background: linear-gradient(180deg, #B88940, var(--madera));
  border-radius: 5px; z-index: -1;
  box-shadow: inset -3px 0 0 rgba(31,66,52,.15);
}
.letrero-poste-i { left: 14%; transform: rotate(-2deg); }
.letrero-poste-d { right: 14%; transform: rotate(2deg); }
.hero-nombre {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(46px, 14vw, 68px);
  line-height: 1; letter-spacing: .005em;
  color: var(--selva);
  padding: 20px 30px 22px;
  background:
    repeating-linear-gradient(94deg, rgba(31,66,52,.05) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, #ECBB58 0%, #DFA53E 100%);
  border: 2.5px solid rgba(31, 66, 52, .38);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(31, 66, 52, .22), inset 0 3px 0 rgba(255,255,255,.4), inset 0 -4px 0 rgba(31,66,52,.12);
  transform: rotate(-1.2deg);
}
.letrero-tornillo {
  position: absolute; top: 12px; width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #C99A4C, #7A5A34);
  box-shadow: inset 0 -1px 1px rgba(31,66,52,.4);
}
.letrero-tornillo.t-i { left: 12px; }
.letrero-tornillo.t-d { right: 12px; }
.hero-sub { margin-top: 16px; font-size: 15.5px; font-weight: 600; font-style: italic; color: var(--selva-2); }

.scene { position: relative; width: 100%; max-width: 340px; height: 210px; margin-top: 24px; }
.animal { position: absolute; bottom: 8px; transition: transform .16s var(--ease-out); }
.animal:active { transform: scale(0.96); }
.a-ele { left: 0; }
.a-jir { left: 50%; transform: translateX(-50%); z-index: 1; }
.a-jir:active { transform: translateX(-50%) scale(0.96); }
.a-leo { right: 0; }
.grass {
  position: absolute; bottom: 0; left: -10%; right: -10%; height: 16px;
  background: radial-gradient(50% 100% at 50% 100%, rgba(143, 174, 139, .55), transparent 80%);
  border-radius: 50%;
}
.hero-frase { margin-top: 24px; font-size: 15.5px; line-height: 1.6; color: var(--selva-2); max-width: 300px; }
.s-hint {
  margin-top: auto; padding-top: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--tinta-suave);
}
.s-line {
  width: 2px; height: 34px; border-radius: 2px;
  background: linear-gradient(var(--atard), transparent);
  animation: bajar 1.8s var(--ease-in-out) infinite;
}
@keyframes bajar { 0% { transform: scaleY(.3); transform-origin: top; } 60%, 100% { transform: scaleY(1); } }

/* ═══════════ ESCENA 1 · SEÑALADOR DEL CAMINO ═══════════ */
.senal { position: relative; padding: 8px 0 12px 20px; min-height: 300px; }
.senal-poste {
  position: absolute; left: 34px; top: 0; bottom: -6px; width: 13px;
  background: linear-gradient(90deg, #B88940, var(--madera) 70%);
  border-radius: 6px;
  box-shadow: inset -3px 0 0 rgba(31,66,52,.18), 4px 6px 10px rgba(31,66,52,.14);
}
.senal-tabla {
  position: relative;
  display: inline-flex; flex-direction: column; gap: 2px;
  margin-left: 34px;
  padding: 14px 30px 15px 22px;
  background:
    repeating-linear-gradient(92deg, rgba(31,66,52,.05) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #ECBB58, #DFA53E);
  border: 2px solid rgba(31, 66, 52, .35);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  box-shadow: 0 6px 14px rgba(31,66,52,.16);
}
.senal-tabla.t-1 { transform: rotate(-1.5deg); margin-top: 6px; }
.senal-tabla.t-2 { transform: rotate(1deg); margin-top: 18px; }
.senal-tabla.t-3 { transform: rotate(-.8deg); margin-top: 18px;
  background:
    repeating-linear-gradient(92deg, rgba(31,66,52,.06) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #D9A03C, #C98F30);
}
.fecha-num { font-family: var(--font-display); font-weight: 400; font-size: 52px; line-height: 1; color: var(--selva); }
.fecha-num-chica { font-size: 27px; }
.fecha-lbl { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(31,66,52,.75); }

.btn-calendar {
  margin-top: 26px; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1.5px solid rgba(31, 66, 52, .25);
  background: rgba(247,239,223,.6);
  font-size: 14px; font-weight: 700; color: var(--selva);
  transition: transform .14s var(--ease-out), background .15s ease;
}
.btn-calendar:active { transform: scale(0.98); background: rgba(31, 66, 52, .07); }

.cd-block { margin-top: 36px; }
.cd-tag {
  font-size: 11px; font-weight: 800; letter-spacing: .24em;
  text-transform: uppercase; color: var(--tinta-suave);
  text-align: center; margin-bottom: 22px;
}
.cd-statement { display: flex; justify-content: center; gap: 12px; }
.cd-tabla {
  position: relative; flex: 1; max-width: 82px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 13px 4px 11px;
  background: linear-gradient(180deg, #ECBB58, #DFA53E);
  border: 2px solid rgba(31, 66, 52, .32);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(31,66,52,.15);
}
.cd-tabla:nth-child(1) { transform: rotate(-1.4deg); }
.cd-tabla:nth-child(2) { transform: rotate(.9deg); }
.cd-tabla:nth-child(3) { transform: rotate(-.7deg); }
.cd-tabla:nth-child(4) { transform: rotate(1.2deg); }
.cd-cuerda {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 14px; background: var(--madera-2);
}
.cd-n { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--selva); font-variant-numeric: tabular-nums; }
.cd-l { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(31,66,52,.7); }

/* ═══════════ ESCENA 2 · FRAGMENTO DE MAPA ═══════════ */
.fragmento {
  position: relative;
  padding: 34px 26px 30px;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(233,180,76,.12), transparent 50%),
    linear-gradient(165deg, #FBF3E1, var(--papel-2));
  /* borde rasgado: papel arrancado del mapa grande */
  clip-path: polygon(2% 3%, 12% 0%, 26% 2.5%, 41% .5%, 55% 3%, 70% 1%, 84% 3.5%, 97% 1.5%, 99.5% 14%, 98% 30%, 100% 46%, 98.5% 62%, 100% 78%, 98% 92%, 88% 99%, 72% 97.5%, 56% 100%, 40% 98%, 24% 100%, 10% 97.5%, 1% 99%, 2.5% 84%, 0% 68%, 2% 52%, .5% 36%, 2.5% 18%);
  filter: drop-shadow(0 10px 18px rgba(31,66,52,.16));
  text-align: center;
}
.frag-topo { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.frag-x { position: absolute; top: 44px; right: 40px; }
.lugar-eyebrow {
  position: relative;
  font-size: 11px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--atard);
}
.lugar-nombre {
  position: relative;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 8vw, 32px); line-height: 1.12; margin-top: 10px;
}
.lugar-dir { position: relative; margin-top: 12px; font-size: 14.5px; line-height: 1.55; color: var(--selva-2); }
.btn-maps {
  position: relative;
  display: inline-block; margin-top: 20px;
  padding: 14px 28px; border-radius: 999px;
  background: var(--atard); color: var(--papel);
  font-size: 14px; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 16px rgba(199,91,42,.35);
  transition: transform .14s var(--ease-out);
}
.btn-maps:active { transform: scale(0.97); }

/* ═══════════ ESCENA 3 · TIENDA DE CAMPAÑA ═══════════ */
.papas-wrap { text-align: center; }
.carpa { position: relative; display: inline-block; }
.carpa-luz { animation: velaTitila 3s var(--ease-in-out) infinite; }
@keyframes velaTitila { 0%,100% { opacity: .85; } 50% { opacity: 1; } }
.carpa-corazon {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  animation: flotar 3.4s var(--ease-in-out) infinite;
}
@keyframes flotar { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }
.papas-frase { margin-top: 22px; font-weight: 800; font-size: 20px; line-height: 1.45; }
.papas-sub { margin-top: 10px; font-size: 14px; font-style: italic; color: var(--selva-2); }
.papas-grid { margin-top: 34px; display: flex; justify-content: center; gap: 26px; }
.papa-tag {
  position: relative; min-width: 128px;
  padding: 20px 16px 16px;
  background: linear-gradient(170deg, #FBF3E1, var(--papel-2));
  border: 1.5px solid rgba(31, 66, 52, .22);
  border-radius: 10px 10px 12px 12px;
  box-shadow: 0 6px 14px rgba(31,66,52,.13);
  transform: rotate(-2deg);
}
.papa-tag.tag-b { transform: rotate(2deg); margin-top: 10px; }
.papa-tag::before {
  content: ""; position: absolute; top: 8px; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  transform: translateX(-50%);
  background: var(--papel);
  border: 2px solid rgba(31,66,52,.3);
}
.tag-cuerda {
  position: absolute; top: -16px; left: 50%; width: 2px; height: 20px;
  background: var(--madera-2); transform: translateX(-50%) rotate(6deg);
}
.papa-foto {
  display: block;
  width: 100%; max-width: 120px;
  margin: 12px auto 2px;
  border-radius: 6px;
  border: 4px solid #FFFDF7;
  box-shadow: 0 4px 10px rgba(31, 66, 52, .22);
}
.papa-role { margin-top: 8px; font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--atard); }
.papa-nombre { margin-top: 4px; font-size: 16px; font-weight: 800; line-height: 1.3; }

/* ═══════════ ESCENA 4 · TENDEDERO ═══════════ */
.dc-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 7vw, 28px); text-align: center; }
.dc-sub { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--selva-2); text-align: center; }
.tendedero { position: relative; margin-top: 18px; padding: 26px 0 8px; }
.tende-rama { position: absolute; bottom: 0; }
.tende-rama.t-izq { left: -6px; }
.tende-rama.t-der { right: -6px; }
.tende-cuerda { position: absolute; top: 22px; left: 22px; right: 22px; width: calc(100% - 44px); height: 40px; }
.dc-paleta {
  position: relative;
  display: flex; justify-content: center; align-items: flex-start; gap: 8px;
  padding: 20px 30px 0;
}
.dc-color {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transform-origin: top center;
  animation: mecer 4s var(--ease-in-out) infinite;
}
.dc-color:nth-child(2n)  { animation-delay: -1.3s; margin-top: 14px; }
.dc-color:nth-child(3n)  { animation-delay: -2.6s; margin-top: 6px; }
.dc-color:nth-child(4n)  { margin-top: 18px; }
@keyframes mecer { 0%,100% { transform: rotate(1.6deg); } 50% { transform: rotate(-1.6deg); } }
.dc-pinza {
  width: 7px; height: 15px; border-radius: 3px;
  background: linear-gradient(180deg, #C99A4C, var(--madera));
  margin-bottom: -4px;
}
.dc-swatch {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2.5px solid rgba(247, 239, 223, .95);
  box-shadow: 0 5px 10px rgba(31,66,52,.2), inset 0 -5px 9px rgba(0, 0, 0, .12);
}
.dc-nombre { font-size: 10px; font-weight: 700; color: var(--selva-2); max-width: 58px; line-height: 1.2; text-align: center; }

/* ═══════════ ESCENA 5 · CAJAS DE PROVISIONES ═══════════ */
.regalos-intro { font-size: 15px; line-height: 1.6; color: var(--selva-2); margin-bottom: 22px; }
.caja {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 17px 18px;
  margin-bottom: 14px;
  background:
    repeating-linear-gradient(180deg, rgba(31,66,52,.06) 0 1.5px, transparent 1.5px 13px),
    linear-gradient(175deg, #E8C77E, #DFB25C);
  border: 2px solid rgba(31, 66, 52, .3);
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(31,66,52,.15), inset 0 2px 0 rgba(255,255,255,.3);
  text-decoration: none; color: var(--selva);
  transition: transform .14s var(--ease-out);
}
a.caja:active { transform: scale(0.985); }
.caja:nth-child(2n) { transform: rotate(.5deg); }
.caja:nth-child(2n+1) { transform: rotate(-.5deg); }
.caja::before, .caja::after {
  content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #C99A4C, #6B4E28);
}
.caja::before { top: 8px; left: 8px; }
.caja::after  { bottom: 8px; right: 8px; }
.caja-icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 9px;
  background: var(--selva); color: var(--miel);
  display: grid; place-items: center;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
}
.caja-info { flex: 1; }
.caja-nombre { font-size: 15px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.caja-sub { font-size: 12.5px; color: rgba(31,66,52,.75); margin-top: 2px; }
.caja-flecha { color: var(--atard); font-weight: 800; }
.caja-clabe { font-size: 13px; font-weight: 700; letter-spacing: .03em; color: rgba(31,66,52,.8); margin-top: 2px; }

/* ═══════════ ESCENA 6 · TABLA DE CAMPAMENTO (RSVP) ═══════════ */
.tabla-rsvp {
  position: relative;
  padding: 40px 24px 28px;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(233,180,76,.14), transparent 55%),
    linear-gradient(170deg, #FBF3E1, var(--papel-2));
  border: 1.5px solid rgba(31, 66, 52, .22);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(31,66,52,.16);
  text-align: center;
  transform: rotate(-.4deg);
}
.tabla-clip {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 68px; height: 24px;
  background: linear-gradient(180deg, #C99A4C, var(--madera));
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 3px 6px rgba(31,66,52,.25), inset 0 2px 0 rgba(255,255,255,.35);
}
.tabla-clip::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 7px; border-radius: 4px;
  background: rgba(31,66,52,.35);
}
.rsvp-h { font-weight: 800; font-size: 20px; line-height: 1.4; }
.rsvp-s { margin-top: 8px; font-size: 13.5px; line-height: 1.5; color: var(--selva-2); }
.rsvp-opts { margin-top: 20px; display: flex; gap: 10px; }
.rsvp-opt {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px;
  border-radius: 14px;
  border: 1.5px solid rgba(31, 66, 52, .25);
  background: rgba(247,239,223,.5);
  color: var(--selva);
  transition: transform .14s var(--ease-out), background .15s ease, border-color .15s ease, color .15s ease;
}
.rsvp-opt:active { transform: scale(0.97); }
.rsvp-opt.activa { background: var(--selva); color: var(--papel); border-color: var(--selva); }
.ro-txt { font-size: 13.5px; font-weight: 800; }
.rsvp-in {
  width: 100%; margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(31, 66, 52, .25);
  background: var(--papel);
  font-family: inherit; font-size: 15px; color: var(--selva);
}
.rsvp-in::placeholder { color: var(--tinta-suave); }
.rsvp-cta {
  width: 100%; margin-top: 16px;
  padding: 16px;
  border-radius: 999px;
  background: var(--atard); color: var(--papel);
  font-size: 15px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(199,91,42,.35);
  transition: transform .14s var(--ease-out), opacity .15s ease;
}
.rsvp-cta:active { transform: scale(0.98); }
.rsvp-cta[disabled] { opacity: .55; cursor: default; }
.gracias { display: none; padding: 12px 0 4px; }
.gracias.mostrar { display: block; }
.g-check { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--selva); color: var(--miel); }
.g-tit { font-family: var(--font-display); font-weight: 400; font-size: 24px; margin-top: 12px; }
.g-sub { margin-top: 6px; font-size: 14px; color: var(--selva-2); }

/* ═══════════ CIERRE ═══════════ */
.footer {
  max-width: var(--max-w); margin: 0 auto;
  padding: 26px 26px 110px;
  text-align: center;
}
.ft-caravana { width: min(300px, 82vw); }
.ft-txt { margin-top: 14px; font-size: 15px; font-weight: 800; }
.ft-sub { margin-top: 6px; font-size: 12px; color: var(--tinta-suave); }

@media (min-width: 560px) {
  .esc-fecha, .esc-lugar, .esc-papas, .esc-dress, .esc-regalos, .esc-rsvp { padding-left: 70px; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mposa, .s-line, .mapa-hint, .vinilo.girando svg,
  .dc-color, .carpa-luz, .carpa-corazon { animation: none; }
  .reveal { opacity: 1; transform: rotate(var(--rot, 0deg)); transition: opacity .2s ease; }
  .mapa-panel { transition: opacity .3s ease; }
  .mapa.abierto .mapa-panel { opacity: 0; transform: none; }
  .leon-viajero { display: none; }
}
