@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Great+Vibes&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #fbf7f1;
  --paper: rgba(255, 255, 255, 0.78);
  --paper2: rgba(255, 255, 255, 0.58);

  --text: #2d2622;
  --muted: rgba(45, 38, 34, 0.72);

  --dark: #0f0c0a;

  --gold: #c9a15b;
  --gold2: rgba(201, 161, 91, 0.22);

  --line: rgba(45, 38, 34, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.10);
  --radius: 22px;

  /* Paleta boda para secciones */
  --ivory: #fffaf5;
  --blush: #f7e6ea;
  --sage: #dfe8e2;
  --sage-strong: #cfe0d6;
  --champagne: #f6efe6;

  /* Fuentes lujo */
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: Cinzel, serif;
  --font-script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(201, 161, 91, 0.14), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(201, 161, 91, 0.10), transparent 62%),
    linear-gradient(180deg, #ffffff, var(--bg));
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  overflow: hidden;
}

.hero>.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 80px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(0deg, rgba(15, 12, 10, 0.68), rgba(15, 12, 10, 0.52)),
    var(--hero-bg);

  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;

  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 50% 35%, rgba(201, 161, 91, 0.18), transparent 58%),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.16), transparent 55%);
  pointer-events: none;
}

/* ===== FIX HERO MÓVIL - MOSTRAR AMBOS ROSTROS ===== */
@media (max-width: 768px) {
  .hero::before {
    background-position: center, center 40% !important;
  }
}

@media (max-width: 480px) {
  .hero::before {
    background-position: center, center 45% !important;
  }
}

/* ===== FIN FIX HERO MÓVIL ===== */

.heroCard {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);

  padding: 44px 18px;
  text-align: center;

  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18));
  border: 1px solid rgba(201, 161, 91, 0.30);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.heroCard::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.heroCard--minimal {
  /* versión minimal del hero */
}

.names {
  margin: 0 0 10px;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.95;
  color: #f7e2ac;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.subtitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(14px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.86);
}

/* Secciones */
.section {
  padding: 72px 0;
  position: relative;
  scroll-margin-top: 90px;
}

/* Intro debajo del hero */
.section--intro {
  margin-top: 0;
  padding-top: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .section--intro {
    padding-top: 40px;
  }
}

.section--ivory {
  background: linear-gradient(180deg, var(--ivory), #ffffff);
}

.section--blush {
  background: linear-gradient(180deg, var(--blush), var(--ivory));
}

.section--sageSoft {
  background: linear-gradient(180deg, var(--sage), var(--ivory));
}

.section--champagne {
  background: linear-gradient(180deg, var(--champagne), var(--ivory));
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), transparent);
  pointer-events: none;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 18px;
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 34px);
}

.p {
  margin: 10px auto 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.8;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 16px;
  border-radius: 999px;

  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;

  background: linear-gradient(180deg, rgba(201, 161, 91, 0.18), rgba(201, 161, 91, 0.06));
  border: 1px solid rgba(201, 161, 91, 0.30);
  color: rgba(45, 38, 34, 0.80);
}

.badge--lux {
  margin: 0 auto 14px;
}

/* Meta pills */
.metaRow {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.metaPill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(201, 161, 91, 0.18);
  color: rgba(45, 38, 34, 0.78);
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* Separador */
.sep {
  margin: 18px auto 8px;
  width: min(560px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 91, 0.55), transparent);
}

/* Botones genéricos */
.actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  border: 1px solid rgba(201, 161, 91, 0.42);
  background: linear-gradient(135deg, rgba(201, 161, 91, 1), rgba(154, 115, 52, 1));
  color: #ffffff;

  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;

  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201, 161, 91, 0.22), 0 18px 40px rgba(0, 0, 0, 0.15);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-color: rgba(201, 161, 91, 0.22);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  filter: none;
}

/* Nota */
.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* Grid */
.grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* Cards */
.card {
  position: relative;
  grid-column: span 12;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 161, 91, 0.18);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 161, 91, 0.28);
}

.luxPanel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border-color: rgba(201, 161, 91, 0.30);
  box-shadow: var(--shadow);
}

.luxPanel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(201, 161, 91, 0.18);
  pointer-events: none;
}

/* LUX PANEL ESPECIAL PARA EL COUNTDOWN */
.section--intro .luxPanel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px 40px;

  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.16), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.65), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.96));

  border-radius: 28px;
  border: 1px solid rgba(201, 161, 91, 0.70);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.section--intro .luxPanel::before {
  border-radius: 22px;
  border-color: rgba(201, 161, 91, 0.40);
}

.section--intro .luxPanel::after {
  content: "Falta para nuestro gran día";
  display: block;
  margin-bottom: 18px;

  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.68);
}

@media (min-width: 760px) {
  .card.half {
    grid-column: span 6;
  }

  .card.third {
    grid-column: span 4;
  }
}

.cardTitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.86);
}

.cardBody {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

/* Card con imagen */
.card--media {
  padding: 0;
}

.card--media .cardTitle,
.card--media .cardBody,
.card--media .small {
  padding-left: 16px;
  padding-right: 16px;
}

.card--media .cardTitle {
  padding-top: 14px;
}

.card--media .cardBody {
  padding-top: 6px;
}

.card--media .small {
  padding-top: 8px;
  padding-bottom: 16px;
}

/* Color "sage" */
.card--sage {
  background: linear-gradient(180deg, rgba(207, 224, 214, 0.78), rgba(255, 255, 255, 0.82));
  border-color: rgba(45, 38, 34, 0.10);
}

/* Imagen dentro del card */
.cardMedia {
  height: 180px;
  width: 100%;

  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.06)),
    var(--card-media);

  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cardMedia--small {
  height: 130px;
  border-radius: calc(var(--radius) - 6px);
  margin: 10px 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Listas */
.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-top: 1px dashed rgba(45, 38, 34, 0.18);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list li:first-child {
  border-top: none;
}

.time {
  min-width: 90px;
  font-weight: 800;
  color: rgba(45, 38, 34, 0.86);
}

.small {
  color: var(--muted);
  font-size: 13px;
}

/* ===== COUNTDOWN LUJO ===== */
.countdown {
  position: relative;
  margin: 0 auto;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;

  padding: 14px 22px;
  border-radius: 999px;

  /* Degradado animado */
  background: linear-gradient(
    90deg,
    #f8f1e6 0%,
    #f3e4cc 20%,
    rgba(201, 161, 91, 0.25) 40%,
    #f8f1e6 60%,
    rgba(201, 161, 91, 0.2) 80%,
    #e9d5b8 100%
  );
  background-size: 200% 100%;
  animation: countdownWave 5s ease-in-out infinite;

  border: 1px solid rgba(201, 161, 91, 0.85);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.40);
}

