/* ==========================================================================
   STYLE.CSS — Premium Islamic Wedding Invitation
   Palette: Warm Ivory · Emerald Green · Champagne Gold
   ========================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  /* --- Ivory --- */
  --ivory-50:   #FDFAF4;
  --ivory-100:  #FAF5E9;
  --ivory-200:  #F5ECDA;
  --ivory-300:  #EDE0C8;

  /* --- Emerald Green --- */
  --emerald-950: #051A0F;
  --emerald-900: #0A2E1A;
  --emerald-800: #0F4226;
  --emerald-700: #165733;
  --emerald-600: #1E6E42;
  --emerald-500: #268552;
  --emerald-400: #3AA368;
  --emerald-300: #6DC494;
  --emerald-200: #A8DFC0;
  --emerald-100: #D4F0E2;

  /* --- Champagne Gold --- */
  --gold-900:   #5C3D0A;
  --gold-800:   #7A5212;
  --gold-700:   #9A6A1E;
  --gold-600:   #B8832C;
  --gold-500:   #D4A843;   /* primary gold */
  --gold-400:   #E2BF6A;
  --gold-300:   #EDCF8A;
  --gold-200:   #F5E2B2;
  --gold-100:   #FAF0D6;

  /* --- Semantic aliases --- */
  --bg-primary:     var(--ivory-100);
  --bg-secondary:   var(--ivory-200);
  --bg-dark:        var(--emerald-900);
  --bg-darker:      var(--emerald-950);
  --gold:           var(--gold-500);
  --gold-light:     var(--gold-300);
  --gold-dark:      var(--gold-700);
  --green:          var(--emerald-600);
  --green-dark:     var(--emerald-800);
  --green-light:    var(--emerald-400);
  --text-dark:      var(--emerald-900);
  --text-medium:    var(--emerald-700);
  --text-light:     var(--emerald-500);
  --text-on-dark:   var(--ivory-100);
  --text-muted:     rgba(253,250,244,0.65);

  /* --- Typography --- */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-script:  'Great Vibes', cursive;
  --font-label:   'Cinzel', serif;
  --font-body:    'Jost', 'Lato', sans-serif;
  --font-arabic:  'Amiri', serif;

  /* --- Spacing --- */
  --section-pad: clamp(80px, 10vw, 120px) 20px;

  /* --- Easing --- */
  --ease-silk:     cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* --- Shadows --- */
  --shadow-soft:  0 4px 40px rgba(10, 46, 26, 0.07);
  --shadow-lift:  0 20px 60px rgba(10, 46, 26, 0.14);
  --shadow-gold:  0 8px 28px rgba(212, 168, 67, 0.30);
  --shadow-card:  0 2px 20px rgba(10, 46, 26, 0.08), 0 8px 32px rgba(10, 46, 26, 0.05);

  /* --- Gradients --- */
  --gold-gradient: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 45%, var(--gold-700) 100%);
  --emerald-gradient: linear-gradient(160deg, var(--emerald-800) 0%, var(--emerald-600) 55%, var(--emerald-700) 100%);
  --glass-bg:     rgba(253,250,244,0.72);
  --glass-border: rgba(212,168,67,0.30);

  --transition:      all 0.55s var(--ease-standard);
  --transition-fast: all 0.28s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===== SHARED TYPOGRAPHY ===== */
.section-eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  text-align: center;
}
.section-eyebrow--light { color: rgba(242,227,178,0.85); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-align: center;
}
.section-title--light { color: var(--ivory-100); }

/* Ornament divider */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 36px;
}
.ornament-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-400));
}
.ornament-line--right  { background: linear-gradient(90deg, var(--emerald-400), transparent); }
.ornament-line--gold   { background: linear-gradient(90deg, transparent, var(--gold-400)); }
.ornament-line--gold.ornament-line--right { background: linear-gradient(90deg, var(--gold-400), transparent); }
.ornament-gem {
  font-size: 1rem;
  color: var(--emerald-500);
  filter: drop-shadow(0 1px 6px rgba(30,110,66,0.3));
}
.ornament-gem--gold {
  color: var(--gold-400);
  filter: drop-shadow(0 1px 8px rgba(212,168,67,0.4));
}

