:root {
  --bg: #e9e7e2;
  --bg2: #f4f2ed;
  --ink: #12151a;
  --muted: #5f646c;
  --signal: #b8954a;
  --signal-2: #d4b06a;
  --signal-deep: #8f6f2e;
  --forest: #1c3d36;
  --line: rgba(18, 21, 26, 0.11);
  --white: #f7f5f1;
  --glass: rgba(244, 242, 237, 0.72);
  --font-d: "Unbounded", system-ui, sans-serif;
  --font-b: "Onest", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header: 4.25rem;
  --radius: 2px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% -5%, rgba(184, 149, 74, 0.16), transparent 55%),
    radial-gradient(700px 380px at -10% 30%, rgba(28, 61, 54, 0.08), transparent 50%),
    var(--bg);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; }

h1, h2 {
  font-family: var(--font-d);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
}

h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
p { margin: 0; }

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-deep);
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.45rem;
  border: 1.5px solid transparent;
  font: 700 0.95rem/1 var(--font-b);
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s;
}

.btn:hover { transform: translateY(-2px); }

.btn-signal {
  background: linear-gradient(135deg, var(--signal-2), var(--signal));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(184, 149, 74, 0.28);
}

.btn-signal:hover {
  background: linear-gradient(135deg, #e0c07a, var(--signal-2));
  color: var(--ink);
}

.btn-line {
  background: transparent;
  border-color: rgba(247, 245, 241, 0.4);
  color: var(--white);
}

.btn-line:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--signal-2);
}

.btn-dark:hover {
  background: #1c222b;
  color: var(--signal-2);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--signal);
  padding-bottom: 0.15rem;
}

.text-link:hover { color: var(--signal-deep); }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.25rem;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

.header.is-solid {
  background: rgba(233, 231, 226, 0.9);
  backdrop-filter: blur(16px);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.logo {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.nav {
  display: none;
  gap: 1.4rem;
  margin-left: auto;
}

.nav a,
.phone {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.88;
}

.nav a:hover,
.phone:hover { opacity: 1; }

.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--signal-deep);
}

.phone { display: none; }

.burger {
  margin-left: auto;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: inherit;
}

.burger i,
.burger i::before,
.burger i::after {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.burger i::before,
.burger i::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger i::before { top: -6px; }
.burger i::after { top: 6px; }

.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

.drawer {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 49;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}

.drawer[hidden] { display: none; }
.drawer a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 0;
}
.drawer .btn { margin-top: 0.5rem; justify-self: start; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .phone { display: inline; margin-left: 0.5rem; }
  .burger, .drawer { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  color: var(--white);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  animation: hero-ken 16s ease-out forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.82) 0%, rgba(10, 12, 14, 0.4) 52%, rgba(10, 12, 14, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 12, 14, 0.4) 0%, rgba(10, 12, 14, 0.12) 38%, rgba(10, 12, 14, 0.9) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6.5rem 0 2.5rem;
}

.hero-brand {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(4.2rem, 16vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  margin: 0 0 1.1rem;
  color: var(--signal-2);
  text-shadow: 0 0 60px rgba(184, 149, 74, 0.25);
  animation: up 1s var(--ease) both;
}

.hero h1 {
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  font-weight: 700;
  max-width: 18ch;
  margin-bottom: 0.9rem;
  animation: up 1s var(--ease) 0.12s both;
}

.hero-sub {
  max-width: 32rem;
  color: rgba(247, 245, 241, 0.78);
  margin-bottom: 1.6rem;
  animation: up 1s var(--ease) 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: up 1s var(--ease) 0.28s both;
}

.hero-meta {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.5);
  animation: up 1s var(--ease) 0.36s both;
}

@keyframes hero-ken {
  to { transform: scale(1); }
}

@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Ticker */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.95rem 0;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: tick 28s linear infinite;
}

.ticker-track span:nth-child(even) { color: var(--signal-2); }

@keyframes tick {
  to { transform: translateX(-50%); }
}

/* Intro */
.intro {
  padding: 5.5rem 0 4rem;
}