/* Animación de onda para el countdown */
@keyframes countdownWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.countdown::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.cdItem {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.cdItem+.cdItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.75),
      rgba(201, 161, 91, 0.60),
      rgba(255, 255, 255, 0.75));
}

/* Números principales */
.cdItem span {
  display: block;
  min-width: 72px;

  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .16em;

  color: #3a3029;
}

/* Etiquetas */
.cdItem small {
  display: block;
  margin-top: 4px;

  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;

  color: rgba(45, 38, 34, 0.70);
}

/* Countdown móvil */
@media (max-width: 600px) {
  .countdown {
    padding: 12px 16px;
  }

  .cdItem {
    padding: 0 10px;
  }

  .cdItem span {
    min-width: 52px;
    font-size: 22px;
    letter-spacing: .14em;
  }

  .cdItem small {
    font-size: 10px;
    letter-spacing: .18em;
  }
}

/* Forms */
.form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(201, 161, 91, 0.16);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  outline: none;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(201, 161, 91, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 161, 91, 0.16);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

/* Footer */
.footer {
  padding: 34px 0 46px;
  text-align: center;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent);
}

.toast {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(201, 161, 91, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Respeta usuarios con menos animación */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Tarjeta de ubicación */
.card--locationLux {
  grid-column: span 12;
  text-align: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(207, 224, 214, 0.40), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 230, 0.96));
  border-color: rgba(201, 161, 91, 0.55);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.card--locationLux .locationBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(201, 161, 91, 0.45);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.78);
}

.cardTitle--center,
.cardBody--center {
  text-align: center;
}

/* ==== SECCIÓN LUGAR CON FOTO ==== */
.section--location {
  position: relative;
  padding: 80px 0;
  scroll-margin-top: 90px;

  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    var(--location-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
}

.sectionHeader--location .kicker {
  color: rgba(255, 255, 255, 0.85);
}

.sectionHeader--location .h2 {
  color: #ffffff;
}

.sectionHeader--location .p {
  color: rgba(255, 255, 255, 0.90);
}

.locationStrip {
  margin-top: 28px;
  text-align: center;
}

.locationStrip .locationBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 161, 91, 0.55);

  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.78);

  margin-bottom: 10px;
}

.locationTitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  color: #ffffff;
}

.locationText {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

/* ========== ITINERARIO LUJO ========== */
.section--itinerary {
  position: relative;
  overflow: hidden;
  color: var(--text);

  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.40), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(180deg, var(--champagne), var(--ivory));

  background-size: 160% 160%, 160% 160%, 100% 100%;
  background-position: 0% 0%, 100% 100%, center;

  animation: itineraryLux 12s ease-in-out infinite alternate;
}

.itineraryShell {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 0 34px;
  position: relative;
  z-index: 1;
}

.itineraryLogo {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 91, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 235, 213, 0.96));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.itineraryLogoMark {
  font-size: 18px;
  color: #c9a15b;
}

.itineraryScript {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(40px, 5.2vw, 54px);
  color: #c9a15b;
}

.itineraryHeading {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(45, 38, 34, 0.80);
}

.itineraryNote {
  margin: 6px auto 18px;
  max-width: 44ch;
  font-size: 13px;
  color: var(--muted);
}

.itineraryList {
  margin-top: 10px;
}

.itineraryItem {
  padding: 10px 0 6px;
}

.itineraryDivider {
  width: 140px;
  margin: 0 auto 8px;
  border-top: 1px solid rgba(201, 161, 91, 0.70);
}

.itineraryDivider--end {
  margin-top: 12px;
}

.itineraryTime {
  font-family: var(--font-display);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(45, 38, 34, 0.86);
}

.itineraryMain {
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(45, 38, 34, 0.92);
}

.itinerarySub {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.62);
}

@media (max-width: 600px) {
  .itineraryShell {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .itineraryDivider {
    width: 100px;
  }
}

.section--itinerary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(201, 161, 91, 0.55) 40%,
      transparent 60%,
      transparent 100%);
  background-size: 200% 200%;
  mix-blend-mode: soft-light;

  animation: itineraryGlow 6s ease-in-out infinite;
}

@keyframes itineraryGlow {
  0% {
    background-position: 0% 50%;
    opacity: 0.3;
  }

  50% {
    background-position: 100% 50%;
    opacity: 0.9;
  }

  100% {
    background-position: 0% 50%;
    opacity: 0.3;
  }
}

@keyframes itineraryLux {
  0% {
    background-position: 0% 0%, 100% 100%, center;
  }

  50% {
    background-position: 50% 20%, 60% 80%, center;
  }

  100% {
    background-position: 100% 0%, 0% 100%, center;
  }
}

/* Botón de ubicación genérico */
.locationBadge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 28px;
  margin: 18px auto 14px;

  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;

  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: #3a3029;

  background:
    linear-gradient(135deg, #fdf6ea, #f1dfbe);
  border: 1px solid rgba(201, 161, 91, 0.90);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.70);

  overflow: hidden;
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    filter .16s ease;

  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.locationBadge::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 40%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

.locationBadge:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  filter: brightness(1.03);
}

.locationBadge:hover::before {
  animation: btnShine 1.4s ease-out forwards;
}

.locationBadge:focus,
.locationBadge:active {
  outline: none;
}

