:root {
    color-scheme: dark;
    --bg: #09090b;
    --panel: rgba(17, 17, 20, .86);
    --line: rgba(255, 255, 255, .12);
    --muted: #a9a9b2;
    --text: #f7f7f8;
    --red: #ff1717;
    --red-hover: #e90d0d;
    --radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); }
body {
    min-height: 100svh;
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: -40px;
    background:
        linear-gradient(90deg, rgba(8,8,10,.55), rgba(8,8,10,.92)),
        url("poster.jpg") center / cover no-repeat;
    filter: blur(28px) saturate(.75);
    opacity: .38;
    transform: scale(1.08);
    pointer-events: none;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.landing {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 32px));
    min-height: 100svh;
    margin: 0 auto;
    padding: 22px 0;
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(430px, 1.12fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
}

.poster-panel {
    min-height: 0;
    display: grid;
    place-items: center;
}
.poster {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100svh - 44px);
    aspect-ratio: 3 / 4;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0,0,0,.52), 0 0 0 1px rgba(255,255,255,.08);
}

.booking-panel { display: flex; align-items: center; }
.content { width: 100%; max-width: 620px; }
.eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(255,23,23,.42);
    background: rgba(255,23,23,.08);
    border-radius: 999px;
    color: #ff6d6d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}
h1 {
    margin: 18px 0 8px;
    font-size: clamp(34px, 4.6vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;
    text-wrap: balance;
}
.subtitle {
    margin: 0;
    color: #c8c8ce;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.45;
}

.event-info {
    margin: 22px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
}
.event-info div { padding: 14px 16px; }
.event-info div + div { border-left: 1px solid var(--line); }
.event-info span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 5px; }
.event-info strong { display: block; font-size: 15px; line-height: 1.35; }

.booking-form {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.field { display: block; min-width: 0; }
.field > span {
    display: block;
    margin: 0 0 7px;
    color: #d7d7dc;
    font-size: 13px;
    font-weight: 700;
}
.field input[type="text"] {
    width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 0 14px;
    color: var(--text);
    background: rgba(255,255,255,.055);
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input[type="text"]:focus,
.counter:focus-within {
    border-color: rgba(255,23,23,.72);
    box-shadow: 0 0 0 3px rgba(255,23,23,.14);
    background: rgba(255,255,255,.07);
}
.field input::placeholder { color: #6f6f78; }
.counter {
    height: 52px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
    background: rgba(255,255,255,.055);
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.counter button {
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
}
.counter button:hover { background: rgba(255,255,255,.06); }
.counter input {
    min-width: 0;
    width: 100%;
    border: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    color: #fff;
    background: transparent;
    text-align: center;
    outline: 0;
    font-weight: 800;
    -moz-appearance: textfield;
}
.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.consent {
    grid-column: 1 / -1;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.42;
    cursor: pointer;
}
.consent input { margin-top: 2px; accent-color: var(--red); }

.btn {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, opacity .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    grid-column: 1 / -1;
    background: var(--red);
    border-color: var(--red);
}
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-primary:disabled { opacity: .62; cursor: wait; }
.btn-secondary {
    margin-top: 10px;
    background: rgba(255,255,255,.06);
    border-color: var(--line);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.form-status {
    grid-column: 1 / -1;
    min-height: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #ff8080;
}
.form-status:empty { display: none; }
.form-status.success { color: #83e9a8; }
.microcopy {
    margin-top: 12px;
    color: #7f7f87;
    font-size: 11px;
    line-height: 1.5;
}
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 860px) {
    .landing {
        width: min(100% - 24px, 680px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 12px 0 28px;
    }
    .poster { width: 100%; max-height: none; border-radius: 14px; }
    .booking-panel { order: -1; padding-top: 16px; }
    .content { max-width: none; }
    h1 { font-size: clamp(36px, 10.5vw, 58px); }
}

@media (max-width: 560px) {
    .booking-form { grid-template-columns: 1fr; padding: 13px; }
    .event-info { grid-template-columns: 1fr; }
    .event-info div + div { border-left: 0; border-top: 1px solid var(--line); }
    .eyebrow { font-size: 11px; }
    .btn { min-height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.consent-link {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d8d8df;
    font: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(216,216,223,.45);
    text-underline-offset: 2px;
    cursor: pointer;
}
.consent-link:hover { color: #fff; text-decoration-color: #fff; }

body.modal-open { overflow: hidden; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 20px;
}
.modal.is-open { display: grid; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.76);
    backdrop-filter: blur(10px);
}
.modal-card {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(760px, calc(100svh - 40px));
    overflow: auto;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: #151519;
    box-shadow: 0 30px 100px rgba(0,0,0,.58);
    padding: 28px;
}
.modal-card h2 {
    margin: 0 42px 10px 0;
    font-size: clamp(25px, 4vw, 34px);
    line-height: 1.06;
    letter-spacing: -.025em;
}
.modal-card p {
    margin: 0;
    color: #b8b8c0;
    font-size: 15px;
    line-height: 1.55;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.055);
    color: #fff;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}
.modal-close:hover { background: rgba(255,255,255,.11); }
.success-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}
.modal-cta {
    width: 100%;
    margin-top: 22px;
}
.modal-later {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: #8d8d96;
    font: inherit;
    cursor: pointer;
}
.modal-later:hover { color: #fff; }
.modal-legal { width: min(680px, 100%); }
.legal-text {
    display: grid;
    gap: 13px;
    margin-top: 18px;
}
.legal-text p { color: #c3c3ca; font-size: 14px; }
.legal-text strong { color: #fff; }
.legal-text a { color: #fff; text-underline-offset: 2px; }
.legal-close { width: 100%; margin-top: 22px; }

@media (max-width: 560px) {
    .modal { padding: 10px; }
    .modal-card { padding: 22px 18px 18px; border-radius: 18px; max-height: calc(100svh - 20px); }
    .modal-card h2 { font-size: 27px; }
}
