/* ═══════════════════════════════════════════════
   Psychic Game Night — Design System v3
   Theme: Dark Purple + Gold Mystical
   ═══════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Dark Purple Palette */
  --void:            #110b1e;
  --deep-purple:     #1a1028;
  --rich-plum:       #241535;
  --medium-plum:     #2f1d45;
  --soft-plum:       #3d2758;
  --muted-purple:    #6b4d8a;
  --light-purple:    #a78bcd;
  --pale-lavender:   #d4c4ee;

  /* Text Colors */
  --text-primary:    #f4f0fa;
  --text-secondary:  rgba(244, 240, 250, 0.7);
  --text-muted:      rgba(244, 240, 250, 0.45);

  /* Gold Accents */
  --gold:            #d4b96a;
  --gold-bright:     #e8cc7a;
  --gold-dim:        #b89d52;
  --rose:            #c98a9a;
  --rose-soft:       rgba(201, 138, 154, 0.3);

  /* CTA — Gold on dark */
  --cta:             #d4b96a;
  --cta-text:        #1a1028;

  /* Opacity Variants */
  --purple-glow:     rgba(107, 77, 138, 0.2);
  --purple-soft:     rgba(107, 77, 138, 0.08);
  --gold-glow:       rgba(212, 185, 106, 0.2);
  --gold-soft:       rgba(212, 185, 106, 0.08);

  /* Tinted Shadows */
  --shadow-purple-sm: 0 2px 8px rgba(17, 11, 30, 0.3), 0 1px 3px rgba(17, 11, 30, 0.2);
  --shadow-purple-md: 0 4px 24px rgba(17, 11, 30, 0.4), 0 2px 8px rgba(17, 11, 30, 0.2);
  --shadow-purple-lg: 0 8px 48px rgba(17, 11, 30, 0.5), 0 4px 12px rgba(17, 11, 30, 0.25);
  --shadow-gold-sm:   0 2px 12px rgba(212, 185, 106, 0.12);
  --shadow-gold-md:   0 4px 24px rgba(212, 185, 106, 0.15);

  /* Typography */
  --heading: 'Playfair Display', Georgia, serif;
  --body:    'Quicksand', 'Nunito', sans-serif;

  /* Motion */
  --spring: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text-primary);
  background: var(--deep-purple);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* ── ACCESSIBILITY ── */
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
*:focus:not(:focus-visible) { outline: none; }

a.skip-link {
  position: absolute; top: -100%; left: 16px;
  padding: 10px 20px; background: var(--gold); color: var(--deep-purple);
  font-weight: 700; border-radius: 0 0 8px 8px; z-index: 9999;
  transition: top 0.2s; text-decoration: none;
}
a.skip-link:focus { top: 0; }

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

/* ── HEADINGS ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  color: var(--text-primary);
  font-weight: 700;
  font-style: italic;
}
h1, h2 { letter-spacing: -0.02em; }

/* ══════════════════
   KEYFRAMES
   ══════════════════ */

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes spark-drift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  20%  { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(30px) scale(0); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(25px, -18px) scale(1.04); }
  66%  { transform: translate(-15px, 8px) scale(0.96); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════
   LAYOUT
   ══════════════════ */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; position: relative; }

/* ══════════════════
   GLASS / CARD COMPONENTS
   ══════════════════ */
.glass-card {
  background: rgba(36, 21, 53, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 185, 106, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-purple-sm);
}

.glass-card-strong {
  background: rgba(47, 29, 69, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 185, 106, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow-purple-md), inset 0 1px 0 rgba(212, 185, 106, 0.06);
}

/* ══════════════════
   NAVIGATION
   ══════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(26, 16, 40, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 185, 106, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(26, 16, 40, 0.95);
  box-shadow: 0 2px 24px rgba(17, 11, 30, 0.5);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--deep-purple);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
  box-shadow: 0 2px 16px rgba(212, 185, 106, 0.25);
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 24px rgba(212, 185, 106, 0.35);
}
.nav-cta:active { transform: translateY(0) scale(0.98); }

/* ══════════════════
   HERO
   ══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(170deg, var(--rich-plum) 0%, var(--deep-purple) 50%, var(--void) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 16, 40, 0.5) 0%,
    rgba(26, 16, 40, 0.7) 40%,
    var(--deep-purple) 100%
  );
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(107, 77, 138, 0.3), transparent 70%);
  top: 5%; right: -8%;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212, 185, 106, 0.12), transparent 70%);
  bottom: 15%; left: -5%;
  animation: orb-float 22s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201, 138, 154, 0.1), transparent 70%);
  top: 50%; left: 40%;
  animation: orb-float 16s ease-in-out infinite 2s;
}

.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: spark-drift linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.hero-content { max-width: 520px; }
.hero-eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  border-radius: 2px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(47, 29, 69, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 185, 106, 0.12);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.hero-meta-item svg {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Hero form card */
.hero-form-card {
  padding: 36px;
  text-align: center;
}
.hero-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--gold);
}
.hero-form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.hero-form-card .form-subtitle strong {
  color: var(--gold);
  font-weight: 700;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--deep-purple);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 185, 106, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 28px rgba(212, 185, 106, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid rgba(212, 185, 106, 0.3);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--spring), border-color 0.3s ease, background 0.3s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold-soft);
}
.btn-secondary:active { transform: translateY(0); }

