:root {
  --bg-dark: #110b14;
  --bg-violet: #24132d;
  --text-main: #2a1728;
  --text-soft: #5f4d5a;
  --text-muted: #8a7482;
  --accent: #f755a1;
  --accent-soft: #f8b5d0;
  --accent-violet: #9b35ff;
  --bg-light: #fff4f8;
  --card: #ffffff;
  --line: rgba(247, 85, 161, 0.18);
  --header-bg: rgba(24, 16, 28, 0.64);
  --shadow-soft: 0 18px 44px rgba(36, 19, 45, 0.06);
  --shadow-card: 0 18px 48px rgba(36, 19, 45, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-display: "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-script: "Caveat", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(248, 181, 208, 0.28), transparent 22%),
    linear-gradient(180deg, #fff8fb 0%, var(--bg-light) 42%, #fff7fa 100%);
  color: var(--text-main);
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

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

button {
  border: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(16, 9, 20, 0.08);
}

.header-inner,
.mobile-menu,
.hero-content,
.section,
.contacts-layout {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(247, 85, 161, 0.28), rgba(155, 53, 255, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(247, 85, 161, 0.14);
  color: #fff5fb;
  font-size: 0.92rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--accent-soft);
}

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

.header-actions .primary-button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.mobile-menu {
  display: none;
  padding: 0 0 12px;
}

.mobile-menu-gesture-zone {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
}

@keyframes mobileMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 5, 14, 0.92) 0%, rgba(10, 5, 14, 0.55) 45%, rgba(10, 5, 14, 0.1) 100%),
    radial-gradient(circle at 74% 18%, rgba(247, 85, 161, 0.24), transparent 28%),
    radial-gradient(circle at 83% 14%, rgba(155, 53, 255, 0.22), transparent 32%),
    url("/assets/head-desktop.jpg") center calc(50% + var(--hero-shift, 0px)) / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 5, 14, 0.48), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(17, 11, 20, 0.06), rgba(17, 11, 20, 0.32));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 104px;
  color: #fff;
}

.hero-edit-button {
  position: absolute;
  top: 24px;
  right: 0;
}

.about-copy .section-edit-button,
.contacts-layout .section-edit-button {
  position: absolute;
  top: 0;
  right: 0;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.dialog-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
}

.hero h1 {
  max-width: 8ch;
  color: #fff7fb;
  font-size: clamp(4.2rem, 6.4vw, 5.1rem);
}

.hero-subtitle {
  margin: 20px 0 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-copy,
.section-subtitle,
.direction-copy p,
.poster-copy p,
.about-copy p,
.review-card p,
.section-footnote,
.contacts-copy,
.faq-list p,
.dialog-form label {
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 247, 251, 0.84);
  font-size: 0.98rem;
}

.hero-benefits i {
  color: var(--accent);
  font-style: normal;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.script-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-script);
  font-size: 1.32rem;
}

.script-note.soft {
  color: rgba(247, 85, 161, 0.78);
}

.primary-button,
.glass-button,
.secondary-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), #ff5bb0);
  color: #fff;
  box-shadow:
    0 16px 38px rgba(247, 85, 161, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(247, 85, 161, 0.28),
    0 0 22px rgba(247, 85, 161, 0.26);
}

.glass-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

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

.glow-button {
  box-shadow:
    0 0 0 1px rgba(247, 85, 161, 0.18),
    0 0 24px rgba(247, 85, 161, 0.28),
    0 18px 40px rgba(247, 85, 161, 0.3);
}

.secondary-button {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(247, 85, 161, 0.22);
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(247, 85, 161, 0.12);
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-size: 1.4rem;
  line-height: 1;
}

.icon-button.dark {
  background: rgba(42, 23, 40, 0.08);
}

.section {
  padding: 84px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.section-head-copy {
  max-width: 760px;
}

.section h2 {
  max-width: 15ch;
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
}

.section-subtitle {
  max-width: 580px;
  margin: 12px 0 0;
  color: var(--text-muted);
}

.schedule-section {
  color: var(--text-main);
}

.dark-footer-section {
  width: 100%;
  margin-top: 24px;
  padding: 84px 0 72px;
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.96), rgba(248, 241, 246, 0.98));
  color: var(--text-main);
  border-top: 1px solid rgba(247, 85, 161, 0.08);
  border-bottom: 1px solid rgba(247, 85, 161, 0.08);
}

