:root {
  --ink: #11130f;
  --acid: #d5fa48;
  --line: rgba(221, 235, 197, 0.22);
  --sand: #e5e1d6;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--sand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

button,
a { font: inherit; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 16px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

.header {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 4.6vw;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 18px / 11px var(--serif);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand em {
  color: var(--acid);
  font-size: 13px;
  font-style: normal;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font: italic 22px / 0.9 var(--serif);
}

nav { display: flex; gap: 32px; font-size: 13px; }

nav a { opacity: 0.8; transition: color 0.2s, opacity 0.2s; }

nav a:hover { color: var(--acid); opacity: 1; }

.header-book {
  border: 0;
  border-radius: 99px;
  padding: 13px 21px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: min(800px, 100vh);
  min-height: 640px;
  overflow: hidden;
}

.hero > img,
.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.hero > img { position: absolute; inset: 0; object-position: center 48%; }

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.88) 0%, rgba(5, 8, 5, 0.48) 44%, rgba(5, 8, 5, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 8, 5, 0.6), transparent 52%);
}

.hero-content { position: relative; width: min(940px, 91vw); margin: 0 auto 13vh; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.06em; }

h1 { margin: 0; font-size: clamp(73px, 10.6vw, 155px); line-height: 0.79; }

h2 { margin: 0; font-size: clamp(47px, 5.8vw, 91px); line-height: 0.86; }

h2 em { color: var(--acid); font-style: italic; }

