/* ================================================================
   SAITH2026 — WEDDING WEBSITE STYLESHEET
   Burgundy · White · Gold
   Fonts: Cinzel Decorative · Libre Bodoni · Playfair Display · Montserrat
   ================================================================ */

/* ----------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ---------------------------------------------------------------- */
:root {
  /* Brand colours */
  --burgundy-50:  #fdf2f4;
  --burgundy-100: #fce7eb;
  --burgundy-200: #f9d0d9;
  --burgundy-400: #ec7a93;
  --burgundy-600: #cc305a;
  --burgundy-700: #ab2349;
  --burgundy-800: #800020;
  --burgundy-900: #6b1a35;
  --burgundy-950: #3d0a1a;

  --gold-300: #fde047;
  --gold-400: #f5c518;
  --gold-500: #D4AF37;
  --gold-600: #b8922e;
  --gold-700: #926f23;

  --cream-50:  #FFFEF9;
  --cream-100: #FFF9E8;

  --white: #ffffff;
  --off-white: #FFFEF9;

  /* Typography — UPDATED FONTS */
  --font-display: 'Cinzel Decorative', cursive;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Libre Bodoni', serif;
  --font-sans:    'Montserrat', sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vh, 8rem);
  --max-w: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-gold:     0 0 30px rgba(212, 175, 55, 0.30);
  --shadow-gold-lg:  0 0 60px rgba(212, 175, 55, 0.40);
  --shadow-burgundy: 0 0 30px rgba(128, 0,  32, 0.30);
}

/* ----------------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: #333;
  overflow: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul  { list-style: none; }

::selection {
  background: rgba(128, 0, 32, 0.3);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-50); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--burgundy-800), var(--gold-500));
  border-radius: 10px;
}

/* ----------------------------------------------------------------
   2. UTILITY CLASSES
   ---------------------------------------------------------------- */
.display-font { font-family: var(--font-display);font-weight: 400; }
.heading-font { font-family: var(--font-heading); }
.body-font    { font-family: var(--font-body); }
.sans-font    { font-family: var(--font-sans); }

/* Animated gold shimmer text */
.gold-text {
  background: linear-gradient(
    135deg,
    var(--gold-500) 0%, #f5e6a3 25%,
    var(--gold-500) 50%, var(--gold-600) 75%,
    var(--gold-500) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0%   center; }
  50%       { background-position: 200% center; }
}

/* Glass morphism */
.glass {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.glass-dark {
  background: rgba(128, 0, 32, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.20);
}

/* Heartbeat icon */
.heartbeat {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1);    }
  15%       { transform: scale(1.18); }
  30%       { transform: scale(1);    }
  45%       { transform: scale(1.12); }
  60%       { transform: scale(1);    }
}

/* Ornamental divider */
.ornamental-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ornamental-line::before,
.ornamental-line::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 50%, transparent);
}

.diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Particle canvas */
.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ----------------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform    0.25s var(--ease-spring),
    box-shadow   0.25s ease,
    background   0.25s ease,
    color        0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover  { transform: translateY(-2px) scale(1.04); }
.btn:active { transform: scale(0.97); }