.intro-grid {
  display: grid;
  gap: 2.5rem;
}

.intro-copy h2 { margin-bottom: 1rem; }

.intro-copy p:not(.label) {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.1rem;
}

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.facts strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--forest);
}

.facts span {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: end;
    gap: 4rem;
  }
  .facts {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 0 2rem;
    gap: 1.75rem;
  }
}

/* ===== Cinema scroll ===== */
.cinema {
  height: 320vh;
  position: relative;
}

.cinema-sticky {
  position: sticky;
  top: var(--header);
  height: calc(100svh - var(--header));
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  background: var(--ink);
}

.cinema-stage {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 74, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.cinema-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.55s var(--ease), transform 1.1s var(--ease);
}

.cinema-frame.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.cinema-frame img {
  filter: saturate(1.05) contrast(1.04);
}

.cinema-frame figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.cinema-frame figcaption span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--signal-2);
}

.cinema-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
}

.cinema-progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--signal), var(--signal-2));
  transition: width 0.15s linear;
}

.cinema-hint {
  text-align: center;
  color: rgba(247, 245, 241, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== Scoreboard ===== */
.score {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.score-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.score-bg img {
  filter: grayscale(0.3) brightness(0.55);
}

.score-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.score-copy h2 {
  margin-bottom: 0.9rem;
  max-width: 14ch;
}

.score-copy > p:not(.label) {
  color: rgba(247, 245, 241, 0.7);
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.scoreboard {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem;
  background:
    linear-gradient(160deg, rgba(184, 149, 74, 0.14), transparent 40%),
    rgba(8, 10, 12, 0.88);
  border: 1px solid rgba(184, 149, 74, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.scoreboard-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.scoreboard-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(247, 245, 241, 0.45);
}

.scoreboard-frame {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--signal-2);
}

.scoreboard-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(184, 149, 74, 0.45);
  color: var(--signal-2);
}

.scoreboard-total {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(184, 149, 74, 0.25);
  transition: transform 0.25s var(--ease);
}

.scoreboard-total.is-bump {
  transform: scale(1.06);
  color: var(--signal-2);
}

.scoreboard-frames {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.score-cell {
  aspect-ratio: 1 / 1.15;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-rows: 1fr auto;
  font-family: var(--font-d);
  font-size: clamp(0.55rem, 1.6vw, 0.75rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.score-cell-marks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.score-cell-marks span {
  display: grid;
  place-items: center;
  padding: 0.2rem;
}

.score-cell-marks span:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--signal-2);
}

.score-cell-sum {
  display: grid;
  place-items: center;
  padding: 0.25rem;
  color: #fff;
  font-size: 0.85em;
}

.score-cell.is-live {
  border-color: rgba(184, 149, 74, 0.55);
  box-shadow: inset 0 0 0 1px rgba(184, 149, 74, 0.2);
}

.score-burst {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: -0.04em;
  color: var(--signal-2);
  background: rgba(8, 10, 12, 0.55);
  backdrop-filter: blur(2px);
  animation: burst-in 0.9s var(--ease) both;
  pointer-events: none;
  z-index: 2;
}

@keyframes burst-in {
  0% { opacity: 0; transform: scale(0.7); }
  35% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.2); }
}

@media (min-width: 900px) {
  .score-inner {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 3.5rem;
  }
}

/* Split */
.split {
  display: grid;
  min-height: 70vh;
}

.split-media { min-height: 50vh; }

.split-copy {
  display: grid;
  align-content: center;
  padding: 3.5rem 1.5rem;
  background: var(--bg2);
}

.split-copy h2 { margin-bottom: 1rem; }

.split-copy > p:not(.label) {
  color: var(--muted);
  max-width: 32rem;
  font-size: 1.08rem;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr 0.85fr; }
  .split-copy { padding: 4rem 3.5rem; }
}

/* Prices */
.prices {
  padding: 5rem 0;
}

.prices-head { margin-bottom: 2.25rem; max-width: 36rem; }
.prices-head h2 { margin-bottom: 0.7rem; }
.note { color: var(--muted); }

.rate-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.rate {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}

.rate:hover {
  background: #fff;
  transform: translateX(6px);
  border-color: rgba(184, 149, 74, 0.35);
}

.rate-when { font-weight: 700; font-size: 0.95rem; }
.rate-time { color: var(--muted); font-size: 0.92rem; }

.rate-cost {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.rate-cost small {
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.25rem;
}

.rate-hot {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.rate-hot .rate-time { color: rgba(255, 255, 255, 0.55); }
.rate-hot .rate-cost { color: var(--signal-2); }
.rate-hot .rate-cost small { color: rgba(255, 255, 255, 0.5); }
.rate-hot:hover {
  background: #1a1f26;
  border-color: rgba(184, 149, 74, 0.4);
}

@media (min-width: 720px) {
  .rate {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 1rem;
  }
}

/* Promo band */
.promo-band {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.promo-band > img { position: absolute; inset: 0; }

.promo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.25), rgba(8, 10, 12, 0.9));
}

.promo-band-body {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.promo-band-body .label { color: var(--signal-2); }
.promo-band-body h2 {
  max-width: 14ch;
  margin-bottom: 0.9rem;
}

.promo-band-body p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.4rem;
}

/* Rules */
.rules {
  padding: 5rem 0;
  background: var(--bg2);
}

.rules h2 { margin-bottom: 2.5rem; }

.rules-row {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.big {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--signal);
  margin-bottom: 0.5rem;
}

.rules-row p:last-child {
  color: var(--muted);
  max-width: 16rem;
}

@media (min-width: 800px) {
  .rules-row { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

/* FAQ */
.faq {
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.acc details {
  border-bottom: 1px solid var(--line);
  padding: 0.25rem 0;
}

.acc summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  padding: 1.2rem 2rem 1.2rem 0;
  position: relative;
}

.acc summary::-webkit-details-marker { display: none; }

.acc summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--signal);
  font-size: 1.5rem;
  font-weight: 500;
}

.acc details[open] summary::after { content: "–"; }

.acc details p {
  color: var(--muted);
  padding: 0 0 1.25rem;
  max-width: 40rem;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }
}

