/* ============================================
   MIDNIGHT CHICAGO
   Dorian Johnstone & Francis Gryspeerdt
   Vintage Chicago jazz-era aesthetic
   ============================================ */

/* --- Custom Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Josefin+Sans:wght@300;400;600&display=swap');

:root {
    /* Midnight palette */
    --midnight: #0b1026;
    --deep-navy: #101833;
    --navy: #162044;
    --steel-blue: #1e3054;
    --slate-blue: #2a4066;

    /* Warm light palette */
    --amber: #d4920a;
    --amber-light: #e8a832;
    --amber-glow: #f0c050;
    --warm-gold: #c8a44e;
    --copper: #b87333;
    --marquee-orange: #e07020;

    /* Neutrals */
    --cream: #f0e8d8;
    --ivory: #faf5eb;
    --pearl: #d8d0c0;
    --silver: #9a9aaa;
    --smoke: #6a6a7a;

    /* Water reflections */
    --reflection: rgba(224, 168, 50, 0.08);
    --ripple: rgba(224, 168, 50, 0.15);

    /* Typography */
    --font-display: 'Abril Fatface', Georgia, serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'EB Garamond', Georgia, serif;
    --font-accent: 'Josefin Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-xxl: 8rem;
}

/* --- Reset & Base --- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--cream);
    background: var(--midnight);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

::selection {
    background: var(--amber);
    color: var(--midnight);
}

a {
    color: var(--amber-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--amber-glow);
}

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

.site-main {
    flex: 1;
}

/* --- Section Headings --- */

.section-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: var(--space-md) 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--amber), transparent);
}

.section-divider-star {
    color: var(--amber);
    font-size: 0.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(11, 16, 38, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 2px;
}

.site-logo:hover .logo-text {
    color: var(--amber-light);
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pearl);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--amber-light);
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Starfield effect */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 80%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 55%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 90%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 30%, rgba(255,255,255,0.4) 0%, transparent 100%);
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Moon - realistic with craters */
.hero-moon {
    position: absolute;
    top: 6%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, #faf8e8 0%, #e8e0c8 30%, #d0c8a8 55%, #b8b090 80%, #a09878 100%);
    box-shadow:
        0 0 20px rgba(250, 248, 232, 0.25),
        0 0 60px rgba(250, 248, 232, 0.12),
        0 0 100px rgba(250, 248, 232, 0.06),
        inset -8px -6px 15px rgba(160, 152, 120, 0.4);
    z-index: 1;
}

/* Moon craters via pseudo-elements */
.hero-moon::before {
    content: '';
    position: absolute;
    top: 22%;
    left: 28%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(200, 192, 168, 0.6), rgba(180, 172, 148, 0.3));
    box-shadow:
        25px 15px 0 -3px rgba(190, 182, 158, 0.4),
        -5px 30px 0 -5px rgba(195, 187, 163, 0.35),
        35px -5px 0 -6px rgba(185, 177, 153, 0.3),
        15px 35px 0 -4px rgba(190, 182, 158, 0.25),
        -10px 10px 0 -7px rgba(200, 192, 168, 0.2);
}

.hero-moon::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(195, 187, 163, 0.5), rgba(175, 167, 143, 0.2));
    box-shadow:
        -20px -8px 0 -2px rgba(190, 182, 158, 0.3),
        10px 10px 0 -4px rgba(185, 177, 153, 0.25);
}

/* Chicago Skyline */
.hero-skyline {
    position: absolute;
    bottom: 18%;
    left: 0;
    right: 0;
    height: 320px;
    z-index: 2;
    pointer-events: none;
}

/* Skyline buildings via box-shadows on a single element */
.hero-skyline-buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
}

/* Willis Tower */
.hero-building-willis {
    position: absolute;
    bottom: 0;
    left: 28%;
    width: 28px;
    height: 280px;
    background: var(--deep-navy);
}
.hero-building-willis::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 8px;
    width: 5px;
    height: 18px;
    background: var(--deep-navy);
    box-shadow: 7px 0 0 0 var(--deep-navy);
}

/* Hancock */
.hero-building-hancock {
    position: absolute;
    bottom: 0;
    left: 48%;
    width: 22px;
    height: 240px;
    background: var(--deep-navy);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}
.hero-building-hancock::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 25px;
    background: var(--deep-navy);
}

