@font-face {
  font-family: "Cinzel";
  src: url("../assets/fonts/cinzel.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel Decorative";
  src: url("../assets/fonts/cinzel-decorative.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pinyon Script";
  src: url("../assets/fonts/pinyon-script.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../assets/fonts/quicksand.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --page: #E9DFD0;
  --paper: #F1E8DB;
  --opaline: #FFFDF9;
  --wine: #6B1E23;
  --wine-deep: #521419;
  --gold: #B8893E;
  --gold-text: #8A6226;
  --gold-line: rgba(184, 137, 62, .55);
  --ink: #3D2B24;
  --ink-soft: #5E4A40;
  --banner-main: #E2D1B7;
  --env: #E03589;

  --font-display: "Cinzel Decorative", "Cinzel", Georgia, serif;
  --font-caps: "Cinzel", Georgia, serif;
  --font-script: "Pinyon Script", "Snell Roundhand", cursive;
  --font-body: "Quicksand", system-ui, sans-serif;

  --ease-paper: cubic-bezier(.62, 0, .22, 1);
  --t-flap: .95s;
  --t-fade: .6s;

  color-scheme: light;
}

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

html, body {
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #F4ECE0 0%, var(--page) 60%, #DDCFBC 100%);
  color: var(--ink);
  font: 500 1rem/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
img, svg { display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; }

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

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Los <mask> no funcionan si el sprite usa display:none. */
.sprite {
  position: absolute;
  width: 0; height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--lg { width: 2.6rem; height: 2.6rem; stroke-width: 1.1; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 46px;
  padding: .55em 1.25em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  font: 600 .95rem/1.2 var(--font-body);
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, transform .15s;
}
.btn:active { transform: scale(.97); }
.btn--solid {
  border-color: var(--wine);
  background: var(--wine);
  color: #FBF3E6;
  box-shadow: 0 6px 18px -8px rgba(82, 20, 25, .7);
}
.btn--solid:hover { background: var(--wine-deep); }
.btn--ghost:hover { background: rgba(184, 137, 62, .12); }
.btn--wide { width: 100%; }

/* ========== 1. Escena del sobre ========== */

.scene {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  gap: 12px;
  padding:
    max(28px, env(safe-area-inset-top)) 16px
    max(28px, env(safe-area-inset-bottom));
  text-align: center;
  transition: opacity var(--t-fade) ease, visibility 0s;
}

.scene__monogram {
  font: 400 clamp(2.8rem, 13vw, 3.6rem)/1 var(--font-display);
  letter-spacing: .1em;
  color: var(--wine);
}
.scene__monogram span { color: var(--gold); }
.scene__date {
  margin-top: .8rem;
  font: 600 clamp(1.05rem, 4.6vw, 1.25rem)/1 var(--font-caps);
  letter-spacing: .3em;
  color: var(--gold-text);
}

.scene__stage {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
}

.scene__footer { display: grid; justify-items: center; gap: .6rem; }
.scene__hint {
  font-size: .85rem;
  color: var(--ink-soft);
  animation: breathe 2.6s ease-in-out infinite;
}

/* ---------- Sobre ---------- */

.envelope {
  --w: min(86vw, 520px, 90dvh * .7);
  position: relative;
  width: var(--w);
  aspect-ratio: 7 / 5;
  perspective: 1600px;
  cursor: pointer;
  transition:
    translate var(--t-flap) var(--ease-paper),
    scale var(--t-fade) ease,
    opacity var(--t-fade) ease;
}
@media (hover: hover) {
  .envelope:not(.is-open):hover { scale: 1.015; }
}

.envelope__pocket {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--env);
  background: color-mix(in srgb, var(--env) 90%, #000);
  box-shadow:
    0 1px 2px rgba(40, 20, 10, .2),
    0 22px 40px -18px rgba(40, 20, 10, .55);
}

.envelope__card {
  position: absolute;
  left: 6%;
  top: 8%;
  width: 88%;
  height: auto;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

.envelope__flap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--env);
  transform-origin: 50% 0;
  filter: drop-shadow(0 1.5px 1.5px rgba(30, 10, 5, .35));
  transition:
    transform var(--t-flap) var(--ease-paper),
    filter var(--t-flap) ease;
}

/* La solapa ocupa 85% del alto: al abrirse, se baja el sobre la mitad de eso para mantenerlo centrado. */
.envelope.is-open { translate: 0 42.5%; cursor: default; }
.envelope.is-open .envelope__flap {
  transform: rotateX(180deg);
  filter: drop-shadow(0 -1px 1px rgba(30, 10, 5, .2)) brightness(.94);
}

.scene.is-leaving .envelope { scale: 1.18; opacity: 0; }
.scene.is-leaving .scene__header,
.scene.is-leaving .scene__footer { opacity: 0; transition: opacity .3s; }

.scene__header, .scene__footer { transition: opacity .4s ease; }
.scene.is-opening .scene__footer { opacity: 0; pointer-events: none; }

/* ========== 2. Lector de tarjetas ========== */

.reader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  scale: .96;
  transition: opacity var(--t-fade) ease, scale var(--t-fade) ease, visibility 0s var(--t-fade);
}
.is-reading .reader {
  opacity: 1;
  visibility: visible;
  scale: 1;
  transition: opacity var(--t-fade) ease, scale var(--t-fade) ease;
}
.is-reading .scene { opacity: 0; visibility: hidden; transition: opacity var(--t-fade) ease, visibility 0s var(--t-fade); }

.track {
  flex: 1;
  display: flex;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 100%;
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: max(14px, env(safe-area-inset-top)) 12px 28px;
}

/* ---------- Tarjeta base ---------- */

.card {
  position: relative;
  isolation: isolate;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--paper);
  text-align: center;
  box-shadow:
    0 1px 2px rgba(60, 40, 20, .14),
    0 18px 36px -16px rgba(60, 40, 20, .45);
}
.card::before,
.card::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.card::before { inset: 10px; border: 1px solid var(--gold-line); }
.card::after { inset: 14px; border: 1px solid rgba(184, 137, 62, .25); }

.card--main {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .45 0 0 0 0 .35 0 0 0 0 .2 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.card--details { background-color: var(--opaline); }
.card--guide { background-color: var(--paper); }

.card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 30px 28px;
}

.garland {
  position: relative;
  z-index: 1;
  width: calc(100% + 20px);
  height: auto;
  margin: -6px -10px 0;
  color: var(--banner-main);
}
.garland--right { display: none; }
.card--details .garland { color: var(--wine); }

/* Sin z-index: un stacking context aislaría el multiply y dejaría ver el fondo blanco de las imágenes. */
.florals {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -56px;
  pointer-events: none;
}
.florals img {
  width: 50%;
  height: auto;
  mix-blend-mode: multiply;
}
.florals--columns { margin-top: -70px; }
.florals--columns img { width: 34%; }

/* ---------- Tipografía de la invitación ---------- */

.ornament { width: 54px; height: 27px; margin-top: -8px; fill: none; stroke: var(--gold); stroke-width: 1.1; }

.quote, .lead, .script--closing { text-wrap: balance; }
.quote br, .lead br, .script--closing br { display: none; }

.quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}
.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
}
.quote .script {
  font-size: 1.7em;
  line-height: 0;
  color: var(--wine);
  padding: 0 .08em;
}

.rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(220px, 70%);
  color: var(--gold);
}
.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold));
}
.rule::after { transform: scaleX(-1); }
.rule .icon { width: 14px; height: 14px; color: var(--wine); }
.rule--short { width: 110px; }
.rule__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.names {
  display: flex;
  flex-direction: column;
  align-items: center;
  font: 400 clamp(2.6rem, 13.5vw, 3.6rem)/1 var(--font-display);
  color: var(--wine);
  letter-spacing: .01em;
  outline: none;
}
.names__amp {
  margin: .08em 0 .02em;
  font-family: var(--font-caps);
  font-size: .8em;
  color: var(--gold);
}

.lead { color: var(--ink); font-size: 1rem; }

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  row-gap: 18px;
}
.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}
.fact .icon { width: 28px; height: 28px; stroke-width: 1.2; }
.fact + .fact:not(.fact--place) { border-left: 1px solid var(--gold-line); }
.fact__main {
  display: block;
  font: 400 1.35rem/1.15 var(--font-caps);
  color: var(--wine);
  text-transform: uppercase;
}
.fact__main small { font-size: .72em; letter-spacing: .04em; }
.fact--place {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid var(--gold-line);
}
.fact--place .fact__main { font-size: 1.15rem; text-transform: none; font-variant: small-caps; }
.fact__sub { display: block; margin-top: 4px; color: var(--ink); font-size: .92rem; }

.script--closing {
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--ink);
}
.icon--heart { width: 18px; height: 18px; color: var(--gold); }

/* ---------- Tarjeta 2: detalles ---------- */

