/* ===== VARIABLES ===== */
:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8a6a42;
  --lila: #d8cce8;
  --lila-mid: #b8a0cc;
  --lila-dark: #8a72aa;
  --white: #fdfcfa;
  --cream: #ede8e1;
  --ivory: #f2ede6;
  --dark: #3d3348;
  --dark2: #4a3f5c;
  --text: #6b6078;
  --text-light: #9a90a8;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%238a72aa' stroke='%23fdfcfa' stroke-width='0.6' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") 14 13, auto !important;
}
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--dark2); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

.cursor-echo {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  font-size: 15px;
  color: var(--lila-dark);
  transform: translate(-50%, -50%);
  animation: cursorEchoFade 0.6s ease-out forwards;
}

@keyframes cursorEchoFade {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3) translateY(-12px); }
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(253,252,250,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,160,204,0.14);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#navbar.scrolled {
  padding: 0.75rem 3rem;
  background: rgba(253,252,250,0.96);
  border-color: rgba(184,160,204,0.22);
  box-shadow: 0 8px 30px rgba(74,63,92,0.06);
}

.nav-monogram .monogram-ring {
  display: flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--lila-dark);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  color: var(--lila-dark);
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.nav-monogram:hover .monogram-ring { transform: scale(1.08); }

.mono-amp { font-style: italic; font-size: 0.65rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--lila-dark);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--dark2); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--lila-dark); }

.nav-rsvp {
  position: relative;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--white);
  border: 1px solid var(--lila-dark);
  background: var(--lila-dark);
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}

.nav-rsvp:hover { background: var(--dark2); border-color: var(--dark2); }

.nav-rsvp::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out infinite;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 400;
}

.burger-bar {
  display: block;
  height: 1px;
  background: var(--lila-dark);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.35s ease;
}

.burger-bar:nth-child(1) { width: 24px; }
.burger-bar:nth-child(2) { width: 18px; }
.burger-bar:nth-child(3) { width: 24px; }

.nav-burger:hover .burger-bar { width: 24px; }

.nav-burger.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.nav-burger.open .burger-bar:nth-child(2) { opacity: 0; }
.nav-burger.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  display: flex;
  background: linear-gradient(180deg, var(--white), var(--ivory));
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  box-shadow: -20px 0 60px rgba(61,51,72,0.12);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.01), visibility 0s linear 0.45s;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.01), visibility 0s;
}

.mobile-menu-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--lila-dark);
  transition: transform 0.2s, color 0.2s;
}

.mobile-menu-close:hover { transform: rotate(90deg); color: var(--dark2); }

.mobile-menu-mono { opacity: 0.9; }

.mobile-menu ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 1.6rem; }

.mobile-menu li {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open li { opacity: 1; transform: translateX(0); }

.mobile-menu.open li:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu ul li:nth-child(1) { transition-delay: 0s; }
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.14s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.19s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.29s; }

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--dark2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a:hover .mm-num { color: var(--lila-dark); }

.mm-num {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--lila-mid);
  transition: color 0.2s;
}

.mobile-menu-date {
  position: absolute;
  bottom: 2.5rem;
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('hero.jpg') center center / cover no-repeat;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,30,65,0.62);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-monogram { margin-bottom: 0.5rem; }

.monogram-oval {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid rgba(216,204,232,0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--lila);
}

.monogram-oval.small { width: 54px; height: 54px; font-size: 0.75rem; }

.mono-letter { font-weight: 400; }
.mono-and { font-style: italic; font-size: 0.8em; color: var(--lila-mid); }

.hero-names {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: #ffffff;
  line-height: 1.1;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-amp { font-style: normal; color: var(--lila); }

.hero-date-clean {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.08em;
  font-weight: 300;
  color: var(--lila);
  text-transform: uppercase;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--lila);
  margin: 0.3rem 0;
  opacity: 0.7;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.hero-scroll-cue:hover { opacity: 1; }

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--lila));
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { height: 0; opacity: 1; }
  100% { height: 50px; opacity: 0; }
}

.hero-scroll-cue span {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--lila);
}

.music-toggle {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(216,204,232,0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.music-toggle i { position: relative; left: 1px; }
.music-toggle.playing i { left: 0; }

.music-toggle:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--lila);
  transform: scale(1.06);
}

/* ===== RSVP TEASER ===== */
#rsvp-teaser {
  position: relative;
  background: #fbf9fd;
  padding: 3.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rsvp-teaser-band {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  background: linear-gradient(135deg, var(--lila) 0%, var(--lila-mid) 100%);
  z-index: 1;
}

