/* ==========================================================================
   VISMAYA & ABHINAV - LUXURY INDIAN WEDDING INVITATION
   Production Stylesheet
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Royal Palette */
  --bg-ivory: #FAF7F2;
  --bg-champagne: #F5EFE6;
  --bg-sand: #EDE3D5;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.88);
  
  --bg-dark-royal: #2C1E18;
  --bg-dark-espresso: #1A110D;
  --bg-dark-glass: rgba(44, 30, 24, 0.92);
  
  --gold-light: #FCEFD2;
  --gold-primary: #C5A059;
  --gold-secondary: #DFBF7A;
  --gold-dark: #9C7736;
  --gold-deep: #785A21;
  
  --gold-foil: linear-gradient(135deg, #FFF0D0 0%, #D4AF5F 28%, #F7E7C4 55%, #B88E3E 80%, #7E5F20 100%);
  --gold-border: 1px solid rgba(197, 160, 89, 0.38);
  --gold-glow: 0 0 25px rgba(197, 160, 89, 0.35);
  
  --text-dark: #2C1E18;
  --text-body: #54443C;
  --text-muted: #7A6960;
  --text-light: #FDFCFA;
  --text-light-muted: #D8CFC8;
  
  --maroon-accent: #781A2A;
  --rose-accent: #C44569;
  
  /* Typography */
  --font-script: 'Alex Brush', cursive;
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Elevation */
  --shadow-subtle: 0 8px 24px rgba(44, 30, 24, 0.06);
  --shadow-card: 0 16px 36px rgba(44, 30, 24, 0.08), 0 2px 8px rgba(197, 160, 89, 0.12);
  --shadow-luxury: 0 24px 50px rgba(44, 30, 24, 0.12), 0 0 30px rgba(197, 160, 89, 0.22);
  --shadow-deep: 0 25px 60px rgba(0, 0, 0, 0.45);
  
  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(197, 160, 89, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(197, 160, 89, 0.04) 0%, transparent 40%);
}

body.is-locked {
  overflow: hidden;
  height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Common */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--bg-dark-royal);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ornate-divider-img {
  width: min(280px, 80%);
  margin: 0.85rem auto 0;
  opacity: 0.85;
}

.ornate-divider-img.sm {
  width: 180px;
}

.gold-star {
  color: var(--gold-secondary);
  font-size: 0.85rem;
}

/* ==========================================================================
   0. CINEMATIC OPENING COVER
   ========================================================================== */
.cinematic-entry {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark-espresso);
  overflow: hidden;
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.cinematic-entry.is-hidden {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

.entry-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  filter: blur(4px) brightness(0.65);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

.entry-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 20, 16, 0.75) 0%, rgba(20, 12, 9, 0.94) 85%);
}

.entry-jali {
  position: absolute;
  inset: 0;
  background-image: url('assets/icons/jali-pattern.svg');
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
}

.entry-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.entry-card {
  position: relative;
  z-index: 10;
  width: min(92%, 460px);
  padding: 3rem 1.8rem;
  background: rgba(36, 24, 19, 0.88);
  border: 1px solid rgba(212, 175, 95, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 0 35px rgba(197, 160, 89, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: entryCardAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mandala-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0.5rem auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mandala-spin {
  width: 100%;
  height: 100%;
  animation: rotateSlow 36s linear infinite;
  filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.4));
}

.mandala-center-gem {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold-foil);
  border-radius: 50%;
  box-shadow: 0 0 14px #F7E7C4, inset 0 0 4px #785A21;
}

.entry-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.entry-subtitle {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.entry-names {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 9vw, 3.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0.35rem 0 0.5rem;
  color: var(--gold-light);
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 18px rgba(197, 160, 89, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
}

.entry-names .name-amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold-secondary);
  -webkit-text-fill-color: var(--gold-secondary);
  line-height: 1;
}

.entry-date-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0 1.25rem;
}

