:root {
  --bg: #090708;
  --bg-soft: #151112;
  --paper: #1e1719;
  --ink: #f1e9dc;
  --muted: #c0b4a4;
  --line: #3a2f32;
  --accent: #e04f39;
  --accent-2: #f6b84a;
  --radius: 14px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 80% -20%, #3d292c 0%, var(--bg) 42%);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; object-fit: cover; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 78px 0; }
.alt { background: linear-gradient(180deg, #140f11, #0f0b0c); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .28s ease, backdrop-filter .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 8, 9, .56);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  transition: padding .28s ease;
}
.site-header.is-scrolled .nav-wrap { padding: 10px 0; }
.logo { font-family: Oswald, sans-serif; letter-spacing: .08em; font-size: 1.2rem; }
.site-nav { display: flex; gap: 16px; }
.site-nav a { color: var(--muted); font-size: .95rem; }
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.menu-toggle { display: none; border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: 8px; width: 38px; height: 38px; }

h1, h2, h3 { font-family: Oswald, sans-serif; letter-spacing: .02em; line-height: 1.1; margin: 0 0 14px; text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.lead { font-size: 1.08rem; color: #dfd5c8; max-width: 700px; }

.hero-cinematic {padding: 132px 0 30px;position: relative;width: 100%;height: fit-content;}

.hero-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: end; }
.hero-media img { min-height: 560px; border-radius: var(--radius); border: 1px solid var(--line); filter: saturate(.9) contrast(1.04); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn { padding: 11px 16px; border: 1px solid var(--line); border-radius: 9px; font-weight: 700; font-size: .92rem; }
.btn-primary { background: linear-gradient(180deg, var(--accent), #bc3927); border: none; color: #fff7f2; }
.btn:hover { border-color: var(--accent-2); }

.asymmetric {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}
.poster-text { grid-column: 1 / 2; grid-row: 1 / 3; }
.poster-image { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tall-image { grid-column: 2 / 3; grid-row: 1 / 2; }
.wide-image { grid-column: 2 / 3; grid-row: 2 / 3; }
.panel { background: linear-gradient(160deg, #21181a, #171012); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }

.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.text-link { color: var(--accent-2); font-weight: 700; }
.poster-list {
  display: grid;
  margin-top: 22px;
  border: 1px solid #5a3b2f;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #2a1713, #1a1110);
}
.schedule-row {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 232, 209, .16);
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-cinema,
.schedule-title,
.schedule-details { margin: 0; }
.schedule-cinema { font-weight: 700; color: #f3dbc2; }
.schedule-title { font-weight: 700; color: #ffffff; }
.schedule-details {color: #cbb39b;font-size: .95rem;padding-right: 20px;display: flex;gap: 16px;align-items: center;}
.schedule-time {
  display: inline-block;
  min-width: 88px;
  text-align: center;
  background: linear-gradient(180deg, #d95c41, #bc3927);
  color: #ffffff;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 6px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card, .detail, .step { background: linear-gradient(170deg, #1d1517, #140f11); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.meta, .section-intro, .muted { color: var(--muted); }
.media-frame iframe { width: 100%; min-height: 320px; border: 1px solid var(--line); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; color: #dccfbf; }
input, textarea { background: #120e0f; border: 1px solid var(--line); color: var(--ink); border-radius: 8px; padding: 10px; font: inherit; }
.counter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.counter button { width: 36px; height: 36px; border: 1px solid var(--line); background: #171213; color: var(--ink); border-radius: 8px; }
.counter button.active { background: var(--accent); border-color: var(--accent); }
.notice { color: var(--muted); }

.split-highlight { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.timeline li { background: #130f10; border: 1px solid var(--line); padding: 14px; border-radius: 10px; }
.timeline span { display: inline-grid; place-content: center; width: 26px; height: 26px; border-radius: 999px; background: var(--accent); margin-right: 8px; font-weight: 700; }
.accent { border-color: #6c3530; }

.site-footer { margin-top: 30px; background: #090708; border-top: 1px solid var(--line); padding: 32px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.site-footer a { color: var(--muted); display: block; margin: 4px 0; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 950px) {
  .hero-layout, .split-highlight, .form-grid, .two-col { grid-template-columns: 1fr; }
  .asymmetric { grid-template-columns: 1fr; grid-template-rows: auto; }
  .poster-text, .tall-image, .wide-image { grid-column: auto; grid-row: auto; }
  .schedule-row { grid-template-columns: 1fr; gap: 8px; }
  .schedule-time { justify-self: start; }
  .menu-toggle { display: inline-block; }
  .site-nav { display: none; position: absolute; right: 4%; top: 70px; min-width: 230px; flex-direction: column; border: 1px solid var(--line); border-radius: 10px; padding: 10px; background: #110d0f; }
  .site-nav.open { display: flex; }
}

.bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

.bg_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cinematic {
    position: relative;
}

.hero-cinematic .container {
    position: relative;
    z-index: 1;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.timeline li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 90, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.timeline li span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f26b4a;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.timeline li strong {
    display: block;
    margin: 0 0 0.65rem;
    font-size: 1.3rem;
    line-height: 1.2;
}

.timeline li p {
    margin: 0;
    color: rgba(255, 244, 232, 0.82);
    line-height: 1.7;
}

span.age_round {
    padding: 4px;
    border: 1px solid;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
}

.bg_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.movie_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: center center;
    opacity: 0.3;
}

.ticket_counter {
  display: flex;
  gap: 5px;
  margin: 15px 0px 10px 0px;
}

.ticket_counter > .btn {
  
width: 48px;
  
height: 48px;
  
text-align: center;
}

.form-group > * {
  display: block;
}

.form-group > b {
  margin-bottom: 8px;
}

#form_container > .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

#form_container > .row > .col-6 {
  width: calc(50% - 15px);
}