.rsvp-teaser-card {
  position: relative;
  z-index: 2;
  background: #fbf9fd;
  padding: 4rem 3.5rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(61,51,72,0.15);
  overflow: hidden;
}

.rt-corner {
  position: absolute;
  width: 100px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.rt-corner-tl { top: 0; left: 0; }
.rt-corner-tr { top: 0; right: 0; transform: scaleX(-1); }
.rt-corner-bl { bottom: 0; left: 0; transform: scaleY(-1); }
.rt-corner-br { bottom: 0; right: 0; transform: scale(-1,-1); }

.rsvp-teaser-label {
  position: relative;
  z-index: 2;
  font-family: 'EB Garamond', serif;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  color: var(--lila-dark);
  margin-bottom: 1.6rem;
}

.rsvp-teaser-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.2rem;
}

.rsvp-teaser-text span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--text);
  text-align: center;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(138,114,170,0.25);
}

.rsvp-teaser-text span:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rsvp-teaser-link {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--lila-dark);
  border-bottom: 1px solid var(--lila-dark);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.rsvp-teaser-link:hover { color: var(--dark2); border-color: var(--dark2); }

/* ===== INVITACION ===== */
#invitacion {
  background: #fbf9fd;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: 6rem 2rem;
}

.inv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "photo quote" "photo formal";
  align-content: center;
  max-width: 1100px;
  width: 100%;
  gap: 0;
  position: relative;
}

.inv-photo-wrap {
  grid-area: photo;
  position: relative;
}

.inv-sello {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  z-index: 3;
}

.inv-photo {
  width: 85%;
  aspect-ratio: 3/4;
  background: url('img1.webp') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.inv-formal-wrap {
  grid-area: formal;
  align-self: start;
  padding: 0 3rem 2rem;
  position: relative;
  z-index: 2;
}

.inv-divider {
  width: 40px;
  height: 1px;
  background: rgba(138,114,170,0.3);
  margin: 2.2rem 0 1rem;
}

.inv-venue-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.venue-break { display: none; }

.inv-venue-line i {
  color: var(--lila-dark);
  font-size: 0.75rem;
}

.inv-quote {
  grid-area: quote;
  padding: 2rem 3rem 0;
  align-self: end;
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark2);
  margin-bottom: 2rem;
  border: none;
}

.inv-quote-script {
  display: inline-block;
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  font-style: normal;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inv-quote em {
  color: var(--lila-dark);
  font-style: italic;
}

.inv-formal-small {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.inv-formal-date {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--dark);
  background: rgba(184,160,204,0.3);
  display: inline-block;
  padding: 0.5rem 1.1rem;
}

/* ===== COUNTDOWN ===== */
#countdown {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cd-bg {
  position: absolute;
  inset: 0;
  background: url('photo-countdown.jpg') center center / cover no-repeat;
}

.cd-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,237,230,0.78) 0%, rgba(216,204,232,0.72) 50%, rgba(242,237,230,0.78) 100%);
}

.cd-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(216,204,232,0.5) 0%, transparent 70%);
}

.cd-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cd-clock {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: center;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.cd-num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--dark2);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cd-lbl {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--text);
}

.cd-sep {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 8vw, 6rem);
  color: var(--lila-dark);
  line-height: 1;
  padding-top: 0.1em;
  opacity: 0.5;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SECTION LABELS ===== */
.sec-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lila-dark);
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

.sec-label.light { color: var(--lila); }
.sec-label.dark-label { color: var(--dark2); }

.sec-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  text-align: center;
  color: var(--dark2);
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.sec-title.light { color: var(--white); }
.sec-title.dark-title { color: var(--dark2); }

.sec-title-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0;
}

/* ===== LUGAR ===== */
#lugar {
  background: var(--white);
  padding: 0;
}

#lugar .sec-title { color: var(--dark2); }

.lugar-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.lugar-layout {
  display: flex;
  align-items: stretch;
}

.lugar-side-img {
  width: 19%;
  flex-shrink: 0;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 400px;
}

.lugar-side-left {
  background-image: url('lateral.png');
  transform: scaleX(-1);
}

.lugar-side-right {
  background-image: url('lateral.png');
}

.lugar-layout .container {
  flex: 1;
  padding: 7rem 2rem;
}

.lugar-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 2rem 2rem;
  cursor: pointer;
}

