/* ============================================================
   BODA AZUL DORADA — styles.css
   Paleta: Azul Marino · Azul Royal · Dorado · Crema
   Estilo: Luxury Dark con destellos y shimmer
   ============================================================ */

/* === VARIABLES ============================================= */
:root {
  --navy-deep:    #050E1F;
  --navy-dark:    #080F1D;  /* fondo principal secciones oscuras */
  --navy:         #0C1A30;
  --navy-mid:     #112240;
  --navy-light:   #1B3A6B;
  --sapphire:     #2C5F9E;
  --gold:         #D4AF37;
  --gold-bright:  #F5D060;
  --gold-dark:    #A07C1A;
  --gold-pale:    #F5E8C0;
  --gold-glow:    rgba(212,175,55,.35);
  --cream:        #FEFDF8;
  --white:        #FFFFFF;
  --text-on-dark: #CBD5E8;
  --text-dim:     #8FA0C0;
  --border-gold:  rgba(212,175,55,.3);
  --border-blue:  rgba(44,95,158,.4);
  --shadow-gold:  rgba(212,175,55,.2);
  --shadow-dark:  rgba(0,0,0,.5);
}

/* === RESET & BASE ========================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--navy-dark);
  color: var(--text-on-dark);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }

/* === SCROLL ANIMATIONS ===================================== */
.fade-up {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s ease, transform .9s ease;
  transition-delay: var(--delay, 0s);
}
.fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .9s ease, transform .9s ease;
  transition-delay: var(--delay, 0s);
}
.fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .9s ease, transform .9s ease;
  transition-delay: var(--delay, 0s);
}
.animate-in {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* === SHIMMER TEXT ========================================== */
@keyframes shimmer {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}

.name-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold)        0%,
    var(--gold-bright) 25%,
    #fff               50%,
    var(--gold-bright) 75%,
    var(--gold)        100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
  display: inline-block;
}

/* === SPARKLE PARTICLES (CSS) =============================== */
.sparkle-field,
.calendar-sparkle,
.banner-stars,
.rsvp-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sparkle-field span,
.calendar-sparkle span,
.banner-stars span,
.rsvp-sparkles span {
  position: absolute;
  left: var(--x);
  top:  var(--y);
  width:  var(--size, 4px);
  height: var(--size, 4px);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 6px 2px var(--gold-glow);
  animation: twinkle var(--dur, 3s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes twinkle {
  0%,100% { opacity: 0;   transform: scale(.4) rotate(0deg);   }
  40%     { opacity: 1;   transform: scale(1.6) rotate(45deg); }
  60%     { opacity: .85; transform: scale(1.3) rotate(90deg); }
}

/* === NAVBAR ================================================ */
#mainNav {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, padding .4s;
  padding: 1.4rem 0;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(5,14,31,.93);
  border-bottom-color: var(--border-gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .8rem 0;
}

#mainNav .navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-decoration: none;
}

.brand-i, .brand-r { font-weight: 600; }
.brand-amp {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--gold-bright);
  line-height: 1;
  vertical-align: middle;
  margin: 0 .15rem;
}

#mainNav .nav-link {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: .4rem 1rem;
  transition: color .3s;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus { color: var(--gold-bright); }

.nav-link--cta {
  border: 1px solid var(--border-gold);
  border-radius: 1px;
  color: var(--gold) !important;
}
.nav-link--cta:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
}

#mainNav .navbar-toggler {
  border-color: var(--border-gold);
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212,175,55,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu */
@media (max-width: 991px) {
  #navbarNav {
    background: rgba(5,14,31,.98);
    border: 1px solid var(--border-gold);
    padding: 1rem 1.5rem;
    margin-top: .5rem;
  }
  #navbarNav .nav-link {
    color: var(--text-on-dark);
    border-bottom: 1px solid var(--border-blue);
    padding: .65rem 0;
  }
  #navbarNav .nav-link:last-child { border-bottom: none; }
  .nav-link--cta { border: none; }
}

/* === HERO ================================================== */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(
    ellipse at 50% 60%,
    var(--navy-light) 0%,
    var(--navy-mid)   35%,
    var(--navy)       65%,
    var(--navy-deep)  100%
  );
  position: relative;
  overflow: hidden;
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.hero-names {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: .5rem;
}

.hero-amp {
  font-family: 'Great Vibes', cursive;
  font-size: .55em;
  display: block;
  color: var(--gold);
  line-height: 1.2;
  -webkit-text-fill-color: var(--gold);
  background: none;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.ornament-line {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ornament-gem {
  color: var(--gold);
  font-size: 1.2rem;
  animation: gemPulse 2.5s ease-in-out infinite;
}

@keyframes gemPulse {
  0%,100% { text-shadow: 0 0 8px var(--gold-glow); transform: scale(1); }
  50%     { text-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold-glow); transform: scale(1.15); }
}

.hero-date {
  font-family: 'Cinzel', serif;
  font-size: clamp(.85rem, 2.5vw, 1.2rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: .6rem;
}

.hero-city {
  font-size: .9rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: translateY(20px); }
}

/* === BUTTONS =============================================== */
.btn-royal {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .85rem 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.btn-royal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .3s ease;
  z-index: -1;
}

.btn-royal:hover {
  color: var(--navy-dark);
}
.btn-royal:hover::before { transform: translateX(0); }

.btn-gold-solid {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--navy-dark);
  border: none;
  padding: .9rem 2.8rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all .4s ease;
}