.date-dot {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.entry-date {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  font-weight: 600;
}

.entry-divider {
  margin-bottom: 1.75rem;
  opacity: 0.8;
}

/* Luxury Royal CTA Button */
.btn-royal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.25rem;
  background: var(--gold-foil);
  color: var(--bg-dark-espresso);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.42), 0 2px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-royal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(197, 160, 89, 0.55), 0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-royal:active {
  transform: translateY(0) scale(0.98);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 3s infinite;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.entry-music-note {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.05em;
}

.music-note-icon {
  color: var(--gold-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   FLOATING CONTROLS
   ========================================================================== */
.floating-controls {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.floating-controls.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-dark-glass);
  color: var(--gold-light);
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: var(--radius-full);
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.float-btn:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: var(--gold-secondary);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.3);
}

.music-disc {
  width: 26px;
  height: 26px;
  background: var(--gold-foil);
  color: var(--bg-dark-espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  animation: rotateDisc 4s linear infinite;
  animation-play-state: paused;
}

.btn-music.is-playing .music-disc {
  animation-play-state: running;
}

.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.equalizer-bars .bar {
  width: 3px;
  background: var(--gold-secondary);
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s ease;
}

.btn-music.is-playing .equalizer-bars .bar-1 { animation: eqBar 0.8s ease-in-out infinite alternate; }
.btn-music.is-playing .equalizer-bars .bar-2 { animation: eqBar 0.6s ease-in-out 0.2s infinite alternate; }
.btn-music.is-playing .equalizer-bars .bar-3 { animation: eqBar 0.9s ease-in-out 0.4s infinite alternate; }
.btn-music.is-playing .equalizer-bars .bar-4 { animation: eqBar 0.7s ease-in-out 0.1s infinite alternate; }

.music-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-top {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  color: var(--gold-secondary);
  display: none;
}

.btn-top.is-shown {
  display: flex;
}

/* ==========================================================================
   PETAL RAIN
   ========================================================================== */
.petal-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 850;
  overflow: hidden;
}

.falling-petal {
  position: absolute;
  top: -60px;
  width: 28px;
  height: 28px;
  background-image: url('assets/icons/petal.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
  will-change: transform, top, left;
  animation: petalFall linear forwards;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  transition: all var(--transition-fast);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-monogram {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.section-hero {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(245, 239, 230, 0.8) 0%, var(--bg-ivory) 70%);
}

.hero-ornament-top {
  margin-bottom: 1rem;
}

.kalash-icon {
  margin: 0 auto;
  filter: drop-shadow(0 4px 10px rgba(197, 160, 89, 0.3));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  line-height: 1.25;
  color: var(--bg-dark-royal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

.hero-amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-primary);
}

.hero-date-banner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-date-line {
  width: 45px;
  height: 1px;
  background: var(--gold-primary);
}

.hero-date-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  color: var(--bg-dark-royal);
  font-weight: 600;
}

/* Royal Photo Frame */
.hero-image-card {
  max-width: 520px;
  margin: 0 auto;
}

.royal-photo-frame {
  position: relative;
  padding: 10px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6EE 100%);
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.royal-photo-frame img {
  border-radius: calc(var(--radius-md) - 6px);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-primary);
  pointer-events: none;
  z-index: 5;
}

.frame-corner.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: var(--radius-md);
}

.frame-corner.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: var(--radius-md);
}

.frame-corner.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: var(--radius-md);
}

.frame-corner.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: var(--radius-md);
}

.hero-image-caption {
  margin-top: 1rem;
}

.hero-image-caption p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bg-dark-royal);
}

.hero-image-caption .caption-sub {
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero-scroll-indicator {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 7px;
  background: var(--gold-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}

.scroll-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ==========================================================================
   2. INVITATION MESSAGE SECTION
   ========================================================================== */
.section-invitation {
  background-color: var(--bg-champagne);
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.7) 0%, transparent 80%);
}

.royal-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.invite-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF7 100%);
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--bg-dark-royal);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.invite-quote-box {
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.invite-lead-text {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  line-height: 1.5;
  color: var(--bg-dark-royal);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.divider-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto;
  max-width: 200px;
}

.diamond-dot {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(197, 160, 89, 0.4);
}

.invite-body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.invite-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-royal-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  border: 1.5px solid var(--gold-primary);
  color: var(--bg-dark-royal);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-royal-outline:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.8rem 1.65rem;
  font-size: 0.8rem;
}

.card-ornament-top {
  margin-bottom: 1.5rem;
}

.card-ornament-bottom {
  margin-top: 2rem;
}

/* ==========================================================================
   3. COUNTDOWN SECTION
   ========================================================================== */
.section-countdown {
  background: linear-gradient(135deg, var(--bg-dark-royal) 0%, var(--bg-dark-espresso) 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/icons/jali-pattern.svg');
  background-size: 140px 140px;
  opacity: 0.15;
  pointer-events: none;
}

.countdown-card {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.countdown-card .section-label {
  color: var(--gold-secondary);
}

.countdown-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.countdown-target-date {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  font-style: italic;
}

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

.countdown-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 95, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem 0.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 0 15px rgba(197, 160, 89, 0.1);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.countdown-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-secondary);
}