.lugar-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--lila-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--lila-dark);
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.lugar-card:hover .lugar-icon {
  background: var(--lila-dark);
  color: var(--white);
  border-color: var(--lila-dark);
}

.lugar-card h3 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark2);
  margin-bottom: 0.3rem;
}

.lugar-card p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text);
}

.lugar-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem !important;
  letter-spacing: 0.03em;
  color: var(--gold-dark) !important;
  font-weight: 500;
  margin-top: auto;
  padding-top: 1rem;
}

.lugar-map-btn {
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lila-dark);
  border: 1px solid var(--lila-dark);
  border-radius: 9999px;
  padding: 0.55rem 1.6rem;
  transition: background 0.2s, color 0.2s;
}

.lugar-card:hover .lugar-map-btn {
  background: var(--lila-dark);
  color: var(--white);
}

.lugar-vline {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(138,114,170,0.3), transparent);
  flex-shrink: 0;
}

/* ===== DRESS CODE ===== */
#dresscode {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.dress-photo {
  position: absolute;
  inset: 0;
  background: url('DSC00781%202.jpg') center 32% / cover no-repeat;
  filter: saturate(0.55) brightness(1.02);
}

.dress-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lila-dark);
  opacity: 0.45;
}

.dress-card {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  box-shadow: 0 25px 60px rgba(61,51,72,0.2);
}

.dress-card-left {
  position: relative;
  background: linear-gradient(135deg, var(--lila) 0%, var(--lila-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 2rem;
}

.dress-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
}

.dress-card-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 1.5em;
  color: var(--white);
}

.dress-card-notch {
  position: absolute;
  left: 42.5%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
}

.dress-card-right {
  background: var(--white);
  padding: 2.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.dress-text {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  color: var(--dark2);
  text-align: center;
}

.dress-text strong {
  color: var(--lila-dark);
  font-weight: 500;
}

.dress-divider {
  width: 36px;
  height: 1px;
  background: rgba(138,114,170,0.3);
  margin: 1.6rem auto;
}

.dress-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: left;
}

.dress-note i {
  color: var(--lila-dark);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.dress-note p {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.6;
}

.dress-note strong {
  color: var(--lila-dark);
}

.dress-swatches {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.swatch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swatch-col span {
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: center;
}

/* ===== FAQ ===== */
#faq {
  background: var(--cream);
  padding: 7rem 2rem;
}

#faq .sec-title { color: var(--dark2); }

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

.faq-item {
  border-bottom: 1px solid rgba(138,114,170,0.15);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark2);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--lila-dark); }

.faq-plus {
  font-size: 1.3rem;
  font-style: normal;
  color: var(--lila-dark);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-a { display: none; padding: 0 0 1.3rem; }
.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text);
}

/* ===== RSVP ===== */
#rsvp {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.rsvp-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--ivory) 0%, var(--lila) 40%, #e8dff2 70%, var(--ivory) 100%);
}

.rsvp-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.35) 0%, transparent 70%);
}

.rsvp-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.rsvp-sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lila-dark);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 9999px;
  padding: 0.85rem 1.4rem;
  color: var(--dark2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group textarea {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 1.5rem;
  padding: 0.85rem 1.4rem;
  color: var(--dark2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lila-dark); }

.form-group select option { background: var(--white); color: var(--dark2); }

.form-group textarea { resize: vertical; min-height: 90px; }

.rsvp-btn {
  align-self: center;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--lila-dark);
  border: none;
  padding: 1rem 3rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
  border-radius: 9999px;
}

.rsvp-btn:hover { background: var(--dark2); }

.rsvp-loading {
  text-align: center;
  padding: 2rem;
  color: var(--lila-dark);
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
}

.rsvp-welcome {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 4.8rem);
  line-height: 1;
  color: var(--dark2);
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 0.2rem;
}

.rsvp-nombre {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--lila-dark);
}

.rsvp-pases-info {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.rsvp-pases-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lila-dark);
}

.rsvp-btns-confirm {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rsvp-btn-si {
  position: relative;
  overflow: hidden;
  background: var(--lila-dark);
}

.rsvp-btn-si::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -75%; }
  35% { left: 125%; }
  100% { left: 125%; }
}

.rsvp-btn-no {
  background: transparent;
  color: var(--lila-dark);
  border: 2px solid var(--lila-dark);
}

.rsvp-btn-no:hover {
  background: var(--lila-dark);
  color: var(--white);
}

