/* ==================================================
   CINEMATIC TIMELINE — CSS3D / THREE.JS EXPERIENCE
   ================================================== */

.cinema-timeline-section {
    --cinema-black: #050505;
    --cinema-panel: #0b0b0a;
    --cinema-ink: #f4efdF;
    --cinema-muted: rgba(244, 239, 223, .58);
    --cinema-gold: #d6b65c;
    --cinema-hot: #ffb349;
    --cinema-line: rgba(214, 182, 92, .22);
    padding: 78px 0 0;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 8%, rgba(172, 105, 28, .17), transparent 28%),
        radial-gradient(circle at 10% 92%, rgba(50, 73, 74, .18), transparent 30%),
        var(--cinema-black);
    color: var(--cinema-ink);
    isolation: isolate;
}

.cinema-timeline-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.cinema-shell { min-height: calc(100vh - 78px); }

.cinema-header {
    width: min(1450px, 100%);
    margin: 0 auto;
    padding: 30px clamp(22px, 5vw, 76px) 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.cinema-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: var(--cinema-gold);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .23em;
    text-transform: uppercase;
}

.cinema-rec-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e94d3e;
    box-shadow: 0 0 12px rgba(233, 77, 62, .8);
    animation: cinemaRec 1.5s ease-in-out infinite;
}

@keyframes cinemaRec { 50% { opacity: .32; } }

.cinema-header h2 {
    margin: 0;
    font-family: var(--ff-d), Georgia, serif;
    font-size: clamp(2.65rem, 5.7vw, 5.75rem);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .78;
    color: var(--cinema-ink);
}

.cinema-header h2 em {
    color: var(--cinema-gold);
    font-weight: 400;
}

.cinema-intro {
    width: min(470px, 88vw);
    margin: 22px 0 0;
    color: var(--cinema-muted);
    font-size: .82rem;
    line-height: 1.75;
}

.timeline-view-switch {
    flex: 0 0 auto;
    display: flex;
    gap: 5px;
    padding: 5px;
    border: 1px solid var(--cinema-line);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.timeline-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--cinema-muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: color .25s, background .25s, box-shadow .25s;
}

.timeline-view-btn.active {
    color: #17120a;
    background: var(--cinema-gold);
    box-shadow: 0 5px 22px rgba(214, 182, 92, .23);
}

.cinema-year-nav {
    width: min(1450px, 100%);
    margin: 16px auto 7px;
    padding: 0 clamp(22px, 5vw, 76px);
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 44px);
}

.cinema-year-btn {
    position: relative;
    padding: 8px 0 13px;
    color: rgba(244, 239, 223, .35);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .14em;
    transition: color .25s;
}

.cinema-year-btn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 5px;
    height: 1px;
    background: var(--cinema-gold);
    transition: right .35s cubic-bezier(.2,.8,.2,1);
}

.cinema-year-btn:hover,
.cinema-year-btn.active { color: var(--cinema-gold); }
.cinema-year-btn.active::after { right: 0; }

.cinema-view { display: none; }
.cinema-view.active { display: block; }

.cinema-stage {
    position: relative;
    width: 100%;
    height: clamp(505px, 61vh, 710px);
    overflow: hidden;
    outline: none;
    perspective: 1100px;
    cursor: grab;
    background:
        linear-gradient(90deg, rgba(0,0,0,.8), transparent 17%, transparent 83%, rgba(0,0,0,.8)),
        linear-gradient(to bottom, #080808 0%, #10100e 48%, #050505 100%);
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(214,182,92,.12);
    touch-action: pan-y;
}

.cinema-stage:focus-visible { box-shadow: inset 0 0 0 2px var(--cinema-gold); }
.cinema-stage.is-dragging { cursor: grabbing; }

.cinema-stage-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    z-index: 0;
    width: 46vw;
    min-width: 420px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,185,83,.16), rgba(139,84,23,.06) 38%, transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

.cinema-webgl-layer,
.cinema-css3d-layer {
    position: absolute;
    inset: 0;
}

.cinema-webgl-layer { z-index: 1; pointer-events: none; opacity: .82; }
.cinema-css3d-layer { z-index: 2; }
.cinema-webgl-layer canvas,
.cinema-css3d-layer > div { position: absolute; inset: 0; }

