/* =========================================================
   Melissa & Osiel — Boda · Sistema de diseño
   Editorial romántico · Marfil + verde olivo + salvia
   ========================================================= */

:root {
  /* Paleta */
  --paper:      #ffffff;
  --ivory:      #faf8f1;
  --ivory-2:    #f4f1e6;
  --cream:      #ece7d8;
  --olive-900:  #424a29;
  --olive-800:  #515a32;
  --olive-700:  #61693d;
  --olive-600:  #727b4c;
  --olive-500:  #828c5e;
  --sage-400:   #99a578;
  --sage-300:   #bcc69e;
  --sage-200:   #d8dec4;
  --sage-100:   #e9edda;
  --ink:        #3c4124;
  --muted:      #6f7558;
  --line:       rgba(74, 83, 55, 0.16);
  --line-soft:  rgba(74, 83, 55, 0.09);
  --gold:       #a98f56;

  /* Tipografía */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Métricas */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 150px);

  --shadow-sm: 0 2px 14px rgba(44, 51, 34, 0.06);
  --shadow-md: 0 18px 50px -22px rgba(44, 51, 34, 0.30);
  --shadow-lg: 0 40px 90px -40px rgba(44, 51, 34, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--olive-800);
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }
a { color: inherit; }

/* ---------- Utilidades ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--olive-500);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow.flank::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--sage-400);
  display: inline-block;
}
.eyebrow.solo::before { display: none; }

.section-title {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.section-title em { font-style: italic; color: var(--olive-600); }

.lede {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

.divider-leaf {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; color: var(--sage-400); margin: 28px auto;
}
.divider-leaf::before, .divider-leaf::after {
  content: ""; height: 1px; width: min(120px, 22vw);
  background: linear-gradient(90deg, transparent, var(--sage-300));
}
.divider-leaf::after { background: linear-gradient(90deg, var(--sage-300), transparent); }
.divider-leaf svg { width: 22px; height: 22px; }

section { position: relative; }
.section-pad { padding-block: var(--section-y); }

/* ---------- Botones ---------- */
.btn {
  --bg: var(--olive-700);
  --fg: var(--ivory);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--olive-800); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  --bg: transparent; --fg: var(--olive-700);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--olive-700); color: var(--ivory); border-color: var(--olive-700); }

.btn-light {
  --bg: rgba(255,255,255,0.10);
  --fg: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.btn-light:hover { background: #fff; color: var(--olive-800); border-color:#fff; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 248, 241, 0.88);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 12px;
}
.nav .brand {
  font-family: var(--serif);
  font-size: 22px; font-style: italic; font-weight: 500;
  color: #fff; letter-spacing: .02em;
  transition: color .5s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.nav.scrolled .brand { color: var(--olive-800); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,.92);
  transition: color .35s var(--ease), opacity .35s var(--ease);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background: currentColor;
  transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--olive-700); }
.nav .nav-cta { display: inline-flex; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; gap: 6px; align-items: center; justify-content: center;
}
.nav-toggle span { display:block; width: 24px; height: 2px; background:#fff; transition: all .35s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--olive-800); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: var(--olive-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: auto; transform: none; }
.drawer a {
  font-family: var(--serif); font-size: 28px; color: var(--ivory);
  text-decoration: none; padding: 10px; font-style: italic; opacity:.92;
}
.drawer a:hover { color: var(--sage-300); }
.drawer .drawer-close { position: absolute; top: 22px; right: 24px; background:none;border:0;color:var(--ivory);font-size:34px;cursor:pointer; line-height:1; }
.drawer .monogram { font-family: var(--serif); font-style: italic; color: var(--sage-300); margin-bottom: 18px; font-size: 22px; letter-spacing:.1em;}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(160deg, var(--olive-600), var(--olive-800));
}
.hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 38%;
  --img-radius: 0;
}
.hero .hero-bg::part(frame) { border-radius: 0; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,48,28,.52) 0%, rgba(42,48,28,.30) 34%, rgba(42,48,28,.36) 66%, rgba(42,48,28,.72) 100%),
    radial-gradient(120% 90% at 50% 42%, transparent 40%, rgba(42,48,28,.40) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 120px var(--pad) 90px; max-width: 900px; }
