/* ============================================================
   BOLLYWOOD BLOCKBUSTER — CINEMATIC GRANDEUR
   Complete Design System & Styles
   ============================================================ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────── */
:root {
    /* OKLCH Cinematic Palette */
    --bg-dark: oklch(15% 0.03 260); 
    --bg-dark-soft: oklch(20% 0.04 260);
    --text-main: oklch(98% 0.01 260);
    --gold-bright: oklch(85% 0.12 75); 
    --gold-muted: oklch(70% 0.1 70); 
    --accent-red: oklch(35% 0.15 25); 
    --accent-red-glass: oklch(35% 0.15 25 / 0.3);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-script: 'Bodoni Moda', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Animated CSS custom properties */
@property --glow-opacity {
    syntax: '<number>';
    initial-value: 0.3;
    inherits: false;
}

@property --spotlight-x {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: false;
}

/* ─── 2. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { 
    margin: 0; padding: 0; box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
}

html.lenis, html.lenis body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background-color: var(--bg-dark); 
    color: var(--text-main);
    font-family: var(--font-body); 
    overflow-x: hidden; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    -webkit-user-drag: none;
    pointer-events: none;
}

a:focus, button:focus { outline: none; }
button, a { -webkit-user-select: none; user-select: none; }

/* ─── 3. OVERLAY LAYERS ────────────────────────────────── */

/* Three.js WebGL Canvas */
#webgl-canvas { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    pointer-events: none; z-index: 2;
}

/* 2D Sparkle Canvas */
#sparkle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9998;
}

/* Cinematic Film Grain Overlay */
.film-grain-overlay {
    position: fixed;
    top: -50%; left: -50%;
    right: -50%; bottom: -50%;
    width: 200%; height: 200%;
    background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
    opacity: 0.035;
    pointer-events: none;
    z-index: 9997;
    mix-blend-mode: overlay;
    animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2%, -1%); }
    50% { transform: translate(1%, 2%); }
    75% { transform: translate(-1%, -2%); }
    100% { transform: translate(2%, 1%); }
}

/* Spotlight overlays */
.spotlight-left, .spotlight-right {
    position: fixed;
    top: 0;
    width: 50vw;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
    opacity: 0.15;
    will-change: opacity;
}

.spotlight-left {
    left: 0;
    background: radial-gradient(ellipse at 20% 30%, oklch(35% 0.15 25 / 0.5) 0%, transparent 60%);
}

.spotlight-right {
    right: 0;
    background: radial-gradient(ellipse at 80% 60%, oklch(85% 0.12 75 / 0.15) 0%, transparent 60%);
}

/* ─── 4. NAVIGATION ────────────────────────────────────── */
.floral-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 40px; display: flex; justify-content: flex-end;
    align-items: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: transform 0.5s var(--ease-out-expo),
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        box-shadow 0.4s ease;
    border: none;
    box-shadow: none;
}

.floral-nav.scrolled {
    background: oklch(15% 0.03 260 / 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.floral-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-rsvp {
    color: var(--gold-bright) !important; font-family: var(--font-heading);
    text-decoration: none; font-weight: 700; letter-spacing: 2px;
    font-size: 0.8rem;
    display: flex; align-items: center; gap: 8px;
    position: relative;
    padding-bottom: 3px;
}

.nav-rsvp::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-rsvp:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .floral-nav { padding: 15px 20px; }
    .nav-rsvp { 
        font-size: 0.75rem; 
        letter-spacing: 2px; 
    }
}

/* ─── 5. HERO SECTION ──────────────────────────────────── */
.hero-floral {
    height: 100dvh;
    min-height: 600px;
    position: relative; display: flex;
    flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    overflow: hidden;
}

.hero-bg-layer { 
    position: absolute; inset: 0; 
    z-index: 1;
}

.hero-bg-img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: brightness(0.3) contrast(1.2);
    opacity: 0; /* Starts invisible — fades in via JS createImageBitmap */
    transition: opacity 1.5s ease;
}

.hero-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, var(--accent-red-glass) 0%, var(--bg-dark) 100%);
}