.dark-footer-section h2,
.schedule-section h2 {
  color: inherit;
}

.directions-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.slider-dots {
  display: none;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(42, 23, 40, 0.16);
  border: none;
  transition: transform 160ms ease, background 160ms ease, width 160ms ease;
}

.slider-dot.active {
  width: 22px;
  background: var(--accent);
  transform: none;
}

.direction-card,
.poster-card,
.price-card,
.review-card,
.atmosphere-card,
.about-photo-wrap,
.contact-form,
.contact-item,
.faq-list details {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.direction-card {
  display: grid;
  grid-template-rows: auto auto;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
}

.direction-card:hover,
.poster-card:hover,
.price-card:hover,
.review-card:hover,
.atmosphere-card:hover {
  transform: translateY(-4px);
}

.direction-card img,
.poster-card img,
.about-photo-wrap img,
.atmosphere-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 220ms ease, filter 220ms ease;
  filter: none;
}

.direction-card img {
  height: 300px;
  object-position: center center;
  display: block;
}

.direction-card-frameup img {
  object-position: center center;
}

.direction-card-twerk img {
  object-position: center center;
}

.direction-card-individual img {
  object-position: center 60%;
}

.direction-copy,
.poster-copy,
.price-card,
.review-card {
  padding: 24px;
}

.direction-copy {
  display: grid;
  gap: 10px;
  background: #fff;
  min-height: 178px;
}

.direction-copy p {
  margin: 0;
}

.direction-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direction-copy h3,
.poster-copy h3,
.price-card h3,
.review-card h3,
.admin-booking-item h4 {
  margin: 0;
  font-family: var(--font-display);
}

.direction-copy h3 {
  font-size: 1.5rem;
  line-height: 1.04;
}

.direction-copy p:last-of-type {
  color: var(--text-soft);
}

.direction-link {
  margin-top: 6px;
  padding: 12px 16px;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(247, 85, 161, 0.08);
  color: var(--accent);
  font-weight: 800;
}

.direction-link::after {
  content: " →";
}

.section-edit-button {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-top: 4px;
  border-radius: 999px;
  border: 1px solid rgba(42, 23, 40, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-main);
  box-shadow: 0 10px 24px rgba(36, 19, 45, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.section-edit-button.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

body.is-admin .section-edit-button {
  opacity: 1;
  pointer-events: auto;
}

.section-edit-button:hover {
  transform: translateY(0);
  background: rgba(255, 255, 255, 1);
}

.section-edit-button.dark:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cabinet-guest,
.cabinet-profile-card,
.cabinet-bookings-card,
.admin-card-block,
.cabinet-stat-card,
.admin-stat-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(247, 85, 161, 0.1);
  box-shadow: var(--shadow-soft);
}

.cabinet-guest {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
}

.cabinet-guest h3,
.cabinet-profile-card h3,
.cabinet-bookings-card h3,
.admin-card-block h4,
.account-user-card h4 {
  margin: 0 0 8px;
}

.cabinet-guest p,
.cabinet-user-meta,
.admin-user-row div,
.admin-event-copy div,
.admin-booking-subcount,
.admin-booking-subitem div {
  color: var(--text-soft);
  line-height: 1.55;
}

.cabinet-shell {
  display: grid;
  gap: 18px;
}

.cabinet-profile-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.dark-glass-button {
  color: var(--text-main);
  background: rgba(42, 23, 40, 0.06);
  border-color: rgba(42, 23, 40, 0.08);
}

.cabinet-user-meta {
  margin: 0;
}

.cabinet-stats,
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cabinet-stat-card,
.admin-stat-card {
  padding: 22px 24px;
}

.cabinet-stat-card span,
.admin-stat-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.cabinet-stat-card strong,
.admin-stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text-main);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
}

.cabinet-stat-card.accent {
  background: linear-gradient(135deg, rgba(247, 85, 161, 0.12), rgba(255, 255, 255, 0.88));
}

.cabinet-bookings-card,
.admin-card-block {
  padding: 24px;
}

.cabinet-block-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cabinet-bookings-list,
.admin-users-list,
.admin-events-list {
  display: grid;
  gap: 12px;
}