.title {
  font: 500 clamp(1.55rem, 7vw, 2.1rem)/1.15 var(--font-caps);
  color: var(--wine);
  outline: none;
}
.card--details .title { margin-top: -6px; }

.columns { display: grid; width: 100%; gap: 0; }
.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  color: var(--ink);
  font-size: .98rem;
}
.column + .column { border-top: 1px solid var(--gold-line); }
.column > .icon--lg { color: var(--gold); }
.column__title {
  font: 600 1.25rem/1.2 var(--font-caps);
  color: var(--wine);
}
.script--accent {
  margin-top: -4px;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--gold-text);
}

.notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font: 600 .95rem/1.35 var(--font-caps);
  color: var(--wine);
}
.notice strong { font-weight: 600; }
.notice__icon { color: var(--wine); }

.gift-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 4px;
}
.gift-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}
.gift-option strong {
  font: 600 .88rem/1.2 var(--font-caps);
  color: var(--wine);
}
.gift-or { color: var(--gold-text); font-family: var(--font-caps); }

.clabe {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 6px 10px;
  border: 1px dashed var(--gold-line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: 600 .88rem/1 var(--font-body);
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}
.clabe .icon { color: var(--gold); width: 16px; height: 16px; }

.contacts { display: grid; gap: 10px; width: 100%; max-width: 300px; }
.contact {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 12px 8px 16px;
  white-space: nowrap;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .2s;
}
.contact:hover { background: rgba(184, 137, 62, .1); }
.contact__name { justify-self: start; font-weight: 600; color: var(--wine); }
.contact__phone { font-variant-numeric: tabular-nums; }
.contact .icon { width: 26px; height: 26px; color: var(--gold); }

/* ---------- Tarjeta 3: cómo llegar ---------- */

.card--guide .card__body { padding-top: 34px; padding-bottom: 36px; }

.guide { display: grid; gap: 22px; width: 100%; }
.guide__block { display: grid; justify-items: center; gap: 14px; }
.guide__block + .guide__block { padding-top: 22px; border-top: 1px solid var(--gold-line); }
.guide__date { font: 500 1rem/1.3 var(--font-caps); color: var(--gold-text); letter-spacing: .06em; }
.guide__note { font-size: .92rem; color: var(--ink-soft); }

.schedule { display: grid; gap: 10px; width: 100%; max-width: 320px; }
.schedule li {
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  align-items: baseline;
  gap: 12px;
  text-align: left;
}
.schedule__time {
  justify-self: end;
  font: 500 1.45rem/1 var(--font-caps);
  color: var(--wine);
  white-space: nowrap;
}
.schedule__time small { font-size: .55em; }

.place { font-style: normal; color: var(--ink); }
.place__name {
  display: block;
  margin-bottom: 4px;
  font: 600 1.2rem/1.25 var(--font-caps);
  color: var(--wine);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.btn-row .btn { padding-inline: 1em; font-size: .9rem; }

.transit {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: rgba(255, 253, 249, .55);
  text-align: left;
}
.transit summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  font: 600 .98rem/1.3 var(--font-body);
  color: var(--wine);
  cursor: pointer;
  list-style: none;
}
.transit summary::-webkit-details-marker { display: none; }
.transit summary::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  rotate: 45deg;
  translate: 0 -3px;
  transition: rotate .25s, translate .25s;
}
.transit[open] summary::after { rotate: 225deg; translate: 0 2px; }
.transit summary .icon { color: var(--gold); }

.transit__body { display: grid; gap: 14px; padding: 0 16px 18px; font-size: .95rem; }

.route {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--gold-line);
}
.route__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font: 600 1rem/1.3 var(--font-caps);
  color: var(--wine);
}
.route__facts { display: grid; gap: 8px; }
.route__facts { gap: 10px; }
.route__facts div { display: grid; gap: 2px; }
.route__facts dt {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.route__look { display: flex; align-items: flex-start; gap: 8px; }
.swatch {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(61, 43, 36, .35);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a) 50%, var(--b) 50%);
}

.route__link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--wine);
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.transit__tip {
  padding-top: 14px;
  border-top: 1px solid var(--gold-line);
  color: var(--ink-soft);
}
.transit__body > .btn { justify-self: start; }

/* ---------- Navegación ---------- */

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(184, 137, 62, .3);
  background: rgba(241, 232, 219, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav__hint {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(61, 43, 36, .82);
  color: #FBF3E6;
  font-size: .82rem;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .4s;
}
.nav__hint::after { content: " →"; display: inline-block; animation: nudge 1.4s ease-in-out infinite; }
.nav__hint.is-hidden { opacity: 0; }

.nav__close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
}
.nav__close .icon { color: var(--gold); width: 22px; height: 22px; }