/* Breathing cinematic glow behind hero content */
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 70vw, 600px);
    height: clamp(300px, 70vw, 600px);
    background: radial-gradient(ellipse at center,
        oklch(35% 0.15 25 / var(--glow-opacity)) 0%,
        oklch(85% 0.12 75 / 0.05) 40%,
        transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: breatheGlow 6s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { --glow-opacity: 0.25; transform: translate(-50%, -50%) scale(1); }
    50% { --glow-opacity: 0.45; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content { position: relative; z-index: 10; padding: 0 20px; }

.hero-names {
    font-family: var(--font-heading); font-size: clamp(3.5rem, 10vw, 8rem);
    text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex; gap: clamp(8px, 2vw, 20px);
    justify-content: center; align-items: center; flex-wrap: wrap;
}

.hero-name-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-amp { 
    color: var(--gold-bright); font-family: var(--font-script); font-style: italic; 
    font-size: clamp(2rem, 5vw, 4rem);
    opacity: 0;
    transform: scale(0.5);
}

.hero-date-pill { 
    display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 20px; 
    color: var(--gold-muted); font-family: var(--font-heading); letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

/* Scroll Indicator */
.scroll-indicator { 
    position: absolute; bottom: clamp(25px, 5vh, 50px); 
    display: flex; flex-direction: column; align-items: center; width: 100%; z-index: 10;
    gap: 8px;
    opacity: 0;
    animation: fadeUpIn 1s ease forwards 3s;
}

@keyframes fadeUpIn { to { opacity: 1; } }

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Ensure content sections sit above canvas */
.countdown-section, .floral-section, .botanical-cta, .floral-footer {
    position: relative; z-index: 5;
}

/* ─── 6. COUNTDOWN ─────────────────────────────────────── */
.countdown-section { 
    padding: 80px 20px; 
    background: var(--bg-dark-soft); 
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

/* Film reel pip dots above countdown */
.countdown-section::before {
    content: '●  ●  ●  ●  ●';
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    letter-spacing: 4px;
    color: var(--accent-red);
    opacity: 0.4;
}

.countdown-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.countdown-label {
    font-family: var(--font-script);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gold-muted);
    margin-bottom: 30px;
    letter-spacing: 2px;
    opacity: 0;
}

.countdown-grid { 
    display: flex; justify-content: center; align-items: center; 
    gap: clamp(10px, 3vw, 30px); flex-wrap: wrap;
}

.countdown-unit { 
    display: flex; flex-direction: column; align-items: center; 
    min-width: 80px; padding: 15px 10px;
    background: oklch(18% 0.03 260 / 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: border-color 0.3s ease;
}

.countdown-unit:hover {
    border-color: var(--gold-bright);
}

.countdown-number { 
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; 
    color: var(--gold-bright); font-family: var(--font-heading); line-height: 1;
    transition: transform 0.3s var(--ease-elastic), text-shadow 0.3s ease;
    text-shadow: 0 0 15px oklch(85% 0.12 75 / 0.2);
}

.countdown-number.tick {
    transform: scale(1.15);
    text-shadow: 0 0 30px oklch(85% 0.12 75 / 0.6);
}

.countdown-word { 
    text-transform: uppercase; letter-spacing: 3px; font-size: 0.6rem; 
    color: oklch(60% 0.05 260); margin-top: 10px;
    font-weight: 700;
}

.countdown-separator {
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.2);
    font-weight: 300;
    opacity: 0;
    align-self: flex-start;
    margin-top: 20px;
}

/* ─── 7. ITINERARY SECTION ─────────────────────────────── */
.floral-section { 
    padding: var(--section-pad) 20px; max-width: 1000px; margin: 0 auto;
}

.section-title { 
    font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); 
    text-align: center; margin-bottom: 5px; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-script);
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--gold-muted);
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
}

/* Section Divider */
.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    opacity: 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.section-divider i {
    color: var(--accent-red);
    font-size: 0.8rem;
    filter: drop-shadow(0 0 6px var(--accent-red-glass));
}

.timeline-list { display: flex; flex-direction: column; gap: clamp(50px, 8vw, 80px); }