.btn--gold {
  background: var(--gold-500);
  color: var(--burgundy-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-400);
  box-shadow: var(--shadow-gold-lg);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.btn--burgundy {
  background: var(--burgundy-800);
  color: #fff;
  box-shadow: var(--shadow-burgundy);
}
.btn--burgundy:hover { background: var(--burgundy-700); }

.btn--whatsapp {
  background: transparent;
  color: #4ade80;
  border: 1px solid #4ade80;
}
.btn--whatsapp:hover { background: rgba(74, 222, 128, 0.10); }

.btn--sm { padding: 10px 20px; font-size: 0.7rem; }

/* ----------------------------------------------------------------
   4. SCROLL SNAP CONTAINER
   ---------------------------------------------------------------- */
.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.snap-section {
  scroll-snap-align: start;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--burgundy-800);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------------
   5. MUSIC GATE OVERLAY
   ---------------------------------------------------------------- */
.music-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--burgundy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.music-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.music-gate__inner {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 560px;
  width: 100%;
  animation: gateEntrance 0.8s var(--ease-spring) both;
}

@keyframes gateEntrance {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

.music-gate__emoji {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.music-gate__names {
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.music-gate__invite {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.music-gate__hashtag {
  font-family: var(--font-sans);
  color: var(--gold-400);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.music-gate__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .music-gate__btns {
    flex-direction: row;
    justify-content: center;
  }

  .music-gate__btns .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 0.85rem;
  }
}

/* ----------------------------------------------------------------
   6. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(61, 10, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* LOGO — image-based */
.navbar__logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  line-height: 1;
}

.navbar__logo:hover { transform: scale(1.05); }

.navbar__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
}

.navbar.scrolled .navbar__logo-img {
  height: 36px;
}

.navbar__logo-fallback {
  font-size: 1.6rem;
  color: var(--gold-500);
  transition: color 0.3s ease;
}

.navbar__logo-fallback:hover { color: var(--gold-400); }

/* Nav links */
.navbar__links {
  display: none;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .navbar__links { display: flex; }
}

.navbar__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.3s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.navbar__link:hover         { color: var(--gold-500); }
.navbar__link:hover::after  { width: 100%; }
.navbar__link.active        { color: var(--gold-500); }
.navbar__link.active::after { width: 100%; }

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

@media (min-width: 1024px) {
  .navbar__hamburger { display: none; }
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s ease;
}

.navbar__hamburger:hover span { background: var(--gold-500); }

/* ----------------------------------------------------------------
   7. MOBILE DRAWER
   ---------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(61, 10, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-smooth);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-drawer__close:hover {
  color: var(--gold-500);
  transform: rotate(90deg);
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.mobile-drawer__link {
  display: block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  transition: color 0.3s ease;
  text-align: center;
}

.mobile-drawer__link:hover { color: var(--gold-500); }

.mobile-drawer__ornament {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer__diamond {
  display: block;
  width: 8px; height: 8px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

.mobile-drawer__monogram {
  font-size: 1.8rem;
  color: var(--gold-500);
  margin-top: 1rem;
}

.mobile-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-drawer__overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ----------------------------------------------------------------
   8. HERO SECTION
   ---------------------------------------------------------------- */
.hero-section { background: #000; min-height: 100vh; }

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(128,0,32,0.35) 0%,
    rgba(61,10,26,0.60) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-pretitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}

.hero-line {
  width: 8rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 0 auto 2rem;
}

.hero-names { margin-bottom: 0.5rem; }

.hero-name {
  font-size: clamp(3rem, 10vw, 5rem);
  color: #fff;
  line-height: 1;
}

.hero-ampersand {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gold-500);
  letter-spacing: 0.5em;
  margin: 0.25rem 0;
  animation: pulseOpacity 3s ease-in-out infinite;
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.6; }
}

.hero-hashtag {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.hero-date {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.70);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}

.scroll-hint__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.scroll-hint__track {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex; justify-content: center;
}

.scroll-hint__dot {
  width: 5px; height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-top: 6px;
  animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0);    opacity: 1;   }
  50%       { transform: translateY(16px); opacity: 0.4; }
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream-50), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Decorative corners */
.corner {
  position: absolute;
  width: 60px; height: 60px;
  pointer-events: none; z-index: 1;
}

.corner--tl { top: 1.5rem;    left: 1.5rem;  border-top: 2px solid rgba(212,175,55,.3); border-left:  2px solid rgba(212,175,55,.3); }
.corner--tr { top: 1.5rem;    right: 1.5rem; border-top: 2px solid rgba(212,175,55,.3); border-right: 2px solid rgba(212,175,55,.3); }
.corner--bl { bottom: 1.5rem; left: 1.5rem;  border-bottom: 2px solid rgba(212,175,55,.3); border-left:  2px solid rgba(212,175,55,.3); }
.corner--br { bottom: 1.5rem; right: 1.5rem; border-bottom: 2px solid rgba(212,175,55,.3); border-right: 2px solid rgba(212,175,55,.3); }

@media (min-width: 640px) { .corner { width: 100px; height: 100px; } }

/* ----------------------------------------------------------------
   9. HERO ENTRANCE ANIMATIONS (fire on page load)
   ---------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.9s var(--ease-smooth) forwards;
}

.reveal-scale {
  opacity: 0;
  transform: scaleX(0);
  animation: revealScale 0.9s var(--ease-smooth) forwards;
}

@keyframes revealUp    { to { opacity: 1; transform: translateY(0); } }
@keyframes revealScale { to { opacity: 1; transform: scaleX(1);    } }

/* ----------------------------------------------------------------
   10. INTERSECTION OBSERVER ANIMATION CLASSES
   ---------------------------------------------------------------- */
.io-animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.io-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.18s; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.31s; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.44s; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.57s; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.70s; }