/* Contacts */
.contacts {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(600px 280px at 0% 100%, rgba(184, 149, 74, 0.12), transparent 60%),
    var(--bg2);
}

.contacts-grid {
  display: grid;
  gap: 2.5rem;
}

.contacts h2 { margin-bottom: 1.5rem; }

.phones {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.phones a {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  text-decoration: none;
  line-height: 1.15;
}

.phones a:hover { color: var(--signal-deep); }

.addr {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.map {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-link {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(18, 21, 26, 0.08);
}

.map-link:hover {
  background: var(--signal);
  color: var(--ink);
}

@media (min-width: 900px) {
  .contacts-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    gap: 3rem;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer a { text-decoration: none; font-weight: 600; }
.footer a:hover { color: var(--ink); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

/* ========== Booking page ========== */
.page-booking .header { color: var(--ink); }

.book-hero {
  position: relative;
  padding: calc(var(--header) + 3.25rem) 0 2rem;
  overflow: hidden;
}

.book-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(233, 231, 226, 0.72), var(--bg)),
    url("../assets/premium-texture.png") center/cover;
  opacity: 1;
  z-index: 0;
}

.book-hero .wrap { position: relative; z-index: 1; }

.book-hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.book-hero-visual {
  display: none;
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 74, 0.28);
  box-shadow: 0 18px 50px rgba(18, 21, 26, 0.12);
}

.book-hero-visual img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.book-hero h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  margin-bottom: 0.85rem;
}

.book-lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.summary-media {
  height: 120px;
  margin: -1.65rem -1.35rem 1.15rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 149, 74, 0.25);
}

.summary-media img {
  filter: brightness(0.85) saturate(1.05);
}

@media (min-width: 900px) {
  .book-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }
  .book-hero-visual { display: block; height: 220px; }
}

.book-section { padding: 1rem 0 4.5rem; }

