:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-soft: #edf1ec;
  --surface-sage: #dfe8df;
  --text: #1c2420;
  --muted: #5f6b64;
  --soft: #879189;
  --line: rgba(28, 36, 32, 0.13);
  --line-strong: rgba(28, 36, 32, 0.28);
  --sage: #547061;
  --sage-dark: #344d40;
  --coral: #d8795f;
  --blue: #6e8d9e;
  --danger: #a94442;
  --success: #2f7250;
  --warning: #8c611d;
  --container: min(1200px, calc(100% - 48px));
  --radius: 22px;
  --shadow: 0 24px 70px rgba(38, 53, 45, 0.1);
  --shadow-soft: 0 12px 36px rgba(38, 53, 45, 0.08);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

section[id] {
  scroll-margin-top: 86px;
}

:focus-visible {
  outline: 3px solid rgba(84, 112, 97, 0.42);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--sage);
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(rgba(28, 36, 32, 0.035) 1px, transparent 1px) 0 0 / 100% 120px,
    var(--bg);
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section.is-compact {
  padding: 76px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 40px rgba(38, 53, 45, 0.07);
}

.header-inner {
  width: var(--container);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: 68px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 31px 0;
  transition: color .2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .2s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}

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

.btn-primary {
  color: #fff;
  background: var(--sage);
  box-shadow: 0 12px 28px rgba(52, 77, 64, 0.2);
}

.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 16px 34px rgba(52, 77, 64, 0.25);
}

.btn-outline {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  color: #fff;
  background: var(--sage);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.44);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: var(--surface);
}

.btn-small {
  min-height: 46px;
  padding: 0 22px;
}

.icon-btn {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
}

.icon-btn span,
.icon-btn::before,
.icon-btn::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.icon-btn::before,
.icon-btn::after {
  content: "";
}

.icon-btn::before {
  transform: translateY(-6px);
}

.icon-btn::after {
  transform: translateY(6px);
}

body.menu-open .icon-btn span {
  opacity: 0;
}

body.menu-open .icon-btn::before {
  transform: translateY(2px) rotate(45deg);
}

body.menu-open .icon-btn::after {
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 154px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--hero-image, url("photos/mhall-01.webp")) center / cover;
  filter: saturate(.72) brightness(1.08);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(246, 248, 244, 0.58);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .62fr);
  align-items: end;
  gap: 72px;
}

.hero-content {
  max-width: 740px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.4rem;
  line-height: .86;
  font-weight: 400;
  text-transform: none;
}

.hero-title span {
  display: block;
}

.hero-title .outline {
  color: var(--sage-dark);
  font-style: italic;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 600;
}

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

.hero-points {
  display: grid;
  gap: 12px;
  padding-bottom: 2px;
}

.number-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.number-card strong {
  padding-left: 20px;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.number-card p {
  margin: 0;
  padding: 18px 20px 18px 0;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 650;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .44fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 50px;
}

.section-head h2,
.booking-copy h2,
.contacts-copy h2,
.cinema-panel-content h2,
.menu-teaser h2,
.menu-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .98;
}

.section-head h2,
.booking-copy h2,
.contacts-copy h2 {
  font-size: 3.7rem;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.event-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9ded9;
  box-shadow: var(--shadow-soft);
}

.event-card:nth-child(even) {
  margin-top: 36px;
}

.event-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) brightness(.92);
  transition: transform .4s var(--ease), filter .4s var(--ease);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(20, 30, 24, 0.78));
}

.event-card:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.event-card-body {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}

.event-card span {
  color: #f4b19e;
  font-weight: 900;
}

.event-card h3 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.split-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-sage);
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.offer-item {
  min-height: 184px;
  padding: 34px 40px;
  border-left: 1px solid rgba(52, 77, 64, 0.16);
}

.offer-item:last-child {
  border-right: 1px solid rgba(52, 77, 64, 0.16);
}

.offer-item strong {
  display: block;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.offer-item:nth-child(2) strong {
  color: var(--coral);
}

.offer-item:nth-child(3) strong {
  color: var(--blue);
}

.offer-item h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.offer-item p {
  margin: 0;
  color: var(--muted);
}

.halls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hall-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hall-card-image {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: var(--surface-soft);
}

.hall-card-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) brightness(1.02);
  transition: transform .4s var(--ease), filter .4s var(--ease);
}