.reveal-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.no-js .io-animate,
.no-js .reveal-children > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ----------------------------------------------------------------
   11. COUPLE SECTION — FIXED CENTERING
   ---------------------------------------------------------------- */
.couple-section {
  background: var(--cream-50);
  min-height: 100vh;
}

.couple-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .couple-cards {
    flex-direction: row;
    align-items: center;     /* vertically centers cards + divider */
    justify-content: center; /* horizontally centers the row */
    gap: 3.5rem;
  }
}

.couple-card {
  text-align: center;
  flex: 1;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;       /* centers all child elements */
}

.couple-card__photo-wrap {
  position: relative;
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;    /* center horizontally */
  border: 4px solid rgba(212,175,55,0.35);
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.couple-card__photo-wrap:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-gold-lg);
}

@media (min-width: 640px) {
  .couple-card__photo-wrap { width: 240px; height: 240px; }
}

.couple-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.couple-card__photo-wrap:hover .couple-card__photo { transform: scale(1.1); }

.couple-card__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(128,0,32,0.3), transparent);
}

.couple-card__first-name {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--burgundy-800);
  margin-bottom: 0.25rem;
  text-align: center;
  width: 100%;
}

.couple-card__last-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
  text-align: center;
}

.couple-card__role {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--burgundy-600);
  margin-bottom: 1rem;
  text-align: center;
}

.couple-card__bio {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #666;
  line-height: 1.75;
  padding: 0 0.5rem;
  text-align: center;
  max-width: 320px;
}

/* Heart divider */
.couple-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .couple-divider {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.couple-divider__line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

@media (min-width: 1024px) {
  .couple-divider__line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-500), transparent);
  }
}

.couple-divider__heart {
  font-size: 1.8rem;
  color: var(--burgundy-800);
}

/* Scripture quote */
.couple-quote {
  text-align: center;
  max-width: 600px;
  margin-top: 3.5rem;
}

.couple-quote__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  margin: 1.5rem 0 0.75rem;
}

.couple-quote__cite {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* ----------------------------------------------------------------
   12. COUNTDOWN SECTION
   ---------------------------------------------------------------- */
.countdown-section { background: var(--burgundy-900); min-height: 100vh; }

.countdown-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18; z-index: 0;
}

.countdown-overlay {
  position: absolute; inset: 0;
  background: rgba(61,10,26,0.72);
  z-index: 0;
}

.countdown-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}

.countdown-timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.countdown-block {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  min-width: 110px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-block:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.50);
  box-shadow: var(--shadow-gold);
}

.countdown-block__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem,6vw,4rem);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.countdown-block__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}

.countdown-footer {
  text-align: center;
  margin-top: 3rem;
}

.countdown-date-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  margin-top: 1.25rem;
}

/* ----------------------------------------------------------------
   13. EVENTS SECTION
   ---------------------------------------------------------------- */
.events-section { background: var(--cream-50); min-height: 100vh; }

.events-top-border,
.events-bottom-border {
  position: absolute; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
  z-index: 1;
}

.events-top-border    { top:    0; }
.events-bottom-border { bottom: 0; }

.event-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .event-cards { flex-direction: row; gap: 2rem; }
}

.event-card {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,249,232,0.96));
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.10);
  border: 2px solid var(--gold-500);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.event-card:hover {
  box-shadow: 0 12px 50px rgba(128,0,32,0.20);
  transform: translateY(-4px);
}

.event-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.event-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card__img { transform: scale(1.08); }

.event-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,10,26,0.85), transparent);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.event-card__icon { font-size: 2rem; color: var(--gold-500); margin-bottom: 0.5rem; }

.event-card__title {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.1;
}

.event-card__subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 0.25rem;
}

.event-card__body { padding: 2rem; }

.event-card__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.event-card__meta-icon {
  color: var(--gold-600);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.event-card__meta-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.2rem;
}

.event-card__meta-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--burgundy-800);
}

.event-card__meta-value--bold {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--burgundy-800);
  margin-bottom: 0.15rem;
}

.event-card__meta-addr {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
}

.event-card__btn { margin-top: 1.25rem; }

.attendance-notice { margin-top: 3rem; text-align: center; }

.attendance-notice__inner {
  display: inline-block;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
}

.attendance-notice__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy-800);
  margin-bottom: 0.35rem;
}

.attendance-notice__text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--burgundy-900);
}

/* ----------------------------------------------------------------
   14. COLOUR PALETTE SECTION
   ---------------------------------------------------------------- */