.admin-zone {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.9), rgba(255, 242, 247, 0.82));
  border: 1px solid rgba(247, 85, 161, 0.08);
}

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

.admin-grid.lower {
  align-items: start;
}

.admin-user-row,
.admin-event-row,
.admin-booking-subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(247, 85, 161, 0.08);
}

.admin-booking-subitem {
  margin-top: 12px;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.admin-balance-editor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-balance-editor input {
  width: 90px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-inline-button {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 14px;
}

.schedule-shell {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff8fb, #fff5f8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.schedule-table-head {
  display: none;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 14px;
  align-items: start;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(247, 85, 161, 0.08);
  color: var(--text-main);
}

.schedule-row-main {
  display: grid;
  gap: 10px;
}

.schedule-row-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
}

.schedule-row-datetime {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.schedule-row-title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.08;
}

.schedule-row-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.schedule-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-row-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.schedule-row .primary-button {
  min-width: 138px;
}

.spots-chip {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 85, 161, 0.1);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(42, 23, 40, 0.06);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.poster-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.poster-grid-archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.poster-card {
  position: relative;
  min-height: 460px;
  background: var(--bg-dark);
  color: #fff;
}

.poster-grid-single .poster-card {
  min-height: 520px;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 11, 20, 0.04), rgba(17, 11, 20, 0.58));
}

.poster-copy,
.poster-badge {
  position: relative;
  z-index: 1;
}

.poster-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.poster-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.poster-badge,
.price-badge {
  display: inline-flex;
  width: fit-content;
  margin: 18px 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.poster-empty {
  padding: 24px 28px;
  border: 1px dashed rgba(247, 85, 161, 0.22);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.58);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}

.about-photo-wrap {
  min-height: 620px;
}

.about-copy {
  position: relative;
}

.about-photo-wrap img {
  filter: saturate(0.96) contrast(0.98) brightness(1.03) sepia(0.04);
  object-position: center 22%;
}

.about-copy p {
  color: #6b5a66;
  font-size: 1.06rem;
}

.about-points {
  margin: 20px 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.72;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.about-facts span {
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.about-facts span::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}

.atmosphere-carousel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(247, 85, 161, 0.08);
  box-shadow: var(--shadow-soft);
}

.carousel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.carousel-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-count {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(247, 85, 161, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.15);
}

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

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
}

.atmosphere-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 82%);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 4px 8px;
  scrollbar-width: none;
}

.atmosphere-track::-webkit-scrollbar,
.directions-slider::-webkit-scrollbar,
.reviews-grid::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
  display: none;
}

.atmosphere-card {
  position: relative;
  min-height: 560px;
  scroll-snap-align: start;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(42, 23, 40, 0.1);
  cursor: zoom-in;
}

.atmosphere-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 11, 20, 0) 38%, rgba(17, 11, 20, 0.34) 100%);
}

.atmosphere-card figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(17, 11, 20, 0.28);
  color: #fff;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  width: min(1320px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  border: none;
  padding: 0;
  background: transparent;
}

.lightbox-dialog::backdrop {
  background: rgba(10, 5, 14, 0.8);
  backdrop-filter: blur(10px);
}

.lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 24px);
  object-fit: contain;
  border-radius: 28px;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(42, 23, 40, 0.05);
}

.price-card h3 {
  min-height: 2.7em;
}

.price-note {
  margin: -2px 0 0;
  color: var(--text-muted);
}

.price-card strong {
  display: block;
  margin: auto 0 18px;
  color: var(--accent);
  font-size: 2rem;
}

.price-card .primary-button,
.price-card .secondary-button {
  width: 100%;
}

.price-action {
  border-color: rgba(247, 85, 161, 0.18);
  background: rgba(255, 255, 255, 0.4);
  color: var(--text-main);
}

.price-action:hover {
  border-color: rgba(247, 85, 161, 0.3);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 24px rgba(247, 85, 161, 0.08);
}

.section-footnote {
  margin-top: 18px;
  color: var(--text-soft);
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}

.review-card {
  min-height: 240px;
  scroll-snap-align: start;
  color: var(--text-soft);
}

.review-stars {
  margin-bottom: 12px;
  color: var(--accent);
}