.count-number-wrap {
  margin-bottom: 0.35rem;
}

.count-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.count-label {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.8vw, 0.82rem);
  letter-spacing: 0.18em;
  color: var(--gold-light);
  font-weight: 600;
}

.calendar-action-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  background: var(--gold-foil);
  color: var(--bg-dark-espresso);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-fast);
}

.btn-gold-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

.btn-gold-pill.outline {
  background: transparent;
  border: 1.5px solid var(--gold-secondary);
  color: var(--gold-light);
}

.btn-gold-pill.outline:hover {
  background: rgba(197, 160, 89, 0.2);
  color: #FFFFFF;
}

/* ==========================================================================
   4 & 5. THE BRIDE & GROOM SECTION
   ========================================================================== */
.section-couple {
  background-color: var(--bg-ivory);
}

.couple-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.couple-card {
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.couple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.couple-photo-wrapper {
  position: relative;
  max-width: 320px;
  margin: 0 auto 1.75rem;
}

.couple-profile-img {
  border-radius: calc(var(--radius-md) - 6px);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.couple-role-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark-royal);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.couple-name {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--bg-dark-royal);
  margin-bottom: 0.6rem;
  line-height: 1.25;
  padding: 0 0.5rem;
}

.couple-blessing-note {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ==========================================================================
   6. COUPLE STORY SECTION
   ========================================================================== */
.section-story {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
  background-color: var(--bg-dark-espresso);
}

.story-bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: blur(3px) brightness(0.45);
  transform: scale(1.05);
}

.story-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 20, 16, 0.8) 0%, rgba(18, 10, 8, 0.95) 100%);
}

.story-content-card {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(44, 30, 24, 0.75);
  border: 1px solid rgba(212, 175, 95, 0.4);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.story-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-secondary);
  line-height: 1;
  opacity: 0.6;
}

.story-quote-mark.end {
  margin-top: 0.5rem;
}

.story-content-card .section-label {
  color: var(--gold-light);
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.story-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.55;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

.story-monogram-emblem {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.12);
}

.story-monogram {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-secondary);
}

.story-subtext {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* ==========================================================================
   7. WEDDING DETAILS SECTION
   ========================================================================== */
.section-details {
  background-color: var(--bg-champagne);
}

.details-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 960px;
  margin: 0 auto;
}

.detail-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
}

.detail-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%);
  box-shadow: 0 18px 40px rgba(197, 160, 89, 0.2);
}

.detail-badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-foil);
  color: var(--bg-dark-espresso);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.detail-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.gold-icon {
  color: var(--gold-dark);
}

.detail-label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--bg-dark-royal);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.detail-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   8. VENUE & MAP SECTION
   ========================================================================== */
.section-venue {
  background-color: var(--bg-ivory);
}

.venue-card {
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.38);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
}

.venue-header {
  text-align: center;
  margin-bottom: 3rem;
}

.venue-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--bg-dark-royal);
  letter-spacing: 0.08em;
}