.palette-section { background: var(--cream-50); min-height: 100vh; overflow: hidden; }

.palette-blob {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none; z-index: 0;
}

.palette-blob--left  { background: var(--burgundy-800); top: 10%; left: -100px; }
.palette-blob--right { background: var(--gold-500); bottom: 10%; right: -100px; }

.palette-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #666;
  max-width: 480px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
  text-align: center;
}

.palette-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}

.palette-swatch { text-align: center; }

.palette-swatch__circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  cursor: default;
}

@media (min-width: 640px) {
  .palette-swatch__circle { width: 150px; height: 150px; }
}

.palette-swatch__circle:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.20);
}

.palette-swatch__circle--white { border: 2px solid #e5e7eb; }

.palette-swatch__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--burgundy-800);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.palette-swatch__desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: #888;
}

.palette-bar {
  display: flex;
  width: clamp(200px, 60%, 340px);
  height: 14px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.palette-bar__segment { flex: 1; }

/* ----------------------------------------------------------------
   15. GALLERY SECTION
   ---------------------------------------------------------------- */
.gallery-section {
  background: var(--burgundy-950);
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100vh;
}

.gallery-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12; z-index: 0;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,5,15,0.88);
  z-index: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-auto-rows: 220px; }
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item--tall       { grid-row: span 2; }
.gallery-item--wide       { grid-column: span 2; }

.gallery-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-item__img { transform: scale(1.1); }

.gallery-item__hover {
  position: absolute; inset: 0;
  background: rgba(128,0,32,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item__hover { background: rgba(128,0,32,0.45); }

.gallery-item__zoom {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  font-size: 1.25rem;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-spring);
}

.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }

.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after { border-color: rgba(212,175,55,0.50); }

.gallery-hashtag { text-align: center; margin-top: 2.5rem; }

.gallery-hashtag__tag {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   16. LIGHTBOX
   ---------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox__img-wrap { max-width: 90vw; max-height: 88vh; }

.lightbox__img {
  max-width: 100%; max-height: 88vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 0 80px rgba(212,175,55,0.15);
  transform: scale(0.85);
  transition: transform 0.4s var(--ease-spring), opacity 0.22s ease;
}

.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 1.75rem;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.lightbox__close:hover { color: var(--gold-500); transform: rotate(90deg); }

.lightbox__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.60);
  font-size: 2rem;
  padding: 1rem;
  transition: color 0.3s ease;
  z-index: 1;
}

.lightbox__nav:hover     { color: var(--gold-500); }
.lightbox__nav--prev     { left:  0.75rem; }
.lightbox__nav--next     { right: 0.75rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.40);
}

/* ----------------------------------------------------------------
   17. RSVP SECTION
   ---------------------------------------------------------------- */
.rsvp-section { background: var(--burgundy-900); min-height: 100vh; }

.rsvp-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12; z-index: 0;
}

.rsvp-overlay {
  position: absolute; inset: 0;
  background: rgba(61,10,26,0.82);
  z-index: 0;
}

.rsvp-envelope {
  font-size: 3.5rem;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  display: block;
}

.rsvp-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.75;
}

.rsvp-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 680px;
}

@media (min-width: 600px) { .rsvp-cards { flex-direction: row; } }

.rsvp-card {
  flex: 1;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.20);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s ease;
}

.rsvp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.45);
}

.rsvp-card__icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212,175,55,0.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.rsvp-card__icon { color: var(--gold-500); font-size: 1.25rem; }

.rsvp-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rsvp-card__phone {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}

.rsvp-card__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rsvp-notice { margin-top: 2.5rem; text-align: center; }

.rsvp-notice__box {
  display: inline-block;
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: 0.75rem;
  padding: 0.9rem 2rem;
}

.rsvp-notice__text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--gold-400);
}

.rsvp-message {
  text-align: center;
  max-width: 520px;
  margin-top: 2.5rem;
}

.rsvp-message__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 1.5rem 0 0.75rem;
}

.rsvp-message__sig { font-size: 2rem; margin-top: 0.5rem; }

/* ----------------------------------------------------------------
   18. SUPPORT SECTION (BANK DETAILS)
   ---------------------------------------------------------------- */
.support-section {
  background: var(--cream-50);
  min-height: 100vh;
  overflow: hidden;
}

.support-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.support-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,254,249,0.92) 0%,
    rgba(255,249,232,0.95) 100%
  );
  z-index: 0;
}