/* Generic buildings */
.hero-building-1 { position: absolute; bottom: 0; left: 5%; width: 40px; height: 100px; background: var(--deep-navy); }
.hero-building-2 { position: absolute; bottom: 0; left: 10%; width: 30px; height: 140px; background: var(--deep-navy); }
.hero-building-3 { position: absolute; bottom: 0; left: 15%; width: 50px; height: 120px; background: var(--deep-navy); }
.hero-building-4 { position: absolute; bottom: 0; left: 22%; width: 35px; height: 170px; background: var(--deep-navy); }
.hero-building-5 { position: absolute; bottom: 0; left: 33%; width: 45px; height: 150px; background: var(--deep-navy); }
.hero-building-6 { position: absolute; bottom: 0; left: 39%; width: 30px; height: 190px; background: var(--deep-navy); }
.hero-building-7 { position: absolute; bottom: 0; left: 43%; width: 35px; height: 130px; background: var(--deep-navy); }
.hero-building-8 { position: absolute; bottom: 0; left: 53%; width: 50px; height: 160px; background: var(--deep-navy); }
.hero-building-9 { position: absolute; bottom: 0; left: 59%; width: 25px; height: 200px; background: var(--deep-navy); }
.hero-building-10 { position: absolute; bottom: 0; left: 63%; width: 40px; height: 110px; background: var(--deep-navy); }
.hero-building-11 { position: absolute; bottom: 0; left: 68%; width: 55px; height: 145px; background: var(--deep-navy); }
.hero-building-12 { position: absolute; bottom: 0; left: 74%; width: 30px; height: 180px; background: var(--deep-navy); }
.hero-building-13 { position: absolute; bottom: 0; left: 78%; width: 45px; height: 125px; background: var(--deep-navy); }
.hero-building-14 { position: absolute; bottom: 0; left: 84%; width: 35px; height: 155px; background: var(--deep-navy); }
.hero-building-15 { position: absolute; bottom: 0; left: 89%; width: 50px; height: 95px; background: var(--deep-navy); }
.hero-building-16 { position: absolute; bottom: 0; left: 94%; width: 40px; height: 130px; background: var(--deep-navy); }
.hero-building-17 { position: absolute; bottom: 0; left: 0%; width: 35px; height: 85px; background: var(--deep-navy); }

/* Building windows - tiny amber dots */
.hero-building-willis, .hero-building-hancock,
.hero-building-2, .hero-building-4, .hero-building-6,
.hero-building-8, .hero-building-9, .hero-building-11,
.hero-building-12, .hero-building-14 {
    background-image:
        radial-gradient(1px 1.5px at 25% 15%, rgba(255, 200, 80, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 75% 25%, rgba(255, 200, 80, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 40% 35%, rgba(255, 200, 80, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 60% 45%, rgba(255, 200, 80, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 30% 55%, rgba(255, 200, 80, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 70% 65%, rgba(255, 200, 80, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 50% 75%, rgba(255, 200, 80, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 20% 85%, rgba(255, 200, 80, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1.5px at 80% 90%, rgba(255, 200, 80, 0.5) 0%, transparent 100%);
    background-color: var(--deep-navy);
}

.hero-skyline svg {
    width: 100%;
    height: 100%;
    fill: var(--deep-navy);
    filter: drop-shadow(0 0 20px rgba(224, 168, 50, 0.1));
}

/* City light reflections on water */
.hero-reflections {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to bottom,
        var(--deep-navy),
        rgba(16, 24, 51, 0.95));
    z-index: 3;
    overflow: hidden;
}

.hero-reflections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg,
            rgba(224, 168, 50, 0.08) 0%,
            transparent 3%,
            rgba(224, 168, 50, 0.05) 6%,
            transparent 9%,
            rgba(224, 168, 50, 0.03) 12%,
            transparent 15%,
            rgba(224, 168, 50, 0.02) 20%,
            transparent 100%);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.02); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    max-width: 800px;
}

.hero-pre {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--cream);
    line-height: 0.95;
    margin-bottom: var(--space-xs);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-title-accent {
    display: block;
    color: var(--amber-light);
    font-size: 0.85em;
    /* Marquee light effect */
    text-shadow:
        0 0 10px rgba(224, 168, 50, 0.4),
        0 0 30px rgba(224, 168, 50, 0.2);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--pearl);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-artists {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-artists span {
    color: var(--amber);
    margin: 0 0.3rem;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--midnight);
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    padding: 1rem 3rem;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--amber-glow), var(--amber-light));
    color: var(--midnight);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 146, 10, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2s;
}

.hero-scroll-text {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--space-xxl) var(--space-md);
    background: var(--deep-navy);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--midnight), var(--deep-navy));
    pointer-events: none;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-text p {
    font-size: 1.35rem;
    color: var(--pearl);
    margin-bottom: var(--space-md);
}

.about-text p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    color: var(--amber);
    line-height: 0.8;
    margin-right: 0.15em;
    margin-top: 0.1em;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    object-fit: contain;
    filter: sepia(0.08) contrast(1.05);
}

.about-image-frame {
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    border: 1px solid var(--amber);
    opacity: 0.3;
    pointer-events: none;
}