/* Text utilities */
.text-emerald { color: var(--emerald-600); font-weight: 500; }
.text-gold    { color: var(--gold); }

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 5;
  opacity: 0.028; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
  position: fixed; bottom: 28px; right: 24px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--emerald-800);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(10,46,26,0.45), 0 0 0 1px rgba(212,168,67,0.25);
  border: 1px solid rgba(212,168,67,0.30);
  transition: transform 0.3s var(--ease-out-soft), box-shadow 0.3s ease;
}
.music-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(10,46,26,0.5), var(--shadow-gold); }
.music-toggle:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }
.music-toggle.is-playing i { animation: spin 5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SIDE NAV DOTS ===== */
.side-nav {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 150; display: flex; flex-direction: column; gap: 14px;
}
.side-nav__dot {
  position: relative; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(30,110,66,0.28);
  border: 1px solid rgba(212,168,67,0.25);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.side-nav__dot[aria-current="true"] {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: scale(1.5);
}
.side-nav__dot::after {
  content: attr(data-label);
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-label); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; color: var(--emerald-800);
  background: var(--ivory-50); padding: 4px 10px; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  box-shadow: var(--shadow-card);
}
.side-nav__dot:hover::after { opacity: 1; }
@media (max-width: 768px) { .side-nav { display: none; } }

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  pointer-events: none;
}
.top-nav.scrolled {
  background: rgba(253,250,244,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 40px;
  box-shadow: 0 2px 24px rgba(10,46,26,0.08);
  pointer-events: auto;
}
.top-nav__logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.top-nav__amp { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; }

/* ===== OPENING GATE ===== */
body.gate-active { overflow: hidden; height: 100vh; }

#gate {
  position: fixed; inset: 0; z-index: 9999; overflow: hidden;
  background: var(--emerald-950);
}
#gate.gate-hidden { display: none; }

.gate-image {
  position: absolute; inset: 0; overflow: hidden;
}
.gate-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: sepia(15%) saturate(80%) brightness(0.75);
  animation: gateSlowZoom 16s ease-in-out infinite alternate;
}
@keyframes gateSlowZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}

.gate-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,26,15,0.60) 0%,
    rgba(5,26,15,0.35) 35%,
    rgba(5,26,15,0.55) 65%,
    rgba(5,26,15,0.95) 100%
  );
}
.gate-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,26,15,0.65) 100%);
  pointer-events: none;
}

/* Subtle Islamic star-lattice pattern */
.gate-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.07;
  background-image:
    repeating-linear-gradient(0deg, rgba(212,168,67,0.6) 0px, rgba(212,168,67,0.6) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(212,168,67,0.6) 0px, rgba(212,168,67,0.6) 1px, transparent 1px, transparent 60px);
}

/* Gate button / content */
.gate-content {
  position: relative; z-index: 3;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; padding: 40px 24px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* Corner brackets */
.gate-corner {
  position: absolute;
  width: 48px; height: 48px;
  border-color: var(--gold-400); border-style: solid; opacity: 0.7;
  transition: opacity 0.6s ease;
}
.gate-corner.tl { top: 24px;    left: 24px;   border-width: 1.5px 0 0 1.5px; }
.gate-corner.tr { top: 24px;    right: 24px;  border-width: 1.5px 1.5px 0 0; }
.gate-corner.bl { bottom: 24px; left: 24px;   border-width: 0 0 1.5px 1.5px; }
.gate-corner.br { bottom: 24px; right: 24px;  border-width: 0 1.5px 1.5px 0; }

/* Bismillah */
.gate-bismillah {
  font-family: var(--font-arabic);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: var(--gold-300);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(212,168,67,0.35);
  opacity: 0; filter: blur(8px); transform: translateY(-14px) scale(0.94);
  animation: gateBismillahIn 1.8s var(--ease-out-soft) 0.4s forwards,
             gateBismillahGlow 4s ease-in-out 2.5s infinite;
  margin-bottom: 22px;
}
@keyframes gateBismillahIn {
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}
@keyframes gateBismillahGlow {
  0%,100% { text-shadow: 0 2px 20px rgba(212,168,67,0.30); }
  50%     { text-shadow: 0 2px 36px rgba(212,168,67,0.65); }
}

/* Ornament row */
.gate-ornament {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  animation: gateFadeIn 1s ease 1.2s forwards;
}
.gate-ornament--bottom { margin-top: 16px; margin-bottom: 28px; animation-delay: 1.6s; }
.gate-line { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-400)); }
.gate-line:last-child { background: linear-gradient(90deg, var(--gold-400), transparent); }
.gate-star  { font-size: 0.75rem; color: var(--gold-400); }
.gate-diamond {
  width: 7px; height: 7px;
  background: var(--gold-500); transform: rotate(45deg);
}
.gate-amp { font-family: var(--font-display); font-style: italic; font-size: 0.8em; color: var(--gold-300); }

