/* ==========================================================================
   NUEVA WEB EDITORIAL DE BODA (NICOLÁS & CARMEN)
   - Portada con ilustración arquitectónica de la iglesia animada a pantalla completa
     (acuarela floreciendo + trazo que se dibuja)
   - Itinerario con mapas e información de acceso integrados
   - Mobile-First, lujo minimalista y estética de papelería nupcial contemporánea
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta de boda inspirada en la acuarela */
  --bg: #FAF7F2;
  --bg-surface: #F5EFE9;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-solid: #FFFFFF;
  --bg-glass: rgba(250, 247, 242, 0.88);

  /* Tinta de acuarela: índigo pizarra y grafito cálido */
  --ink: #2C353E;
  --ink-soft: #55626E;
  --ink-faint: #818D98;
  --cream: #FAF7F2;

  /* Tonos extraídos de la acuarela familiar */
  --wc-blue: #5B7B9A;              /* Azul acuarela de Nicolás y vaqueros */
  --wc-blue-soft: #EBF1F6;         /* Aguada celeste suave */
  --wc-blue-border: rgba(91, 123, 154, 0.25);
  --wc-rose: #C6828C;              /* Rosa empolvado de la hija */
  --wc-rose-soft: #F9ECEE;         /* Aguada rosa suave */
  --wc-sand: #BBA287;              /* Arena / lino de los novios */
  --wc-sand-soft: #F4EDE5;

  /* Oro nupcial cálido */
  --gold: #B69865;
  --gold-light: #DFCFA8;
  --gold-subtle: rgba(182, 152, 101, 0.12);
  --line-gold: rgba(182, 152, 101, 0.28);
  --border-subtle: rgba(44, 53, 62, 0.08);

  --sage: #5B7B9A;
  --sage-light: #EBF1F6;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 20px rgba(44, 53, 62, 0.04);
  --shadow-md: 0 10px 36px rgba(44, 53, 62, 0.07);
  --shadow-lg: 0 18px 50px rgba(44, 53, 62, 0.1);

  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 40px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ── Efecto Pan de Oro Reactivo al cursor / inclinación ──────────────── */
.foil-card, .luxury-card {
  --shine-x: 50%;
  --shine-y: 50%;
  position: relative;
}

.foil-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--shine-x) var(--shine-y),
    rgba(223, 202, 158, 0.35) 0%,
    rgba(179, 152, 101, 0.12) 35%,
    transparent 65%
  );
  opacity: 0.85;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

/* ── Animaciones al hacer scroll (Scroll Reveal) ──────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contenedores ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

.section-padding {
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6.5rem 0;
  }
}

/* ── Encabezados de sección editoriales ───────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wc-blue);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0.6rem auto 0;
  line-height: 1.55;
}

.section-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--wc-blue), transparent);
  margin: 1.2rem auto 0;
  border-radius: 2px;
  opacity: 0.85;
}

/* ==========================================================================
   HEADER / NAVEGACIÓN SUPERIOR FLOTANTE
   ========================================================================== */
.top-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 860px;
  z-index: 100;
  pointer-events: none;
}

.top-header-inner {
  pointer-events: auto;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-pill);
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.header-monogram {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-decoration: none;
}

.top-nav-links {
  display: none;
  gap: 1.8rem;
}

@media (min-width: 640px) {
  .top-nav-links {
    display: flex;
  }
}

.top-nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-nav-links a:hover,
.top-nav-links a.active {
  color: var(--ink);
}

.header-cta-btn {
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background: #3d352e;
}

/* ==========================================================================
   HERO / PORTADA EDITORIAL
   - Móvil: Acuarela de Carmen, Nicolás y su hija a pantalla completa
   - Escritorio: Fondo con degradado elegante y cálido
   ========================================================================== */
.hero-section {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  /* NOTA: Modifica el valor '1.2rem' a continuación para subir o bajar el texto y la fecha */
  padding: calc(env(safe-area-inset-top, 0px) + 1.2rem) 1.2rem 2rem;
  overflow: hidden;
  background-color: var(--bg);
}

/* Contenedor de la ilustración de acuarela en móvil a pantalla completa */
.hero-art-wrapper,
.church-art-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background-color: #FAF7F2;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.hero-bg-img,
.church-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  opacity: 0;
  transform: none !important;
  -webkit-transform: none !important;
  animation: heroImgFadeIn 1.4s 0.1s ease forwards;
}

@keyframes heroImgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Velo sutil superior e inferior para garantizar nitidez del texto y fusión limpia con la siguiente sección */
.hero-scrim,
.church-hero-scrim {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(250, 247, 242, 0.90) 0%, rgba(250, 247, 242, 0.55) 18%, rgba(250, 247, 242, 0) 34%),
    linear-gradient(to top, rgba(250, 247, 242, 0.85) 0%, rgba(250, 247, 242, 0) 12%);
  z-index: 2;
  pointer-events: none;
}