.timeline-card {
    background: oklch(20% 0.04 260 / 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-radius: 4px; padding: clamp(20px, 4vw, 40px);
    display: flex; gap: clamp(20px, 4vw, 50px); align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    /* Wipe reveal managed by JS — starts hidden via inset clip */
    will-change: clip-path;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Film-strip accent stripe on left/right edge — unique to Bollywood */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-red), var(--gold-bright), var(--accent-red));
    opacity: 0.8;
}
.timeline-item:nth-child(even) .timeline-card::before {
    left: auto; right: 0;
}

/* Sprocket-hole dots — decorative film frame detail */
.timeline-card::after {
    content: '';
    position: absolute;
    top: 12px; bottom: 12px; left: -1px;
    width: 6px;
    background-image: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 10px,
        rgba(212, 175, 55, 0.15) 10px,
        rgba(212, 175, 55, 0.15) 16px
    );
    border-radius: 1px;
}
.timeline-item:nth-child(even) .timeline-card::after {
    left: auto; right: -1px;
}

.timeline-item:nth-child(even) .timeline-card { flex-direction: row-reverse; }

/* Film frame icon container — rectangular with sharp corners */
.timeline-icon {
    width: clamp(160px, 30vw, 250px) !important;
    height: clamp(180px, 32vw, 280px) !important;
    object-fit: contain; flex-shrink: 0;
    padding: clamp(10px, 2vw, 20px);
    border-radius: 4px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    /* Spotlight pulse: scale breathing + glow — unique to Bollywood */
    animation: spotlightPulse 4s ease-in-out infinite;
}

/* Unique accent per event card */
.timeline-item:nth-child(1) .timeline-icon {
    background: linear-gradient(135deg, oklch(35% 0.15 25 / 0.25), oklch(20% 0.04 260 / 0.4));
}
.timeline-item:nth-child(2) .timeline-icon {
    background: linear-gradient(135deg, oklch(40% 0.12 75 / 0.25), oklch(20% 0.04 260 / 0.4));
}
.timeline-item:nth-child(3) .timeline-icon {
    background: linear-gradient(135deg, oklch(30% 0.1 300 / 0.2), oklch(20% 0.04 260 / 0.4));
}
.timeline-item:nth-child(4) .timeline-icon {
    background: linear-gradient(135deg, oklch(35% 0.12 50 / 0.3), oklch(20% 0.04 260 / 0.4));
}

/* Spotlight Pulse — scale breathe + glow intensity cycle (NOT morph blob) */
@keyframes spotlightPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px oklch(85% 0.12 75 / 0.2));
        border-color: rgba(212, 175, 55, 0.3);
    }
    50% { 
        transform: scale(1.03);
        filter: drop-shadow(0 0 25px oklch(85% 0.12 75 / 0.5));
        border-color: rgba(212, 175, 55, 0.6);
    }
}

.timeline-info { text-align: left; flex-grow: 1; }
.timeline-item:nth-child(even) .timeline-info { text-align: right; }
.timeline-info h3 { 
    font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.5rem); 
    color: var(--gold-bright); margin-bottom: 4px; line-height: 1.2;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.timeline-info .event-tagline {
    font-family: var(--font-script); font-style: italic;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--gold-muted); margin-bottom: 12px;
    letter-spacing: 1px;
}
.timeline-info p { 
    color: oklch(85% 0.03 260); font-size: clamp(0.85rem, 1.3vw, 0.95rem); 
    margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
    font-weight: 400; letter-spacing: 0.5px;
}
.timeline-item:nth-child(even) .timeline-info p { justify-content: flex-end; }
.timeline-info p i { color: var(--accent-red); width: 18px; text-align: center; font-size: 0.85rem; }
.timeline-info .map-btn i { color: var(--gold-muted); }

