/* ============================================
   ИСТОРИЯ ЛЮБВИ — Иммерсивный лендинг концерта
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Warm romantic palette inspired by roses */
    --bg-primary: #0a0608;
    --bg-secondary: #0f0a0c;
    --bg-gradient-start: #2a0a12;
    --bg-gradient-end: #080406;

    --gold: #d4a574;
    --gold-light: #f0d4a8;
    --gold-glow: rgba(212, 165, 116, 0.5);
    --gold-subtle: rgba(212, 165, 116, 0.15);

    --rose: #8b2942;
    --rose-light: #c45c6a;
    --rose-glow: rgba(139, 41, 66, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #a0a0a8;
    --text-muted: #6a6a72;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    overflow: visible; /* Changed from hidden to allow petals to fall */
    background: var(--bg-primary);
    z-index: 1; /* Lower than atmosphere (z-index: 20) to prevent button overlap */
}

/* Background Image Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.85) saturate(1.15);
}

/* Cinematic Overlay - gradient from edges */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        /* Top vignette */
        linear-gradient(to bottom, rgba(10, 6, 8, 0.7) 0%, transparent 30%),
        /* Bottom vignette - stronger for text readability */
        linear-gradient(to top, rgba(10, 6, 8, 0.95) 0%, rgba(10, 6, 8, 0.6) 40%, transparent 70%),
        /* Side vignettes */
        linear-gradient(to right, rgba(10, 6, 8, 0.5) 0%, transparent 20%),
        linear-gradient(to left, rgba(10, 6, 8, 0.5) 0%, transparent 20%),
        /* Subtle color tint */
        radial-gradient(ellipse at center 40%, rgba(139, 41, 66, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated light rays effect */
.hero-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    z-index: 2;
    background:
        conic-gradient(
            from 180deg at 50% 0%,
            transparent 0deg,
            rgba(255, 220, 180, 0.03) 10deg,
            transparent 20deg,
            transparent 40deg,
            rgba(255, 220, 180, 0.02) 50deg,
            transparent 60deg,
            transparent 80deg,
            rgba(255, 220, 180, 0.03) 90deg,
            transparent 100deg,
            transparent 180deg
        );
    opacity: 0.8;
    animation: raysRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes raysRotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

/* Floating rose petals - JavaScript animated */
.hero-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

.petal {
    position: absolute;
    top: -70px;
    width: 45px;
    height: 54px;
    pointer-events: none;
}

/* Warm glow in center */
.hero-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--gold-subtle) 0%, var(--rose-glow) 30%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: pulseGlow 6s ease-in-out infinite;
    mix-blend-mode: soft-light;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    /* Text shadow for readability over image */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
    opacity: 0;
    text-shadow: 0 0 30px var(--gold-glow);
    position: relative;
    top: -100px;
}

.hero-title {
    margin-bottom: 40px;
}

/* Designer Logo Image */
.hero-logo {
    display: block;
    max-width: min(700px, 90vw);
    height: auto;
    margin-top: 200px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 60px rgba(139, 41, 66, 0.4));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

/* Fallback text styles (hidden when logo present) */
.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 300;
    line-height: 0.95;
    opacity: 0;
    transform: translateY(40px);
}

.title-line:last-child {
    font-style: italic;
    color: var(--gold-light);
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 32px;
    margin-top: -40px;
    opacity: 0;
}

.hero-info {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
}

.hero-info .separator {
    color: var(--gold);
    margin: 0 8px;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform var(--transition-medium);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 40px var(--gold-glow);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-large {
    padding: 24px 56px;
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   ATMOSPHERE SECTION - Romantic Quote
   ============================================ */
.atmosphere {
    padding: 40px 0;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    z-index: 20;
}

/* Bokeh background effect */
.atmosphere-bokeh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.atmosphere-bokeh::before,
.atmosphere-bokeh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: bokehFloat 10s ease-in-out infinite;
}

.atmosphere-bokeh::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.atmosphere-bokeh::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 41, 66, 0.15) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes bokehFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
        opacity: 0.5;
    }
    75% {
        transform: translate(-30px, -10px) scale(1.05);
        opacity: 0.7;
    }
}

/* Central glow */
.atmosphere::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.1) 0%, rgba(139, 41, 66, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: centralGlow 6s ease-in-out infinite;
}

@keyframes centralGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Quote container */
.atmo-quote {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    z-index: 10;
}

/* Large decorative quote mark */
.quote-decoration {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12rem;
    color: rgba(212, 165, 116, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Stars decoration */
.quote-star {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-light);
    opacity: 0;
    animation: starTwinkle 3s ease-in-out infinite;
}

.quote-star.top {
    margin-bottom: 24px;
}

.quote-star.bottom {
    margin-top: 24px;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Quote lines - gradient text with glow */
.quote-line {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    padding: 4px 0;
    opacity: 0;
    transform: translateY(20px);
    /* Gradient text */
    background: linear-gradient(135deg, #f5e1c8 0%, #f0d4a8 25%, #d4a574 50%, #e8c896 75%, #f0d4a8 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Glow effect via filter */
    filter: drop-shadow(0 0 30px rgba(212, 165, 116, 0.4));
    animation: textGlow 4s ease-in-out infinite;
}

.quote-line-1, .quote-line-3 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}

.quote-line-2, .quote-line-4 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    opacity: 0.9;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
        background-position: 0% 50%;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 165, 116, 0.6));
        background-position: 100% 50%;
    }
}