.hero-copy { margin: 31px 0; color: #f0f0e8; font-size: 16px; line-height: 1.5; }

.hero-actions { display: flex; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 16px 23px;
  font-size: 13px;
  font-weight: 700;
}

.button span,
.text-link span { font-size: 18px; line-height: 0; }

.button-primary { background: var(--acid); color: var(--ink); }

.button-quiet { border-color: rgba(255, 255, 255, 0.45); color: #fff; }

.scroll-hint {
  position: absolute;
  right: 4.6vw;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-hint span { font-size: 20px; line-height: 1; animation: down 1.6s ease-in-out infinite; }

@keyframes down { 50% { transform: translateY(5px); } }

.section-pad { padding-right: 4.6vw; padding-left: 4.6vw; }

.intro { padding-top: 152px; padding-bottom: 118px; background: #23291f; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  align-items: start;
}

.intro-text { max-width: 460px; color: #c9c9ba; line-height: 1.55; }

.intro-text p { margin: 0 0 17px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 112px 0 0;
  border-top: 1px solid var(--line);
}

.stats div { padding: 24px 30px 0 0; }

.stats div + div { border-left: 1px solid var(--line); padding-left: 28px; }

.stats dt {
  color: var(--acid);
  font: 400 48px / 0.9 var(--serif);
  letter-spacing: -0.06em;
}

.stats dd { max-width: 125px; margin: 9px 0 0; color: #bfc5b1; font-size: 11px; line-height: 1.25; }

.halls { padding-top: 115px; padding-bottom: 104px; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.text-link { border: 0; padding: 0; background: none; color: var(--acid); font-size: 12px; font-weight: 700; white-space: nowrap; }

.hall-list { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 13px; }

.hall-card { position: relative; min-height: 420px; overflow: hidden; border-radius: 2px; }

.hall-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.hall-card:hover img { transform: scale(1.05); }

.card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 65%); }

.hall-info { position: absolute; inset: auto 22px 20px; }

.hall-info h3 { margin: 0 0 6px; font-size: 13px; font-weight: 400; }

.hall-info p { margin: 0; }

.hall-info strong { font: 400 32px var(--serif); letter-spacing: -0.04em; }

.hall-info p span { color: #d1d3cb; font-size: 13px; }

.round-button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 20px;
}

.tariff-note { margin: 18px 0 0; color: #898f84; font-size: 11px; }

.vip {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 9vw;
  align-items: center;
  padding-top: 122px;
  padding-bottom: 122px;
  background: #c4d0a9;
  color: var(--ink);
}

.vip-images { position: relative; height: 610px; }

.vip-main { width: 75%; height: 100%; object-fit: cover; }

.vip-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 44%;
  border: 9px solid #c4d0a9;
  object-fit: cover;
}

.vip .eyebrow,
.vip h2 em { color: #3d5737; }

.vip-content > p:not(.eyebrow):not(.small-note):not(.vip-price) { max-width: 410px; margin: 29px 0; color: #364034; line-height: 1.5; }

.vip-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 5px; }

.vip-price strong { font: 400 64px / 0.9 var(--serif); letter-spacing: -0.08em; }

.vip-price span { font-size: 12px; }

.small-note { margin: 0 0 28px; color: #576051; font-size: 11px; }

.gallery { padding-top: 123px; padding-bottom: 126px; }

.gallery-caption { margin: 0; color: #acb2a4; font-size: 13px; line-height: 1.45; }

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  grid-template-rows: 285px 215px;
  gap: 14px;
}

.photo-grid img { width: 100%; height: 100%; object-fit: cover; }

.photo-a,
.photo-b { grid-row: span 2; }

.contacts { display: grid; grid-template-columns: 1fr 1fr; min-height: 630px; background: #303a2c; }

.contacts-content { padding-top: 104px; padding-bottom: 86px; }

.contacts h2 { margin-bottom: 52px; }

.contact-details { max-width: 490px; margin: 0 0 35px; border-top: 1px solid var(--line); }

.contact-details div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact-details dt { color: #a9b49f; font-size: 11px; }

.contact-details dd { margin: 0; text-align: right; }

.contact-details a:hover { color: var(--acid); }

.contact-image { overflow: hidden; }

.contact-image img { filter: brightness(0.7) saturate(0.78); object-position: 58% center; }

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 165px;
  padding: 32px 4.6vw 93px;
  color: #a6ab9d;
  font-size: 11px;
}

footer .brand { color: #e7e9e0; }

footer a:last-child { color: var(--acid); }

.mobile-actions { display: none; }

.booking-dialog {
  width: min(520px, calc(100vw - 28px));
  border: 0;
  padding: 38px;
  background: #edf0e4;
  box-shadow: 0 30px 100px #000;
  color: var(--ink);
}

.booking-dialog::backdrop { background: rgba(5, 8, 5, 0.8); backdrop-filter: blur(5px); }

.booking-dialog .eyebrow { color: #3d5737; }

.booking-dialog h2 { font-size: 53px; }

.booking-dialog h2 em { color: #456640; }

.booking-dialog > p:not(.eyebrow) { margin: 21px 0 28px; color: #53604f; line-height: 1.5; }

.dialog-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #52624e;
  font-size: 30px;
}

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

.booking-option { display: flex; align-items: center; gap: 12px; padding: 15px; background: #dce2cf; font-size: 13px; font-weight: 700; }

.booking-option span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 13px;
}

.booking-option.telegram span { background: #2aabdf; }

.booking-option.vk span { background: #2688eb; font-size: 11px; }

.booking-option.call span { background: #456640; }

.booking-option b { margin-left: auto; color: #52624e; font-size: 18px; }

@media (max-width: 1023px) and (min-width: 768px) {
  .header,
  .section-pad { padding-right: 36px; padding-left: 36px; }

  nav { gap: 20px; }

  .hero-content { width: min(700px, 88vw); }

  .intro,
  .halls { padding-top: 96px; padding-bottom: 88px; }

  .hall-card { min-height: 365px; }

  .vip { gap: 6vw; padding-top: 96px; padding-bottom: 96px; }

  .vip-images { height: 500px; }

  .gallery { padding-top: 96px; padding-bottom: 96px; }
}

@media (max-width: 767px) {
  .header { height: 70px; padding: 0 20px; }

  .brand { font-size: 16px; }

  nav,
  .header-book { display: none; }

  .hero { height: 92vh; min-height: 650px; }

  .hero > img { object-position: 56% center; }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 8, 5, 0.88) 4%, rgba(5, 8, 5, 0.08) 80%),
      linear-gradient(90deg, rgba(5, 8, 5, 0.25), transparent);
  }

  .hero-content { width: auto; margin: 0 20px 100px; }

  .hero-copy { font-size: 14px; }

  .desktop-only,
  .scroll-hint { display: none; }

  .section-pad { padding-right: 20px; padding-left: 20px; }

  .intro { padding-top: 83px; padding-bottom: 74px; }

  .intro-grid { display: block; }

  .intro-text { margin-top: 33px; font-size: 14px; }

  .stats { margin-top: 64px; }

  .stats div { padding-right: 10px; }

  .stats div + div { padding-left: 12px; }

  .stats dt { font-size: 31px; }

  .stats dd { font-size: 9px; }

  .halls { padding-top: 77px; padding-bottom: 68px; }

  .section-heading { margin-bottom: 28px; }

  .section-heading .text-link { display: none; }

  .hall-list {
    display: flex;
    margin-right: -20px;
    overflow-x: auto;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
  }

  .hall-card { min-width: 78vw; height: 360px; min-height: 0; scroll-snap-align: start; }

  .tariff-note { line-height: 1.4; }

  .vip { display: flex; flex-direction: column; align-items: stretch; gap: 42px; padding-top: 76px; padding-bottom: 77px; }

  .vip-images { height: 440px; }

  .vip-main { width: 83%; }

  .vip-detail { width: 44%; height: 40%; border-width: 6px; }

  .vip-content > p:not(.eyebrow):not(.small-note):not(.vip-price) { font-size: 14px; }

  .vip-price strong { font-size: 56px; }

  .gallery { padding-top: 77px; padding-bottom: 77px; }

  .gallery-caption { display: none; }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 180px;
    gap: 8px;
  }

  .photo-a { grid-row: span 2; }

  .photo-b { grid-row: auto; }

  .photo-d { grid-column: span 2; }

  .contacts { display: flex; flex-direction: column; }

  .contacts-content { padding-top: 78px; padding-bottom: 68px; }

  .contacts h2 { margin-bottom: 40px; }

  .contact-details div { display: block; }

  .contact-details dt { margin-bottom: 4px; }

  .contact-details dd { text-align: left; }

  .contact-image { height: 320px; }

  .contact-image img { object-position: center; }

  .contacts .button { width: 100%; }

  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
    min-height: 140px;
    padding: 28px 20px 102px;
  }

  footer p { margin: 0; }

  footer a:last-child { text-align: right; }

  .mobile-actions {
    position: fixed;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 66px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  }

  .mobile-actions a,
  .mobile-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #263021;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-actions button { background: var(--acid); color: var(--ink); }

  .booking-dialog { padding: 31px 23px 25px; }

  .booking-dialog h2 { font-size: 43px; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .hero-actions .button { min-width: 206px; }
}

@media (max-width: 360px) {
  h1 { font-size: 65px; }

  h2 { font-size: 44px; }

  .hero { min-height: 610px; }

  .hero-content { margin-bottom: 78px; }

  .stats dt { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