.map-btn { 
    display: inline-block; margin-top: 15px; font-size: 0.8rem; font-weight: 700; 
    text-transform: uppercase; color: var(--gold-muted); text-decoration: none; 
    position: relative; padding-bottom: 3px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.map-btn::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.map-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.map-btn:hover { color: var(--gold-bright); }

/* ─── 8. CAROUSELS ─────────────────────────────────────── */
.date-header-row { display: flex; justify-content: center; margin-bottom: 40px; position: relative; z-index: 5; }

.date-pill { 
    background: var(--accent-red); color: var(--gold-bright); 
    border: 1px solid var(--gold-bright);
    padding: 12px 35px; border-radius: 50px; 
    font-family: var(--font-heading); font-size: 1.2rem; 
    box-shadow: 0 0 30px var(--accent-red-glass);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-section { position: relative; width: 100%; overflow: visible; padding: 30px 0; z-index: 5; }
.carousel-container { position: relative; height: 350px; width: 100%; max-width: 900px; margin: 0 auto; }

.carousel-card {
    position: absolute; left: 50%; top: 50%;
    width: clamp(260px, 45vw, 320px); height: 320px;
    background: var(--bg-dark-soft); border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px; padding: 35px 25px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    cursor: pointer;
    overflow: hidden;
}

.pos-center { transform: translate(-50%, -50%) scale(1); left: 50%; top: 50%; opacity: 1; z-index: 3; box-shadow: 0 15px 50px rgba(0,0,0,0.9); border-color: var(--gold-bright); cursor: default; }
.pos-left { transform: translate(calc(-50% - 160px), -50%) scale(0.85); left: 50%; top: 50%; opacity: 0.4; z-index: 1; }
.pos-right { transform: translate(calc(-50% + 160px), -50%) scale(0.85); left: 50%; top: 50%; opacity: 0.4; z-index: 1; }
.pos-hidden { transform: translate(-50%, -50%) scale(0.5); left: 50%; top: 50%; opacity: 0; z-index: 0; pointer-events: none; }

/* Inner spotlight shimmer on center card */
.carousel-card.pos-center::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, oklch(85% 0.12 75 / 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: carouselShimmer 4s ease-in-out infinite;
}

@keyframes carouselShimmer {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.carousel-card h4 { 
    font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); 
    color: var(--gold-bright); margin-bottom: 12px; 
}
.carousel-card i { 
    color: var(--accent-red); font-size: 2.5rem; margin-bottom: 15px; 
    text-shadow: 0 0 10px var(--accent-red-glass);
}
.carousel-card p { color: var(--text-main); font-size: 0.95rem; margin-bottom: 15px; }

.card-highlight { 
    background: var(--accent-red); color: var(--gold-bright); 
    border-radius: 8px; padding: 5px 15px; margin-top: auto; 
    font-size: 0.85rem; font-family: var(--font-heading);
}

.card-link { 
    color: var(--gold-muted); font-weight: 700; margin-top: 15px; 
    text-decoration: none; font-size: 0.8rem; text-transform: uppercase; 
    position: relative; padding-bottom: 2px;
    letter-spacing: 1px;
}

.card-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out-expo);
}

.card-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Carousel Positions */
.pos-center { transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 3; border-color: var(--gold-bright); cursor: default; }
.pos-left { transform: translate(calc(-50% - 200px), -50%) scale(0.85); opacity: 0.3; z-index: 1; filter: blur(2px); }
.pos-right { transform: translate(calc(-50% + 200px), -50%) scale(0.85); opacity: 0.3; z-index: 1; filter: blur(2px); }
.pos-hidden { transform: translate(-50%, -50%) scale(0.5); opacity: 0; z-index: 0; pointer-events: none; }

/* ─── 9. CTA SECTION ──────────────────────────────────── */
.botanical-cta { padding: 80px 20px; display: flex; justify-content: center; }

.cta-watercolor-mask { 
    background: linear-gradient(135deg, oklch(22% 0.06 25 / 0.8) 0%, oklch(18% 0.04 260) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35); 
    padding: clamp(50px, 7vw, 70px) clamp(30px, 5vw, 50px);
    text-align: center; border-radius: 4px; 
    box-shadow: 
        0 0 50px var(--accent-red-glass),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
    width: 100%; max-width: 600px;
    position: relative;
    overflow: hidden;
}

/* Marquee light dots around CTA border */
.cta-watercolor-mask::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 18px,
        rgba(212, 175, 55, 0.3) 18px,
        rgba(212, 175, 55, 0.3) 22px
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    border-radius: 4px;
    animation: marqueeShift 3s linear infinite;
    pointer-events: none;
}