/* Gate label */
.gate-label {
  font-family: var(--font-label);
  font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0; animation: gateFadeUp 1s ease 1.3s forwards;
  margin-bottom: 16px;
}

/* Gate names */
.gate-names {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  color: var(--ivory-100);
  line-height: 1; letter-spacing: 0.02em;
  opacity: 0; animation: gateFadeUp 1.1s ease 1.5s forwards;
  margin-bottom: 14px;
  text-shadow: 0 4px 28px rgba(0,0,0,0.45);
}

/* Gate date */
.gate-date {
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  letter-spacing: 0.3em; color: rgba(245,226,178,0.75);
  opacity: 0; animation: gateFadeUp 1s ease 1.7s forwards;
  margin-bottom: 0;
}

/* Tap indicator */
.gate-tap {
  position: relative; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: gateFadeIn 1s ease 2.1s forwards;
  margin-bottom: 12px;
}
.gate-tap-ring {
  position: absolute; inset: 0;
  border: 1px solid var(--gold-400); border-radius: 50%;
  animation: gateTapPulse 2.4s ease-out infinite;
}
.gate-tap-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-900); font-size: 15px;
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
  position: relative; z-index: 1;
}
@keyframes gateTapPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.gate-tap-text {
  font-family: var(--font-label);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,226,178,0.75);
  opacity: 0; animation: gateFadeIn 1s ease 2.2s forwards;
}

/* Gate closing transition */
#gate.gate-closing { transition: opacity 0.9s ease 0.3s, visibility 0.9s ease 0.3s; opacity: 0; pointer-events: none; }
#gate.gate-closing .gate-bismillah,
#gate.gate-closing .gate-ornament,
#gate.gate-closing .gate-label,
#gate.gate-closing .gate-names,
#gate.gate-closing .gate-date,
#gate.gate-closing .gate-tap,
#gate.gate-closing .gate-tap-text {
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
  opacity: 0; transform: translateY(-12px) scale(1.02); animation: none;
}
#gate.gate-closing .gate-image img {
  transition: transform 1.2s ease, filter 1.2s ease;
  transform: scale(1.25); filter: sepia(15%) saturate(80%) brightness(1);
}
#gate.gate-closing .gate-overlay { transition: opacity 0.9s ease 0.15s; opacity: 0; }
#gate.gate-closing .gate-corner  { transition: opacity 0.4s ease; opacity: 0; }

@keyframes gateFadeIn { to { opacity: 1; } }
@keyframes gateFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--emerald-950);
}
.hero__backdrop { position: absolute; inset: 0; z-index: 0; }
.hero__bg-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,26,15,0.45) 0%,
    rgba(5,26,15,0.55) 45%,
    rgba(5,26,15,0.82) 100%
  );
}

/* Ambient particles */
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute; color: var(--gold-300); opacity: 0.45;
  animation: particleFloat 10s ease-in-out infinite;
}
.p1 { left: 8%;  top: 25%; font-size: 0.7rem; animation-delay: 0s; }
.p2 { right: 10%; top: 40%; font-size: 0.5rem; animation-delay: 2.5s; }
.p3 { left: 18%; bottom: 30%; font-size: 0.6rem; animation-delay: 5s; }
.p4 { right: 20%; bottom: 22%; font-size: 0.55rem; animation-delay: 1.5s; }
.p5 { left: 50%; top: 12%; font-size: 0.5rem; animation-delay: 3.5s; }
@keyframes particleFloat {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
  50%      { transform: translateY(-20px) rotate(10deg); opacity: 0.65; }
}

/* Islamic arch decoration */
.hero__arch {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(100%, 700px); z-index: 1; pointer-events: none;
}
.hero__arch-svg { width: 100%; height: auto; }

/* Hero stage */
.hero__stage {
  position: relative; z-index: 2; text-align: center;
  width: 100%; max-width: 780px; padding: 0 28px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}