.btn-gold-solid:hover {
  background-position: right center;
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.btn-gold-outline {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: .85rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
  background: transparent;
}

.btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-gold);
}

.btn-whatsapp {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}

.btn-whatsapp:hover {
  background: #1daa54;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

/* === SHARED SECTION HELPERS ================================ */
section { padding: 7rem 0; position: relative; }

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.heading-gold {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: .25rem;
}

.heading-white {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .25rem;
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1rem auto;
}

/* === ROMANTIC QUOTE ======================================== */
.quote-section {
  background: var(--navy-mid);
  padding: 6rem 0;
}

.quote-glass {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-gold);
  box-shadow:
    0 0 40px rgba(212,175,55,.06),
    inset 0 1px 0 rgba(212,175,55,.1);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}

.quote-gem-top,
.quote-gem-bot {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.quote-gem-bot { margin-top: 1.5rem; margin-bottom: 0; }

.quote-gem-top i,
.quote-gem-bot i {
  animation: gemPulse 3s ease-in-out infinite;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1.85;
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.quote-author {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* === PARENTS =============================================== */
.parents-section {
  background: var(--navy-dark);
  padding: 7rem 0;
}

.parents-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border-gold);
  background: rgba(255,255,255,.02);
  box-shadow: 0 8px 40px var(--shadow-dark), 0 0 60px rgba(212,175,55,.04);
}

.parents-side {
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.parents-crown {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.parents-crown i { animation: gemPulse 3.5s ease-in-out infinite; }

.parents-label {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.parents-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-pale);
  margin: .35rem 0;
}

.parents-conjunction {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--gold);
  margin: .3rem 0;
}

.parents-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
}

.divider-vline {
  display: block;
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  min-height: 40px;
}

.divider-gem {
  color: var(--gold-bright);
  font-size: 1.4rem;
  animation: gemPulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* === PADRINOS ============================================== */
.padrinos-section {
  background: var(--navy-mid);
  padding: 7rem 0;
}

.padrino-tile {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-gold);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  cursor: default;
}

.padrino-tile:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px var(--shadow-dark), 0 0 30px var(--shadow-gold);
}

/* Shine sweep on hover */
.tile-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(212,175,55,.12) 50%,
    transparent 60%
  );
  transition: left .5s ease;
}

.padrino-tile:hover .tile-shine { left: 160%; }

.tile-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tile-cat {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.tile-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin: 0;
}

/* === SPLIT SECTIONS (Ceremony & Reception) ================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  padding: 0;
}

.split-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

.split-left {
  background: linear-gradient(
    145deg,
    var(--navy-light) 0%,
    var(--navy-mid) 100%
  );
  text-align: right;
  border-right: 1px solid var(--border-gold);
}

.split-right {
  background: var(--navy-dark);
}

.split-section--reversed .split-left { order: 2; border-right: none; border-left: 1px solid var(--border-gold); text-align: left; }
.split-section--reversed .split-right { order: 1; background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-mid) 100%); text-align: right; }

.split-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.split-icon i { animation: gemPulse 3s ease-in-out infinite; }

.split-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.split-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}

.split-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem 0;
}
.split-left .split-rule {
  background: linear-gradient(to left, var(--gold), transparent);
  margin-left: auto;
}
.split-section--reversed .split-left .split-rule {
  background: linear-gradient(to right, var(--gold), transparent);
  margin-left: 0;
}

.split-sub {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Detail list (inside split right) */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44,95,158,.3);
  font-size: .95rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.detail-row:last-child { border-bottom: none; }

.detail-row i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 20px;
}

/* split-section--reversed: right panel shows details on left side */
.split-section--reversed .split-right { text-align: left; }

/* === CALENDAR SECTION ====================================== */
.calendar-section {
  background: var(--navy-mid);
  padding: 6rem 0;
  overflow: hidden;
}

.cal-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.cal-icon i { animation: gemPulse 3s ease-in-out infinite; }

.cal-sub {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* === BANNER DECORATIVO ===================================== */
.banner-royal {
  padding: 7rem 0;
  background: linear-gradient(
    135deg,
    var(--navy-deep)  0%,
    var(--navy-light) 40%,
    var(--navy-deep)  100%
  );
  position: relative;
  overflow: hidden;
}

/* Animated background glow */
.banner-royal::before {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1);   }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.15); }
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.banner-pre {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.banner-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(212,175,55,.15);
}

.banner-gem {
  font-size: 2rem;
  color: var(--gold);
}
.banner-gem i { animation: gemPulse 2s ease-in-out infinite; }

/* === ITINERARY — ZIGZAG =================================== */
.itinerary-section {
  background: var(--navy-dark);
  padding: 7rem 0;
}