.rsvp-thanks {
  text-align: center;
  padding: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--lila-dark);
}

/* ===== QUOTE ===== */
#quote {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background: url('photo-dresscode.jpg') center 50% / cover no-repeat;
  transform: scale(1.15);
  will-change: transform;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,51,72,0.45) 0%, rgba(61,51,72,0.55) 100%);
}

.quote-text {
  position: relative;
  z-index: 2;
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  transform: translateY(2.5rem);
}

.quote-text em {
  font-style: normal;
  color: var(--lila);
}

.regalos-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 620px;
  text-align: center;
}

.regalos-content .quote-text { transform: none; }

.regalos-phrase {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.btn-regalar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.8rem;
  background: var(--lila-dark);
  color: var(--white);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.btn-regalar:hover { background: var(--dark2); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  background: var(--ivory);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(138,114,170,0.12);
}

.footer-mono { margin-bottom: 1rem; }

.footer-names {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.4rem;
  color: var(--lila-dark);
  margin-bottom: 0.4rem;
}

.footer-date {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.footer-rule {
  width: 50px;
  height: 1px;
  background: rgba(138,114,170,0.25);
  margin: 1.2rem auto;
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--text-light);
}

.rsvp-error {
  text-align: center;
  padding: 1.5rem;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 0.5rem;
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ===== ANIMATE IN ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-img.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

/* ===== HERO ENTRANCE ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUpDim {
  from { opacity: 0; transform: translateX(-50%) translateY(22px); }
  to { opacity: 0.6; transform: translateX(-50%) translateY(0); }
}

.hero-monogram,
.hero-names,
.hero-date-clean,
.hero-divider {
  opacity: 0;
  animation: heroFadeUp 1s ease forwards;
}

.hero-monogram { animation-delay: 0.1s; }
.hero-names { animation-delay: 0.35s; }
.hero-date-clean { animation-delay: 0.65s; }
.hero-divider { animation-delay: 0.8s; }

.hero-scroll-cue {
  opacity: 0;
  animation: heroFadeUpDim 1s ease forwards;
  animation-delay: 1s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .inv-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "quote" "photo" "formal";
  }
  .inv-photo-wrap { margin: 2rem 0; }
  .inv-photo { margin: 0 auto; }
  .inv-quote, .inv-formal-wrap { padding: 0 1.5rem; text-align: center; }
  .venue-break { display: block; }
  .inv-formal-date { font-size: 0.95rem; white-space: nowrap; padding: 0.5rem 0.9rem; }
  .inv-venue-line { align-items: flex-start; }
  .inv-divider { margin-left: auto; margin-right: auto; }
  .lugar-layout { flex-direction: column; }
  .lugar-side-img { display: none; }
  .lugar-layout .container { padding: 4rem 1.5rem; }
  .lugar-grid { flex-direction: column; max-width: 420px; margin: 0 auto; }
  .lugar-vline { width: 60px; height: 1px; align-self: center; background: linear-gradient(90deg, transparent, rgba(138,114,170,0.3), transparent); }
  .form-row { grid-template-columns: 1fr; }
  .cd-clock { gap: 0.2rem; }
  .dress-card { grid-template-columns: 1fr; max-width: 420px; }
  .dress-card-notch { display: none; }
  .dress-card-left { padding: 1.6rem 1.5rem; }
  #dresscode { min-height: 95vh; padding: 2.5rem 1.5rem; }
}

@media (max-width: 700px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links, .nav-rsvp { display: none; }
  .nav-burger { display: flex; }
  .dress-card-right { padding: 1.6rem 1.5rem; gap: 0.8rem; }
  .dress-text { font-size: 1.05rem; line-height: 1.45; }
  .dress-divider { margin: 1rem auto; }
  .dress-note i { font-size: 1.3rem; }
  .dress-note p { font-size: 0.85rem; }
  .rsvp-teaser-card { padding: 3rem 1.6rem; }
  #rsvp-teaser { padding: 2.5rem 1.5rem; }
  .rsvp-teaser-band { height: 85px; }
  .rt-corner { width: 60px; }
  .rsvp-teaser-label { font-size: 2rem; }
  #hero { background-image: url('hero-mobile.png'); }
  .hero-content { transform: translateY(-190px); }
  .music-toggle { bottom: 1.8rem; right: 1.5rem; width: 38px; height: 38px; font-size: 0.75rem; }
  .quote-bg { background-image: url('DSC00752%202.jpg'); background-position: 65% 40%; transform: scale(1.6); }
}

/* ===== ADMIN & RSVP PAGES ===== */
.page-wrap {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Montserrat', sans-serif;
}

.card {
  background: var(--white);
  border: 1px solid rgba(138,114,170,0.18);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(138,114,170,0.08);
}

.card .card-logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.5rem;
  color: var(--lila-dark);
  margin-bottom: 0.5rem;
}

.card h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--dark2);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.card input[type="password"],
.card input[type="text"] {
  width: 100%;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--dark2);
  outline: none;
  background: var(--cream);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.card input:focus { border-color: var(--lila-dark); }

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--lila-dark);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}