/* ══════════════════
   SECTION STYLING
   ══════════════════ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 185, 106, 0.12), transparent);
  margin: 0;
  border: none;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* Alternating section backgrounds */
.section-tinted {
  background: linear-gradient(180deg, var(--deep-purple), var(--rich-plum), var(--deep-purple));
}
.section-soft {
  background: linear-gradient(180deg, var(--deep-purple), rgba(36, 21, 53, 0.5), var(--deep-purple));
}

/* ══════════════════
   IMAGE FEATURE SECTION
   ══════════════════ */
.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-purple-lg);
  border: 1px solid rgba(212, 185, 106, 0.08);
}
.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════
   WHAT TO EXPECT
   ══════════════════ */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .expect-grid { grid-template-columns: repeat(4, 1fr); }
}

.expect-card {
  text-align: center;
  padding: 32px 22px;
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}
.expect-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-purple-md), var(--shadow-gold-sm);
}
.expect-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 185, 106, 0.15);
  border-radius: 14px;
  color: var(--gold);
}
.expect-icon svg { width: 26px; height: 26px; }
.expect-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--gold);
}
.expect-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════
   WHAT TO BRING
   ══════════════════ */
.bring-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bring-list { flex-direction: row; max-width: 100%; gap: 18px; }
}
.bring-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 22px;
  transition: transform 0.4s var(--spring);
}
.bring-item:hover { transform: translateY(-3px); }
.bring-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 138, 154, 0.1);
  border: 1px solid rgba(201, 138, 154, 0.2);
  border-radius: 12px;
  color: var(--rose);
}
.bring-icon svg { width: 22px; height: 22px; }
.bring-item h4 {
  font-size: 1rem;
  margin-bottom: 1px;
  color: var(--text-primary);
  font-style: normal;
}
.bring-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════
   MEET YOUR HOSTS
   ══════════════════ */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hosts-grid { grid-template-columns: repeat(2, 1fr); }
}

.host-card {
  text-align: center;
  padding: 36px 26px;
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}
.host-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple-lg), var(--shadow-gold-sm);
}
.host-avatar {
  width: 82px; height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--deep-purple);
  box-shadow: 0 4px 24px rgba(212, 185, 106, 0.2);
}
.host-photo {
  width: 82px; height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 185, 106, 0.3);
  box-shadow: 0 4px 24px rgba(212, 185, 106, 0.2);
}
.host-card h3 {
  font-size: 1.3rem;
  margin-bottom: 3px;
}
.host-card .host-title {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.host-card p:last-child {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════
   RSVP / FORM
   ══════════════════ */
.rsvp-section {
  background: linear-gradient(180deg, var(--deep-purple), var(--rich-plum), var(--deep-purple));
}
.rsvp-wrapper {
  max-width: 620px;
  margin: 0 auto;
}
.rsvp-card {
  text-align: center;
  padding: 44px 36px;
}
.rsvp-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
  color: var(--gold);
}
.rsvp-card .rsvp-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.rsvp-card .rsvp-subtitle strong {
  color: var(--gold);
  font-weight: 700;
}

.form-embed-area {
  border-radius: 12px;
  overflow: hidden;
}

.form-embed-area iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

.form-fallback {
  text-align: center;
  padding: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-fallback a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.form-fallback a:hover { opacity: 0.7; }

/* Hero form — compact scrollable area */
.hero-form-card .form-embed-area {
  min-height: 480px;
  max-height: 540px;
  overflow-y: auto;
}
.hero-form-card .form-embed-area iframe {
  min-height: 900px;
}

/* Bottom form — full height */
.rsvp-card .form-embed-area {
  min-height: 900px;
}
.rsvp-card .form-embed-area iframe {
  min-height: 900px;
}

/* ══════════════════
   DETAILS / FAQ
   ══════════════════ */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .details-grid { grid-template-columns: repeat(2, 1fr); }
}

.detail-card {
  padding: 24px;
  display: flex;
  gap: 14px;
  transition: transform 0.4s var(--spring);
}
.detail-card:hover { transform: translateY(-2px); }
.detail-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 10px;
  color: var(--gold);
}
.detail-icon svg { width: 18px; height: 18px; }
.detail-card h4 {
  font-size: 0.95rem;
  font-family: var(--body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.detail-card p, .detail-card a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.detail-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.detail-card a:hover { opacity: 0.7; }

/* ══════════════════
   FEATURE IMAGE ROW
   ══════════════════ */
.image-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .image-row { grid-template-columns: 1fr 1fr; }
  .image-row.three-col { grid-template-columns: 1fr 1fr 1fr; }
}
.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-purple-md);
  border: 1px solid rgba(212, 185, 106, 0.06);
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple-lg);
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════
   FOOTER
   ══════════════════ */
.footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(212, 185, 106, 0.08);
  background: var(--void);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { height: 34px; width: auto; }
.footer-logo span {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ══════════════════
   RESPONSIVE
   ══════════════════ */
@media (max-width: 767px) {
  section { padding: 56px 0; }
  .nav-logo-text { display: none; }
  .hero { padding: 100px 0 56px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-meta { gap: 8px; }
  .hero-meta-item { font-size: 0.78rem; padding: 6px 11px; }
  .section-header { margin-bottom: 36px; }
  .glass-card { padding: 22px; }
  .glass-card-strong { padding: 26px; }
  .hero-form-card { padding: 26px; }
  .rsvp-card { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════
   V2 ADDITIONS — Centered hero, spots counter,
   testimonials, slim bring, wide feature image
   ═══════════════════════════════════════════════ */

/* ── Centered hero layout ── */
.hero-inner-centered {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-wordmark {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  text-shadow: 0 0 40px rgba(212, 185, 106, 0.15);
}

.hero-inner-centered .hero-eyebrow {
  justify-content: center;
}
.hero-inner-centered .hero-eyebrow::before {
  display: none;
}
.hero-inner-centered .hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-left: 10px;
}
.hero-inner-centered .hero-eyebrow::before {
  display: block;
  content: '';
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: 2px;
  margin-right: 10px;
}

.hero-inner-centered .hero-title {
  max-width: 980px;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  text-wrap: balance;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero-inner-centered .hero-title { white-space: normal; }
}

.hero-inner-centered .hero-subtitle {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner-centered .hero-meta {
  justify-content: center;
}

.hero-inner-centered .hero-actions {
  justify-content: center;
  margin-top: 8px;
}

/* ── Live spots counter ── */
.spots-counter {
  width: 100%;
  max-width: 440px;
  margin: 4px auto 28px;
  padding: 14px 20px;
  background: rgba(17, 11, 30, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 185, 106, 0.15);
  border-radius: 14px;
}

.spots-bar {
  width: 100%;
  height: 6px;
  background: rgba(212, 185, 106, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.spots-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(212, 185, 106, 0.4);
  transition: width 1.4s var(--spring);
}

.spots-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: var(--body);
  margin: 0;
}
.spots-text strong {
  color: var(--gold);
  font-weight: 700;
}
.spots-left {
  color: var(--rose);
  font-weight: 600;
}
.spots-left.urgent {
  color: var(--gold-bright);
  animation: pulse-urgent 2s ease-in-out infinite;
}

@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Ghost button (3rd CTA) ── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(212, 185, 106, 0.35);
  text-underline-offset: 5px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.btn-ghost:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ── Wide feature image with caption ── */
.feature-image-wide {
  position: relative;
  margin-top: 64px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-purple-lg);
  border: 1px solid rgba(212, 185, 106, 0.1);
  aspect-ratio: 21 / 9;
}
.feature-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(1.1);
}
.feature-image-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background: linear-gradient(180deg, transparent 30%, rgba(17, 11, 30, 0.5) 100%);
}
.feature-quote-mark {
  font-family: var(--heading);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
}
.feature-image-caption p:last-child {
  font-family: var(--heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--text-primary);
  max-width: 640px;
  text-shadow: 0 2px 20px rgba(17, 11, 30, 0.6);
}

@media (max-width: 640px) {
  .feature-image-wide { aspect-ratio: 4 / 5; }
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
  margin: 0;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple-md), var(--shadow-gold-sm);
}
.testimonial-stars {
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}
.testimonial-card blockquote em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 700;
}
.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(212, 185, 106, 0.12);
  padding-top: 14px;
  margin-top: auto;
}
.testimonial-name {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold);
}
.testimonial-role {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── Slim "What to Bring" pills ── */
.bring-section-slim { padding: 48px 0; }

.bring-slim-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 22px 28px;
  background: rgba(36, 21, 53, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 185, 106, 0.1);
  border-radius: 18px;
}
.bring-slim-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.bring-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex: 1;
}
.bring-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(47, 29, 69, 0.55);
  border: 1px solid rgba(212, 185, 106, 0.14);
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.bring-pills li svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.bring-pills li em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 500;
}
.bring-pill-optional {
  opacity: 0.85;
  border-style: dashed !important;
}

/* ── Detail card helper note ── */
.detail-card .detail-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 6px;
  padding: 8px 10px;
  background: rgba(212, 185, 106, 0.06);
  border-left: 2px solid rgba(212, 185, 106, 0.3);
  border-radius: 4px;
}
.detail-card .detail-note strong {
  color: var(--gold);
  font-weight: 700;
}

/* ── Mobile polish for v2 ── */
@media (max-width: 767px) {
  .hero-wordmark { font-size: 2.6rem; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }
  .spots-counter { padding: 12px 16px; }
  .bring-slim-wrap { flex-direction: column; align-items: flex-start; padding: 18px 20px; }
  .feature-image-caption { padding: 20px; }
}