@keyframes marqueeShift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.rsvp-cta-text {
    font-family: var(--font-heading);
    color: var(--gold-bright);
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-subtext {
    font-family: var(--font-script);
    font-style: italic;
    color: var(--gold-muted);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn.primary { 
    display: inline-flex; align-items: center; gap: 10px; 
    padding: 18px 40px; background: var(--gold-bright); color: var(--bg-dark); 
    font-family: var(--font-heading); font-weight: 900; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none; 
    border-radius: 4px; transition: all 0.4s var(--ease-out-expo);
    border: none; cursor: pointer;
    box-shadow: 0 6px 25px oklch(85% 0.12 75 / 0.25);
    position: relative;
}

.btn.primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 
        0 12px 35px oklch(85% 0.12 75 / 0.4),
        0 0 60px oklch(85% 0.12 75 / 0.15);
    background: oklch(90% 0.14 75);
}

.btn.primary:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
}

.btn.primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn.primary:hover i {
    transform: translateX(3px);
}

/* ─── 10. FOOTER ───────────────────────────────────────── */
.floral-footer { 
    padding: 40px 20px; text-align: center; 
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
    background: var(--bg-dark-soft);
}

.floral-footer p {
    font-family: var(--font-heading);
    color: var(--gold-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* ─── 11. RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
    .hero-names { 
        font-size: clamp(2.5rem, 8vw, 4rem); 
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.1;
    }
    .hero-amp {
        font-size: 0.5em;
        margin: 5px 0;
        line-height: 1;
    }
    
    .countdown-grid { 
        gap: 5px; 
        flex-wrap: nowrap !important;
        width: 100%;
        padding: 0 10px;
    }
    .countdown-unit { 
        min-width: 0 !important; 
        flex: 1; 
        padding: 10px 5px !important; 
    }
    .countdown-number { 
        font-size: clamp(1.4rem, 5vw, 2rem) !important; 
    }
    .countdown-word { 
        font-size: 0.5rem !important; 
        letter-spacing: 1px !important; 
    }
    .countdown-separator { 
        display: none !important; 
    }

    .timeline-card, .timeline-item:nth-child(even) .timeline-card { 
        flex-direction: column !important; text-align: center; gap: 20px; 
    }
    .timeline-info, .timeline-item:nth-child(even) .timeline-info { text-align: center; }
    .timeline-info p, .timeline-item:nth-child(even) .timeline-info p { justify-content: center; }
    .timeline-icon { width: 150px !important; height: 170px !important; }
    
    .carousel-card { width: 260px; height: 290px; }
    .pos-left { transform: translate(calc(-50% - 130px), -50%) scale(0.8); }
    .pos-right { transform: translate(calc(-50% + 130px), -50%) scale(0.8); }
    
    .spotlight-left, .spotlight-right { display: none; }
}

@media (max-width: 400px) {
    .hero-names { font-size: 2.5rem; }
    .timeline-icon { width: 120px !important; height: 140px !important; }
}

/* ─── 12. MICRO-INTERACTIONS ───────────────────────────── */
.btn:active, .date-pill:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease !important;
}

/* Smooth text reveal class for GSAP */
.reveal-text {
    opacity: 0;
    transform: translateY(25px);
}

/* Desktop hover enhancements */
@media (hover: hover) and (pointer: fine) {
    .timeline-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.08);
        border-color: rgba(212, 175, 55, 0.4);
    }

    .timeline-card:hover .timeline-icon {
        animation-play-state: paused;
        filter: drop-shadow(0 0 20px oklch(85% 0.12 75 / 0.6));
    }

    .carousel-card.pos-left:hover,
    .carousel-card.pos-right:hover {
        opacity: 0.5;
    }

    .map-btn:hover {
        color: var(--gold-bright);
        text-shadow: 0 0 10px oklch(85% 0.12 75 / 0.3);
    }

    .date-pill:hover {
        box-shadow: 0 0 40px var(--accent-red-glass);
        border-color: var(--gold-bright);
    }

    .carousel-card.pos-center:hover {
        box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 40px oklch(85% 0.12 75 / 0.1);
    }
}

/* ─── 13. UTILITY ──────────────────────────────────────── */
.text-center { text-align: center; }

/* Input Group spacing */
.input-group { margin-bottom: 20px; }
.input-group label {
    display: block; margin-bottom: 6px;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold-muted);
}

/* Nav pill for carousels */
.date-pill {
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 3px;
}