/* Hero reveal items */
.reveal-item {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-out-soft), transform 1s var(--ease-out-soft);
}
.hero-revealed .reveal-item { opacity: 1; transform: translateY(0); }
.hero-revealed .reveal-item[data-reveal="1"] { transition-delay: 0.10s; }
.hero-revealed .reveal-item[data-reveal="2"] { transition-delay: 0.25s; }
.hero-revealed .reveal-item[data-reveal="3"] { transition-delay: 0.42s; }
.hero-revealed .reveal-item[data-reveal="4"] { transition-delay: 0.60s; }
.hero-revealed .reveal-item[data-reveal="5"] { transition-delay: 0.76s; }
.hero-revealed .reveal-item[data-reveal="6"] { transition-delay: 0.90s; }
.hero-revealed .reveal-item[data-reveal="7"] { transition-delay: 1.04s; }

/* Eyebrow arabic */
.hero__eyebrow {
  font-family: var(--font-arabic);
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  color: var(--gold-300);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(212,168,67,0.35);
}

/* Hero ornament lines */
.hero__ornament { display: flex; align-items: center; gap: 14px; }
.h-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,67,0.5)); }
.h-line:last-child { background: linear-gradient(90deg, rgba(212,168,67,0.5), transparent); }
.h-star { font-size: 0.65rem; color: var(--gold-300); }
.h-diamond {
  width: 6px; height: 6px; background: var(--gold-400);
  transform: rotate(45deg);
}

/* Hero names */
.hero__names {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-display);
  color: var(--ivory-100);
  text-shadow: 0 3px 24px rgba(0,0,0,0.5);
}
.hero__name {
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  font-weight: 500; letter-spacing: 0.025em; line-height: 1.1;
}
.hero__amp {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--gold-300);
  line-height: 1; display: block;
  text-shadow: 0 2px 16px rgba(212,168,67,0.4);
}

/* Tagline */
.hero__tagline {
  font-family: var(--font-label);
  font-size: clamp(0.7rem, 1.8vw, 0.88rem);
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold-400);
}

/* Date */
.hero__date {
  font-family: var(--font-label);
  color: var(--gold-300);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.28em;
  display: flex; gap: 10px; align-items: center;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero__date em { font-style: normal; color: var(--gold-700); }

/* Venue line */
.hero__venue {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.8vw, 0.92rem);
  letter-spacing: 0.06em;
  color: rgba(253,250,244,0.78); text-align: center;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold-300); opacity: 0; pointer-events: none;
  transition: opacity 0.8s ease;
}
.scroll-cue.is-visible { opacity: 0.75; pointer-events: auto; }
.scroll-cue__stem {
  width: 1px; height: 36px;
  background: linear-gradient(var(--gold-300), transparent);
  animation: scrollStem 2.2s ease-in-out infinite;
}
.scroll-cue__text {
  font-family: var(--font-label);
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
}
@keyframes scrollStem {
  0%,100% { transform: scaleY(1); opacity: 0.75; }
  50%      { transform: scaleY(0.55); opacity: 0.25; }
}

/* ===== BISMILLAH / OPENING SECTION ===== */
.section-bismillah {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
  position: relative; overflow: hidden;
}
.bismillah__pattern {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.035;
  background-image: url('../assets/images/hero-bg1.png');
  background-size: cover; background-position: center;
}
.bismillah__content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.bismillah__arabic {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--emerald-700);
  line-height: 1.5; margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(22,87,51,0.12);
}
.bismillah__transliteration {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--gold-dark); letter-spacing: 0.04em;
  margin-bottom: 0;
}
.bismillah__verse {
  background: linear-gradient(135deg, rgba(22,87,51,0.05), rgba(212,168,67,0.06));
  border: 1px solid rgba(22,87,51,0.12);
  border-left: 3px solid var(--emerald-500);
  border-radius: 12px;
  padding: 36px 40px;
  text-align: left; position: relative;
}
.bismillah__verse::before {
  content: '"';
  position: absolute; top: 10px; left: 18px;
  font-family: var(--font-serif);
  font-size: 5rem; color: var(--emerald-200);
  line-height: 1; pointer-events: none;
}
.verse-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--emerald-700);
  direction: rtl; text-align: right;
  line-height: 2; margin-bottom: 20px;
}
.verse-translation {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--text-medium); line-height: 1.9;
  margin-bottom: 14px;
}
.verse-source {
  font-family: var(--font-label);
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
}
.bismillah__message {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--text-medium); line-height: 1.9;
  max-width: 640px; margin: 0 auto;
}
.bismillah__message strong { color: var(--emerald-700); font-weight: 600; }