.hero .pre {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .42em; text-transform: uppercase; opacity: .92; margin-bottom: 26px;
}
.hero .names {
  color: #fff;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(60px, 15vw, 168px);
  line-height: 0.92; letter-spacing: 0.005em;
  text-shadow: 0 4px 40px rgba(0,0,0,.25);
}
.hero .names .amp { font-style: italic; font-weight: 400; display:block; font-size: .42em; margin: .12em 0; color: var(--sage-200); }
.hero .phrase {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.6vw, 27px);
  font-weight: 400; opacity: .96; max-width: 620px; margin: 30px auto 0; line-height: 1.5;
}
.hero .meta {
  margin-top: 28px; display:flex; gap: 18px; align-items:center; justify-content:center;
  font-family: var(--sans); font-weight:600; letter-spacing:.22em; text-transform:uppercase; font-size: 13px;
}
.hero .meta .dot { width:5px;height:5px;border-radius:50%;background: var(--sage-200); }
.hero .hero-actions { margin-top: 40px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display:flex; flex-direction:column; align-items:center; gap:8px; color:#fff; opacity:.8;
  font-size: 10px; letter-spacing:.3em; text-transform:uppercase;
}
.scroll-cue .line { width:1px; height:46px; background: linear-gradient(#fff, transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100%{transform:scaleY(.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ---------- Countdown ---------- */
.countdown-band {
  background: var(--olive-800); color: var(--ivory);
  padding: clamp(34px,5vw,54px) var(--pad);
  text-align:center;
}
.countdown-band .cd-label { font-family:var(--sans); font-weight:600; letter-spacing:.34em; text-transform:uppercase; font-size:12px; color: var(--sage-300); margin-bottom: 22px; }
.countdown {
  display:flex; gap: clamp(16px,5vw,64px); justify-content:center; align-items:flex-start; flex-wrap:wrap;
}
.cd-unit { min-width: 64px; }
.cd-unit .num { font-family: var(--serif); font-size: clamp(40px,7vw,76px); line-height:1; color: var(--ivory); font-weight:500; font-variant-numeric: tabular-nums; }
.cd-unit .lab { font-size: 11px; letter-spacing:.24em; text-transform:uppercase; color: var(--sage-300); margin-top: 10px; }
.cd-sep { font-family: var(--serif); font-size: clamp(34px,6vw,64px); color: var(--olive-600); line-height:1; align-self:center; }

/* =========================================================
   HISTORIA — timeline
   ========================================================= */
.story-grid { display: grid; gap: clamp(50px, 8vw, 110px); }
.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.story-row.flip .story-text { order: 2; }
.story-photo { position: relative; }
.story-photo image-slot, .story-photo img { width: 100%; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.story-photo img { object-fit: cover; object-position: center; display:block; }
.story-photo image-slot[fit="contain"]::part(frame) { background: var(--ivory-2); }
.story-photo .tag {
  position:absolute; bottom: -16px; left: -16px; background: var(--ivory); color: var(--olive-700);
  font-family: var(--serif); font-style: italic; font-size: 22px; padding: 10px 22px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}
.story-row.flip .story-photo .tag { left: auto; right: -16px; }
.story-text .step-no { font-family: var(--serif); font-style: italic; color: var(--sage-400); font-size: 20px; margin-bottom: 6px; }
.story-text h3 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.story-text p { color: var(--muted); }

/* =========================================================
   DETALLES — cards
   ========================================================= */
.detalles { background: var(--ivory-2); }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); margin-top: 54px; }
.detail-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  padding: clamp(26px, 3vw, 38px); border-radius: 4px;
  display:flex; flex-direction:column; gap: 12px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.detail-card .ic { width: 30px; height: 30px; color: var(--olive-500); }
.detail-card h4 { font-size: 25px; }
.detail-card .k { font-size: 11px; letter-spacing:.22em; text-transform:uppercase; color: var(--sage-400); font-weight:600; }
.detail-card p { margin: 0; color: var(--muted); font-size: 16px; }
.detail-card .big { font-family: var(--serif); font-size: 30px; color: var(--olive-700); line-height:1.1; }
.detail-card.span2 { grid-column: span 2; }
.map-card { grid-column: 1 / -1; display:grid; grid-template-columns: 1.1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.map-card .map-copy { padding: clamp(28px,3.4vw,44px); display:flex; flex-direction:column; gap:14px; justify-content:center; }
.map-embed { min-height: 320px; background: var(--sage-100); position: relative; }
.map-embed iframe { width:100%; height:100%; border:0; min-height: 320px; filter: grayscale(.25) saturate(.9); }

/* =========================================================
   ITINERARIO
   ========================================================= */
.itinerario { background: var(--olive-900); color: var(--ivory); }
.itinerario .eyebrow { color: var(--sage-300); }
.itinerario .eyebrow::before, .itinerario .eyebrow.flank::after { background: var(--sage-400); }
.itinerario .section-title { color: var(--ivory); }
.itinerario .section-title em { color: var(--sage-300); }
.day-tabs { display:flex; gap: 10px; justify-content:center; margin: 40px 0 8px; flex-wrap:wrap; }
.day-tab {
  font-family: var(--sans); font-weight:600; font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  padding: 12px 24px; border-radius: 999px; cursor:pointer; color: var(--sage-300);
  background: transparent; border: 1px solid rgba(255,255,255,.18); transition: all .4s var(--ease);
}
.day-tab small { display:block; font-size:10px; letter-spacing:.1em; opacity:.7; margin-top:3px; }
.day-tab.active { background: var(--ivory); color: var(--olive-800); border-color: var(--ivory); }
.day-panel { display:none; }
.day-panel.active { display:block; animation: fadeUp .6s var(--ease); }
.timeline { max-width: 720px; margin: 44px auto 0; position: relative; }
.timeline::before { content:""; position:absolute; left: 13px; top: 8px; bottom: 8px; width:1px; background: rgba(255,255,255,.18); }
.tl-item { display:grid; grid-template-columns: 28px 1fr; gap: 26px; padding: 18px 0; position:relative; }
.tl-item .node { width: 11px; height:11px; border-radius:50%; background: var(--sage-300); margin-top: 9px; margin-left: 8px; box-shadow: 0 0 0 5px rgba(147,160,116,.18); }
.tl-item .time { font-family: var(--serif); font-size: 23px; color: var(--sage-300); }
.tl-item h4 { color: var(--ivory); font-size: 24px; margin: 2px 0 4px; }
.tl-item p { color: rgba(255,255,255,.66); margin:0; font-size: 15.5px; }

/* =========================================================
   RSVP
   ========================================================= */
.rsvp { background: var(--cream); }
.rsvp-card {
  background: var(--paper); border: 1px solid var(--line-soft); box-shadow: var(--shadow-md);
  max-width: 720px; margin: 48px auto 0; padding: clamp(28px, 4vw, 56px); border-radius: 6px;
}
.form-row { display:grid; gap: 22px; margin-bottom: 22px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field { display:flex; flex-direction:column; gap: 8px; }
.field label { font-size: 11px; letter-spacing:.2em; text-transform:uppercase; font-weight:600; color: var(--olive-600); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 4px; background: var(--ivory);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive-500); background:#fff; box-shadow: 0 0 0 4px rgba(110,120,83,.12);
}
.field .hint { font-size: 13px; color: var(--muted); letter-spacing: 0; text-transform: none; font-weight: 400; }
.field.invalid input, .field.invalid select { border-color: #b4543f; box-shadow: 0 0 0 4px rgba(180,84,63,.12); }
.field .err { color:#b4543f; font-size: 12.5px; display:none; }
.field.invalid .err { display:block; }

/* Honeypot anti-bots: fuera de pantalla (no display:none, que algunos bots ignoran). */
.hp-field { position:absolute !important; left:-9999px !important; top:-9999px !important; width:1px; height:1px; overflow:hidden; opacity:0; pointer-events:none; }

/* segmented yes/no */
.seg { display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg label {
  display:flex; align-items:center; justify-content:center; gap:10px; cursor:pointer;
  padding: 15px; border:1px solid var(--line); border-radius: 4px; background: var(--ivory);
  font-family: var(--serif); font-size: 21px; color: var(--muted); transition: all .35s var(--ease);
  letter-spacing: 0; text-transform: none; font-weight: 500;
}
.seg input { position:absolute; opacity:0; width:1px; height:1px; pointer-events:none; }
.seg label:hover { border-color: var(--sage-400); }
.seg input:checked + span { }
.seg label.sel { background: var(--olive-700); color: var(--ivory); border-color: var(--olive-700); }
.seg label.sel.no { background: var(--olive-500); border-color: var(--olive-500); }

/* stepper */
.stepper { display:flex; align-items:center; gap: 0; border:1px solid var(--line); border-radius:4px; width: fit-content; overflow:hidden; background: var(--ivory); }
.stepper button { width:48px; height:48px; border:0; background:transparent; font-size:22px; color: var(--olive-700); cursor:pointer; transition: background .25s; font-family: var(--serif); }
.stepper button:hover { background: var(--sage-100); }
.stepper input { width: 60px; text-align:center; border:0; border-inline:1px solid var(--line); border-radius:0; background:transparent; font-size:18px; padding: 13px 0; }
.stepper input:focus { box-shadow:none; }

.rsvp-events { display:flex; gap: 12px; flex-wrap:wrap; }
.chk {
  display:flex; align-items:center; gap:10px; cursor:pointer; padding: 11px 16px; border:1px solid var(--line);
  border-radius: 999px; font-size: 14px; color: var(--muted); transition: all .3s var(--ease); letter-spacing:0; text-transform:none; font-weight:500;
}
.chk input { width:16px; height:16px; accent-color: var(--olive-600); }
.chk.sel { border-color: var(--olive-600); background: var(--sage-100); color: var(--olive-800); }

.rsvp-submit { display:flex; align-items:center; gap: 18px; flex-wrap:wrap; margin-top: 8px; }
.rsvp-note { font-size: 13.5px; color: var(--muted); }

.rsvp-success {
  display:none; text-align:center; padding: 14px 0;
}
.rsvp-success.show { display:block; animation: fadeUp .6s var(--ease); }
.rsvp-success .check { width: 64px; height:64px; margin: 0 auto 18px; color: var(--olive-600); }
.rsvp-success h3 { font-size: 34px; margin-bottom: 10px; }
.rsvp-success p { color: var(--muted); max-width: 440px; margin-inline:auto; }
.hidden { display:none !important; }

/* =========================================================
   GALERÍA
   ========================================================= */
.gallery-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 48px;
}
.gallery-grid image-slot { width:100%; height:100%; box-shadow: var(--shadow-sm); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* =========================================================
   GUÍA / RECOMENDACIONES
   ========================================================= */
.guia { background: var(--ivory-2); }
.guide-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.5vw,28px); margin-top: 52px; }
.guide-card { background: var(--paper); border:1px solid var(--line-soft); padding: clamp(24px,3vw,34px); border-radius:4px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.guide-card .ic { width: 28px; height:28px; color: var(--olive-500); margin-bottom: 16px; }
.guide-card h4 { font-size: 24px; margin-bottom: 10px; }
.guide-card p { color: var(--muted); font-size: 15.5px; margin:0; }
.guide-card ul { margin: 6px 0 0; padding: 0; list-style:none; color: var(--muted); font-size: 15.5px; }
.guide-card ul li { padding: 7px 0; border-bottom: 1px solid var(--line-soft); display:flex; justify-content:space-between; gap:12px; }
.guide-card ul li:last-child { border-bottom: 0; }

.rec-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.5vw,26px); margin-top: 52px; }
.rec-card { background: var(--paper); border:1px solid var(--line-soft); border-radius:5px; overflow:hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.rec-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rec-card image-slot { width:100%; height: 200px; }
.rec-card .rec-body { padding: 22px 24px 26px; }
.rec-card .tagline { font-size: 11px; letter-spacing:.2em; text-transform:uppercase; color: var(--sage-400); font-weight:600; }
.rec-card h4 { font-size: 24px; margin: 6px 0 8px; }
.rec-card p { color: var(--muted); font-size: 15px; margin:0; }

.placeholder-note {
  display:inline-flex; align-items:center; gap:8px; font-family: var(--sans); font-size: 12px;
  letter-spacing:.06em; color: var(--gold); background: rgba(169,143,86,.10); padding: 5px 12px; border-radius: 999px; margin-top: 14px;
  font-weight: 600;
}

/* =========================================================
   REGALOS
   ========================================================= */
.regalos { background: var(--olive-800); color: var(--ivory); }
.regalos .eyebrow { color: var(--sage-300); }
.regalos .eyebrow::before, .regalos .eyebrow.flank::after { background: var(--sage-400); }
.regalos .section-title { color: var(--ivory); }
.regalos .section-title em { color: var(--sage-300); }
.regalos .lede { color: rgba(255,255,255,.72); }
.gift-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.gift-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.14); border-radius: 6px;
  padding: clamp(28px,3.2vw,40px); text-align:center; display:flex; flex-direction:column; align-items:center; gap: 14px;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.gift-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.gift-card .ic { width: 34px; height:34px; color: var(--sage-300); }
.gift-card h4 { color: var(--ivory); font-size: 26px; }
.gift-card p { color: rgba(255,255,255,.65); font-size: 15px; margin:0; }
.gift-card .acct { font-family: var(--sans); font-size: 14px; letter-spacing:.05em; color: var(--ivory); background: rgba(0,0,0,.18); padding: 8px 14px; border-radius: 4px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(20px,2.6vw,26px); color: var(--olive-800);
}
.faq-q .pm { flex:none; width: 26px; height:26px; position:relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: var(--olive-500); transition: transform .4s var(--ease); }
.faq-q .pm::before { top:50%; left:0; right:0; height:1.5px; transform: translateY(-50%); }
.faq-q .pm::after { left:50%; top:0; bottom:0; width:1.5px; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow:hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); margin: 0; max-width: 640px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--olive-900); color: var(--ivory); text-align:center; padding: clamp(64px,8vw,110px) var(--pad) 48px; }
.footer .monogram { font-family: var(--serif); font-style: italic; font-size: clamp(44px,8vw,86px); color: var(--ivory); }
.footer .f-date { font-family: var(--sans); letter-spacing:.32em; text-transform:uppercase; font-size: 13px; color: var(--sage-300); margin: 20px 0 6px; }
.footer .f-place { color: rgba(255,255,255,.6); font-size: 15px; }
.footer .f-hash { margin-top: 26px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--sage-300); }
.footer .f-contacts { margin-top: 36px; display:flex; gap: 30px; justify-content:center; flex-wrap:wrap; color: rgba(255,255,255,.7); font-size: 14px; }
.footer .f-contacts a { color: var(--ivory); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; }
.footer .f-credit { margin-top: 46px; font-size: 11.5px; letter-spacing:.18em; text-transform:uppercase; color: rgba(255,255,255,.4); }

/* =========================================================
   Animaciones scroll-reveal
   ========================================================= */
.reveal { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.armed { opacity: 0; transform: translateY(26px); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.armed { opacity:1 !important; transform:none !important; }
  .day-panel.active { animation: none; }
}
@keyframes fadeUp { from { opacity:0; transform: translateY(16px);} to {opacity:1; transform:none;} }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .detail-grid, .guide-grid, .rec-grid, .gift-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-card, .detail-card.span2 { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .story-row, .story-row.flip { grid-template-columns: 1fr; gap: 40px; }
  .story-row.flip .story-text { order: 0; }
  .story-photo { max-width: 440px; margin-inline:auto; width:100%; }
  .form-row.two { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .detail-grid, .guide-grid, .rec-grid, .gift-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .cd-sep { display:none; }
  .countdown { gap: 18px; }
}