.hall-card:hover .hall-card-image img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1.04);
}

.hall-card-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(38, 53, 45, 0.1);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hall-card-body {
  padding: 28px;
}

.hall-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.hall-card p {
  min-height: 92px;
  margin: 0 0 24px;
  color: var(--muted);
}

.hall-card .btn {
  width: 100%;
}

.cinema-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .52fr);
  gap: 0;
  align-items: stretch;
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cinema-panel-media {
  min-height: 520px;
  background: var(--surface-soft);
}

.cinema-panel-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(1.05);
}

.cinema-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.cinema-panel-content h2 {
  font-size: 3.2rem;
}

.cinema-panel-content p {
  margin: 22px 0 0;
  color: var(--muted);
}

.cinema-panel-list {
  display: grid;
  margin: 28px 0 32px;
}

.cinema-panel-list span {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.cinema-panel-content .btn {
  align-self: flex-start;
}

.menu-teaser {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .38fr);
  gap: 48px;
  align-items: end;
  border-radius: calc(var(--radius) + 6px);
  padding: 52px;
  background: var(--surface-sage);
  box-shadow: var(--shadow-soft);
}

.menu-teaser h2 {
  font-size: 3.25rem;
}

.menu-teaser p {
  margin: 20px 0 0;
  color: var(--muted);
}

.menu-teaser-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(1.02);
  transition: transform .4s var(--ease), filter .4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1.04);
}

#booking {
  background: var(--surface);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(380px, .56fr);
  gap: 72px;
  align-items: start;
}

.booking-copy p,
.contacts-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-stats {
  display: grid;
  margin-top: 36px;
}

.booking-stats span {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 850;
  text-transform: uppercase;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 30px;
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}

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

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

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

.field label {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(84, 112, 97, 0.1);
}

.field textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a0a9a2;
}

.form-panel .btn {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: .92rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-warning {
  color: var(--warning);
}

.contacts {
  background: var(--surface-sage);
}

.reviews {
  background: var(--surface-soft);
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-rating > strong {
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: .9;
}

.reviews-rating span,
.review-stars {
  display: block;
  color: var(--coral);
  letter-spacing: 0;
}

.reviews-rating p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.review-card p {
  flex: 1;
  margin: 22px 0 28px;
  color: var(--muted);
}

.review-card strong {
  display: block;
  font-size: 1rem;
}

.review-source {
  margin-top: 8px;
  color: var(--coral);
  font-size: .8rem;
  font-weight: 800;
}

.review-source:hover {
  color: var(--sage-dark);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(420px, .72fr);
  gap: 40px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid rgba(52, 77, 64, 0.2);
}

.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(52, 77, 64, 0.2);
}

.contact-row span {
  color: var(--soft);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  color: var(--text);
  font-size: 1.08rem;
}

.contact-row a:hover {
  color: var(--coral);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.map-wrap {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(.65) contrast(.94) brightness(1.04);
}

.map-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.map-card strong {
  display: block;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.map-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--muted);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--coral);
}

.mobile-sticky {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(20, 28, 24, .9);
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  background: #111;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
}

.menu-hero {
  min-height: 58svh;
  padding: 150px 0 76px;
}

.menu-hero::before {
  background: url("photos/mhall-02.webp") center / cover;
  filter: saturate(.66) brightness(1.12);
}

.menu-hero::after {
  background: rgba(246, 248, 244, .68);
}

.menu-page-head {
  max-width: 820px;
}

.menu-page-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: .9;
}

.menu-page-head p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 600;
}

.menu-section-title {
  font-size: 3.5rem;
}

.menu-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.menu-count {
  margin: 0;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-category-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.menu-category-nav::-webkit-scrollbar {
  display: none;
}

.menu-category-nav a {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-category-nav a:hover {
  color: #fff;
  border-color: var(--sage);
  background: var(--sage);
}

.menu-grid {
  column-count: 2;
  column-gap: 20px;
}

.menu-category {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  break-inside: avoid;
}

.menu-category-head {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-sage);
}

.menu-category-head span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.menu-category-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.08;
}