.faq-section {
  padding-top: 116px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(247, 85, 161, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}

.contacts-copy {
  max-width: 720px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1rem;
}

.contacts-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 0;
}

.contacts-actions .primary-button,
.contacts-actions .glass-button {
  min-height: 52px;
  min-width: 198px;
  border-radius: 18px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 16px 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(42, 23, 40, 0.1);
  color: var(--text-main);
  text-decoration: none;
  box-shadow: none;
}

.contact-item.static {
  cursor: default;
}

.mobile-menu-close {
  display: none;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 85, 161, 0.08);
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.contact-icon-phone {
  background: linear-gradient(135deg, rgba(247, 85, 161, 0.16), rgba(248, 181, 208, 0.1));
  color: var(--accent);
}

.contact-icon-telegram {
  background: linear-gradient(135deg, rgba(39, 167, 231, 0.18), rgba(91, 200, 255, 0.12));
  color: #2398d4;
}

.contact-icon-instagram {
  background: linear-gradient(135deg, rgba(245, 133, 41, 0.16), rgba(253, 29, 122, 0.1) 60%, rgba(131, 58, 180, 0.08));
  color: #d34b7e;
}

.contact-icon-address {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(247, 85, 161, 0.08));
  color: var(--text-soft);
}

.contact-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.contact-copy strong {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
}

.contact-copy span {
  display: block;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.34;
  word-break: break-word;
}

.floating-booking-button {
  display: none !important;
}

.sticky-booking-button {
  display: none;
}

.site-dialog {
  width: min(540px, calc(100vw - 20px));
  border: none;
  padding: 0;
  background: transparent;
}

.section-editor-dialog {
  width: min(720px, calc(100vw - 20px));
}

.site-dialog::backdrop {
  background: rgba(17, 11, 20, 0.56);
  backdrop-filter: blur(8px);
}

.dialog-card {
  border-radius: var(--radius-xl);
  padding: 24px;
  background: rgba(255, 248, 251, 0.96);
  box-shadow: var(--shadow-card);
}

.admin-card {
  max-height: min(88vh, 900px);
  overflow: auto;
}

.account-tabs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.auth-tab {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
}

.auth-tab.active {
  background: rgba(247, 85, 161, 0.12);
  border-color: rgba(247, 85, 161, 0.24);
  color: var(--accent);
}

.auth-form.hidden {
  display: none;
}

.account-user-card {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.account-user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dialog-head,
.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.dialog-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.dialog-form.compact {
  margin-bottom: 26px;
}

.dialog-form label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
}

.dialog-form.compact label {
  gap: 6px;
}

.dialog-form input,
.dialog-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  outline: none;
  appearance: none;
}

.dialog-form input::placeholder,
.dialog-form textarea::placeholder {
  color: var(--text-muted);
}

.dialog-form input:focus,
.dialog-form textarea:focus {
  border-color: rgba(247, 85, 161, 0.42);
  box-shadow: 0 0 0 4px rgba(247, 85, 161, 0.08);
}