/* Contenido de texto en el Hero */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-monogram-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.hero-monogram-text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.hero-intro {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 8vw, 3.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 16px rgba(250, 247, 242, 0.85);
}

.hero-title span {
  display: inline-block;
  font-style: normal;
  font-family: var(--serif);
  font-size: 0.75em;
  color: var(--gold);
  margin: 0 0.15em;
}

.hero-date-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0;
}

.hero-date-line {
  height: 1px;
  width: 32px;
  background: var(--line-gold);
}

.hero-date-text {
  font-family: var(--display);
  font-size: clamp(0.85rem, 3.2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}

/* Indicador sutil de scroll hacia abajo */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  pointer-events: none;
  animation: heroBounce 2.4s infinite ease-in-out;
}

@keyframes heroBounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

/* ==========================================================================
   VERSIÓN DE ESCRITORIO (DEGRADADO ELEGANTE, SIN IMAGEN VERTICAL)
   ========================================================================== */
@media (min-width: 768px) {
  .hero-section {
    justify-content: center;
    padding: 7rem 2rem 5.5rem;
    background: 
      radial-gradient(
        ellipse at 50% 42%,
        #FFFFFF 0%,
        #FAF7F2 40%,
        #F4ECE0 72%,
        #EAE0CF 100%
      );
  }

  /* En escritorio la imagen vertical se oculta, luciendo el degradado elegante */
  .hero-art-wrapper,
  .church-art-wrapper {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.6rem, 6.5vw, 5.4rem);
    margin-bottom: 1.6rem;
    text-shadow: none;
  }

  .hero-date-block {
    gap: 1.6rem;
  }

  .hero-date-line {
    width: 48px;
  }

  .hero-date-text {
    font-size: 1.15rem;
  }

  .hero-scroll-hint {
    bottom: 2rem;
  }
}

.hero-location-tag {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botones principales de acción */
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 16px rgba(36, 32, 29, 0.15);
}

.btn-primary:hover, .btn-primary:active {
  background: #1e262f;
  border-color: #1e262f;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-gold);
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-secondary:hover, .btn-secondary:active {
  background: var(--wc-blue-soft);
  border-color: var(--wc-blue);
  color: var(--wc-blue);
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

/* ==========================================================================
   CARTA DE BIENVENIDA (EDITORIAL STATEMENT)
   ========================================================================== */
.welcome-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.welcome-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.welcome-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.welcome-signature {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   CRONOGRAMA EDITORIAL CON UBICACIONES Y CÓMO LLEGAR INTEGRADOS
   ========================================================================== */
.timeline-section {
  position: relative;
}

.timeline-track {
  --line-x: 16px;
  --card-offset: 24px;
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding-left: calc(var(--line-x) + var(--card-offset));
}

@media (min-width: 768px) {
  .timeline-track {
    padding-left: 0;
  }
}

/* Línea vertical central con sutil gradiente de acuarela */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: var(--line-x);
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--line-gold) 0%, rgba(91, 123, 154, 0.45) 40%, rgba(198, 130, 140, 0.45) 80%, var(--line-gold) 100%);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .timeline-track::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 2.6rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    margin-bottom: 3.2rem;
    padding-right: 2.8rem;
  }

  .timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 2.8rem;
    text-align: left;
  }

  .timeline-item:nth-child(odd) {
    text-align: right;
  }
}

/* Nodo / Punto colocado exactamente sobre la línea */
.timeline-node {
  position: absolute;
  top: 24px;
  left: calc(-1 * var(--card-offset));
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  background: var(--wc-blue);
  border: 2.5px solid var(--bg);
  border-radius: 50%;
  box-shadow: 
    0 0 0 2px var(--line-gold),
    0 0 0 5px var(--wc-blue-soft),
    0 2px 8px rgba(91, 123, 154, 0.2);
  z-index: 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover .timeline-node {
  transform: translateX(-50%) scale(1.18);
  box-shadow: 
    0 0 0 2px var(--gold),
    0 0 0 6px var(--wc-blue-soft),
    0 3px 10px rgba(91, 123, 154, 0.35);
}

@media (min-width: 768px) {
  .timeline-node {
    left: 100%;
    top: 26px;
    transform: translateX(-50%);
  }

  .timeline-item:hover .timeline-node {
    transform: translateX(-50%) scale(1.18);
  }

  .timeline-item:nth-child(even) .timeline-node {
    left: 0;
    transform: translateX(-50%);
  }

  .timeline-item:nth-child(even):hover .timeline-node {
    transform: translateX(-50%) scale(1.18);
  }
}

.timeline-content-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 242, 0.92) 70%, rgba(235, 241, 246, 0.65) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .timeline-content-card {
    padding: 1.6rem 1.8rem;
  }
}

