:root{
    --bg:#080808;
    --panel:#111111;
    --panel-soft:#171717;
    --text:#f4f1ee;
    --muted:#a8a19b;
    --line:#2a2725;
    --accent:#f05a3d;
    --accent-soft:#ffb199;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.5;
    overflow-x:hidden;
}

body.lightbox-open{
    position:fixed;
    width:100%;
    overflow:hidden;
}

img,
video{
    max-width:100%;
}

a{
    color:inherit;
}

.site-header{
    position:sticky;
    top:0;
    z-index:10;
    background:rgba(8, 8, 8, .88);
    border-bottom:1px solid rgba(255, 255, 255, .08);
    backdrop-filter:blur(18px);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
    width:min(1120px, 100%);
    margin:0 auto;
    padding:12px 18px;
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    color:var(--muted);
    font-size:.84rem;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.nav-links a{
    text-decoration:none;
}

.nav-links a:hover{
    color:var(--text);
}

.ticket-link{
    color:var(--bg);
    background:var(--text);
    border-radius:999px;
    padding:9px 13px;
    font-weight:700;
}

.ticket-link:hover{
    color:var(--bg);
    background:var(--accent-soft);
}

.menu-toggle{
    display:none;
    min-height:40px;
    padding:8px 12px;
    background:transparent;
    border:1px solid var(--line);
    border-radius:999px;
    color:var(--text);
    cursor:pointer;
    font:inherit;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.mobile-menu{
    display:none;
}

main{
    overflow:hidden;
}

.section{
    border-bottom:1px solid var(--line);
}

.section-inner{
    width:100%;
    max-width:1120px;
    margin:0 auto;
    padding:64px 18px;
}

.hero{
    min-height:calc(100svh - 68px);
    display:grid;
    align-items:center;
}

.hero-grid{
    display:grid;
    gap:34px;
    min-width:0;
}

.hero-grid > *{
    min-width:0;
}

.hero-logo{
    display:block;
    width:min(100%, 560px);
    height:auto;
    margin-bottom:28px;
}

.eyebrow{
    margin:0 0 12px;
    color:var(--accent-soft);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.hero .eyebrow{
    margin-bottom:22px;
}

.hero-copy{
    max-width:620px;
    min-width:0;
}

.hero-copy h1{
    margin:0;
}

.hero-copy p{
    margin:0;
    color:var(--muted);
    font-size:1.12rem;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    max-width:100%;
    min-height:44px;
    padding:11px 16px;
    border:1px solid var(--line);
    border-radius:999px;
    color:var(--text);
    font-size:.88rem;
    font-weight:700;
    letter-spacing:.06em;
    text-decoration:none;
    text-align:center;
    text-transform:uppercase;
}

.button.primary{
    border-color:var(--text);
    background:var(--text);
    color:var(--bg);
}

.button:hover{
    border-color:var(--accent-soft);
}

.trailer-frame{
    width:min(520px, 100%);
    margin:0 auto;
    background:var(--panel);
    border:1px solid rgba(255, 255, 255, .1);
    box-shadow:0 28px 90px rgba(0, 0, 0, .48);
}

.trailer-frame video{
    display:block;
    width:100%;
    aspect-ratio:4 / 5;
    object-fit:cover;
    background:#000;
}

.section-title{
    margin:0 0 24px;
    max-width:760px;
    font-size:clamp(2rem, 10vw, 4.6rem);
    line-height:.95;
    letter-spacing:0;
}

.about-copy{
    display:grid;
    gap:24px;
    max-width:900px;
}

.about-copy p{
    margin:0;
    color:#d4cfca;
    font-size:1.05rem;
}

.script-quote{
    max-width:820px;
    color:var(--text);
    font-size:clamp(1.35rem, 5vw, 2.25rem);
    font-weight:700;
    line-height:1.28;
}

.creator-note{
    max-width:780px;
    padding-left:18px;
    border-left:3px solid var(--accent);
    color:var(--accent-soft);
    font-size:1.02rem;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
}

.gallery-item{
    display:block;
    min-width:0;
    padding:0;
    background:var(--panel-soft);
    border:1px solid rgba(255, 255, 255, .08);
    color:inherit;
    cursor:pointer;
    overflow:hidden;
}

.gallery-item img{
    display:block;
    width:100%;
    height:100%;
    min-height:160px;
    aspect-ratio:4 / 5;
    object-fit:cover;
    filter:saturate(.9) contrast(1.05);
    transition:transform .22s ease, filter .22s ease;
}

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

.gallery-item:first-child{
    grid-column:span 2;
    aspect-ratio:16 / 10;
}

.gallery-empty{
    display:grid;
    place-items:center;
    min-height:180px;
    background:var(--panel-soft);
    border:1px solid rgba(255, 255, 255, .08);
    color:#827a73;
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.lightbox{
    width:min(1040px, calc(100% - 28px));
    height:fit-content;
    max-height:calc(100svh - 28px);
    overflow:hidden;
    padding:0;
    background:#050505;
    border:1px solid rgba(255, 255, 255, .14);
    color:var(--text);
    overscroll-behavior:contain;
}

.lightbox::backdrop{
    background:rgba(0, 0, 0, .84);
}

.lightbox-inner{
    position:relative;
    display:grid;
    place-items:center;
    max-height:calc(100svh - 30px);
}

.lightbox img{
    display:block;
    width:100%;
    height:auto;
    max-height:calc(100svh - 28px);
    object-fit:contain;
    touch-action:none;
    user-select:none;
}

.lightbox-close{
    position:absolute;
    top:10px;
    right:10px;
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    padding:0;
    background:rgba(0, 0, 0, .64);
    border:1px solid rgba(255, 255, 255, .2);
    border-radius:999px;
    color:var(--text);
    cursor:pointer;
    font-size:1.4rem;
    line-height:1;
}

.lightbox-nav{
    position:absolute;
    top:50%;
    display:grid;
    place-items:center;
    width:44px;
    height:56px;
    padding:0;
    background:rgba(0, 0, 0, .56);
    border:1px solid rgba(255, 255, 255, .18);
    color:var(--text);
    cursor:pointer;
    font:inherit;
    font-size:2rem;
    line-height:1;
    transform:translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-close:hover{
    background:rgba(0, 0, 0, .78);
    border-color:rgba(255, 255, 255, .36);
}

.lightbox-prev{
    left:10px;
}

.lightbox-next{
    right:10px;
}

.people-list,
.dates-list,
.contact-list{
    display:grid;
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
}

.people-list{
    margin-top:18px;
}

.person,
.date-row,
.contact-row{
    display:grid;
    gap:5px;
    align-content:start;
    padding:18px;
    background:var(--bg);
}

.label{
    margin:0;
    color:var(--muted);
    font-size:.76rem;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.value{
    margin:0;
    font-size:1.1rem;
    font-weight:700;
}

.venue-link,
.contact-link{
    color:inherit;
    text-decoration-color:var(--accent-soft);
    text-underline-offset:4px;
}

.venue-link:hover,
.contact-link:hover{
    color:var(--accent-soft);
}

.production-credit{
    padding:0;
}

.profile-credit,
.production-link{
    display:flex;
    align-items:center;
    gap:16px;
}

.profile-image{
    display:block;
    width:88px;
    aspect-ratio:4 / 5;
    object-fit:cover;
    flex:0 0 auto;
}

.profile-text{
    display:grid;
    gap:5px;
    min-width:0;
}

.production-link{
    width:100%;
    padding:18px;
    color:inherit;
    text-decoration:none;
}

.production-link:hover .value{
    color:var(--accent-soft);
}

.production-logo-frame{
    display:grid;
    place-items:center;
    overflow:hidden;
    flex:0 0 auto;
}

.production-logo{
    display:block;
    width:132%;
    max-width:none;
    height:auto;
}

.actor-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
}

.actor-card{
    background:var(--panel);
    border:1px solid var(--line);
}

.actor-image{
    display:grid;
    place-items:center;
    aspect-ratio:4 / 5;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(240, 90, 61, .18)),
        var(--panel-soft);
    color:#827a73;
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.actor-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(1);
}

.actor-info{
    padding:14px;
}

.actor-info .value{
    font-size:1rem;
}

.tickets{
    background:var(--text);
    color:var(--bg);
}

.tickets .section-inner{
    padding-block:48px;
}

.tickets .section-title{
    color:var(--bg);
}

.tickets p{
    max-width:620px;
    margin:0 0 24px;
    color:#36312d;
    font-size:1.05rem;
}

.tickets .button{
    border-color:var(--bg);
    color:var(--bg);
}

.tickets .button.primary{
    background:var(--bg);
    color:var(--text);
}

@media (max-width:720px){
    .nav{
        align-items:center;
        flex-direction:row;
        gap:12px;
        justify-content:flex-end;
        padding:10px 14px;
    }

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        flex:0 0 auto;
        margin-left:auto;
    }

    .mobile-menu{
        width:100%;
        max-width:1120px;
        margin:0 auto;
        padding:0 18px 16px;
    }

    .mobile-menu:not([hidden]){
        display:grid;
        gap:8px;
    }

    .mobile-menu a{
        display:flex;
        align-items:center;
        min-height:48px;
        padding:12px 0;
        border-bottom:1px solid var(--line);
        color:var(--text);
        font-size:1rem;
        font-weight:700;
        text-decoration:none;
    }

    .mobile-menu .ticket-link{
        justify-content:center;
        margin-top:8px;
        padding:11px 14px;
        border:0;
        color:var(--bg);
    }

    .section-inner{
        padding:52px 18px;
    }

    .hero{
        min-height:auto;
    }

    .hero-logo{
        width:100%;
        margin-bottom:22px;
    }

    .hero-actions{
        display:grid;
        grid-template-columns:1fr;
    }

    .button{
        width:100%;
        padding-inline:12px;
    }

}

@media (min-width:760px){
    .hero-grid{
        grid-template-columns:minmax(0, 1.1fr) minmax(300px, .7fr);
        align-items:center;
    }

    .gallery-grid{
        grid-template-columns:repeat(5, minmax(0, 1fr));
        gap:12px;
    }

    .gallery-item img{
        min-height:190px;
    }

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

    .people-list,
    .dates-list{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .photo-credit{
        grid-column:1 / -1;
    }

    .actor-grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }
}