.cinema-vignette {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    box-shadow: inset 0 0 130px 35px rgba(0,0,0,.88);
    background: linear-gradient(to bottom, rgba(0,0,0,.58), transparent 18%, transparent 76%, rgba(0,0,0,.72));
}

.cinema-grain {
    position: absolute;
    inset: -40%;
    z-index: 5;
    opacity: .08;
    pointer-events: none;
    background-image:
        repeating-radial-gradient(circle at 33% 67%, transparent 0, rgba(255,255,255,.5) .55px, transparent 1.1px),
        repeating-linear-gradient(117deg, rgba(255,255,255,.28) 0 1px, transparent 1px 4px);
    background-size: 5px 5px, 11px 11px;
    mix-blend-mode: soft-light;
    animation: cinemaGrain .18s steps(2) infinite;
}

@keyframes cinemaGrain {
    0% { transform: translate3d(-2%, 2%, 0); }
    33% { transform: translate3d(2%, -1%, 0); }
    66% { transform: translate3d(1%, 2%, 0); }
    100% { transform: translate3d(-1%, -2%, 0); }
}

.cinema-hud {
    position: absolute;
    z-index: 8;
    left: clamp(18px, 4vw, 62px);
    right: clamp(18px, 4vw, 62px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(244,239,223,.5);
    font: 700 .58rem/1 var(--ff);
    letter-spacing: .18em;
    pointer-events: none;
    text-transform: uppercase;
}

.cinema-hud-top { top: 24px; }
.cinema-hud span:first-child { color: rgba(244,239,223,.74); }
.cinema-hud i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: #e94d3e;
    box-shadow: 0 0 8px rgba(233,77,62,.8);
}

.cinema-focus-mark {
    position: absolute;
    z-index: 7;
    width: 28px;
    height: 28px;
    opacity: .48;
    border-color: var(--cinema-gold);
    border-style: solid;
    pointer-events: none;
}

.cinema-focus-mark-tl { top: 70px; left: 6vw; border-width: 1px 0 0 1px; }
.cinema-focus-mark-tr { top: 70px; right: 6vw; border-width: 1px 1px 0 0; }
.cinema-focus-mark-bl { bottom: 68px; left: 6vw; border-width: 0 0 1px 1px; }
.cinema-focus-mark-br { bottom: 68px; right: 6vw; border-width: 0 1px 1px 0; }

.cinema-frame {
    width: 430px;
    height: 346px;
    padding: 0;
    border: 0;
    outline: 0;
    background: none;
    cursor: pointer;
    pointer-events: auto;
    transform-style: preserve-3d;
}

.cinema-frame-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 34px 16px 31px;
    overflow: hidden;
    color: var(--cinema-ink);
    background: #090909;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,.58), 0 0 0 1px rgba(0,0,0,.8);
    transform: scale(.94);
    transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .35s, box-shadow .35s, filter .35s, opacity .35s;
    filter: saturate(.72) brightness(.72);
    opacity: .72;
    transform-style: preserve-3d;
}

.cinema-frame-card::before,
.cinema-frame-card::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 4px;
    right: 4px;
    height: 22px;
    opacity: .72;
    background: radial-gradient(ellipse 7px 5px at 11px 50%, rgba(231,220,189,.92) 68%, transparent 72%) 0 0 / 27px 100% repeat-x;
}

.cinema-frame-card::before { top: 6px; }
.cinema-frame-card::after { bottom: 6px; }

.cinema-frame.is-focus .cinema-frame-card,
.cinema-frame:hover .cinema-frame-card,
.cinema-frame:focus-visible .cinema-frame-card {
    transform: scale(1);
    filter: saturate(1) brightness(1);
    opacity: 1;
    border-color: rgba(214,182,92,.75);
    box-shadow: 0 34px 100px rgba(0,0,0,.72), 0 0 34px rgba(214,182,92,.12), 0 0 0 1px rgba(214,182,92,.28);
}

.cinema-frame.is-opening .cinema-frame-card {
    transform: scale(1.14) translateZ(60px);
    box-shadow: 0 45px 130px rgba(0,0,0,.9), 0 0 70px rgba(214,182,92,.23);
}