.locationBadge:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(201, 161, 91, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

@keyframes btnShine {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

/* Countdown móvil más curvo */
@media (max-width: 480px) {
  .section--intro .luxPanel {
    padding: 22px 10px 28px;
  }

  .countdown {
    padding: 10px 16px;
    width: min(100%, 340px);
    margin: 0 auto;
    flex-wrap: nowrap;
  }

  .cdItem {
    padding: 0 8px;
    flex: 0 0 auto;
  }

  .cdItem+.cdItem::before {
    display: block;
  }

  .cdItem span {
    min-width: auto;
    font-size: 20px;
    letter-spacing: .12em;
  }

  .cdItem small {
    font-size: 9px;
    letter-spacing: .16em;
  }
}

/* ========== DRESS CODE LUJO ========== */
.sectionHeader--dresscode .kicker {
  letter-spacing: .24em;
}

.sectionHeader--dresscode .h2 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.dressGrid {
  margin-top: 26px;
}

.cardDress {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.14), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.96), transparent 60%),
    linear-gradient(180deg, #fdf6ea, #f3e2c7);
  border-color: rgba(201, 161, 91, 0.75);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  padding: 22px 20px 20px;
  position: relative;
}

.cardDress::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.cardDress--damas .dressCircle {
  color: #b6776a;
  border-color: rgba(201, 161, 91, 0.9);
}

.cardDress--caballeros .dressCircle {
  color: #3b4358;
  border-color: rgba(201, 161, 91, 0.9);
}

.dressHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.dressCircle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 91, 0.85);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(228, 238, 231, 0.96));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.80);
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .20em;
  color: #c9a15b;
}

.dressTitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.90);
}

.dressSubtitle {
  margin: 3px 0 0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.62);
}

.dressBody {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.cardDress:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.20);
  border-color: rgba(201, 161, 91, 0.80);
}

@media (max-width: 760px) {
  .cardDress.half {
    grid-column: span 12;
  }

  .dressGrid {
    row-gap: 16px;
  }
}

/* ========== CONFIRMACIÓN DE ASISTENCIA LUJO ========== */
.section--confirm {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(247, 230, 236, 0.40), transparent 55%),
    linear-gradient(180deg, var(--champagne), var(--ivory));
}

.confirmShell {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 0 36px;
  position: relative;
}

.confirmTitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(45, 38, 34, 0.86);
}

.confirmSubtitle {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}

.confirmActions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.confirmBtn {
  position: relative;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid rgba(201, 161, 91, 0.9);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow: hidden;

  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease,
    border-color .18s ease;
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);

  animation: confirmFloat 1s ease-out both;
}

.confirmBtn--primary {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #d3aa64, #b8873d);
  color: #fff;
}

.confirmBtn--ghost {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(135deg, #f9f0df, #e4d0af);
  color: #3a3029;
  text-decoration: underline;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.70);
}

.confirmBtn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.95) 45%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.confirmBtn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.70);
  filter: brightness(1.03);
}

.confirmBtn:hover::before {
  opacity: 1;
  animation: confirmShine 1.4s ease-out forwards;
}

.confirmBtn:active {
  transform: translateY(0);
  filter: brightness(0.97);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.60);
  outline: none;
}

.confirmBtn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(201, 161, 91, 0.45),
    0 20px 55px rgba(0, 0, 0, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.confirmActions .confirmBtn:nth-child(2) {
  animation-delay: .08s;
}

.confirmActions .confirmBtn:nth-child(3) {
  animation-delay: .16s;
}

@keyframes confirmShine {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

@keyframes confirmFloat {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .confirmShell {
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .confirmTitle {
    font-size: 14px;
    letter-spacing: .16em;
  }

  .confirmSubtitle {
    font-size: 13px;
  }
}

/* Bloque dress code dentro del mismo fondo del itinerario */
.dresscodeShell {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* Antes #dresscode tenía su propio fondo: lo apagamos para que herede el del itinerario */
#dresscode {
  background: transparent;
}

#dresscode::after {
  display: none;
}

/* =========================================================
   CARRUSEL (TU ESTRUCTURA FINAL): .photoCarousel / .photoSlide / .photoDot
   1 FOTO GRANDE CENTRADA + PUNTITOS ABAJO (como tu ejemplo)
   ========================================================= */

.photoCarousel {
  margin-top: 18px;
  width: 100%;
}

.photoFrame {
  position: relative !important;
  width: 100%;
  max-width: 680px;
  margin: 14px auto 0;
  overflow: hidden;

  /* Desktop / tablet */
  height: clamp(260px, 42vw, 420px);

  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.photoFrame .photoSlide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transition: opacity .55s ease;
}

.photoFrame .photoSlide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.photoFrame .photoSlide img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.photoDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.photoDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(45, 38, 34, 0.25);
  background: rgba(45, 38, 34, 0.12);
  padding: 0;
  cursor: pointer;
}

.photoDot.is-active {
  width: 22px;
  background: rgba(45, 38, 34, 0.28);
}

/* ================================
   CARRUSEL TIRA FULL DENTRO DEL PANEL
   (ocupa todo el rectángulo del luxPanel)
================================== */

/* el panel del countdown será el "contenedor" del carrusel */
.section--intro .luxPanel {
  position: relative;
  overflow: hidden;
  /* importante: para que el carrusel no se salga del rectángulo */
}

/* ================================
   CARRUSEL TIRA FULL DENTRO DEL PANEL
   AUTO-SCROLL INFINITO + LIGHTBOX
================================== */

.stripCarousel {
  margin-top: 18px;
  width: 100%;

  /* ocultamos lo que se sale, no scrollbars */
  overflow: hidden;

  padding: 12px 18px 16px;

  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);

  --strip-gap: 14px;
  --strip-duration: 70s;
  /* velocidad del carrusel (baja = más lento) */
}

/* tira de fotos animada */
.stripTrack {
  display: flex;
  gap: var(--strip-gap);
  width: max-content;
  padding: 0;

  /* 🔥 animación infinita izquierda */
  animation: stripScroll var(--strip-duration) linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* al pasar el mouse en desktop, pausamos (detalle pro) */
.stripCarousel:hover .stripTrack {
  animation-play-state: paused;
}

/* tarjetas verticales */
.stripItem {
  flex: 0 0 auto;
  width: 190px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  /* porque se puede hacer click para ver en grande */
}

.stripItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 🔁 scroll infinito perfecto: mitad 1 + mitad 2 en el HTML */
@keyframes stripScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--strip-gap) / 2)), 0, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stripCarousel {
    --strip-gap: 10px;
  }

  .stripItem {
    width: 160px;
    height: 230px;
  }
}