.support-gift-icon {
  font-size: 3rem;
  color: var(--burgundy-800);
  margin-bottom: 1.5rem;
  display: block;
}

.support-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #666;
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.75;
  text-align: center;
}

/* Bank detail cards */
.support-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 720px;
}

@media (min-width: 640px) {
  .support-cards { flex-direction: row; }
}

.support-card {
  flex: 1;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  text-align: center;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--gold-500);
  box-shadow: 0 4px 24px rgba(128,0,32,0.08);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.4s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.20);
}

.support-card__icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(128,0,32,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.support-card__icon {
  color: var(--burgundy-800);
  font-size: 1.3rem;
}

.support-card__bank {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy-800);
  margin-bottom: 1.5rem;
}

.support-card__detail {
  margin-bottom: 1rem;
}

.support-card__detail:last-child { margin-bottom: 0; }

.support-card__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.3rem;
}

.support-card__value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.support-card__acct-num {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--burgundy-800);
}

/* Copy row */
.support-card__copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.support-card__copy-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--burgundy-900);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
  flex-shrink: 0;
}

.support-card__copy-btn:hover {
  transform: scale(1.15);
  background: var(--gold-400);
}

.support-card__copy-btn:active {
  transform: scale(0.92);
}

/* Thank-you note */
.support-note {
  text-align: center;
  max-width: 480px;
  margin-top: 2.5rem;
}

.support-note__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin: 1.5rem 0 0.75rem;
}

.support-note__sig {
  font-size: 2rem;
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   19. COPY TOAST
   ---------------------------------------------------------------- */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--burgundy-800);
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.30);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s var(--ease-spring),
    opacity   0.4s ease;
}

.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ----------------------------------------------------------------
   20. FOOTER SECTION
   ---------------------------------------------------------------- */
.footer-section { background: var(--burgundy-950); min-height: 100vh; }

.footer-top-border {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
  z-index: 1;
}

.footer-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(212,175,55,0.20) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.08;
  pointer-events: none; z-index: 0;
}

.footer-content {
  text-align: center;
  position: relative; z-index: 2;
  width: 100%;
}

.footer-monogram { margin-bottom: 2rem; }

.footer-monogram__ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  animation: slowRock 6s ease-in-out infinite;
}

@keyframes slowRock {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg);  }
}

.footer-monogram__text { font-size: 1.8rem; }

.footer-thankyou {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.50);
}

.footer-hashtag {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  animation: pulseScale 3s ease-in-out infinite;
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.04); }
}

.footer-wedding-date {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.40);
}

.footer-scripture {
  margin-top: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer-scripture blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-scripture cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 0.75rem;
}

.footer-bottom { margin-top: 3rem; }

.footer-bottom__line {
  width: 60px; height: 1px;
  background: rgba(212,175,55,0.25);
  margin: 0 auto 1rem;
}

.footer-bottom__text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-bottom: 0.35rem;
}

.footer-bottom__copy {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------
   21. MUSIC FLOATING ACTION BUTTON
   ---------------------------------------------------------------- */
.music-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(128,0,32,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.30);
  color: var(--gold-500);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.music-fab:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: var(--shadow-gold-lg);
  background: rgba(128,0,32,0.95);
}

@keyframes spinIcon { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------------
   22. RESPONSIVE — MOBILE OVERRIDES
   ---------------------------------------------------------------- */
@media (max-width: 767px) {
  .snap-container { scroll-snap-type: y proximity; }
  .section-inner  { padding: 5rem 1.25rem 4rem; }
  .countdown-block { min-width: 80px; padding: 1.25rem 1rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item--tall-wide { grid-column: span 2; grid-row: span 1; }
  .gallery-item--tall       { grid-row: span 1; }
  .gallery-item--wide       { grid-column: span 2; }

  .navbar__logo-img { height: 40px; }
  .navbar.scrolled .navbar__logo-img { height: 32px; }
}

@media (max-width: 480px) {
  .hero-name            { font-size: 3.5rem; }
  .music-gate__btns     { flex-direction: column; }
  .rsvp-card            { padding: 2rem 1.5rem; }
  .event-card__body     { padding: 1.5rem; }
  .support-card         { padding: 1.75rem 1.25rem; }
  .navbar__logo-img     { height: 36px; }
}

@media (max-width: 360px) {
  .hero-name            { font-size: 3rem; }
  .countdown-block      { min-width: 70px; padding: 1rem 0.75rem; }
  .navbar__logo-img     { height: 32px; }
}