/* Divider with heart */
.quote-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0;
    opacity: 0;
    transform: scaleX(0);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-heart {
    font-size: 1.25rem;
    color: var(--rose-light);
    animation: heartBeat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(196, 92, 106, 0.5));
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

/* Reveal animations for quote elements */
.atmo-quote.active .quote-star {
    opacity: 0.4;
}

.atmo-quote.active .quote-line {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.atmo-quote.active .quote-line-1 { transition-delay: 0.1s; }
.atmo-quote.active .quote-line-2 { transition-delay: 0.25s; }
.atmo-quote.active .quote-line-3 { transition-delay: 0.55s; }
.atmo-quote.active .quote-line-4 { transition-delay: 0.7s; }

.atmo-quote.active .quote-divider {
    opacity: 1;
    transform: scaleX(1);
    transition: opacity 0.6s ease 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

/* ============================================
   ABOUT SECTION (Cards)
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(40px);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-subtle);
}

.glass-card--large {
    grid-column: 1 / -1;
    padding: 48px;
}

.card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

/* ============================================
   PROGRAM SECTION
   ============================================ */
.program {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(30px);
}

.program-list {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    cursor: default;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-20px);
}

.program-item:last-child {
    border-bottom: none;
}

.program-item:hover {
    padding-left: 16px;
}

.program-item:hover .program-number {
    color: var(--gold);
    transform: scale(1.2);
}

.program-item:hover .program-name {
    color: var(--gold);
}

.program-item:hover .program-line {
    background: var(--gold);
    width: 40px;
}

.program-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-muted);
    min-width: 40px;
    transition: all var(--transition-fast);
}

.program-line {
    flex-shrink: 0;
    width: 24px;
    height: 1px;
    background: var(--glass-border);
    transition: all var(--transition-fast);
}

.program-name {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.program-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   PERFORMERS SECTION
   ============================================ */
.performers {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.performer-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(40px);
}

.performer-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.performer-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-secondary));
}

.performer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* When you add real images, use this structure:
   <img src="images/performer.jpg" alt="Name" class="performer-img"> */
.performer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.performer-card:hover .performer-img {
    transform: scale(1.05);
}

.performer-info {
    padding: 28px;
}

.performer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.performer-role {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.performer-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   VENUE SECTION
   ============================================ */
.venue {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.venue-image {
    width: 100%;
    max-width: 1000px;
    margin: 48px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.venue-image img {
    width: 100%;
    height: auto;
    display: block;
}

.venue-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 64px;
    opacity: 0;
    transform: translateY(40px);
}

.venue-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.venue-address {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

.venue-link:hover {
    color: var(--gold-light);
}

.venue-link svg {
    transition: transform var(--transition-fast);
}

.venue-link:hover svg {
    transform: translateY(-2px);
}

.organizer-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.organizer-name {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.organizer-address {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    text-align: center;
}

.cta-content {
    opacity: 0;
    transform: translateY(40px);
}

.cta-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.cta-price {
    margin-top: 24px;
    font-size: 1rem;
    color: var(--text-muted);
}

.cta-price-large {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

/* CTA Button - special styling for final section */
.final-cta .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #c4955a 100%);
    border: none;
    color: var(--bg-primary);
    font-weight: 600;
    box-shadow:
        0 4px 20px rgba(212, 165, 116, 0.4),
        0 0 60px rgba(212, 165, 116, 0.2);
    animation: ctaPulse 3s ease-in-out infinite;
}

.final-cta .btn-primary::before {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.final-cta .btn-primary:hover {
    color: var(--bg-primary);
    box-shadow:
        0 8px 40px rgba(212, 165, 116, 0.6),
        0 0 80px rgba(212, 165, 116, 0.4);
    transform: translateY(-2px);
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(212, 165, 116, 0.4),
            0 0 60px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow:
            0 4px 30px rgba(212, 165, 116, 0.6),
            0 0 80px rgba(212, 165, 116, 0.35);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-org {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-address {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-email a {
    font-size: 0.8125rem;
    color: var(--gold);
    transition: color var(--transition-fast);
}

.footer-email a:hover {
    color: var(--gold-light);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   ANIMATIONS - Initial States
   ============================================ */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.animate-title {
    opacity: 0;
    transform: translateY(40px);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered delays for reveal */
.reveal[data-delay="0"] { transition-delay: 0s; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-card--large {
        grid-column: 1 / -1;
    }

    .performers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .performers-grid .performer-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .hero {
        padding: 80px 24px 60px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .hero-info {
        flex-direction: column;
        gap: 4px;
    }

    .hero-info .separator {
        display: none;
    }

    .btn-primary {
        padding: 16px 32px;
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .program-item {
        gap: 12px;
    }

    .program-name {
        font-size: 0.875rem;
    }

    .performers-grid {
        grid-template-columns: 1fr;
    }

    .performers-grid .performer-card:last-child {
        max-width: none;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .glass-card {
        padding: 24px;
    }

    .card-value {
        font-size: 1.5rem;
    }

    .performer-info {
        padding: 20px;
    }

    .performer-name {
        font-size: 1.25rem;
    }
}

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

    .particles {
        display: none;
    }
}

/* Focus states */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--bg-primary);
}