@media (max-width: 480px) {
  .stripCarousel {
    padding: 10px 10px 14px;
    --strip-gap: 10px;
  }

  .stripItem {
    width: 140px;
    height: 210px;
  }
}

/* Respeta reduce motion: solo quitamos la máscara para que no moleste */
@media (prefers-reduced-motion: reduce) {
  .stripCarousel {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ========== LIGHTBOX / MODAL FOTO GRANDE ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  /* oculto por defecto */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
  /* se muestra cuando tenga esta clase */
}

.lightbox__img {
  max-width: min(900px, 94vw);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.85);
}

/* Botón de cierre (X) */
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* Flechas izquierda/derecha */
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__arrow--prev {
  left: 16px;
}

.lightbox__arrow--next {
  right: 16px;
}

/* Animaciones bonitas al cambiar de foto */
.lightbox__img--from-left {
  animation: lightboxSlideFromLeft .35s ease;
}

.lightbox__img--from-right {
  animation: lightboxSlideFromRight .35s ease;
}

@keyframes lightboxSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes lightboxSlideFromRight {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* en móvil un poco menos redondeado y flechas más pequeñas */
@media (max-width: 480px) {
  .lightbox__img {
    border-radius: 14px;
  }

  .lightbox__arrow {
    width: 34px;
    height: 34px;
  }
}

/* Mensaje "No Niños" */
.noKidsMsg {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.noKidsMsg__title {
  font-family: var(--font-script);
  font-size: 34px;
  color: #c9a15b;
  margin-bottom: 14px;
}

.noKidsMsg__body {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a3029;
  line-height: 1.9;
}

.noKidsMsg__sep {
  margin: 16px auto;
  border: 0;
  border-top: 2px dotted rgba(201, 161, 91, 0.45);
  width: 100%;
  max-width: 320px;
  height: 0;
}

@media (max-width: 480px) {
  .noKidsMsg__title {
    font-size: 32px;
  }

  .noKidsMsg__body {
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.8;
  }

  .noKidsMsg__sep {
    max-width: 260px;
  }
}

/* =========================================
   LUXURY CONFIRMATION CARD
   ========================================= */
.rsvpFinal--lux {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 161, 91, 0.15), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(201, 161, 91, 0.15), transparent 50%),
    linear-gradient(180deg, #fffcf6, #fbf2e0);
  padding: 30px 20px;
  border: 1px solid rgba(201, 161, 91, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.calBtnRow {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.calBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(201, 161, 91, 0.3);
  color: #3a3029;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.calBtn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 161, 91, 0.6);
}

.calBtn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.luxConfirmBorder {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(201, 161, 91, 0.45);
  border-radius: 16px;
  pointer-events: none;
}

.luxConfirmIcon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  background: #c9a15b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(201, 161, 91, 0.4);
}

.luxConfirmTitle {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a15b;
  margin-bottom: 6px;
  font-weight: 700;
}

.luxConfirmSubtitle {
  font-family: var(--font-script);
  font-size: 28px;
  color: #3a3029;
  margin: 8px 0 12px;
  line-height: 1.2;
}

.luxConfirmBody {
  font-size: 14px;
  color: rgba(58, 48, 41, 0.85);
  line-height: 1.6;
  margin-bottom: 18px;
}

.luxConfirmDate {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 99px;
  border: 1px solid rgba(201, 161, 91, 0.3);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d2622;
  font-weight: 600;
}

/* =========================================
   LUXURY CALENDAR WIDGET
   ========================================= */
.luxCalendar {
  max-width: 320px;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(201, 161, 91, 0.15);
  text-align: center;
  position: relative;
}

.luxCalendar__header {
  margin-bottom: 14px;
  border-bottom: 1px dotted rgba(201, 161, 91, 0.4);
  padding-bottom: 10px;
}

.luxCalendar__sub {
  display: block;
  font-family: var(--font-script);
  font-size: 20px;
  color: #dabb85;
  margin-bottom: 2px;
}

.luxCalendar__month {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  font-weight: 700;
}

.luxCalendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: var(--font-display);
  font-size: 12px;
  color: #5a5a5a;
}

.luxCalendar__dayName {
  font-size: 9px;
  color: #c9a15b;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.luxCalendar__day {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-variant-numeric: tabular-nums;
  z-index: 1;
}

.luxCalendar__day--empty {
  opacity: 0.2;
  font-size: 12px;
}

/* Día marcado (27) */
.luxCalendar__day.is-active {
  font-weight: 700;
  color: #fff;
}

.luxCalendar__day.is-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: #c9a15b;
  border-radius: 8px;
  z-index: -1;
  box-shadow: 0 4px 12px rgba(201, 161, 91, 0.35);
  animation: luxDayPulse 2s ease-in-out infinite;
}

@keyframes luxDayPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 4px 12px rgba(201, 161, 91, 0.35);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 20px rgba(201, 161, 91, 0.55);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 4px 12px rgba(201, 161, 91, 0.35);
  }
}

@media (max-width: 768px) {

  /* Disable heavy backdrop-filters */
  .heroCard,
  .metaPill,
  .toast,
  .luxIntro__card,
  .musicToggleHidden,
  #luxModal.luxModalBackdrop,
  .luxModal {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Adjust backgrounds to smooth solid/semi-transparent to compensate for lack of blur */
  .heroCard {
    background: rgba(15, 12, 10, 0.85) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }

  .metaPill {
    background: rgba(255, 255, 255, 0.92) !important;
  }

  /* Disable expensive continuous animations */
  .section--itinerary {
    animation: none !important;
    background-position: center !important;
  }

  .names,
  .subtitle,
  .itineraryLux {
    will-change: transform, opacity;
  }

  /* Simplify box-shadows for performance */
  .card,
  .luxPanel,
  .heroCard,
  .countdown {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }
}

/* Flechas del carrusel grande */
.photoArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  padding: 0;
}

.photoArrow--prev {
  left: 12px;
}

.photoArrow--next {
  right: 12px;
}

.photoArrow:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(201, 161, 91, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.35);
}

.photoArrow:active {
  transform: translateY(-50%) scale(0.96);
}