.zigzag {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

/* Central vertical line */
.zigzag::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 10%,
    var(--gold) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.zz-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.zz-item:last-child { margin-bottom: 0; }

/* Diamond marker */
.zz-diamond {
  width: 56px;
  height: 56px;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: background .3s, box-shadow .3s;
  box-shadow: 0 0 0 4px var(--navy-dark), 0 0 16px var(--shadow-gold);
}

.zz-diamond i {
  transform: rotate(-45deg);
  color: var(--gold);
  font-size: 1.2rem;
  transition: color .3s;
}

.zz-item:hover .zz-diamond {
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--navy-dark), 0 0 24px rgba(212,175,55,.5);
}
.zz-item:hover .zz-diamond i { color: var(--navy-dark); }

/* Content blocks */
.zz-content {
  padding: 1.5rem 2rem 1.5rem 0;
  text-align: right;
}
.zz-content--r {
  text-align: left;
  padding: 1.5rem 0 1.5rem 2rem;
}
.zz-empty { /* placeholder to push to opposite side */ }

.zz-time {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.zz-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-pale);
  margin-bottom: .25rem;
}

.zz-desc {
  font-size: .88rem;
  color: var(--text-dim);
}

/* === DRESSCODE ============================================= */
.dresscode-section {
  background: var(--navy-mid);
  padding: 7rem 0;
}

.dress-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-gold);
  box-shadow: 0 8px 40px var(--shadow-dark), 0 0 60px rgba(212,175,55,.04);
  padding: 4rem 3.5rem;
}

.dress-crown {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.dress-crown i { animation: gemPulse 3s ease-in-out infinite; }

.dress-type {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.dress-desc {
  font-size: 1rem;
  color: var(--text-on-dark);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.dress-palette { margin: 2rem 0; }

.palette-lbl {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.palette-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dswatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  cursor: default;
  transition: transform .25s, box-shadow .25s;
}
.dswatch:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 20px rgba(212,175,55,.3);
}
.ds-light {
  box-shadow: 0 4px 14px rgba(0,0,0,.3), inset 0 0 0 1px rgba(212,175,55,.2);
}

.dress-note {
  background: rgba(212,175,55,.06);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  font-size: .9rem;
  color: var(--text-on-dark);
  text-align: left;
  margin-top: 1.5rem;
}

/* === RSVP ================================================== */
.rsvp-section {
  background: radial-gradient(
    ellipse at center,
    var(--navy-light) 0%,
    var(--navy-mid)   50%,
    var(--navy-deep)  100%
  );
  padding: 7rem 0;
  overflow: hidden;
}

.rsvp-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.rsvp-icon i { animation: gemPulse 2.5s ease-in-out infinite; }

.rsvp-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-on-dark);
}

.rsvp-note {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* === FOOTER ================================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding: 5rem 0;
}

.footer-topline {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
}

.footer-gem-top {
  font-size: 2.5rem;
  color: var(--gold);
  margin: 2rem 0 1.5rem;
}
.footer-gem-top i { animation: gemPulse 3s ease-in-out infinite; }

.footer-names {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: .5rem;
}

.footer-amp {
  font-family: 'Great Vibes', cursive;
  font-size: .75em;
  color: var(--gold);
  vertical-align: middle;
}

.footer-date {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.footer-ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.footer-ornament-line span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}
.footer-ornament-line i {
  color: var(--gold);
  font-size: 1rem;
}

.footer-message {
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(143,160,192,.4);
}
.footer-copy .bi-heart-fill {
  color: var(--gold-dark);
}

/* === RESPONSIVE ============================================ */
@media (max-width: 991px) {
  /* Split sections collapse to stacked */
  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-panel { padding: 4rem 2.5rem; }
  .split-left,
  .split-section--reversed .split-left {
    text-align: center;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--border-gold);
    order: 1;
  }
  .split-left .split-rule,
  .split-section--reversed .split-left .split-rule {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1rem auto;
  }
  .split-right,
  .split-section--reversed .split-right {
    order: 2;
    background: var(--navy-dark);
    text-align: left;
  }

  /* Parents panel — stack vertically */
  .parents-panel {
    grid-template-columns: 1fr;
  }
  .parents-divider {
    flex-direction: row;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 1.25rem 2rem;
  }
  .divider-vline {
    width: 100%;
    height: 1px;
    min-height: auto;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
}

@media (max-width: 767px) {
  section { padding: 5rem 0; }

  /* Zigzag — collapse to simple vertical */
  .zigzag::before { left: 1.75rem; }
  .zz-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
  }
  .zz-empty { display: none; }
  .zz-diamond { width: 46px; height: 46px; }
  .zz-diamond i { font-size: 1rem; }
  .zz-content,
  .zz-content--r {
    text-align: left;
    padding: 0 0 0 1.5rem;
    grid-column: 2;
    grid-row: 1;
  }
  .zz-item.zz-right .zz-diamond { order: -1; }

  .quote-glass { padding: 2.5rem 1.5rem; }
  .dress-panel { padding: 2.5rem 1.5rem; }
  .parents-side { padding: 2.5rem 1.5rem; }

  .split-panel { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .palette-row { gap: .6rem; }
  .dswatch { width: 38px; height: 38px; }
}