.nav__pager { display: flex; align-items: center; gap: 2px; }
.nav__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--wine);
  cursor: pointer;
}
.nav__arrow:disabled { opacity: .3; cursor: default; }
.nav__arrow .icon { width: 24px; height: 24px; stroke-width: 1.8; }

.nav__dots { display: flex; }
.nav__dot {
  display: grid;
  place-items: center;
  width: 24px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav__dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: background-color .25s, scale .25s;
}
.nav__dot[aria-current="true"]::before { background: var(--wine); border-color: var(--wine); scale: 1.2; }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(84px + env(safe-area-inset-bottom));
  translate: -50% 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #FBF3E6;
  font-size: .88rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, translate .25s;
}
.toast.is-visible { opacity: 1; translate: -50% 0; }

.music-toggle {
  position: fixed;
  z-index: 10;
  top: max(10px, env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: rgba(251, 246, 238, .85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--wine);
  box-shadow: 0 4px 12px -6px rgba(60, 40, 20, .4);
  cursor: pointer;
}
.music-toggle[hidden] { display: none; }
.music-toggle .icon { width: 22px; height: 22px; }
.music-toggle__on { display: none; }
.music-toggle.is-playing .music-toggle__on { display: block; }
.music-toggle.is-playing .music-toggle__off { display: none; }

@keyframes breathe { 50% { opacity: .45; } }
@keyframes nudge { 50% { translate: 4px 0; } }

/* ========== Tablet / desktop ========== */

@media (min-width: 900px) and (min-height: 600px) {
  .slide { display: grid; place-items: center; padding: 28px 32px; }

  .card { width: 100%; max-width: 1080px; }

  /* Principal y detalles comparten la proporción de la invitación impresa (1559×1009).
     Si el contenido no cabe, aspect-ratio deja crecer la tarjeta y main.js iguala ambas alturas. */
  .card--main,
  .card--details {
    max-width: min(1080px, (100dvh - 150px) * 1.545);
    aspect-ratio: 1559 / 1009;
    overflow: visible; /* con hidden, aspect-ratio no crece y recortaría el contenido */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .garland {
    position: absolute;
    top: 6px;
    width: 38%;
    margin: 0;
  }
  .garland--left { left: 10px; }
  .garland--right { display: block; right: 10px; }

  .card__body { padding: 48px 26% 44px; gap: 16px; }
  .card--main .card__body { padding-inline: 22%; }

  .florals {
    position: absolute;
    inset: auto 0 0;
    margin: 0;
  }
  .florals img { width: 30%; }
  .florals--columns img { width: 17%; }

  .names { flex-direction: row; gap: .3em; font-size: 4rem; }
  .names__amp { margin: 0; }

  .facts { grid-template-columns: 1fr 1fr 1.8fr; }
  .fact--place { grid-column: auto; padding-top: 0; border-top: 0; border-left: 1px solid var(--gold-line); }

  .quote br, .lead br, .script--closing br { display: inline; }

  .card--details .garland { width: 29%; }
  .card--details .card__body { padding: 36px 12% 26px; gap: 10px; }
  .card--details .title { margin-top: 18px; font-size: 1.9rem; }
  .columns { grid-template-columns: repeat(3, 1fr); }
  .column { padding: 4px 18px; gap: 8px; font-size: .9rem; line-height: 1.45; }
  .column .icon--lg { width: 2.1rem; height: 2.1rem; }
  .column__title { font-size: 1.1rem; }
  .script--accent { font-size: 1.5rem; }
  .gift-options { gap: 6px; margin-top: 0; }
  .notice { margin-top: 2px; font-size: .85rem; }
  .card--details .script--closing { font-size: 1.4rem; }
  .column + .column { border-top: 0; border-left: 1px solid var(--gold-line); }

  .card--guide { max-width: 920px; }
  .card--guide .card__body { padding: 40px 56px 44px; }
  .guide { grid-template-columns: 1fr 1fr; }
  .guide__block + .guide__block { padding-top: 0; border-top: 0; padding-left: 24px; border-left: 1px solid var(--gold-line); }

  .nav { justify-content: center; gap: 40px; }
}

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

@media (prefers-reduced-motion: reduce) {
  :root { --t-flap: .01s; --t-fade: .2s; }
  .reader { scale: 1; }
  .scene.is-leaving .envelope { scale: 1; }
  .scene__hint, .nav__hint::after { animation: none; }
}