/* En móviles un poco más pequeñas y un pelín más abajo */
@media (max-width: 600px) {
  .photoArrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
    top: 55%;
  }
}

/* ============================================
   ✅ SEPARACIÓN ELEGANTE MÓVIL - CARRUSEL → UBICACIÓN
   Diseño premium con transición animada en colores del tema
   ============================================ */
@media (max-width: 480px) {

  /* Reducir espacio superior de la sección intro */
  .section--intro {
    padding-top: 12px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: linear-gradient(180deg, var(--ivory), var(--champagne)) !important;
    position: relative;
  }

  /* Panel del countdown más compacto */
  .section--intro .luxPanel {
    margin-bottom: 12px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  /* Carrusel más pegado al countdown */
  .photoCarousel {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Foto a full screen en móvil */
  .photoFrame {
    max-width: 100%;
    height: 72vh;
    margin: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .section--intro .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* ✨ Separador animado con colores del tema - SIN espacio extra */
  .section--intro::after {
    content: "✧  ✧  ✧";
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    margin-top: 0;
    
    /* Ornamento decorativo */
    font-size: 14px;
    color: rgba(201, 161, 91, 0.95);
    letter-spacing: 0.3em;
    text-shadow: 
      0 2px 12px rgba(201, 161, 91, 0.5),
      0 0 20px rgba(201, 161, 91, 0.3);
    
    /* Degradado animado en tonos del tema */
    background: linear-gradient(
      90deg,
      var(--champagne) 0%,
      #f3e4cc 15%,
      rgba(201, 161, 91, 0.25) 30%,
      #f6efe6 45%,
      rgba(201, 161, 91, 0.35) 60%,
      #f3e4cc 75%,
      var(--champagne) 100%
    );
    background-size: 200% 100%;
    animation: separatorWave 4s ease-in-out infinite;
  }

  /* SIN línea decorativa extra - quitada para eliminar espacio */
  .photoCarousel::after {
    display: none !important;
  }

  /* Sección ubicación */
  .section--location {
    padding-top: 45px !important;
    margin-top: 0 !important;
    position: relative;
  }

  /* Borde superior dorado sutil */
  .section--location::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(201, 161, 91, 0.4) 20%,
      rgba(201, 161, 91, 0.7) 50%,
      rgba(201, 161, 91, 0.4) 80%,
      transparent 100%
    );
    z-index: 4;
    pointer-events: none;
  }

  /* Ocultar los puntitos del carrusel en móvil */
  .photoDots {
    display: none !important;
  }

  /* Flechas siempre visibles en móvil */
  .photoArrow {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  .photoArrow.is-hidden {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
  }
}

/* 🌊 Animación de onda para el separador */
@keyframes separatorWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ✨ Animación shimmer para la línea dorada */
@keyframes lineShimmer {
  0% {
    background-position: -100% 0;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 0;
    opacity: 1;
  }
  100% {
    background-position: -100% 0;
    opacity: 0.6;
  }
}

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .section--intro::after,
  .photoCarousel::after,
  .countdown {
    animation: none !important;
  }
}

/* 🔔 Animación auto para el botón de ubicación */
.locationStrip .locationBadge,
.card--locationLux .locationBadge {
  animation: locationBounce 1.8s ease-in-out infinite;
}

/* Cuando el usuario pasa el mouse o lo enfoca, paramos la animación */
.locationStrip .locationBadge:hover,
.locationStrip .locationBadge:focus-visible,
.card--locationLux .locationBadge:hover,
.card--locationLux .locationBadge:focus-visible {
  animation: none;
}

/* Bounce / flotando */
@keyframes locationBounce {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 14px 35px rgba(0, 0, 0, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.70);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.30),
      inset 0 0 0 1px rgba(255, 255, 255, 0.90);
  }
}

/* Si el usuario tiene "reducir movimiento" activado */
@media (prefers-reduced-motion: reduce) {
  .locationStrip .locationBadge,
  .card--locationLux .locationBadge {
    animation: none !important;
  }
}

/* ==========================
   MESA DE REGALOS LUJO
   ========================== */

.sectionHeader--gifts .h2 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.giftGrid {
  margin-top: 26px;
}

.giftCard {
  position: relative;
  padding: 22px 20px 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.98), transparent 55%),
    linear-gradient(180deg, #fdf6ea, #f3e2c7);
  border-color: rgba(201, 161, 91, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.giftCard::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.giftHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.giftTag {
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 161, 91, 0.7);
  color: rgba(45, 38, 34, 0.78);
}

.giftName {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.92);
}

.giftBank {
  margin: 2px 0 0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.62);
}

.giftBody {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.giftLine {
  margin: 4px 0;
}

.giftLabel {
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(45, 38, 34, 0.80);
}

.giftValue {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #2d2622;
}

.giftQR {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 161, 91, 0.35);
  text-align: center;
}

.giftQR img {
  max-width: 160px;
  width: 100%;
  border-radius: 14px;
  display: block;
  margin: 0 auto 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.giftQRNote {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(45, 38, 34, 0.65);
}

.giftFooterNote {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Tonos ligeramente distintos para cada tarjeta */
.giftCard--bride {
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 230, 236, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.98), transparent 55%),
    linear-gradient(180deg, #fff7fb, #f5e3ef);
}

.giftCard--groom {
  background:
    radial-gradient(circle at 0% 0%, rgba(207, 224, 214, 0.40), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.98), transparent 55%),
    linear-gradient(180deg, #f3f9f4, #e4f1e7);
}

@media (max-width: 760px) {
  .giftCard.half {
    grid-column: span 12;
  }

  .giftQR img {
    max-width: 200px;
  }
}

.giftQRBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 91, 0.9);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #d3aa64, #b8873d);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.giftQRBtn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.giftQRBtn:active {
  transform: translateY(0);
}

/* Para ocultar las flechas del lightbox cuando se usa para QR */
.lightbox__arrow.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ============================================
   SECCIÓN PLAYLIST - DISEÑO ELEGANTE
   ============================================ */
.section--playlist {
  background: 
    radial-gradient(circle at 0% 100%, rgba(201, 161, 91, 0.12), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(247, 230, 234, 0.35), transparent 50%),
    linear-gradient(180deg, var(--blush), var(--ivory));
}