/* ===== COUPLE SECTION ===== */
.section-couple {
  padding: var(--section-pad);
  background: var(--emerald-gradient);
  position: relative; overflow: hidden;
}
.couple__bg-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, var(--gold-400) 0px, var(--gold-400) 1px, transparent 1px, transparent 64px
  );
}
.couple__content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; text-align: center; }
.couple__content .section-eyebrow { color: rgba(237,207,138,0.85); }
.couple__content .section-title   { color: var(--ivory-100); }
.couple__content .ornament-gem    { color: var(--gold-400); }
.couple__content .ornament-line   { background: linear-gradient(90deg, transparent, var(--gold-400)); }
.couple__content .ornament-line--right { background: linear-gradient(90deg, var(--gold-400), transparent); }

/* Photo */
.couple__photo-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto 52px;
}
.couple__photo-frame {
  position: relative;
  width: min(82vw, 380px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,168,67,0.2);
  transition: transform 0.55s var(--ease-out-soft), box-shadow 0.55s ease;
}
.couple__photo-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 44px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,67,0.35);
}
.couple__photo-frame img {
  width: 100%; height: auto; display: block;
  border-radius: 24px;
  aspect-ratio: 4/5; object-fit: cover;
}

/* Corner ornaments on photo */
.frame-corner {
  position: absolute; width: 28px; height: 28px;
  border-color: var(--gold-300); border-style: solid; z-index: 2;
  pointer-events: none;
}
.fc-tl { top: 10px;    left: 10px;   border-width: 1.5px 0 0 1.5px; }
.fc-tr { top: 10px;    right: 10px;  border-width: 1.5px 1.5px 0 0; }
.fc-bl { bottom: 10px; left: 10px;   border-width: 0 0 1.5px 1.5px; }
.fc-br { bottom: 10px; right: 10px;  border-width: 0 1.5px 1.5px 0; }

.couple__photo-caption {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: var(--ivory-100);
  margin-top: 20px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.caption-amp { font-family: var(--font-display); font-style: italic; color: var(--gold-300); }

/* Couple cards */
.couple__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 860px; margin: 0 auto;
}
.couple-card {
  background: rgba(253,250,244,0.07);
  border: 1px solid rgba(212,168,67,0.28);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center; position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.couple-card::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.couple-card:hover {
  background: rgba(253,250,244,0.11);
  border-color: rgba(212,168,67,0.50);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.couple-card__badge {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem; color: var(--emerald-900);
  box-shadow: var(--shadow-gold);
}
.couple-card__role {
  display: block;
  font-family: var(--font-label);
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 12px;
}
.couple-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 500; color: var(--ivory-100);
  line-height: 1.2; margin-bottom: 14px;
}
.couple-card__divider {
  width: 40px; height: 1px;
  background: var(--gold-gradient);
  margin: 0 auto 18px;
}
.couple-card__relation {
  font-family: var(--font-label);
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(237,207,138,0.65); margin-bottom: 10px;
}
.couple-card__parents {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(253,250,244,0.80);
  line-height: 1.8; margin-bottom: 20px;
}
.couple-card__and { color: var(--gold-300); }
.couple-card__address {
  display: flex; align-items: flex-start; gap: 8px; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem; color: rgba(253,250,244,0.55);
  line-height: 1.5;
}
.couple-card__address i { color: var(--gold-600); margin-top: 2px; flex-shrink: 0; }

/* ===== EVENTS SECTION ===== */
.section-events {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  position: relative; overflow: hidden;
}
.section-events::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald-400), transparent);
}
.events__content { max-width: 1000px; margin: 0 auto; text-align: center; }

.events__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 0;
}

.event-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 48px 36px;
  position: relative; text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.event-card__glow {
  position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(22,87,51,0.08), transparent 70%);
  transition: opacity 0.4s;
}
.event-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); border-color: var(--gold-400); }
.event-card:hover .event-card__glow { opacity: 0; }
.event-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald-400), transparent);
  transform: scaleX(0); transition: transform 0.55s var(--ease-standard);
}
.event-card:hover::after { transform: scaleX(1); }