.btn-primary:hover { background: var(--dark2); }

.btn-secondary {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: transparent;
  color: var(--lila-dark);
  border: 1px solid var(--lila-dark);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover { background: var(--lila-dark); color: var(--white); }

/* Admin panel */
.admin-wrap {
  min-height: 100vh;
  background: var(--cream);
  font-family: 'Montserrat', sans-serif;
}

.admin-header {
  background: var(--white);
  border-bottom: 1px solid rgba(138,114,170,0.15);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header .logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 1.8rem;
  color: var(--lila-dark);
}

.admin-header .logout-btn {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 9999px;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}

.admin-header .logout-btn:hover { color: var(--lila-dark); border-color: var(--lila-dark); }

.admin-body { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.summary-card {
  background: var(--white);
  border: 1px solid rgba(138,114,170,0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.summary-card .s-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--lila-dark);
  line-height: 1;
}

.summary-card .s-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.4rem;
  display: block;
}

.admin-section {
  background: var(--white);
  border: 1px solid rgba(138,114,170,0.15);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.admin-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark2);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(138,114,170,0.12);
  padding-bottom: 0.8rem;
}

.add-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.add-form .fg { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 160px; }

.add-form label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lila-dark);
}

.add-form input,
.add-form select {
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--dark2);
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s;
}

.add-form input:focus,
.add-form select:focus { border-color: var(--lila-dark); }

.new-link-box {
  margin-top: 1.2rem;
  background: rgba(138,114,170,0.08);
  border: 1px solid rgba(138,114,170,0.2);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.new-link-box span { font-size: 0.78rem; color: var(--text); word-break: break-all; flex: 1; }

.guests-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.guests-table th {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(138,114,170,0.15);
}

.guests-table td {
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid rgba(138,114,170,0.08);
  color: var(--dark2);
  vertical-align: middle;
}

.guests-table tr:last-child td { border-bottom: none; }

.guests-table tr:hover td { background: rgba(138,114,170,0.04); }

.badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-weight: 500;
}

.badge-confirmado { background: rgba(34,197,94,0.12); color: #16a34a; }
.badge-declinado  { background: rgba(239,68,68,0.12);  color: #dc2626; }
.badge-pendiente  { background: rgba(234,179,8,0.12);  color: #ca8a04; }

.copy-btn {
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem;
  background: none;
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 9999px;
  color: var(--lila-dark);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}

.copy-btn:hover { background: var(--lila-dark); color: var(--white); }

/* RSVP personal page */
.rsvp-page-wrap {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.rsvp-page-card {
  background: var(--white);
  border: 1px solid rgba(138,114,170,0.18);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(138,114,170,0.08);
}

.rsvp-page-card .logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.5rem;
  color: var(--lila-dark);
  display: block;
  margin-bottom: 0.3rem;
}

.rsvp-page-card h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark2);
  margin-bottom: 0.5rem;
}

.rsvp-page-card .guest-name {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--lila-dark);
  margin: 1rem 0;
}

.rsvp-page-card .pases-info {
  font-size: 0.78rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.rsvp-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm {
  padding: 0.9rem 2rem;
  background: var(--lila-dark);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-confirm:hover { background: var(--dark2); }

.btn-decline {
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(138,114,170,0.3);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-decline:hover { border-color: #dc2626; color: #dc2626; }

.rsvp-confirmed-msg, .rsvp-declined-msg {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
}

.rsvp-confirmed-msg {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.rsvp-declined-msg {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
}

.rsvp-page-card .divider {
  width: 40px;
  height: 1px;
  background: var(--lila-mid);
  margin: 1.5rem auto;
}

@media (max-width: 600px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-body { padding: 1.5rem 1rem; }
  .add-form { flex-direction: column; }
}