.about-performers {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.performer-card {
    padding: var(--space-lg);
    background: rgba(22, 32, 68, 0.6);
    border: 1px solid rgba(212, 146, 10, 0.15);
    position: relative;
}

.performer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--amber), transparent);
}

.performer-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.performer-role {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.performer-bio {
    font-size: 1.25rem;
    color: var(--silver);
    line-height: 1.7;
}

/* ============================================
   MUSIC / REPERTOIRE SECTION
   ============================================ */

.music {
    padding: var(--space-xxl) var(--space-md);
    background: var(--midnight);
    position: relative;
}

.music-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.music-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.music-intro {
    font-size: 1.45rem;
    font-style: italic;
    color: var(--pearl);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.repertoire-category {
    padding: var(--space-md);
    background: rgba(22, 32, 68, 0.4);
    border-left: 2px solid var(--amber);
}

.repertoire-category-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--amber-light);
    margin-bottom: var(--space-sm);
}

.repertoire-list {
    list-style: none;
}

.repertoire-list li {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--pearl);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 146, 10, 0.08);
}

.repertoire-list li:last-child {
    border-bottom: none;
}

.repertoire-list li .song-artist {
    font-size: 0.95rem;
    color: var(--smoke);
    font-style: italic;
}

/* SoundCloud / Media embed */
.music-embed {
    margin-top: var(--space-xl);
    text-align: center;
}

.music-coming-soon {
    padding: var(--space-xl);
    border: 1px dashed rgba(212, 146, 10, 0.3);
    text-align: center;
}

.music-coming-soon p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: var(--space-xxl) var(--space-md);
    background: var(--deep-navy);
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: saturate(0.8) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(11, 16, 38, 0.6), transparent);
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    z-index: 1;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Featured poster image */
.gallery-featured {
    grid-column: span 2;
    aspect-ratio: auto;
    max-height: 500px;
}

.gallery-featured img {
    object-position: top center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--space-xxl) var(--space-md);
    background: var(--midnight);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-intro {
    font-size: 1.45rem;
    font-style: italic;
    color: var(--pearl);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Contact form */
.contact-form {
    position: relative;
    padding: var(--space-lg);
    background: rgba(22, 32, 68, 0.4);
    border: 1px solid rgba(212, 146, 10, 0.15);
}

.contact-form::before,
.contact-form::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
}

.contact-form::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--amber);
    border-left: 2px solid var(--amber);
}

.contact-form::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--amber);
    border-right: 2px solid var(--amber);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--cream);
    background: rgba(11, 16, 38, 0.6);
    border: 1px solid rgba(212, 146, 10, 0.2);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(11, 16, 38, 0.8);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4920a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--midnight);
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    border: none;
    padding: 1rem 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--amber-glow), var(--amber-light));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 146, 10, 0.25);
}

/* Contact info sidebar */
.contact-info {
    padding: var(--space-lg) 0;
}

.contact-info-block {
    margin-bottom: var(--space-lg);
}

.contact-info-block h3 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
}

.contact-info-block p {
    font-size: 1.3rem;
    color: var(--pearl);
    line-height: 1.7;
}

.contact-info-block a {
    color: var(--amber-light);
}

/* Social links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 146, 10, 0.3);
    color: var(--pearl);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--amber);
    color: var(--amber);
    background: rgba(212, 146, 10, 0.08);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Event types showcase */
.event-types {
    margin-top: var(--space-lg);
}

.event-types h3 {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.event-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(154, 154, 170, 0.2);
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.event-tag:hover {
    border-color: var(--amber);
    color: var(--amber);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: rgba(8, 12, 28, 0.95);
    border-top: 1px solid rgba(212, 146, 10, 0.1);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.footer-tagline {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--amber);
    margin-bottom: var(--space-md);
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.footer-divider::before,
.footer-divider::after {
    content: '';
    height: 1px;
    width: 40px;
    background: rgba(212, 146, 10, 0.3);
}

.footer-divider-star {
    width: 6px;
    height: 6px;
    background: var(--amber);
    transform: rotate(45deg);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-social a {
    color: var(--silver);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--amber);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--space-md);
}

.footer-nav a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--smoke);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--amber);
}

.footer-credit {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--smoke);
}

.footer-credit a {
    color: var(--silver);
}

/* ============================================
   PAGE-SPECIFIC LAYOUTS
   ============================================ */

.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--midnight), var(--deep-navy));
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.3) 0%, transparent 100%);
    pointer-events: none;
}

.page-hero .section-label,
.page-hero .section-title {
    position: relative;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-featured {
        grid-column: span 1;
    }

    .hero-moon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 960px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(11, 16, 38, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .hero-moon {
        width: 60px;
        height: 60px;
        top: 12%;
        left: 8%;
    }

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

    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-artists {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
    }

    .contact-form {
        padding: var(--space-md);
    }
}