.event-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--emerald-gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.4rem; color: var(--ivory-100);
  box-shadow: 0 8px 24px rgba(10,46,26,0.25);
}
.event-card__type {
  font-family: var(--font-label);
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 8px; display: block;
}
.event-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--green-dark);
  margin-bottom: 6px;
}
.event-card__divider {
  width: 48px; height: 1px;
  background: var(--gold-gradient);
  margin: 18px auto 28px;
}
.event-card__details { list-style: none; padding: 0; text-align: left; }

.event-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.event-detail__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(22,87,51,0.08);
  border: 1px solid rgba(22,87,51,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-600); font-size: 0.8rem;
}
.event-detail__body { flex: 1; }
.event-detail__label {
  display: block; font-family: var(--font-label);
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 3px;
}
.event-detail__value {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--green-dark); font-weight: 500;
  line-height: 1.5;
}

/* Maps button */
.maps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px; padding: 13px 28px;
  background: transparent;
  border: 1.5px solid var(--gold-600);
  border-radius: 999px;
  color: var(--gold-dark);
  font-family: var(--font-label);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition-fast);
  text-decoration: none;
}
.maps-btn:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-300);
  color: var(--emerald-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.maps-btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.maps-btn--footer { color: var(--gold-300); border-color: rgba(212,168,67,0.40); }
.maps-btn--footer:hover { color: var(--emerald-900); }

/* ===== COUNTDOWN ===== */
.section-countdown {
  padding: var(--section-pad);
  background: var(--emerald-gradient);
  text-align: center; position: relative; overflow: hidden;
}
.countdown__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(58,163,104,0.18), transparent 65%);
  pointer-events: none;
}
.countdown__content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.countdown__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 0;
}
.countdown__box {
  background: rgba(253,250,244,0.08);
  border: 1px solid rgba(212,168,67,0.28);
  border-radius: 18px; padding: 36px 16px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.countdown__box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.countdown__box:hover { transform: translateY(-4px); background: rgba(253,250,244,0.12); }
.countdown__number {
  font-family: var(--font-label);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--ivory-100);
  text-shadow: 0 2px 20px rgba(212,168,67,0.35);
  line-height: 1; display: block; font-weight: 600;
  letter-spacing: 0.04em;
}
.countdown__label {
  font-family: var(--font-label);
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(237,207,138,0.75); margin-top: 10px; display: block;
}
.countdown__info {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(253,250,244,0.65);
  margin-top: 40px; line-height: 1.8;
}

/* ===== VENUE SECTION ===== */
.section-venue {
  padding: var(--section-pad);
  background: var(--bg-primary);
  position: relative;
}
.venue__content { max-width: 1060px; margin: 0 auto; text-align: center; }
.venue__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.venue-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: left;
}
.venue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.venue-card__header {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(22,87,51,0.10);
  background: rgba(22,87,51,0.04);
}
.venue-card__header i {
  font-size: 1.4rem; color: var(--emerald-600);
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(22,87,51,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.venue-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--green-dark); font-weight: 500;
}
.venue-card__sub {
  font-family: var(--font-label);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-top: 4px;
}
.venue-card__map {
  width: 100%; height: 240px;
  background: var(--ivory-300);
  overflow: hidden; position: relative;
}
.venue-card__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.venue-card__address {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 18px 28px 0;
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--text-medium); line-height: 1.6;
}
.venue-card__address i { color: var(--emerald-500); margin-top: 2px; flex-shrink: 0; }
.venue-card .maps-btn { display: flex; margin: 14px 28px 28px; width: calc(100% - 56px); justify-content: center; }

/* ===== RSVP ===== */
.section-rsvp {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  position: relative; overflow: hidden;
}
.rsvp__pattern {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.03;
  background-image: url('../assets/images/hero-bg1.png');
  background-size: cover; background-position: center;
}
.rsvp__content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.rsvp__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-medium); line-height: 1.9;
  max-width: 520px; margin: 0 auto 40px;
}

/* Form */
.rsvp__form { text-align: left; }
.rsvp__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rsvp__field { margin-bottom: 22px; }
.rsvp__label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--emerald-700); margin-bottom: 8px;
}
.rsvp__optional { color: var(--text-light); font-style: italic; text-transform: none; letter-spacing: 0; }
.rsvp__input {
  width: 100%; padding: 14px 18px;
  background: rgba(253,250,244,0.85);
  border: 1.5px solid rgba(22,87,51,0.18);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none; -webkit-appearance: none;
}
.rsvp__input:focus {
  outline: none;
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(22,87,51,0.10);
}
.rsvp__input::placeholder { color: rgba(22,87,51,0.35); }
.rsvp__textarea { resize: vertical; min-height: 110px; }
.rsvp__select { cursor: pointer; }

