/* ============================================
   CLUB JEN — style.css
   Mobile-first | Disco Nightlife Elegance
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --black:        #060608;
  --black-soft:   #0d0d12;
  --black-card:   #111118;
  --gold:         #D4AF37;
  --gold-bright:  #FFD700;
  --gold-muted:   #8a6f1a;
  --purple:       #7B1FA2;
  --purple-deep:  #4A0072;
  --pink:         #FF006E;
  --pink-soft:    #ff4d94;
  --blue:         #00D4FF;
  --white:        #FAFAF8;
  --white-dim:    rgba(250,250,248,0.6);
  --white-ghost:  rgba(250,250,248,0.12);

  --font-display: 'Cinzel Decorative', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Rajdhani', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-gold:    0 0 20px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.2);
  --glow-pink:    0 0 20px rgba(255,0,110,0.6), 0 0 60px rgba(255,0,110,0.2);
  --glow-blue:    0 0 20px rgba(0,212,255,0.4), 0 0 50px rgba(0,212,255,0.15);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, button, select, textarea { -webkit-appearance: none; }

/* ---------- PARTICLE CANVAS ---------- */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ---------- DISCO LIGHTS ---------- */
.disco-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: lightPulse 8s ease-in-out infinite;
}

.l1 {
  width: 300px; height: 300px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(123,31,162,0.55) 0%, transparent 70%);
  animation-delay: 0s;
}
.l2 {
  width: 250px; height: 250px;
  top: 30%; right: -80px;
  background: radial-gradient(circle, rgba(255,0,110,0.4) 0%, transparent 70%);
  animation-delay: 2s;
}
.l3 {
  width: 280px; height: 280px;
  bottom: 20%; left: -60px;
  background: radial-gradient(circle, rgba(0,212,255,0.3) 0%, transparent 70%);
  animation-delay: 4s;
}
.l4 {
  width: 200px; height: 200px;
  bottom: -60px; right: 10%;
  background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.2); }
}

/* ---------- PAGE ---------- */
.page { position: relative; z-index: 1; }

/* ---------- SECTION COMMONS ---------- */
.section-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* ---------- UTILITY ---------- */
.gold-text  { color: var(--gold); }
.gold-glow  { color: var(--gold-bright); text-shadow: var(--glow-gold); }
.diamond    { color: var(--gold); font-size: 0.6em; vertical-align: middle; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212,175,55,0.3);
}
.btn--primary:hover, .btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,175,55,0.55), var(--glow-gold);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.85rem 2rem;
}
.btn--ghost:hover {
  background: rgba(212,175,55,0.08);
  box-shadow: var(--glow-gold);
}

.btn--large { padding: 1.1rem 2.8rem; font-size: 0.85rem; }
.btn--full  { width: 100%; }

.btn__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover .btn__glow { opacity: 1; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(123,31,162,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255,0,110,0.1) 0%, transparent 65%),
    linear-gradient(180deg, rgba(6,6,8,0) 0%, var(--black) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Save the Date badge */
.save-the-date {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  padding: 0.45rem 1.2rem;
  border-radius: 1px;
}

/* Main Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 18vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.title-line:first-child {
  color: var(--white);
  opacity: 0.9;
  font-size: 0.55em;
  letter-spacing: 0.3em;
  font-weight: 400;
}

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4.5vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blue);
  /* color: var(--white-dim); */
  line-height: 1.2;
}
.hero__subtitle em {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

/* Celebrant */
.hero__celebrant {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Date display */
.hero__date {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-sm);
  background: rgba(212,175,55,0.04);
}

.date-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 700;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  line-height: 1;
}

.date-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.date-meta span:first-child {
  font-size: 1.5rem;
  color: var(--white);
}
.date-meta span:last-child {
  font-size: 0.8rem;
  color: var(--gold-muted);
  letter-spacing: 0.25em;
}

/* Scroll indicator */
.hero__scroll {
  margin-top: 1rem;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(0); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(6px); }
}

@keyframes pulseColor {
  0% {
    transform: scale(1);
    color: #FAFAF8; /* white */
  }
  33% {
    transform: scale(1.2);
    color: var(--blue); /* blue */
  }
  66% {
    transform: scale(1.3);
    color: #FFD700; /* bright gold */
  }
  100% {
    transform: scale(1);
    color: #FAFAF8; /* back to white */
  }
}

.celebrant-name {
  animation: pulseColor 2s infinite;
  font-size: 1.1rem;
}
/* ---------- DETAILS ---------- */
.details {
  padding: 5rem 0;
  position: relative;
}

.details::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
  margin-bottom: 5rem;
}

.details__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.detail-card:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.04);
  transform: translateX(4px);
}

.detail-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border-radius: var(--radius-sm);
  color: var(--gold);
}
.detail-card__icon svg { width: 22px; height: 22px; }

.detail-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.detail-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
}
.detail-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ---------- VIBE ---------- */
.vibe {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vibe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(74,0,114,0.22) 0%, transparent 75%);
  pointer-events: none;
}