.book-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.book-form { display: grid; gap: 1.1rem; }

.book-block {
  margin: 0;
  padding: 1.45rem 1.3rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(18, 21, 26, 0.04);
  min-width: 0;
}

.book-block legend {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  padding: 0 0.4rem;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.lane-chip { position: relative; cursor: pointer; }

.lane-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.lane-chip span {
  display: grid;
  place-items: center;
  min-height: 3.15rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  background: var(--bg2);
  border: 1.5px solid var(--line);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.lane-chip:hover span { border-color: rgba(18, 21, 26, 0.3); }

.lane-chip input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--signal-2);
  box-shadow: 0 8px 20px rgba(18, 21, 26, 0.18);
}

.lane-chip.lane-pair input:checked + span {
  background: linear-gradient(135deg, var(--signal-2), var(--signal));
  border-color: var(--signal);
  color: var(--ink);
}

.lane-notice {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(184, 149, 74, 0.1);
  border-left: 3px solid var(--signal);
}

.lane-notice p {
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.lane-notice img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.field { display: grid; gap: 0.4rem; }
.field.grow { flex: 1; min-width: 0; }

.field-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--line);
  background: #fff;
  font: 500 1rem/1.3 var(--font-b);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(184, 149, 74, 0.18);
}

.fields-2 {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: end;
}

.promo-msg {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.promo-msg.is-ok { color: #1c6b45; }
.promo-msg.is-err { color: #a33a2a; }

.field-hint {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.6rem, 1fr));
  gap: 0.45rem;
}

.time-slot {
  min-height: 2.75rem;
  border: 1.5px solid var(--line);
  background: #fff;
  font: 700 0.88rem/1 var(--font-b);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}

.time-slot:hover:not(:disabled) {
  border-color: var(--signal);
  transform: translateY(-1px);
}

.time-slot.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--signal-2);
}

.time-slot.disabled,
.time-slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.book-legal {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.book-legal a {
  color: var(--ink);
  font-weight: 600;
}

.book-error {
  color: #a33a2a;
  font-weight: 700;
  text-align: center;
}

.book-submit {
  width: 100%;
  min-height: 3.5rem;
  font-size: 1rem;
}

.book-summary {
  padding: 1.65rem 1.35rem;
  background:
    linear-gradient(165deg, rgba(184, 149, 74, 0.18), transparent 42%),
    var(--ink);
  color: #fff;
  position: sticky;
  top: calc(var(--header) + 1rem);
  border: 1px solid rgba(184, 149, 74, 0.3);
  box-shadow: 0 24px 60px rgba(18, 21, 26, 0.22);
}

.book-summary .label { color: var(--signal-2); }

.summary-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.summary-price .price {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--signal-2);
  transition: transform 0.25s var(--ease), color 0.25s;
}

.summary-price .price.is-bump {
  transform: scale(1.05);
  color: #f0d48a;
}

.summary-price .old-price {
  font-size: 1.05rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
}

.summary-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.summary-rates {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.25rem;
}

.summary-rates > p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.65rem;
}

.summary-rates ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.summary-rates strong { color: #fff; font-weight: 700; }

.book-summary .text-link {
  color: #fff;
  border-bottom-color: var(--signal);
}

.book-summary .text-link:hover { color: var(--signal-2); }

.book-toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1.5px solid var(--ink);
  font-size: 0.95rem;
  box-shadow: 0 16px 50px rgba(18, 21, 26, 0.18);
}

.book-toast a { font-weight: 700; }

@media (min-width: 720px) {
  .fields-2 { grid-template-columns: 1fr 1fr; }
  .lane-grid { grid-template-columns: repeat(8, 1fr); }
}

@media (min-width: 980px) {
  .book-layout {
    grid-template-columns: 1.4fr 0.75fr;
    gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-img { transform: none; }
  .cinema { height: auto; }
  .cinema-sticky { position: relative; height: auto; }
  .cinema-frame { position: relative; opacity: 1; transform: none; margin-bottom: 1rem; }
}
