
       
        /* ═══════════════════════════════════════
           FULL BLEED FIX
           ═══════════════════════════════════════ */
           html {
            background: #2A241F;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            width: 100%;
            min-width: 100%;
        }

        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            width: 100%;
            min-width: 100%;
            position: relative;
        }

        html::before {
            content: '';
            position: fixed;
            top: -100px;
            left: -100px;
            right: -100px;
            bottom: -100px;
            background: #2A241F;
            z-index: -9999;
        }

        /* ═══════════════════════════════════════
           COLOR PALETTE
           ═══════════════════════════════════════ */
        :root {
            --warm-slate: #5A5248;
            --terracotta: #A64B2A;
            --rich-brown: #8B6F47;
            --deep-espresso: #3E342B;
            --sand-beige: #E8DCC8;
            --golden-amber: #D4A574;
            --burnt-sienna: #C85A3C;
            --charcoal-brown: #2A241F;
            --warm-taupe: #9B8B7E;
            --copper-glow: #E89B6D;
            --honey-gold: #F4C430;
            --cream-light: #FAF3E8;
            --chocolate: #3D2817;
            --poster-gold: #C9A961;
            --poster-blue: #5B8FA8;
            --gold: #C9A961;
            --sand: #E8DCC8;

            --font-display: 'Cinzel Decorative', serif;
            --font-heading: 'Cinzel', serif;
            --font-body: 'Lora', serif;
            --font-typewriter: 'Special Elite', monospace;
        }

        /* ═══════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════ */
        *, *::before, *::after {
            margin: 0; padding: 0; box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--rich-brown) var(--deep-espresso);
        }

        body {
            font-family: var(--font-body);
            background: var(--charcoal-brown);
            color: var(--sand-beige);
            line-height: 1.7;
        }

        ::selection {
            background: var(--terracotta);
            color: var(--cream-light);
        }

        img { max-width: 100%; display: block; }

        a { color: var(--golden-amber); text-decoration: none; transition: color 0.3s; }
        a:hover { color: var(--honey-gold); }

        /* ═══════════════════════════════════════
           FILM GRAIN
           ═══════════════════════════════════════ */
        .film-grain {
            position: fixed;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            pointer-events: none;
            z-index: 10000;
            opacity: 0.02;
            animation: grainShift 0.4s steps(8) infinite;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
        }

        @keyframes grainShift {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-5%, -10%); }
            30% { transform: translate(7%, -25%); }
            50% { transform: translate(-15%, 10%); }
            70% { transform: translate(0%, 15%); }
            90% { transform: translate(-10%, 10%); }
        }

        /* ═══════════════════════════════════════
           ASH PARTICLE CANVAS
           ═══════════════════════════════════════ */
        #ash-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9998;
        }

        /* ═══════════════════════════════════════
           SPOTLIGHT
           ═══════════════════════════════════════ */
        .spotlight-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9997;
            opacity: 0;
            transition: opacity 0.5s;
            background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%),
                rgba(244,196,48,0.08) 0%, transparent 100%);
        }

        body:hover .spotlight-overlay { opacity: 1; }

        /* ═══════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            z-index: 9990;
            padding: 18px 40px;
					opacity: 1 !important;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(180deg, rgba(42,36,31,0.95) 0%, transparent 100%);
            transform: translateY(0); 
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            border-bottom: 1px solid rgba(139,111,71,0.2);
        }

       .schedule-cta {
            text-align: center;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            align-items: center;
        }

        .schedule-cta-btn {
            min-width: 280px;
            padding: 20px 40px;
            font-size: 13px;
            box-sizing: border-box;
        }

        .schedule-cta-ticket {
            font-size: 14px;
            padding-top: 22px;
            padding-bottom: 22px;
        }

        .nav-progress {
            position: absolute;
            bottom: 0; left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--golden-amber), var(--burnt-sienna));
            width: 0%;
            transition: width 0.1s;
        }

        /* ═══════════════════════════════════════
           HERO SECTION - IMAGE FIX
           ═══════════════════════════════════════ */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 550px;
            max-height: 1400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
        }
				
        .hero-bg img {
            width: 100%; 
            height: 100%;
            object-fit: cover;
            /* FIXED: center 65% pushes the view DOWN into the image
               so the face/character in the lower-center is visible */
            object-position: center 65%;
            filter: brightness(0.5) saturate(1.05) contrast(1.1);
        }

        .hero-vignette {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 2;
            background:
                radial-gradient(ellipse at center 60%, transparent 25%, rgba(42,36,31,0.4) 55%, rgba(42,36,31,0.8) 100%),
                linear-gradient(0deg, var(--charcoal-brown) 0%, transparent 20%),
                linear-gradient(180deg, rgba(42,36,31,0.3) 0%, transparent 10%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 15px 20px;
        }

        .hero-subtitle-top {
            font-family: var(--font-typewriter);
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--poster-gold);
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeSlideUp 1s 0.5s forwards;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        .hero-title {
            font-family: 'Libre Baskerville', Georgia, serif;
            font-size: clamp(36px, 6vw, 85px);
            font-weight: 700;
            line-height: 0.92;
            color: #8B2222;
            letter-spacing: 3px;
            margin-bottom: 5px;
            opacity: 0;
            animation: titleReveal 1.8s 0.8s forwards;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            text-shadow:
                -1px -1px 0 rgba(220,140,120,0.4),
                -2px -2px 1px rgba(200,100,80,0.25),
                1px 1px 0 rgba(50,20,20,0.95),
                2px 2px 0 rgba(50,20,20,0.95),
                3px 3px 0 rgba(35,15,15,0.9),
                5px 5px 8px rgba(0,0,0,0.6);
        }

        .hero-title-sub {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(12px, 1.8vw, 20px);
            font-weight: 400;
            font-style: normal;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: #6B9BB0;
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeSlideUp 1s 1.5s forwards;
            text-shadow: none;
            position: relative;
            padding-bottom: 12px;
        }
        .hero-title-sub::before,
        .hero-title-sub::after {
            content: '';
            position: absolute;
            bottom: 4px;
            width: 40px;
            height: 1px;
            background: #6B9BB0;
            opacity: 0.9;
        }
        .hero-title-sub::before {
            right: calc(100% + 12px);
            background: linear-gradient(90deg, transparent, #6B9BB0);
        }
        .hero-title-sub::after {
            left: calc(100% + 12px);
            background: linear-gradient(270deg, transparent, #6B9BB0);
        }

        .hero-premiere-info {
            font-family: var(--font-typewriter);
            font-size: 11px;
            color: var(--sand-beige);
            letter-spacing: 2px;
            line-height: 1.6;
            max-width: 450px;
            margin: 0 auto 8px;
            opacity: 0;
            animation: fadeSlideUp 1s 2s forwards;
            text-shadow: 0 2px 12px rgba(0,0,0,0.8);
        }

        .hero-tagline {
            font-family: var(--font-body);
            font-style: italic;
            font-size: 12px;
            color: var(--golden-amber);
            letter-spacing: 0.5px;
            max-width: 500px;
            margin: 0 auto 18px;
            opacity: 0;
            animation: fadeSlideUp 1s 2.4s forwards;
            text-shadow: 0 2px 15px rgba(0,0,0,0.8);
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeSlideUp 1s 2.8s forwards;
        }

        /* ═══════════════════════════════════════
           BUTTONS
           ═══════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            font-family: var(--font-typewriter);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .btn-primary {
            background: linear-gradient(135deg, #C9A961 0%, #A08850 100%);
            color: var(--chocolate);
            border: 2px solid #D4B16E;
            text-shadow: 0 1px 0 rgba(255,255,255,0.2);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover {
            background: linear-gradient(135deg, #D4B977 0%, #B09960 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(201,169,97,0.5);
        }

        .btn-secondary {
            background: rgba(61,40,23,0.7);
            color: var(--poster-gold);
            border: 2px solid var(--poster-gold);
        }

        .btn-secondary:hover {
            background: rgba(61,40,23,0.9);
            border-color: var(--honey-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(201,169,97,0.3);
        }

        .phone-ext { text-transform: none; }

        .hero-scroll-hint {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            opacity: 0;
            animation: fadeSlideUp 1s 3.4s forwards;
        }

        .hero-scroll-hint span {
            font-family: var(--font-typewriter);
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--warm-taupe);
        }

        .scroll-line {
            width: 1px; height: 25px;
            background: linear-gradient(180deg, var(--rich-brown), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 1; transform: scaleY(1); }
            50% { opacity: 0.3; transform: scaleY(0.5); }
        }

        /* ═══════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════ */
        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes titleReveal {
            0% { opacity: 0; transform: perspective(400px) rotateX(4deg) translateY(30px) scale(0.95); filter: blur(8px); }
            100% { opacity: 1; transform: perspective(400px) rotateX(4deg) translateY(0) scale(1); filter: blur(0); }
        }

        /* ═══════════════════════════════════════
           SECTION DIVIDERS
           ═══════════════════════════════════════ */
        .section-divider {
            width: 100%;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .section-divider::before {
            content: '';
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--rich-brown), transparent);
        }

        .section-divider .divider-ornament {
            position: absolute;
            font-size: 14px;
            color: var(--rich-brown);
            background: var(--charcoal-brown);
            padding: 0 20px;
            letter-spacing: 8px;
        }

        /* ═══════════════════════════════════════
           SECTIONS
           ═══════════════════════════════════════ */
        .section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-label {
            font-family: var(--font-typewriter);
            font-size: 11px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--rich-brown);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4.5vw, 55px);
            font-weight: 700;
            color: var(--cream-light);
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 0 3px 20px rgba(0,0,0,0.5);
        }

        .section-text {
            font-size: clamp(15px, 1.5vw, 18px);
            color: var(--sand-beige);
            max-width: 900px;
            line-height: 1.9;
            opacity: 0.95;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.15s; }
        .reveal-delay-2 { transition-delay: 0.3s; }
        .reveal-delay-3 { transition-delay: 0.45s; }
        .reveal-delay-4 { transition-delay: 0.6s; }

        /* ═══════════════════════════════════════
           STORY
           ═══════════════════════════════════════ */
        .story-section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-intro {
            font-family: var(--font-typewriter);
            font-size: clamp(18px, 2.2vw, 28px);
            color: var(--poster-gold);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .story-quote {
            font-family: var(--font-body);
            font-style: italic;
            font-size: clamp(16px, 2vw, 24px);
            color: var(--golden-amber);
            line-height: 1.8;
            padding: 35px 0;
            border-top: 2px solid rgba(139,111,71,0.4);
            border-bottom: 2px solid rgba(139,111,71,0.4);
            max-width: 850px;
            margin: 35px auto;
            text-align: center;
        }

        /* ═══════════════════════════════════════
           SCHEDULE
           ═══════════════════════════════════════ */
        .schedule-section {
            background: radial-gradient(ellipse at 30% 50%, rgba(166,75,42,0.08) 0%, transparent 50%);
            padding: 80px 5%;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
            margin-top: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .schedule-item {
            padding: 18px 22px;
            background: linear-gradient(180deg, rgba(62,52,43,0.5), rgba(61,45,23,0.7));
            border: 2px solid rgba(139,111,71,0.25);
            text-align: center;
            transition: all 0.3s;
        }

        .schedule-item:hover {
           border-color: rgba(139,111,71,0.25);
            transform: none;
            box-shadow: none;
        }

        .schedule-day {
            font-family: var(--font-heading);
            font-size: 16px;
            color: var(--poster-gold);
            margin-bottom: 6px;
        }

        .schedule-time {
            font-family: var(--font-typewriter);
            font-size: 13px;
            color: var(--sand-beige);
            letter-spacing: 2px;
        }

        /* ═══════════════════════════════════════
           TEAM
           ═══════════════════════════════════════ */
        .team-section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .team-card {
            text-align: center;
            padding: 35px 25px;
            background: linear-gradient(180deg, rgba(62,52,43,0.4), rgba(61,45,23,0.6));
            border: 2px solid rgba(139,111,71,0.2);
            transition: all 0.5s;
        }


        .team-photo {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            margin: 0 auto 18px;
            border: 3px solid var(--rich-brown);
            overflow: hidden;
        }

        .team-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: sepia(0.2) saturate(0.9);
        }

        .team-role {
            font-family: var(--font-typewriter);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rich-brown);
            margin-bottom: 8px;
        }

        .team-name {
            font-family: var(--font-heading);
            font-size: clamp(18px, 2vw, 24px);
            color: var(--cream-light);
            margin-bottom: 12px;
        }

        /* ═══════════════════════════════════════
           MIKE
           ═══════════════════════════════════════ */
        .mike-section {
            padding: 80px 5%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .mike-content {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 35px;
            align-items: start;
        }

        .mike-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 4px solid var(--poster-gold);
            overflow: hidden;
        }

        .mike-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: sepia(0.2) saturate(0.9);
        }

        .mike-message {
            font-size: clamp(14px, 1.5vw, 17px);
            line-height: 1.9;
            color: var(--sand-beige);
        }

        .mike-message p { margin-bottom: 18px; }

        .mike-signature {
            font-family: var(--font-typewriter);
            font-size: 16px;
            color: var(--poster-gold);
            margin-top: 25px;
        }

        /* ═══════════════════════════════════════
           GALLERY
           ═══════════════════════════════════════ */
        .gallery-section {
            padding: 80px 5%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4/3;
            border: 2px solid rgba(139,111,71,0.2);
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        }

        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: sepia(0.2) saturate(0.9) brightness(0.85) contrast(1.1);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .gallery-item:hover img {
            filter: sepia(0.1) saturate(1.1) brightness(1) contrast(1.05);
            transform: scale(1.08);
        }

        .lightbox {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 20000;
            background: rgba(42,36,31,0.97);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s;
            cursor: pointer;
        }

        .lightbox.active { opacity: 1; pointer-events: all; }

        .lightbox img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border: 3px solid rgba(139,111,71,0.4);
            box-shadow: 0 30px 100px rgba(0,0,0,0.9);
        }

        .lightbox-close {
            position: absolute;
            top: 30px; right: 40px;
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--warm-taupe);
            cursor: pointer;
            transition: color 0.3s;
            background: none;
            border: none;
        }

        .lightbox-close:hover { color: var(--golden-amber); }

        /* ═══════════════════════════════════════
           SIGNUP
           ═══════════════════════════════════════ */
        .signup-section {
            padding: 80px 5%;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .signup-card {
            padding: 45px 40px;
            background: linear-gradient(145deg, rgba(62,52,43,0.6), rgba(61,45,23,0.8));
            border: 2px solid rgba(139,111,71,0.25);
            position: relative;
            box-shadow: 0 15px 60px rgba(0,0,0,0.4);
        }

        .signup-card::before {
            content: '✉';
            position: absolute;
            top: -18px; left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            background: var(--charcoal-brown);
            padding: 0 15px;
            color: var(--rich-brown);
        }

        .signup-list {
            list-style: none;
            margin: 25px 0;
            text-align: left;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }

        .signup-list li {
            font-family: var(--font-typewriter);
            font-size: 13px;
            color: var(--sand-beige);
            padding: 7px 0 7px 22px;
            position: relative;
        }

        .signup-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--rich-brown);
        }

        .signup-form {
            display: flex;
            gap: 12px;
            max-width: 450px;
            margin: 30px auto 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .signup-input {
            flex: 1;
            min-width: 220px;
            padding: 14px 18px;
            font-family: var(--font-typewriter);
            font-size: 13px;
            background: rgba(61,45,23,0.9);
            border: 2px solid rgba(139,111,71,0.4);
            color: var(--sand-beige);
            outline: none;
            transition: border-color 0.3s;
        }

        .signup-input::placeholder { color: var(--warm-taupe); letter-spacing: 1px; }
        .signup-input:focus { border-color: var(--poster-gold); }

        .signup-btn {
            padding: 14px 30px;
            font-family: var(--font-typewriter);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #C9A961 0%, #A08850 100%);
            color: var(--chocolate);
            border: 2px solid #D4B16E;
            cursor: pointer;
            transition: all 0.3s;
        }

        .signup-btn:hover {
            background: linear-gradient(135deg, #D4B977 0%, #B09960 100%);
            transform: translateY(-2px);
        }

        .signup-success {
            display: none;
            margin-top: 20px;
            font-family: var(--font-typewriter);
            font-size: 13px;
            color: var(--poster-gold);
            letter-spacing: 1.5px;
        }

        .signup-success.active { display: block; }

        /* ═══════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════ */
        .footer {
            padding: 60px 5% 40px;
            text-align: center;
            border-top: 2px solid rgba(139,111,71,0.2);
            position: relative;
            background: var(--charcoal-brown);
        }

        .footer-info {
            font-family: var(--font-typewriter);
            font-size: 11px;
            color: var(--warm-taupe);
            letter-spacing: 2px;
            line-height: 2;
        }
 /* ══════════════════════════════════════
           MOBILE NAV
           ══════════════════════════════════════ */
           .mobile-nav {
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 9999;
            background: rgba(42,36,31,0.97);
            padding: 12px 20px;
            display: flex; align-items: center; justify-content: space-between;
            border-bottom: 1px solid rgba(139,111,71,0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-brand {
            font-family: 'Cinzel', serif;
            font-size: 14px; font-weight: 700;
            letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold);
        }

        .hamburger {
            display: flex; flex-direction: column; justify-content: space-between;
            width: 26px; height: 18px; cursor: pointer;
            padding: 5px; margin: -5px;
        }

        .hamburger span {
            display: block; width: 100%; height: 2px;
            background: var(--gold); transition: all 0.3s ease; border-radius: 1px;
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        .nav-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(42,36,31,0.98); z-index: 9998;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }

        .nav-overlay.active { opacity: 1; visibility: visible; }

        .nav-links { list-style: none; text-align: center; padding: 0; margin: 0; }
        .nav-links li { margin: 10px 0; opacity: 1; transform: translateY(20px); transition: all 0.3s ease; }
        .nav-overlay.active .nav-links li { opacity: 1; transform: translateY(0); }
        .nav-overlay.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .nav-overlay.active .nav-links li:nth-child(2) { transition-delay: 0.15s; }
        .nav-overlay.active .nav-links li:nth-child(3) { transition-delay: 0.2s; }
        .nav-overlay.active .nav-links li:nth-child(4) { transition-delay: 0.25s; }
        .nav-overlay.active .nav-links li:nth-child(5) { transition-delay: 0.3s; }
        .nav-overlay.active .nav-links li:nth-child(6) { transition-delay: 0.35s; }
        .nav-overlay.active .nav-links li:nth-child(7) { transition-delay: 0.4s; }
        .nav-overlay.active .nav-links li:nth-child(8) { transition-delay: 0.45s; }
        .nav-overlay.active .nav-links li:nth-child(9) { transition-delay: 0.5s; }

        .nav-links a {
            font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600;
            letter-spacing: 2px; text-transform: uppercase; color: var(--sand);
            padding: 10px 20px; display: block; transition: color 0.3s ease;
        }
        .nav-links a:hover, .nav-links a:active { color: var(--gold); }

        .nav-links .nav-cta { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(139,111,71,0.3); }
        .nav-links .nav-cta a {
            background: linear-gradient(135deg, #C9A961, #A08850);
            color: #3D2817; padding: 12px 25px; border: 2px solid var(--gold); display: inline-block;
        }


        /* Show/hide desktop vs mobile nav */
        @media (max-width: 768px) {
            .nav { display: none !important; }          /* hide big desktop nav */
            .mobile-nav, .nav-overlay { display: flex !important; }   /* show mobile burger */
            body.menu-open { overflow: hidden; }
        }

        @media (min-width: 769px) {
            .nav.visible { opacity: 1;transform: translateY(0); }

        .nav-brand {
            font-family: var(--font-heading);
            font-size: 14px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--golden-amber);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-typewriter);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--sand-beige);
            position: relative;
            padding-bottom: 4px;
            font-weight: 400;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--golden-amber);
            transition: width 0.3s;
        }

        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--honey-gold); }
            .mobile-nav,
            .nav-overlay { display: none !important; }  /* desktop: hide mobile nav */
        }

        .footer-info a { color: var(--rich-brown); }
        .footer-info a:hover { color: var(--golden-amber); }

        /* ═══════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════ */
        @media (max-width: 1200px) {
            .hero {
                height: 70vh;
                min-height: 500px;
                max-height: 700px;
            }
        }

        @media (max-width: 900px) {

            .mike-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .mike-photo {
                margin: 0 auto 25px;
                width: 150px; height: 150px;
            }

            .schedule-grid { grid-template-columns: 1fr; }

            .hero {
                height: 65vh;
                min-height: 450px;
                max-height: 600px;
            }
        }

        @media (max-width: 600px) {
            .section { padding: 60px 6%; }

            .hero-buttons { 
                flex-direction: column; 
                align-items: center; 
                width: 100%;
            }

            .btn { width: 100%; max-width: 250px; }
            .gallery-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }

            .hero {
                height: 55vh;
                min-height: 400px;
            }
        }