.playlistHeader {
  text-align: center;
  margin-bottom: 32px;
}

.playlistIcon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 60%),
    linear-gradient(135deg, #fdf6ea, #f1dfbe);
  border: 1px solid rgba(201, 161, 91, 0.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a15b;
}

.playlistIcon svg {
  width: 28px;
  height: 28px;
}

/* Cards de Playlist */
.playlistCard {
  position: relative;
  background: 
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(253, 246, 234, 0.9));
  border: 1px solid rgba(201, 161, 91, 0.4);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.playlistCard::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px solid rgba(201, 161, 91, 0.2);
  pointer-events: none;
}

.playlistCard__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.playlistCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 161, 91, 0.15), rgba(201, 161, 91, 0.05));
  border: 1px solid rgba(201, 161, 91, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a15b;
  flex-shrink: 0;
}

.playlistCard__icon svg {
  width: 22px;
  height: 22px;
}

.playlistCard__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.9);
}

.playlistCard__subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Form de Playlist */
.playlistForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.playlistInput {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(201, 161, 91, 0.25);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.playlistInput:focus {
  border-color: rgba(201, 161, 91, 0.6);
  box-shadow: 0 0 0 4px rgba(201, 161, 91, 0.12);
  background: #fff;
}

.playlistInput::placeholder {
  color: rgba(45, 38, 34, 0.45);
}

.playlistBtn {
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 91, 0.8);
  background: linear-gradient(135deg, #d3aa64, #b8873d);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.playlistBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.playlistBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.playlistBtn svg {
  width: 16px;
  height: 16px;
}

.playlistNote {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.playlistNote svg {
  width: 14px;
  height: 14px;
  color: rgba(201, 161, 91, 0.7);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card de Tip */
.playlistTip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}

.playlistTip__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 161, 91, 0.2), rgba(201, 161, 91, 0.08));
  border: 1px solid rgba(201, 161, 91, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a15b;
}

.playlistTip__icon svg {
  width: 24px;
  height: 24px;
}

.playlistTip__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.85);
}

.playlistTip__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.playlistTip__highlight {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(201, 161, 91, 0.12);
  border: 1px solid rgba(201, 161, 91, 0.25);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(45, 38, 34, 0.75);
}

/* ============================================
   FOOTER ELEGANTE
   ============================================ */
.footer {
  padding: 48px 0 40px;
  text-align: center;
  color: var(--muted);
  background: linear-gradient(180deg, var(--champagne), rgba(255, 255, 255, 0.95));
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 91, 0.4), transparent);
}

.footerContent {
  max-width: 400px;
  margin: 0 auto;
}

.footerBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(253, 246, 234, 0.85));
  border: 1px solid rgba(201, 161, 91, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(45, 38, 34, 0.8);
}

.footerBadge svg {
  width: 16px;
  height: 16px;
  color: #c9a15b;
}

.footerCouple {
  margin: 16px 0 0;
  font-family: var(--font-script);
  font-size: 28px;
  color: #c9a15b;
}

.footerCopyright {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footerCopyright svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.footerDivider {
  width: 60px;
  height: 1px;
  margin: 20px auto;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 91, 0.5), transparent);
}

.footerLinks {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.footerLink {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 161, 91, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 38, 34, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footerLink:hover {
  background: #fff;
  border-color: rgba(201, 161, 91, 0.5);
  color: #c9a15b;
  transform: translateY(-2px);
}

.footerLink svg {
  width: 16px;
  height: 16px;
}
/* ============================================
   ESTILOS MOVIDOS DESDE INDEX.PHP
   ✅ OPTIMIZADO: Todo el CSS inline consolidado
   ============================================ */

/* Hero responsive overrides */
@media (min-width: 769px) {
  .hero::before {
    background-position: center, center 40% !important;
  }
}

@media (max-width: 768px) {
  .hero::before {
    transform: none !important;
    background-size: cover, 175% auto !important;
    background-position: center, center 95% !important;
  }
}

/* RSVP Styles */
.confirmName {
  display: inline-block;
  margin-left: .35rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.rsvpStatus {
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .92;
  text-align: center;
}

.rsvpFinal {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(0, 0, 0, .06);
  display: none;
  text-align: center;
}

.rsvpFinal.show {
  display: block;
}

.rsvpFinal .big {
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rsvpFinal .small {
  opacity: .9;
  line-height: 1.45;
}

/* Modal Lujo */
#luxModal.luxModalBackdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 999999 !important;
  overflow: hidden;
}

#luxModal.luxModalBackdrop.show {
  display: flex !important;
}

#luxModal .luxModal {
  width: min(560px, 100%);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  transition: all .28s ease;
}

#luxModal.show .luxModal {
  transform: translateY(0);
  opacity: 1;
}

.luxModalHeader {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.luxModalHeader .mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

.luxModalHeader .closeBtn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.luxModalBody {
  padding: 18px 20px 20px;
}

.luxTitle {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: .02em;
}

.luxText {
  margin: 0;
  opacity: .92;
  line-height: 1.55;
}

.luxModalFooter {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.luxBtn {
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.luxBtnPrimary {
  background: #111;
  color: #fff;
}

.luxBtnGhost {
  background: rgba(0, 0, 0, .06);
  color: #111;
}

.fadeOut {
  opacity: 0;
  transform: translateY(6px);
  transition: all .22s ease;
  pointer-events: none;
  height: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

/* Modal Mensaje Emotivo */
#messageModal.luxModalBackdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 999998 !important;
  overflow: hidden;
}

#messageModal.luxModalBackdrop.show {
  display: flex !important;
}

#messageModal .msgModalCard {
  width: min(480px, 100%);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  border: 1px solid rgba(201, 161, 91, 0.35);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  transition: all .28s ease;
}

#messageModal.show .msgModalCard {
  transform: translateY(0);
  opacity: 1;
}

.msgModalHeader {
  padding: 20px 20px 0;
  text-align: center;
}

.msgModalIcon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(253, 246, 234, 0.95), rgba(241, 223, 190, 0.88));
  border: 1px solid rgba(201, 161, 91, 0.55);
  color: #c9a15b;
  font-size: 22px;
}

