:root {
  --text: #eef4ef;
  --muted: rgba(238, 244, 239, 0.8);
  --line: rgba(255,255,255,0.14);
  --glass: rgba(12, 20, 16, 0.42);
  --glass-strong: rgba(10, 16, 13, 0.56);
  --primary: #d8e5cf;
  --primary-dark: #183227;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #0a120d;
  overflow-x: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090f0c;
  transition: opacity .45s ease, visibility .45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-inner {
  width: min(260px, 70vw);
}

.site-loader-text {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.site-loader-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  border-radius: 999px;
}

.site-loader-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #dfead7 0%, #ffffff 100%);
  box-shadow: 0 0 18px rgba(255,255,255,0.35);
  transition: width .18s ease;
}

.video-shell {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050806;
}

.bg-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(56.25vh, 38vw);
  min-width: 320px;
  max-width: 760px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%);
  display: block;
  opacity: 0;
  transition: opacity .01s linear;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.75) 10%, #000 22%, #000 78%, rgba(0,0,0,0.75) 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.75) 10%, #000 22%, #000 78%, rgba(0,0,0,0.75) 90%, transparent 100%);
}

.bg-video.active {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 6, 0.62) 0%, rgba(4, 8, 6, 0.34) 30%, rgba(4, 8, 6, 0.5) 100%),
    linear-gradient(90deg, rgba(6, 10, 8, 0.97) 0%, rgba(6, 10, 8, 0.68) 10%, rgba(6, 10, 8, 0.28) 22%, rgba(6, 10, 8, 0.12) 34%, rgba(6, 10, 8, 0.12) 66%, rgba(6, 10, 8, 0.28) 78%, rgba(6, 10, 8, 0.68) 90%, rgba(6, 10, 8, 0.97) 100%);
}

.video-vignette {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 220px rgba(0,0,0,0.38),
    inset 180px 0 220px rgba(5, 8, 6, 0.72),
    inset -180px 0 220px rgba(5, 8, 6, 0.72);
}

.video-fade {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s ease;
}

.video-fade.is-active {
  opacity: 1;
}

.cinema-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 6vh;
  background: #050806;
  z-index: 2;
}

.cinema-bar-top { top: 0; }
.cinema-bar-bottom { bottom: 0; }

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}

.site-header {
  width: min(calc(100% - 32px), var(--container));
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 16px;
  z-index: 30;
  background: rgba(10, 16, 13, 0.44);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f0f6ea, #a7c398);
  color: #0d1712;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  overflow: hidden;
}

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

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-nav a {
  text-decoration: none;
  color: rgba(238, 244, 239, 0.82);
  font-size: 0.95rem;
}


main {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
  scroll-margin-top: 120px;
}

.hero {
  min-height: 100vh;
}

.glass-panel,
.glass-card,
.quote-card,
.booking-card,
.contacts-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-inner {
  width: min(680px, 100%);
  padding: 38px 36px 40px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: #d7e7d1;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
}

h1, h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

p, li, blockquote {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
}

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

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #0d1712;
  background: linear-gradient(135deg, #eff6e8, #b6d3a8);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.wide {
  min-width: 220px;
}

.content-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.glass-card,
.quote-card,
.booking-card,
.contacts-card {
  padding: 34px 32px;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 10px;
}

.quote-card blockquote {
  margin: 18px 0 0;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.22;
  color: #f5faf2;
  max-width: 18ch;
}

.booking-card,
.contacts-card {
  width: min(860px, 100%);
}

.booking-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(238, 244, 239, 0.56);
}

.contact-value {
  font-size: 1.08rem;
  color: #f4faf1;
}

.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 0 0 28px;
}

.site-footer p {
  margin: 0;
  color: rgba(238,244,239,0.56);
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }

@media (max-width: 980px) {
  .content-grid,
  .booking-card,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .quote-card blockquote {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .bg-video {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 100%;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .video-overlay {
    background:
      linear-gradient(180deg, rgba(4, 8, 6, 0.66) 0%, rgba(4, 8, 6, 0.36) 30%, rgba(4, 8, 6, 0.58) 100%),
      linear-gradient(90deg, rgba(6, 10, 8, 0.62) 0%, rgba(6, 10, 8, 0.28) 18%, rgba(6, 10, 8, 0.14) 50%, rgba(6, 10, 8, 0.28) 82%, rgba(6, 10, 8, 0.62) 100%);
  }

  .video-vignette {
    box-shadow:
      inset 0 0 120px rgba(0,0,0,0.28),
      inset 0 80px 120px rgba(5, 8, 6, 0.28),
      inset 0 -80px 120px rgba(5, 8, 6, 0.28);
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    gap: 10px;
  }

  .brand {
    gap: 0;
    min-width: 0;
    flex: 0 0 auto;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }

  .brand-text {
    display: none;
  }

  .top-nav {
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  main { width: calc(100% - 20px); }
  .section {
    min-height: auto;
    padding: 90px 0 50px;
    scroll-margin-top: 110px;
  }
  .hero { min-height: 92vh; }
  .hero-inner,
  .glass-card,
  .quote-card,
  .booking-card,
  .contacts-card { padding: 24px; }
  h1 { font-size: clamp(2.6rem, 11vw, 4.4rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .cinema-bar { height: 4vh; }
}

@media (max-width: 760px) {
  .brand-mark {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.28),
      0 0 0 6px rgba(10, 16, 13, 0.18);
  }
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.booking-input::placeholder {
  color: rgba(238, 244, 239, 0.48);
}

.booking-textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-status {
  min-height: 24px;
  color: #d7e7d1;
  font-size: .95rem;
}

.booking-status.is-error {
  color: #ffb4b4;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.booking-modal.is-open {
  display: block;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(8px);
}

.booking-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 20px));
  margin: 40px auto;
  padding: 32px;
  z-index: 1;
}

.booking-modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-text p {
  margin: 0 0 10px;
}

.booking-modal-text a {
  color: #f4faf1;
}

.booking-form {
  margin-top: 18px;
}

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

.booking-field {
  display: grid;
  gap: 8px;
}

.booking-field span {
  color: rgba(238, 244, 239, 0.82);
  font-size: .95rem;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.booking-input::placeholder {
  color: rgba(238, 244, 239, 0.48);
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-slot {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  cursor: pointer;
}

.booking-slot.is-active {
  background: linear-gradient(135deg, #eff6e8, #b6d3a8);
  color: #0d1712;
  border-color: transparent;
  font-weight: 700;
}

.booking-slot.is-busy {
  background: rgba(255,255,255,0.04);
  color: rgba(238, 244, 239, 0.38);
  border-color: rgba(255,255,255,0.08);
  cursor: not-allowed;
}

.booking-status {
  min-height: 24px;
  margin-top: 14px;
  color: #d7e7d1;
  font-size: .95rem;
}

.booking-status.is-error {
  color: #ffb4b4;
}

@media (max-width: 760px) {
  .booking-modal-dialog {
    margin: 14px auto;
    padding: 24px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  overflow-y: auto;
  padding: 24px 12px;
}

.booking-modal.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(8px);
}

.booking-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: 0 auto;
  padding: 32px;
  z-index: 1;
}

@media (max-width: 760px) {
  .booking-modal {
    padding: 12px;
  }

  .booking-modal-dialog {
    max-height: calc(100vh - 24px);
    padding: 24px;
  }
}

.booking-date-input {
  min-height: 56px;
  color-scheme: dark;
}

.booking-date-input::-webkit-calendar-picker-indicator {
  opacity: 0.9;
  cursor: pointer;
}

.booking-success-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  padding: 12px;
}

.booking-success-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-success-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 28px;
  text-align: center;
}

.booking-success-dialog p {
  margin: 10px 0 0;
  color: rgba(238, 244, 239, 0.82);
}

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

.route-option {
  display: grid;
  gap: 6px;
  align-content: start;
  text-align: left;
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.route-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.2);
}

.route-option.is-active {
  background: linear-gradient(135deg, #eff6e8, #b6d3a8);
  color: #0d1712;
  border-color: transparent;
}

.route-option-title {
  font-weight: 700;
}

.route-option-price {
  font-size: .95rem;
  opacity: 0.82;
}

@media (max-width: 760px) {
  .route-options {
    grid-template-columns: 1fr;
  }
}