.vibe__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Disco ball graphic */
.disco-ball {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.ball {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: 
    repeating-linear-gradient(45deg, rgba(212,175,55,0.7) 0px, rgba(212,175,55,0.7) 3px, transparent 3px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.3) 0px, rgba(255,255,255,0.3) 3px, transparent 3px, transparent 10px),
    linear-gradient(135deg, #888 0%, #ddd 30%, #888 60%, #bbb 100%);
  box-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.2), inset 0 0 20px rgba(0,0,0,0.4);
  animation: ballSpin 8s linear infinite;
}

@keyframes ballSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Light beams */
.beam {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top center;
  opacity: 0;
  animation: beamSweep 3s ease-in-out infinite;
}
.b1 { transform: rotate(0deg);   animation-delay: 0s; }
.b2 { transform: rotate(60deg);  animation-delay: 0.5s; }
.b3 { transform: rotate(120deg); animation-delay: 1s; }
.b4 { transform: rotate(180deg); animation-delay: 1.5s; }
.b5 { transform: rotate(240deg); animation-delay: 2s; }
.b6 { transform: rotate(300deg); animation-delay: 2.5s; }

@keyframes beamSweep {
  0%, 100% { opacity: 0; height: 40px; }
  50%       { opacity: 0.8; height: 70px; }
}

/* Quote */
.vibe__quote {
  border: none;
}
.vibe__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 5.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  font-style: italic;
}
.vibe__quote footer {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white-dim);
}
.vibe__quote footer em {
  color: var(--gold);
  font-style: italic;
}

/* Hashtag tags */
.vibe__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.vibe__tags span {
  padding: 0.4rem 0.9rem;
  background: var(--white-ghost);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-dim);
}

/* ---------- CTA ---------- */
.cta {
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
  margin-bottom: 5rem;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.cta__sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.1);
}
.footer__inner { max-width: 480px; margin: 0 auto; }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer__tagline, .footer__credit {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ====================================
   RSVP PAGE
   ==================================== */

/* NAV */
.rsvp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.25s;
}
.back-link:hover { color: var(--gold); }
.back-link svg { width: 18px; height: 18px; }

.rsvp-nav__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* RSVP SECTION */
.rsvp-section {
  min-height: 100svh;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.rsvp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 50% at 50% 20%, rgba(123,31,162,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.rsvp-inner {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}

/* RSVP HEADER */
.rsvp-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.rsvp-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 13vw, 4rem);
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  letter-spacing: 0.1em;
}

.rsvp-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.6;
}

/* FORM WRAPPER */
.form-wrapper {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* FORM GROUPS */
.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--half { flex-direction: row; gap: 0.75rem; }
.form-row--half .form-group { flex: 1; min-width: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.form-input::placeholder { color: rgba(250,250,248,0.25); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: rgba(212,175,55,0.03);
}
.form-input.error {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,0,110,0.1);
}

/* Phone */
.phone-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.phone-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
/* Country Code Select */
.form-input--country {
  flex-shrink: 0;
  width: 90px;
  padding: 1rem 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 100%;
  display: flex;
  align-items: center;
}
.form-input--country:focus {
  outline: none;
}
.form-input--country option {
  background: var(--black-soft);
  color: var(--text-light);
  padding: 1rem 0.4rem;
  font-size: 0.95rem;
}
.form-input--phone {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.form-input--phone:focus { box-shadow: none; }

/* Error text */
.form-error {
  font-size: 0.72rem;
  color: var(--pink-soft);
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

/* Submit spacing */
.form-group + .btn { margin-top: 1.5rem; }
.btn--full + .form-note { margin-top: 1rem; }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250,250,248,0.3);
  letter-spacing: 0.03em;
  margin-top: 1rem;
}

/* ---------- SUCCESS STATE ---------- */
.hidden { display: none !important; }

.success-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: successIn 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes successIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.success-icon {
  font-size: 4rem;
  animation: dancePulse 1s ease-in-out infinite alternate;
}
@keyframes dancePulse {
  from { transform: scale(1) rotate(-5deg); }
  to   { transform: scale(1.1) rotate(5deg); }
}

.success-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
}

.success-message {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white-dim);
}
.success-message span { color: var(--gold); font-style: normal; font-weight: 600; }

.success-details {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 2px;
}

.success-note {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.35);
}

/* ====================================
   RESPONSIVE — TABLET & UP
   ==================================== */
@media (min-width: 600px) {
  .section-inner { padding: 0 2rem; }

  .details__grid {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__title {
    font-size: clamp(4.5rem, 13vw, 8rem);
  }

  .form-wrapper {
    padding: 2.5rem 2.5rem;
  }

  .hero__inner {
    gap: 0.68rem;
    margin-top: -1rem;
  }
}

@media (min-width: 768px) {
  .hero { padding: 6rem 2rem 5rem; }

  .details__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .detail-card {
    flex: 1;
    min-width: 200px;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem 1.25rem;
  }
  .detail-card:hover { transform: translateY(-4px); }

  .vibe__quote p { font-size: 2rem; }

  .rsvp-section { align-items: center; }
  
}

/* ====================================
   REDUCED MOTION
   ==================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}