.msgModalTitle {
  font-family: var(--font-script);
  font-size: clamp(26px, 4vw, 32px);
  color: #c9a15b;
  margin: 0 0 6px;
}

.msgModalSubtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin: 0 0 16px;
  line-height: 1.45;
}

.msgModalBody {
  padding: 0 20px 20px;
}

.msgTextarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(201, 161, 91, 0.4);
  background: rgba(253, 250, 245, 0.8);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.msgTextarea:focus {
  border-color: rgba(201, 161, 91, 0.75);
  box-shadow: 0 0 0 3px rgba(201, 161, 91, 0.15);
}

.msgTextarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.msgCharCount {
  text-align: right;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 6px;
}

.msgModalActions {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.msgBtnPrimary {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #d3aa64, #b8873d);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.msgBtnPrimary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.msgBtnPrimary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.msgBtnSkip {
  width: 100%;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s ease;
}

.msgBtnSkip:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  #messageModal.luxModalBackdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.85) !important;
  }
}

/* Itinerario: día central destacado */
.itineraryNote--highlight {
  margin: 14px auto 22px;
  max-width: 520px;
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(135deg, rgba(253, 246, 234, 0.95), rgba(241, 223, 190, 0.92));
  border: 1px solid rgba(201, 161, 91, 0.70);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.itineraryHighlightKicker {
  display: block;
  font-family: var(--font-display);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(45, 38, 34, 0.72);
  margin-bottom: 6px;
}

.itineraryHighlightDate {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.05;
  color: #c9a15b;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
  .itineraryNote--highlight {
    padding: 16px 14px;
    border-radius: 16px;
  }
}

@media (min-width: 769px) {
  .hero {
    align-items: flex-end;
    padding: 70px 0 90px;
  }

  .hero>.container {
    align-items: flex-end;
    min-height: calc(100vh - 160px);
  }

  .heroCard {
    margin-bottom: 28px;
  }
}

/* FIX: que no se corte la parte superior de nombres */
.heroCard {
  padding-top: 20px;
  overflow: visible;
}

@keyframes heroCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* NOMBRES: shimmer dorado + glow */
.names {
  position: relative;
  display: inline-block;
  line-height: 1.40;
  background-image: linear-gradient(90deg,
      rgba(201, 161, 91, 0.55) 0%,
      rgba(255, 236, 198, 1) 30%,
      rgba(201, 161, 91, 0.95) 55%,
      rgba(255, 236, 198, 1) 75%,
      rgba(201, 161, 91, 0.55) 100%);
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0.22);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  animation: heroNameShimmer 3.4s ease-in-out infinite;
}

@keyframes heroNameShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* FECHA: entrada suave + brillo respirando */
.subtitle {
  animation: heroSubtitleIn 900ms ease-out both, heroSubtitleGlow 3.6s ease-in-out infinite;
}

@keyframes heroSubtitleIn {
  from {
    opacity: 0;
    transform: translateY(8px);
    letter-spacing: 0.28em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.22em;
  }
}

@keyframes heroSubtitleGlow {
  0%, 100% {
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
    opacity: .86;
  }
  50% {
    text-shadow: 0 14px 40px rgba(201, 161, 91, 0.25), 0 10px 30px rgba(0, 0, 0, 0.45);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heroCard, .names, .subtitle {
    animation: none !important;
  }
}

/* MÓVIL: Nombres en una sola línea */
@media (max-width: 768px) {
  .names {
    white-space: nowrap;
    font-size: clamp(44px, 9vw, 66px);
    line-height: 1.05;
  }
}

/* FIX MÓVIL: no recortar arriba/abajo */
@media (max-width: 768px) {
  .heroCard {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
    overflow: visible !important;
  }

  .names {
    line-height: 1.12 !important;
    padding-top: 8px !important;
    padding-bottom: 10px !important;
    -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.20);
  }

  .subtitle {
    margin-top: 12px !important;
    padding-bottom: 6px !important;
  }
}

/* INTRO LUJO (PORTADA "ABRIR INVITACIÓN") */
.appRoot {
  min-height: 100vh;
  transition: opacity .85s ease, filter .85s ease, transform .85s ease;
}

.appRoot.is-locked {
  opacity: 0;
  filter: blur(10px) saturate(1.05);
  transform: scale(1.02);
  pointer-events: none;
  user-select: none;
}

.appRoot.is-enter {
  opacity: 1;
  filter: none;
  transform: none;
  pointer-events: auto;
  user-select: auto;
}

.luxIntro {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 22px;
  background-color: #0a0807;
  background-image: linear-gradient(180deg, rgba(10, 8, 7, .75), rgba(10, 8, 7, .95));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}

.luxIntro__veil {
  display: none !important;
}

.luxIntro.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes introVeilMove {
  from { transform: translate3d(0, 0, 0) scale(1.02); }
  to { transform: translate3d(0, -12px, 0) scale(1.06); }
}

.luxIntro__card {
  position: relative;
  width: min(520px, 100%);
  text-align: center;
  padding: 30px 22px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(201, 161, 91, 0.40);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
}

@keyframes introCardIn {
  from { opacity: 0.5; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.luxIntro__card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.luxIntro__mark {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.85), transparent 60%),
    linear-gradient(180deg, rgba(253, 246, 234, 0.95), rgba(241, 223, 190, 0.88));
  border: 1px solid rgba(201, 161, 91, 0.75);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  color: rgba(201, 161, 91, 1);
  font-size: 18px;
}

.luxIntro__title {
  font-family: var(--font-script);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.18;
  padding: 10px 0 12px;
  display: inline-block;
  overflow: visible;
  margin: 0 0 6px;
  background-image: linear-gradient(90deg,
      rgba(201, 161, 91, 0.55) 0%,
      rgba(255, 236, 198, 1) 30%,
      rgba(201, 161, 91, 0.95) 55%,
      rgba(255, 236, 198, 1) 75%,
      rgba(201, 161, 91, 0.55) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.55));
  animation: introTitleShimmer 3.2s ease-in-out infinite;
}