.dialog-form.compact input,
.dialog-form.compact textarea {
  min-height: 42px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dialog-form.compact textarea {
  min-height: 84px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.select-field {
  position: relative;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  text-align: left;
}

.custom-select-trigger::after {
  content: "⌄";
  color: var(--text-muted);
  font-size: 1rem;
}

.custom-select.is-open .custom-select-trigger {
  border-color: rgba(247, 85, 161, 0.42);
  box-shadow: 0 0 0 4px rgba(247, 85, 161, 0.08);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  gap: 6px;
  max-height: 260px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(247, 85, 161, 0.16);
  border-radius: 18px;
  background: rgba(255, 248, 251, 0.98);
  box-shadow: 0 18px 40px rgba(42, 23, 40, 0.14);
}

.custom-select-option {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option.selected {
  background: rgba(247, 85, 161, 0.1);
  color: var(--text-main);
}

.admin-panel {
  margin-top: 26px;
}

.admin-bookings-list {
  display: grid;
  gap: 12px;
}

.admin-booking-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(247, 85, 161, 0.1);
}

.hidden {
  display: none !important;
}

.status-message {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(73, 137, 109, 0.12);
  color: #2c7558;
}

.status-message.error {
  background: rgba(200, 81, 126, 0.12);
  color: #b03f6a;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    position: sticky;
    height: 74px;
    background: rgba(35, 18, 38, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(16, 9, 20, 0.08);
  }

  .header-inner {
    height: 74px;
    gap: 14px;
    padding: 0 16px;
  }

  .header-actions .primary-button {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100vw;
    height: 100dvh;
    padding: 94px 24px 28px;
    background: linear-gradient(180deg, #2a0d32 0%, #120716 100%);
    box-shadow: none;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 350ms;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }

  .mobile-menu-gesture-zone {
    position: fixed;
    top: 0;
    right: 0;
    width: 28px;
    height: 100dvh;
    display: block;
    z-index: 998;
    background: transparent;
    pointer-events: auto;
  }

  body.menu-open .mobile-menu-gesture-zone {
    pointer-events: none;
  }

  .mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-shell {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    min-height: 100%;
  }

  .mobile-menu-grip {
    width: 56px;
    height: 5px;
    margin: 0 auto 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-menu-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .mobile-menu-brand {
    display: grid;
    gap: 4px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
  }

  .mobile-menu-brand-title {
    color: #fff8fb;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }

  .mobile-menu-brand-copy {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }

  .mobile-menu-links {
    display: grid;
    gap: 22px;
    margin-top: 6px;
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
  }

  .mobile-menu-links a {
    display: block;
    padding: 0;
    color: #fff8fb;
    font-size: clamp(1.4rem, 5.2vw, 1.75rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-decoration: none;
    border: 0;
    transition: color 200ms ease, transform 200ms ease;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a:active,
  .mobile-menu-links a:focus-visible {
    color: #ff5bb7;
    transform: translateX(6px);
  }

  .mobile-menu-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    gap: 12px;
    margin-top: 6px;
    padding: 16px 0 2px;
    background: linear-gradient(180deg, rgba(18, 7, 22, 0) 0%, rgba(18, 7, 22, 0.86) 22%, rgba(18, 7, 22, 1) 100%);
  }

  .mobile-menu-primary,
  .mobile-menu-secondary {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    border-radius: 999px;
  }

  .mobile-menu-primary {
    background: linear-gradient(135deg, var(--accent), #ff5bb0);
    color: #fff;
    box-shadow: 0 16px 34px rgba(247, 85, 161, 0.26);
  }

  .mobile-menu-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .poster-grid,
  .about-layout,
  .prices-grid,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .cabinet-guest,
  .cabinet-profile-card,
  .admin-grid,
  .admin-stats-grid,
  .cabinet-stats {
    grid-template-columns: 1fr;
  }

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

  .schedule-table-head {
    display: none;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 22px;
    margin: 12px;
    border: 1px solid rgba(247, 85, 161, 0.08);
  }

  .schedule-shell {
    padding: 8px 0 14px;
  }
}

@media (max-width: 780px) {
  .header-inner,
  .hero-content,
  .section,
  .contacts-layout {
    width: min(1240px, calc(100vw - 24px));
  }

  .site-header {
    height: 74px;
    background: rgba(35, 18, 38, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(16, 9, 20, 0.08);
  }

  .header-inner {
    height: 74px;
    padding: 0 16px;
    gap: 12px;
  }

  .hero {
    min-height: 86vh;
    background:
      linear-gradient(180deg, rgba(17, 11, 20, 0.7) 0%, rgba(17, 11, 20, 0.48) 100%),
      radial-gradient(circle at 78% 18%, rgba(247, 85, 161, 0.18), transparent 30%),
      url("/assets/head-mobile.jpg") 70% calc(28% + var(--hero-shift, 0px)) / cover no-repeat;
  }

  .brand-subtitle {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .brand-title {
    font-size: 1.08rem;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
  }

  .header-actions .primary-button {
    display: none;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .menu-button {
    min-height: 44px;
    min-width: auto;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 92px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9vw, 2.95rem);
  }

  .hero-buttons,
  .contacts-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-tabs,
  .account-user-actions {
    flex-direction: column;
  }

  .cabinet-guest,
  .cabinet-profile-card,
  .admin-user-row,
  .admin-event-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 22px;
  }

  .section-edit-button {
    align-self: flex-end;
  }

  .section h2 {
    max-width: 100%;
    font-size: clamp(1.58rem, 6.4vw, 2.12rem);
  }

  .poster-card,
  .poster-grid-single .poster-card {
    min-height: 440px;
  }

  .poster-copy {
    padding-top: 54px;
  }

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

  .price-card strong {
    margin: 8px 0 18px;
  }

  .about-photo-wrap {
    min-height: 312px;
  }

  .about-layout {
    gap: 18px;
  }

  .about-copy h2 {
    font-size: clamp(1.55rem, 6.1vw, 2rem);
  }

  .about-copy p {
    font-size: 0.98rem;
  }

  .faq-section {
    padding-top: 84px;
  }

  .carousel-topbar {
    align-items: center;
  }

  .atmosphere-carousel {
    gap: 14px;
    padding: 16px;
  }

  .atmosphere-card {
    min-height: 340px;
  }

  .atmosphere-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: fit-content;
    max-width: calc(100% - 32px);
    border-radius: 16px;
    font-size: 0.84rem;
  }

  .carousel-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .carousel-actions {
    gap: 8px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .contact-form {
    padding: 22px 16px 18px;
  }

  .contacts-layout {
    gap: 18px;
  }

  .contacts-copy,
  .contacts-note {
    max-width: 100%;
  }

  .contacts-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .sticky-booking-button {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 80;
    display: flex;
    min-height: 54px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .sticky-booking-button.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.menu-open .sticky-booking-button {
    opacity: 0;
    pointer-events: none;
  }

  .contact-item {
    min-height: 68px;
    padding: 12px 14px;
    gap: 12px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-copy strong {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .contact-copy span {
    font-size: 0.92rem;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .directions-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 20px 24px;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .directions-slider::-webkit-scrollbar {
    display: none;
  }

  .direction-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
    border-radius: 22px;
    overflow: hidden;
    clip-path: inset(0 round 22px);
    -webkit-clip-path: inset(0 round 22px);
  }

  .direction-card img {
    height: 242px;
    border-radius: 0;
  }

  .direction-copy {
    padding: 16px 16px 18px;
    gap: 7px;
    min-height: 156px;
  }

  .direction-copy h3 {
    font-size: 20px;
    line-height: 1.08;
    min-height: 2.1em;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }

  .slider-dot {
    background: rgba(42, 23, 40, 0.14);
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .schedule-row-title {
    font-size: 1.14rem;
  }

  .schedule-row-copy {
    font-size: 0.92rem;
  }

  .schedule-row-action {
    justify-content: stretch;
  }

  .schedule-row .primary-button {
    width: 100%;
    min-width: 0;
  }

  .schedule-row-topline {
    align-items: flex-start;
  }

  .cabinet-shell {
    gap: 14px;
  }

  .cabinet-profile-card {
    padding: 20px;
  }

  .cabinet-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cabinet-stat-card {
    padding: 16px 18px;
  }

  .cabinet-stat-card strong {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }

  .cabinet-bookings-card {
    padding: 18px;
  }

  .admin-zone {
    padding: 14px;
    gap: 14px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .admin-card-block {
    padding: 18px;
  }

  .dialog-form.compact input,
  .dialog-form.compact textarea {
    min-height: 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .hero-benefits span {
    font-size: 0.92rem;
  }

  .directions-slider {
    padding: 0 20px 22px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding-top: 86px;
  }

  .atmosphere-track {
    grid-auto-columns: 86%;
  }

  .hero-buttons .primary-button,
  .hero-buttons .glass-button,
  .contacts-actions .primary-button,
  .contacts-actions .glass-button {
    width: 100%;
  }

  .schedule-row {
    padding: 16px 14px;
  }

  .schedule-row .primary-button,
  .schedule-row .secondary-button {
    width: 100%;
    justify-self: stretch;
  }

  .poster-card,
  .poster-grid-single .poster-card {
    min-height: 396px;
  }

  .poster-copy p:last-child {
    font-size: 0.92rem;
  }

  .reviews-grid,
  .atmosphere-track {
    grid-auto-columns: 86%;
  }

  .contacts-actions .primary-button {
    width: 100%;
  }

  .sticky-booking-button {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 80;
    display: flex;
    min-height: 54px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .sticky-booking-button.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.menu-open .sticky-booking-button {
    opacity: 0;
    pointer-events: none;
  }

  .contact-copy span {
    font-size: 0.9rem;
  }

  .account-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}


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