.venue-name-highlight {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 0.25rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.venue-info-pane {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.venue-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.item-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.venue-detail-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}

.venue-detail-item p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.venue-cta-wrap {
  margin-top: 1rem;
}

.btn-directions {
  width: 100%;
  max-width: 280px;
}

.venue-map-pane {
  position: relative;
}

.map-card-wrapper {
  background: linear-gradient(135deg, #FAF6EE 0%, #e4c88c 100%);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(197, 160, 89, 0.12);
}

.map-pulse-marker {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.25);
  animation: pulseRing 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.pulse-core {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-venue-tag {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bg-dark-royal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.map-venue-sub {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.btn-map-launch {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--bg-dark-royal);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-map-launch:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   9. GALLERY & LIGHTBOX SECTION
   ========================================================================== */
.section-gallery {
  background-color: var(--bg-champagne);
}

.gallery-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -0.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1040px;
  margin: 0 auto;
}

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: #000;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.gallery-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-item:hover .gallery-img-box img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 20, 16, 0.85) 0%, rgba(30, 20, 16, 0.2) 50%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  color: var(--gold-secondary);
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: translateY(0);
}

.gallery-caption {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 8, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(94vw, 980px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--gold-light);
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.5rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
}

.lightbox-close:hover {
  color: #FFFFFF;
  transform: scale(1.15);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 30, 24, 0.75);
  color: var(--gold-light);
  border: 1px solid rgba(197, 160, 89, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev {
  left: -20px;
}

.lightbox-nav-btn.next {
  right: -20px;
}

.lightbox-figure {
  text-align: center;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.lightbox-caption {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.lightbox-counter {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text-light-muted);
  letter-spacing: 0.12em;
}

/* ==========================================================================
   10. FOOTER & PREMIUM STUDIO PROMO SECTION
   ========================================================================== */
.site-footer {
  background: var(--bg-dark-espresso);
  color: var(--text-light);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/icons/jali-pattern.svg');
  background-size: 120px 120px;
  opacity: 0.12;
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.footer-couple-wrap {
  margin-bottom: 2.5rem;
}

.footer-monogram-circle {
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.15);
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.25);
}

.footer-monogram {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-names {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  padding: 0 0.5rem;
}

.footer-blessing {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-light-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-date-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  color: var(--gold-secondary);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.footer-divider {
  margin-bottom: 2rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link-btn {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-link-btn:hover {
  color: var(--gold-secondary);
  text-decoration: underline;
}

.dot-sep {
  color: var(--gold-primary);
  opacity: 0.6;
  font-size: 0.75rem;
}

.footer-credit {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: rgba(216, 207, 200, 0.75);
  margin-bottom: 1rem;
}

/* --- Premium Studio Promo / Domain Ads Card --- */
.studio-promo-card {
  position: relative;
  background: rgba(36, 24, 19, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem 2.25rem;
  max-width: 620px;
  margin: 2.5rem auto 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(197, 160, 89, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.studio-promo-divider {
  margin-bottom: 1rem;
}

.studio-promo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.2);
}

.studio-ring-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.studio-promo-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  color: var(--gold-light);
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.studio-promo-subtext {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-light-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.studio-promo-cta-box {
  margin-bottom: 1.75rem;
}

.btn-studio-whatsapp {
  padding: 0.95rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  border-radius: var(--radius-full);
}

.btn-studio-whatsapp .btn-icon svg {
  color: #1A110D;
}

.studio-credit-details {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.25rem;
}

.studio-credit-title {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  margin-bottom: 0.4rem;
}

.studio-name-gold {
  color: var(--gold-secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.studio-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.studio-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.studio-link:hover {
  color: var(--gold-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.studio-dot {
  color: var(--gold-primary);
  opacity: 0.6;
  font-size: 0.75rem;
}

.studio-promo-bottom-ornament {
  margin-top: 1rem;
  opacity: 0.75;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  40% { left: 150%; }
  100% { left: 150%; }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes eqBar {
  0% { height: 3px; }
  100% { height: 16px; }
}

@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes entryCardAppear {
  0% { opacity: 0; transform: translateY(40px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes petalFall {
  0% {
    top: -60px;
    transform: translateX(0) rotate(0deg) rotateY(0deg);
  }
  50% {
    transform: translateX(35px) rotate(180deg) rotateY(180deg);
  }
  100% {
    top: 105vh;
    transform: translateX(-25px) rotate(360deg) rotateY(360deg);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   360px, 375px, 390px, 412px, 430px, Tablets (768px), Desktops (1024px)
   ========================================================================== */
@media (max-width: 900px) {
  .details-cards-row {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  
  .venue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .couple-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .countdown-grid {
    gap: 0.65rem;
  }
  
  .countdown-box {
    padding: 1.1rem 0.4rem;
  }
  
  .floating-controls {
    bottom: 1.2rem;
    right: 1.2rem;
  }
  
  .lightbox-nav-btn.prev {
    left: 5px;
  }
  
  .lightbox-nav-btn.next {
    right: 5px;
  }
  
  .studio-promo-card {
    padding: 2.2rem 1.4rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .royal-card {
    padding: 2.5rem 1.25rem;
  }
  
  .venue-card {
    padding: 2.5rem 1.25rem;
  }
  
  .entry-card {
    padding: 2.2rem 1.2rem;
  }
  
  .mandala-wrapper {
    width: 110px;
    height: 110px;
  }
  
  .btn-royal {
    padding: 0.9rem 1.75rem;
    font-size: 0.8rem;
    width: 100%;
  }
  
  .btn-studio-whatsapp {
    padding: 0.85rem 1.25rem;
    font-size: 0.74rem;
    width: 100%;
  }
  
  .calendar-action-wrap {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-gold-pill {
    width: 100%;
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item:first-child {
    grid-column: span 1;
  }
  
  .studio-promo-card {
    padding: 2rem 1rem;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .mandala-spin, .falling-petal, .music-disc {
    animation: none !important;
  }
}