@keyframes introTitleShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.luxIntro__sub {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.luxIntro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 91, 0.78);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.32), transparent 55%),
    linear-gradient(135deg, #d3aa64, #b8873d);
  color: #fff;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.luxIntro__btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.95) 45%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.luxIntro__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.40);
}

.luxIntro__btn:hover::before {
  opacity: 1;
  animation: introBtnShine 1.25s ease-out forwards;
}

@keyframes introBtnShine {
  to { transform: translateX(140%); opacity: 0; }
}

.luxIntro__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 161, 91, 0.35), 0 22px 60px rgba(0, 0, 0, 0.40);
}

.luxIntro__hint {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

@media (prefers-reduced-motion: reduce) {
  .luxIntro__veil, .luxIntro__card, .luxIntro__title, .appRoot {
    animation: none !important;
    transition: none !important;
  }
}

/* 🎵 BOTÓN MÚSICA */
.musicToggleHidden {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 999999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 91, .55);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #c9a15b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.musicToggleHidden svg {
  width: 18px;
  height: 18px;
}

.musicToggleHidden.is-blocked {
  opacity: 0;
  pointer-events: none;
}

.musicToggleHidden:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.musicToggleHidden:active {
  transform: translateY(0);
}

/* Mobile performance overrides */
@media (max-width: 768px) {
  #luxModal.luxModalBackdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.85) !important;
  }

  .luxIntro__card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(20, 15, 10, 0.90) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }

  .musicToggleHidden {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    width: 44px;
    height: 44px;
  }
}

/* Fondo carrusel suave en "Donde celebraremos" */
.section--location {
  position: relative;
  overflow: hidden;
}

.section--location .locationBgLayer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 0;
}

.section--location .locationBgLayer.is-visible {
  opacity: 1;
}

.section--location::before {
  z-index: 2;
}

.section--location>* {
  position: relative;
  z-index: 3;
}

/* CARRUSEL DE UBICACIONES */
.locationCarousel {
  position: relative;
}

.locationStrip--slide {
  display: none;
}

.locationStrip--slide.is-active {
  display: block;
  animation: fadeSlide 0.5s ease-out;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.locationDots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.locationDot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.locationDot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.locationDot:hover {
  border-color: #fff;
}

.locationTypeLabel {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.locationTime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN: NUESTRA HISTORIA - DISEÑO LUJO
   ═══════════════════════════════════════════════════════════════ */
.ourStory {
  position: relative;
  max-width: 720px;
  margin: 32px auto 0;
  padding: 38px 28px 32px;
  text-align: center;

  /* Mismo fondo lujoso que el countdown */
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 161, 91, 0.16), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.65), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.96));

  border-radius: 28px;
  border: 1px solid rgba(201, 161, 91, 0.70);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

/* Borde interior elegante */
.ourStory::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(201, 161, 91, 0.40);
  pointer-events: none;
}

/* Decoraciones flotantes sutiles */
.ourStory::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 161, 91, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: storyFloatDecor 8s ease-in-out infinite;
}

@keyframes storyFloatDecor {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-10px, 10px) scale(1.1); opacity: 0.9; }
}

/* Icono superior */
.ourStory__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 91, 0.75);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(180deg, rgba(253, 246, 234, 0.95), rgba(241, 223, 190, 0.88));
  box-shadow: 
    0 14px 35px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  color: #c9a15b;
  font-size: 20px;
  animation: storyMarkPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes storyMarkPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15); }
  50% { transform: scale(1.05); box-shadow: 0 18px 45px rgba(201, 161, 91, 0.25); }
}

/* Kicker */
.ourStory__kicker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201, 161, 91, 0.95);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* Título */
.ourStory__title {
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 400;
  color: #c9a15b;
  margin: 0 0 24px;
  line-height: 1.1;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

/* Línea de tiempo visual */
.ourStory__timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.ourStory__year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 161, 91, 0.45);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #3a3029;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.ourStory__year:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 161, 91, 0.7);
}

.ourStory__year::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #c9a15b, #d4b66a);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(201, 161, 91, 0.4);
}

.ourStory__yearLine {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 161, 91, 0.6), rgba(201, 161, 91, 0.2));
  border-radius: 2px;
}

/* Contenedor de texto */
.ourStory__content {
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

/* Párrafos de la historia */
.ourStory__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.95;
  color: #4a4a4a;
  margin: 0 0 18px;
  text-align: center;
}

.ourStory__text:last-of-type {
  margin-bottom: 0;
}

/* Palabras destacadas */
.ourStory__text .highlight {
  color: #c9a15b;
  font-weight: 600;
}

.ourStory__text em {
  font-style: italic;
  color: #6b5b4f;
}

/* Divisor con corazón */
.ourStory__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  position: relative;
  z-index: 2;
}

.ourStory__divider::before,
.ourStory__divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 91, 0.5), transparent);
}

.ourStory__heart {
  color: #c9a15b;
  font-size: 14px;
  animation: storyHeartBeat 1.4s ease-in-out infinite;
}

@keyframes storyHeartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  56% { transform: scale(1); }
}

/* Firma de los novios */
.ourStory__signature {
  margin-top: 28px;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: #c9a15b;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

/* Agradecimiento */
.ourStory__thanks {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(58, 48, 41, 0.65);
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 600px) {
  .ourStory {
    margin: 20px 16px 0;
    padding: 28px 18px 24px;
    border-radius: 22px;
  }

  .ourStory::before {
    inset: 8px;
    border-radius: 18px;
  }

  .ourStory__mark {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .ourStory__title {
    font-size: clamp(32px, 6vw, 42px);
    margin-bottom: 20px;
  }

  .ourStory__year {
    padding: 6px 12px;
    font-size: 11px;
  }

  .ourStory__yearLine {
    width: 20px;
  }

  .ourStory__text {
    font-size: 1rem;
    line-height: 1.85;
    text-align: left;
  }

  .ourStory__divider::before,
  .ourStory__divider::after {
    width: 35px;
  }

  .ourStory__signature {
    font-size: 1.5rem;
  }
}

/* Animación de entrada suave */
@keyframes storyFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ourStory {
  animation: storyFadeIn 0.8s ease-out;
}

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .ourStory,
  .ourStory__mark,
  .ourStory__heart,
  .ourStory::after {
    animation: none !important;
  }
}