/* Schedule: static performance boxes (no hover effect) */
.schedule-item:hover {
    border-color: rgba(139, 111, 71, 0.25);
    transform: none;
    box-shadow: none;
}

/* Schedule: TheatreZone text link to Google Maps */
.schedule-venue-text-link {
    display: inline-block;
    color: var(--poster-gold, #C9A961);
    text-decoration: none;
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
    cursor: default;
}

/* Override WordPress Customizer's not-allowed cursor on this link */
a.customize-unpreviewable.schedule-venue-text-link {
    cursor: default !important;
}

.schedule-venue-text-link:hover {
    opacity: 0.9;
}

/* Creative Team: Mark Danni (second card) – show more of top of head */
.team-card--mark-danni .team-photo img {
    object-position: center 35%;
}
        /* ═══════════════════════════════════════
           HERO VIDEO SECTION (60 sec)
           ═══════════════════════════════════════ */
        .hero-video-section {
            padding: 60px 5%;
            text-align: center;
            background: var(--charcoal-brown);
        }

        .hero-video-section .hero-video-player {
            display: block;
            max-width: min(1024px, 92vw);
            width: 100%;
            aspect-ratio: 1024 / 768;
            height: auto;
            margin: 0 auto;
            border-radius: 4px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            object-fit: contain;
        }