.timeline-content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-time-badge {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--wc-blue);
  background: var(--wc-blue-soft);
  border: 1px solid var(--wc-blue-border);
  border-radius: var(--r-pill);
  padding: 0.22rem 0.75rem;
  margin-bottom: 0.45rem;
}

.timeline-milestone-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.timeline-venue {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.timeline-address {
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.timeline-address-link {
  color: var(--wc-blue);
  text-decoration: underline;
  text-decoration-color: rgba(91, 123, 154, 0.4);
  text-underline-offset: 3px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.timeline-address-link:hover {
  color: var(--ink);
  text-decoration-color: var(--gold);
  transform: translateY(-1px);
}

.timeline-desc {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.timeline-note-box {
  background: var(--wc-blue-soft);
  border-left: 3px solid var(--wc-blue);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0.85rem 0;
  text-align: left;
}

.timeline-route-pill {
  display: inline-block;
  background: var(--sage-light);
  border: 1px solid rgba(107, 122, 104, 0.25);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage);
  margin: 0.6rem 0;
  text-align: left;
}

.timeline-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-actions {
    justify-content: flex-end;
  }
}

/* ==========================================================================
   CÓDIGO DE VESTIMENTA (DRESS CODE)
   ========================================================================== */
.dresscode-section {
  text-align: center;
  background: var(--bg-surface);
}

.dresscode-card {
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 2.6rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.dresscode-title {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.dresscode-desc {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.swatch-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.2);
}

.dresscode-tip {
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
  font-style: italic;
}

/* ==========================================================================
   CONFIRMACIÓN (RSVP) & REGALOS
   ========================================================================== */
.rsvp-section {
  background: radial-gradient(circle at 50% 20%, #FAF7F2 0%, #F6ECEE 45%, #EBE3DA 100%);
}

.rsvp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  max-width: 780px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rsvp-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.rsvp-card-highlight {
  background: linear-gradient(150deg, #2D3945 0%, #1F2730 100%);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 42px rgba(44, 53, 62, 0.2);
  border: 1px solid rgba(223, 207, 168, 0.28);
}

.rsvp-card-highlight .section-eyebrow {
  color: var(--gold-light);
}

.rsvp-main-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0.4rem 0 0.8rem;
}

.rsvp-main-desc {
  font-size: 0.88rem;
  color: #D4CCC4;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-rsvp-big {
  background: var(--gold);
  color: #1F2730;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.22s ease;
  box-shadow: 0 4px 18px rgba(182, 152, 101, 0.35);
}

.btn-rsvp-big:hover {
  background: #C9B283;
  transform: translateY(-2px);
}

/* Tarjeta de Regalos / Cuenta bancaria con velo cálido de papel de acuarela */
.gift-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF7F2 65%, #F9ECEE 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.gift-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.gift-desc {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.iban-box {
  background: var(--bg);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 0.9rem 1rem;
  margin-bottom: 1.4rem;
  text-align: center;
}

.iban-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}

.iban-number {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  user-select: all;
}

.btn-copy-iban {
  width: 100%;
  background: var(--wc-blue-soft);
  color: var(--wc-blue);
  border: 1px solid var(--wc-blue-border);
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-copy-iban:hover {
  background: var(--wc-blue);
  color: #FFFFFF;
  border-color: var(--wc-blue);
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ ACORDEÓN)
   ========================================================================== */
.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 660px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line-gold);
  margin-bottom: 0.4rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER / PIE DE PÁGINA
   ========================================================================== */
.footer-section {
  text-align: center;
  padding: 4rem 1rem 7rem;
  background: linear-gradient(180deg, #F5EFE9 0%, #EDE4DA 100%);
  border-top: 1px solid var(--line-gold);
}

.footer-monogram {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.footer-names {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.footer-date {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   BARRA MÓVIL FLOTANTE INFERIOR (BOTTOM ACTION BAR)
   ========================================================================== */
.mobile-quick-bar {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 440px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(36, 32, 29, 0.15);
  z-index: 999;
}

.quick-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--ink-faint);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  flex: 1;
  text-align: center;
}

.quick-bar-icon {
  font-size: 1rem;
  line-height: 1;
}

.quick-bar-item.active,
.quick-bar-item:active {
  color: var(--ink);
  background: var(--gold-subtle);
}

.quick-bar-item.cta-accent {
  background: var(--ink);
  color: var(--cream);
}

.quick-bar-item.cta-accent:active {
  background: #3d352e;
}

/* ==========================================================================
   TOAST NOTIFICACIÓN
   ========================================================================== */
.toast-notification {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line-gold);
  z-index: 99999;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.visible {
  transform: translateX(-50%) translateY(0);
}