.film-window {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    border: 1px solid rgba(214,182,92,.28);
    background: #171714;
    box-shadow: inset 0 0 35px rgba(0,0,0,.85);
}

.film-photo {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1.035);
    transition: transform .75s cubic-bezier(.16,1,.3,1), filter .35s;
}

.cinema-frame:hover .film-photo,
.cinema-frame.is-focus .film-photo { transform: scale(1.085); }

.film-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,3,3,.94), rgba(3,3,3,.08) 58%, rgba(3,3,3,.12));
}

.film-frame-number {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 14px;
    padding: 4px 7px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.75);
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.film-event-copy {
    position: absolute;
    z-index: 2;
    left: 15px;
    right: 15px;
    bottom: 13px;
    text-align: left;
}

.film-event-date {
    margin-bottom: 4px;
    color: var(--cinema-gold);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.film-event-copy h3 {
    margin: 0 0 3px;
    color: #fffaf0;
    font-family: var(--ff-d), Georgia, serif;
    font-size: 1.38rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.02em;
}

.film-event-copy p:last-child {
    display: -webkit-box;
    max-width: 92%;
    overflow: hidden;
    color: rgba(255,255,255,.64);
    font-size: .61rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.film-stock-meta {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(244,239,223,.42);
    font-size: .5rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.film-stock-meta span:nth-child(2) { color: rgba(214,182,92,.76); }

.cinema-arrow {
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border: 1px solid rgba(214,182,92,.25);
    border-radius: 50%;
    color: var(--cinema-gold);
    background: rgba(6,6,6,.7);
    backdrop-filter: blur(14px);
    font-size: 1rem;
    transition: background .25s, color .25s, transform .25s, opacity .25s;
}

.cinema-arrow:hover { color: #100d08; background: var(--cinema-gold); }
.cinema-arrow:disabled { opacity: .2; cursor: default; }
.cinema-arrow-prev { left: clamp(18px, 3vw, 46px); }
.cinema-arrow-next { right: clamp(18px, 3vw, 46px); }

.cinema-drag-hint {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 21px;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
    color: rgba(244,239,223,.42);
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    pointer-events: none;
}

.cinema-mouse {
    position: relative;
    width: 17px;
    height: 25px;
    border: 1px solid rgba(244,239,223,.35);
    border-radius: 10px;
}

.cinema-mouse i {
    position: absolute;
    top: 5px;
    left: 7px;
    width: 2px;
    height: 5px;
    border-radius: 2px;
    background: var(--cinema-gold);
    animation: cinemaWheel 1.5s ease-in-out infinite;
}

@keyframes cinemaWheel { 65%, 100% { transform: translateY(6px); opacity: 0; } }

.cinema-reel-progress {
    width: min(1280px, calc(100% - 44px));
    margin: 22px auto 34px;
}

.cinema-progress-meta {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    margin-bottom: 9px;
    color: rgba(244,239,223,.4);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.cinema-progress-meta span:last-child { text-align: right; }
.cinema-progress-title { color: rgba(244,239,223,.7); text-align: center; text-transform: uppercase; }
.cinema-progress-track { height: 1px; overflow: hidden; background: rgba(255,255,255,.09); }
.cinema-progress-track span {
    display: block;
    width: 12.5%;
    height: 100%;
    background: linear-gradient(90deg, #7e5d22, var(--cinema-gold), #fff2bd);
    box-shadow: 0 0 12px rgba(214,182,92,.55);
    transition: width .6s cubic-bezier(.16,1,.3,1);
}

/* Original timeline remains available as a parallel cut. */
.classic-timeline-view {
    min-height: 560px;
    padding: 42px 0 70px;
    background: radial-gradient(circle at 50% 20%, rgba(214,182,92,.08), transparent 35%);
}

.classic-timeline-view[hidden] { display: none; }
.classic-timeline-label {
    margin: 0 auto 4px;
    color: rgba(244,239,223,.38);
    text-align: center;
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.classic-timeline-label span { color: var(--cinema-gold); margin-right: 8px; }
.cinema-timeline-section .timeline-track::before { background: linear-gradient(90deg, transparent, var(--cinema-gold), transparent); }
.cinema-timeline-section .tl-dot { background: var(--cinema-gold); }
.cinema-timeline-section .tl-card {
    color: var(--cinema-ink);
    background: rgba(18,18,16,.9);
    border-color: rgba(214,182,92,.18);
    box-shadow: 0 15px 45px rgba(0,0,0,.28);
}
.cinema-timeline-section .tl-card h4 { color: var(--cinema-ink); }
.cinema-timeline-section .tl-card p { color: var(--cinema-muted); }

/* Expanded event — the selected frame grows into the screen. */
.cinema-event-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s, visibility .4s;
}

.cinema-event-overlay.open { visibility: visible; opacity: 1; }
.cinema-event-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.83);
    backdrop-filter: blur(18px) saturate(.72);
}

.cinema-event-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(390px, 1.07fr) minmax(410px, .93fr);
    width: min(1180px, calc(100vw - 36px));
    height: min(790px, calc(100vh - 36px));
    overflow: hidden;
    border: 1px solid rgba(214,182,92,.35);
    border-radius: 6px;
    background: #0d0d0c;
    box-shadow: 0 50px 160px rgba(0,0,0,.9), 0 0 80px rgba(165,111,35,.12);
    transform: translateY(38px) scale(.9);
    transform-origin: center;
    transition: transform .65s cubic-bezier(.16,1,.3,1);
}

.cinema-event-overlay.open .cinema-event-dialog { transform: translateY(0) scale(1); }

.cinema-event-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(12px);
    font-size: .59rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cinema-event-close .svg-icon { font-size: .95rem; }
.cinema-event-hero {
    position: relative;
    min-height: 100%;
    background-color: #141411;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cinema-event-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,4,4,.98), transparent 58%), linear-gradient(90deg, transparent 70%, rgba(4,4,4,.5));
}

.cinema-event-framecode {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 7px 9px;
    border-left: 2px solid var(--cinema-gold);
    color: rgba(255,255,255,.72);
    background: rgba(0,0,0,.32);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cinema-event-hero-caption {
    position: absolute;
    left: clamp(24px, 4vw, 48px);
    right: clamp(24px, 4vw, 48px);
    bottom: 42px;
}

.cinema-event-hero-caption p {
    margin-bottom: 8px;
    color: var(--cinema-gold);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cinema-event-hero-caption h3 {
    max-width: 580px;
    color: #fff9ea;
    font-family: var(--ff-d), Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: .89;
}

.cinema-event-content {
    overflow-y: auto;
    padding: 78px clamp(25px, 3.3vw, 48px) 28px;
    scrollbar-color: var(--cinema-gold) transparent;
}

.cinema-event-content > * + * { margin-top: 35px; }
.cinema-event-eyebrow {
    margin-bottom: 10px;
    color: var(--cinema-gold);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cinema-event-description {
    color: rgba(244,239,223,.78);
    font-family: var(--ff-d), Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.36;
}

.cinema-participants { display: flex; flex-wrap: wrap; gap: 8px; }
.cinema-participant {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: rgba(244,239,223,.64);
    background: rgba(255,255,255,.035);
    font-size: .62rem;
}
.cinema-participant i {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #17110a;
    background: var(--cinema-gold);
    font-style: normal;
    font-size: .52rem;
    font-weight: 900;
}

.cinema-event-gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 13px;
}
.cinema-event-gallery-head h4 { color: var(--cinema-ink); font-family: var(--ff-d); font-size: 1.22rem; }
.cinema-event-gallery-head > span { color: rgba(244,239,223,.35); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.cinema-event-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.cinema-gallery-shot {
    position: relative;
    aspect-ratio: .82;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background-color: #1b1a16;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: saturate(.8);
    transition: transform .35s, filter .35s, border-color .35s;
}
.cinema-gallery-shot:hover { z-index: 1; transform: translateY(-4px) scale(1.02); filter: saturate(1); border-color: var(--cinema-gold); }
.cinema-gallery-shot::after { content: attr(data-shot); position: absolute; right: 7px; bottom: 6px; color: rgba(255,255,255,.65); font-size: .5rem; font-weight: 800; letter-spacing: .1em; }

.cinema-event-footer-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.cinema-event-footer-nav button {
    color: rgba(244,239,223,.56);
    font-size: .59rem;
    font-weight: 700;
    letter-spacing: .05em;
    transition: color .2s;
}
.cinema-event-footer-nav button:hover { color: var(--cinema-gold); }
.cinema-event-footer-nav button:last-child { text-align: right; }
.cinema-event-footer-nav span { color: rgba(244,239,223,.3); font-size: .55rem; letter-spacing: .12em; }
body.cinema-modal-open { overflow: hidden; }
body.cinema-modal-open .cinema-timeline-section { z-index: 4000; }

@media (max-width: 900px) {
    .cinema-header { align-items: flex-start; flex-direction: column; padding-top: 22px; }
    .cinema-header h2 { line-height: .85; }
    .cinema-intro { margin-top: 16px; }
    .timeline-view-switch { align-self: flex-end; margin-top: -60px; }
    .cinema-year-nav { margin-top: 24px; overflow-x: auto; scrollbar-width: none; }
    .cinema-year-nav::-webkit-scrollbar { display: none; }
    .cinema-event-dialog { grid-template-columns: 1fr; overflow-y: auto; }
    .cinema-event-hero { min-height: 57vh; }
    .cinema-event-content { overflow: visible; padding-top: 42px; }
}

@media (max-width: 600px) {
    .cinema-timeline-section { padding-top: 72px; }
    .cinema-header { gap: 22px; padding-inline: 18px; }
    .cinema-header-copy { width: 100%; min-width: 0; }
    .cinema-header h2 { max-width: 100%; font-size: clamp(2.65rem, 12.2vw, 3.8rem); }
    .timeline-view-switch { align-self: flex-start; margin-top: 0; }
    .cinema-year-nav { padding-inline: 20px; gap: 26px; }
    .cinema-stage { height: 535px; touch-action: pan-y; }
    .cinema-hud { left: 18px; right: 18px; }
    .cinema-hud span:nth-child(2) { display: none; }
    .cinema-focus-mark { display: none; }
    .cinema-frame { width: 334px; height: 300px; }
    .cinema-frame-card { padding: 29px 12px 26px; }
    .cinema-frame-card::before, .cinema-frame-card::after { height: 17px; background-size: 24px 100%; }
    .film-window { height: 207px; }
    .film-stock-meta { height: 38px; }
    .film-event-copy h3 { font-size: 1.2rem; }
    .film-event-copy p:last-child { -webkit-line-clamp: 1; }
    .cinema-arrow { top: auto; bottom: 17px; width: 40px; height: 40px; transform: none; }
    .cinema-arrow-prev { left: 18px; }
    .cinema-arrow-next { right: 18px; }
    .cinema-drag-hint { bottom: 29px; }
    .cinema-reel-progress { margin-bottom: 20px; }
    .cinema-event-overlay { padding: 0; }
    .cinema-event-dialog { display: block; width: 100vw; max-width: 100vw; height: 100vh; border: 0; border-radius: 0; }
    .cinema-event-hero { min-height: 53vh; }
    .cinema-event-hero-caption { bottom: 28px; }
    .cinema-event-hero-caption h3 { font-size: 2.7rem; }
    .cinema-event-content { width: 100%; min-width: 0; padding: 36px 20px 30px; }
    .cinema-event-story,
    .cinema-event-cast,
    .cinema-event-gallery-wrap,
    .cinema-event-gallery { min-width: 0; }
    .cinema-event-description { max-width: 100%; overflow-wrap: anywhere; }
    .cinema-event-close span { display: none; }
    .cinema-event-close { position: fixed; top: 16px; right: 16px; z-index: 9999; width: 39px; height: 39px; justify-content: center; padding: 0; background: rgba(0,0,0,.76); border-color: rgba(214,182,92,.55); }
    .cinema-event-gallery { gap: 5px; }
    .cinema-event-footer-nav button { font-size: .54rem; }
}

@media (prefers-reduced-motion: reduce) {
    .cinema-rec-dot,
    .cinema-grain,
    .cinema-mouse i { animation: none !important; }
    .cinema-frame-card,
    .film-photo,
    .cinema-event-dialog,
    .cinema-event-overlay,
    .cinema-progress-track span { transition-duration: .01ms !important; }
}