/* Radio group */
.rsvp__radio-group { display: flex; flex-direction: column; gap: 12px; }
.rsvp__radio {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; user-select: none;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-medium);
}
.rsvp__radio input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.rsvp__radio-box {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(253,250,244,0.85);
  border: 1.5px solid rgba(22,87,51,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.rsvp__radio input:checked ~ .rsvp__radio-box {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  color: var(--ivory-100);
}
.rsvp__radio:hover .rsvp__radio-box { border-color: var(--emerald-500); }
.rsvp__radio input:focus-visible ~ .rsvp__radio-box { outline: 2px solid var(--gold-500); outline-offset: 2px; }

/* Submit button */
.rsvp__btn {
  width: 100%; padding: 16px 28px;
  background: var(--emerald-gradient);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-label);
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-100);
  cursor: pointer; transition: var(--transition-fast);
  box-shadow: 0 6px 24px rgba(10,46,26,0.3);
  border: 1px solid rgba(212,168,67,0.2);
  margin-top: 6px;
}
.rsvp__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(10,46,26,0.35), var(--shadow-gold);
  background: linear-gradient(160deg, var(--emerald-600) 0%, var(--emerald-500) 55%, var(--emerald-600) 100%);
}
.rsvp__btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.rsvp__btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success state */
.rsvp__success {
  text-align: center; padding: 60px 20px;
}
.rsvp__success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem; color: var(--emerald-900);
  box-shadow: var(--shadow-gold);
  animation: successPop 0.6s var(--ease-out-soft);
}
@keyframes successPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.rsvp__success-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--green-dark); margin-bottom: 14px;
}
.rsvp__success-msg {
  font-family: var(--font-body);
  font-size: 1rem; color: var(--text-medium);
  line-height: 1.8; max-width: 400px; margin: 0 auto;
}

/* ===== THANK YOU ===== */
.section-thankyou {
  padding: var(--section-pad);
  background: var(--emerald-gradient);
  text-align: center; position: relative; overflow: hidden;
}
.thankyou__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, rgba(58,163,104,0.15), transparent 65%);
}
.thankyou__content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.thankyou__arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--gold-300); line-height: 1.5;
  text-shadow: 0 2px 16px rgba(212,168,67,0.3);
  margin-bottom: 8px;
}
.thankyou__title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--ivory-100);
  line-height: 1; margin-bottom: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.thankyou__message {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(253,250,244,0.75);
  line-height: 1.9; max-width: 580px; margin: 0 auto;
}
.thankyou__dua {
  font-family: var(--font-arabic);
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  color: var(--gold-300); line-height: 1.9;
  text-shadow: 0 2px 12px rgba(212,168,67,0.25);
  margin-top: 8px; display: block;
}
.thankyou__dua-trans {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(253,250,244,0.55);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--emerald-950);
  padding: clamp(70px,8vw,100px) 20px clamp(36px,4vw,48px);
  text-align: center; position: relative; overflow: hidden;
}
.footer__pattern {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg, var(--gold-500) 0px, var(--gold-500) 1px, transparent 1px, transparent 64px
  );
}
.footer__content { position: relative; z-index: 2; }
.footer__names {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 12px;
}
.footer__name-script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--ivory-100);
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
  line-height: 1;
}
.footer__amp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--gold-400);
  line-height: 1;
}
.footer__date {
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 1.8vw, 0.92rem);
  letter-spacing: 0.3em; color: rgba(253,250,244,0.45);
  margin-bottom: 44px;
}
.footer__divider {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold-700), transparent);
  margin: 0 auto 32px;
}
.footer__links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 16px;
  margin-bottom: 40px;
}
.footer__blessing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(253,250,244,0.45);
  line-height: 1.8; max-width: 460px; margin: 0 auto 32px;
}
.footer__bottom {
  font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: rgba(253,250,244,0.28);
}

/* ===== UTILITY KEYFRAMES ===== */
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes floatY  {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

/* ===== PAGE LOADED STATE ===== */
/* Applied to <body> by JS after gate closes */
body.page-loaded { overflow: auto; }

/* ===== RSVP ERROR STATE ===== */
.rsvp__input--error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12) !important;
  animation: shakeInput 0.42s ease;
}
@keyframes shakeInput {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}