.menu-category-head p {
  margin: 0;
  color: var(--soft);
  font-size: .8rem;
  font-weight: 900;
}

.menu-items {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h4 {
  margin: 0;
  font-size: 1.02rem;
}

.menu-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.menu-item-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.menu-item-meta {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--surface-soft);
  font-size: .76rem;
}

.menu-item-price {
  align-self: start;
  color: var(--coral);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-inner,
  .booking-layout,
  .contacts-layout,
  .cinema-panel {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 5.5rem;
  }

  .hero-points {
    max-width: 720px;
  }

  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .halls-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-item,
  .offer-item:last-child {
    border-right: 1px solid rgba(52, 77, 64, 0.16);
    border-bottom: 1px solid rgba(52, 77, 64, 0.16);
  }

  .cinema-panel-content {
    padding: 52px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .header-inner {
    min-height: 74px;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 50px rgba(38, 53, 45, 0.12);
    transform: translateY(-140%);
    transition: transform .25s var(--ease);
  }

  body.menu-open .nav {
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    padding: 15px 0;
  }

  .nav a::after {
    bottom: 10px;
    right: auto;
    width: 36px;
  }

  .header-actions .btn {
    display: none;
  }

  .icon-btn {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 52px;
  }

  .hero::after {
    background: rgba(246, 248, 244, .7);
  }

  .hero-inner {
    gap: 38px;
  }

  .hero-title {
    font-size: 4.6rem;
  }

  .section {
    padding: 84px 0;
  }

  .section.is-compact {
    padding: 60px 0;
  }

  .section-head,
  .menu-teaser {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-head h2,
  .booking-copy h2,
  .contacts-copy h2 {
    font-size: 3rem;
  }

  .events-grid,
  .halls-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    column-count: 1;
  }

  .events-grid {
    gap: 16px;
  }

  .event-card,
  .event-card:nth-child(even) {
    min-height: 360px;
    margin-top: 0;
  }

  .hall-card p {
    min-height: 0;
  }

  .menu-teaser {
    padding: 38px;
  }

  .menu-teaser-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-teaser-actions .btn {
    flex: 1 1 190px;
  }

  .booking-layout,
  .contacts-layout {
    gap: 46px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 460px;
  }

  .menu-page-head h1 {
    font-size: 4.8rem;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 45;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    color: #fff;
    background: var(--sage);
    box-shadow: 0 16px 38px rgba(52, 77, 64, .3);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
    --radius: 18px;
  }

  .brand-logo {
    height: 56px;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 28px;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero-title {
    font-size: 3.3rem;
    line-height: .9;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-points {
    grid-auto-columns: minmax(285px, 88%);
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 0 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-points::-webkit-scrollbar {
    display: none;
  }

  .number-card {
    grid-template-columns: 62px 1fr;
    min-height: 88px;
    scroll-snap-align: start;
  }

  .number-card strong {
    padding-left: 16px;
    font-size: 1.7rem;
  }

  .number-card p {
    padding-right: 16px;
    font-size: .88rem;
  }

  .section-head h2,
  .booking-copy h2,
  .contacts-copy h2,
  .cinema-panel-content h2,
  .menu-teaser h2,
  .menu-section-title {
    font-size: 2.55rem;
  }

  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
  }

  .gallery-item:nth-child(1) {
    grid-row: auto;
  }

  .offer-item {
    padding: 30px 26px;
  }

  .cinema-panel-media {
    min-height: 320px;
  }

  .cinema-panel-content,
  .menu-teaser {
    padding: 30px 24px;
  }

  .form-panel {
    padding: 22px;
  }

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

  .field.is-full {
    grid-column: auto;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .reviews-rating {
    align-items: flex-start;
  }

  .review-card {
    min-height: 0;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 400px;
  }

  .map-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .contact-actions,
  .menu-teaser-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 14px 18px;
  }

  .menu-hero {
    min-height: 54svh;
  }

  .menu-page-head h1 {
    font-size: 4rem;
  }

  .menu-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-category-head {
    grid-template-columns: 46px 1fr;
  }

  .menu-category-head p {
    grid-column: 2;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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