@import url("../branding/brand.css");

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.07), transparent 28rem),
    radial-gradient(circle at 14% 7%, rgba(242, 11, 22, 0.14), transparent 30rem),
    radial-gradient(circle at 86% 30%, rgba(46, 96, 123, 0.09), transparent 28rem),
    var(--black);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

body.modal-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

button {
  color: inherit;
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px clamp(16px, 3vw, 44px);
  background: linear-gradient(180deg, rgba(3, 3, 4, 0.76), rgba(3, 3, 4, 0));
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 4, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(242, 11, 22, 0.32)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.brand span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.78rem, 1.7vw, 1.35rem);
  color: rgba(244, 239, 232, 0.7);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 0.4rem;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  box-shadow: var(--glow);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--paper);
  text-shadow: 0 0 18px rgba(242, 11, 22, 0.44);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(7px);
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  z-index: 85;
  top: 76px;
  left: 14px;
  right: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer__nav {
  display: grid;
  gap: 6px;
}

.mobile-drawer__nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.76rem 0.9rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 239, 232, 0.82);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.12rem;
  overflow: hidden;
  border: 1px solid rgba(255, 40, 40, 0.55);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.65);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 44px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -35%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: transform 460ms ease, opacity 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 66, 66, 0.86);
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.18), rgba(242, 11, 22, 0.05)),
    rgba(10, 10, 10, 0.72);
  box-shadow: 0 0 22px rgba(242, 11, 22, 0.48), 0 0 62px rgba(242, 11, 22, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(420%) rotate(18deg);
}

.btn--primary {
  border-color: rgba(255, 40, 40, 0.68);
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.14), rgba(242, 11, 22, 0.03)),
    rgba(10, 10, 10, 0.65);
  box-shadow: 0 0 20px rgba(242, 11, 22, 0.2), inset 0 0 0 1px rgba(242, 11, 22, 0.14);
}

.btn--small {
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  font-size: 0.78rem;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 138px) clamp(16px, 4vw, 42px);
}

.section--black {
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 11, 22, 0.075), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0)),
    var(--black-2);
}

#gallery {
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(72px, 8vw, 116px);
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 11, 22, 0.1), transparent 26rem),
    radial-gradient(circle at 18% 88%, rgba(242, 11, 22, 0.08), transparent 28rem),
    linear-gradient(180deg, #050506 0%, #090708 52%, #040405 100%);
}

#gallery > .section__inner {
  position: relative;
  z-index: 1;
}

#gallery .section__title {
  max-width: 720px;
  font-size: clamp(2.9rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0.05em;
}

#gallery .section__lead {
  max-width: 560px;
  color: rgba(244, 239, 232, 0.72);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.62;
}

#events {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 18%, rgba(242, 11, 22, 0.11), transparent 26rem),
    linear-gradient(180deg, #050506 0%, #0c0b0d 48%, #050506 100%);
}

#events > .section__inner {
  position: relative;
  z-index: 2;
}

.events-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050506;
}

.events-video-bg.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.events-video-bg.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.events-video-bg__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.05) contrast(1.06) saturate(1.05);
}

.events-video-bg__media--mobile {
  display: none;
}

.events-video-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 11, 22, 0.16), transparent 30rem),
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

#karaoke {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 30%, rgba(242, 11, 22, 0.14), transparent 28rem),
    linear-gradient(180deg, #070607 0%, #12090b 50%, #050506 100%);
}

.karaoke-video-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(80vh, 700px);
  padding-block: clamp(92px, 9vw, 132px);
  background: #020203;
}

.karaoke-video-section__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.karaoke-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #020203;
}

.karaoke-video-bg.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.karaoke-video-bg.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.karaoke-video-bg__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.12) contrast(1.05) saturate(1.08);
}

.karaoke-video-bg__media--mobile {
  display: none;
}

.karaoke-video-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.28);
}

.karaoke-video-bg__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.27) 48%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

#contacts {
  overflow: hidden;
  isolation: isolate;
  background-image: url("../images/backgrounds/vhod.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#reviews {
  overflow: hidden;
  isolation: isolate;
  background-image: url("../images/backgrounds/pusto.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#contacts::before,
#reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#contacts::before {
  background:
    radial-gradient(circle at 12% 36%, rgba(242, 11, 22, 0.2), transparent 31rem),
    linear-gradient(90deg, rgba(82, 0, 6, 0.22) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

#reviews::before {
  background:
    radial-gradient(circle at 12% 36%, rgba(242, 11, 22, 0.2), transparent 30rem),
    linear-gradient(90deg, rgba(82, 0, 6, 0.2) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

#contacts > .section__inner,
#reviews > .section__inner {
  position: relative;
  z-index: 1;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(242, 11, 22, 0.26), transparent);
  pointer-events: none;
}

.section__inner {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.section--about-video {
  padding-top: 0;
  padding-bottom: 0;
}

.section--about-video .section__inner > .about-video:first-child {
  margin-top: 0;
}

.section__kicker,
.hero__kicker {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(242, 11, 22, 0.42);
}

.section__title {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section__lead {
  margin: 1.1rem 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 92px clamp(16px, 4vw, 48px) 32px;
  overflow: hidden;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) contrast(1.08) saturate(1.05);
  transform: scale(1.01);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 46%, rgba(242, 11, 22, 0.14), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__grain,
.cinematic-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.48), inset 0 -130px 110px rgba(0, 0, 0, 0.62);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-top: 2rem;
}

.hero__mark {
  display: grid;
  gap: 1.2rem;
  justify-items: start;
  max-width: 620px;
}

.hero__logo {
  width: clamp(196px, 22vw, 336px);
  height: clamp(196px, 22vw, 336px);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(242, 11, 22, 0.34)) drop-shadow(0 0 38px rgba(242, 11, 22, 0.14)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.58));
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 11vw, 10.2rem);
  line-height: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.hero__kicker,
.hero__meta,
.hero__line {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  color: rgba(244, 239, 232, 0.82);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.hero__meta span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 0.55rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: var(--glow);
}

.hero__line {
  margin: 0;
  max-width: 540px;
  color: rgba(244, 239, 232, 0.84);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.hero__bottom {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  width: min(calc(100% - 32px), var(--container));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(244, 239, 232, 0.62);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.scroll-cue::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--red);
  box-shadow: var(--glow);
}

.about-video-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(80vh, 700px);
  padding-block: clamp(92px, 9vw, 132px);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.about-video-section__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-scene {
  max-width: 760px;
}

.about-copy {
  position: relative;
  max-width: 760px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
}

.about-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.about-video-bg.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.about-video-bg.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.about-video-bg__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.04) contrast(1.04) saturate(1.04);
}

.about-video-bg__media--mobile {
  display: none;
}

.about-video-bg__overlay,
.about-video-bg__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-video-bg__overlay {
  background: rgba(0, 0, 0, 0.32);
}

.about-video-bg__gradient {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.about-collage {
  position: relative;
  min-height: 700px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 239, 232, 0.1);
  background: #000;
  box-shadow: var(--shadow);
  transition: transform 520ms ease, box-shadow 520ms ease, border-color 520ms ease;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.about-photo:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 11, 22, 0.34);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72), 0 0 42px rgba(242, 11, 22, 0.18);
}

.about-photo:hover img {
  filter: brightness(1.08) contrast(1.05) saturate(1.05);
  transform: scale(1.055);
}

.about-photo--main {
  inset: 0 14% 5% 0;
}

.about-photo--side {
  top: 8%;
  right: 0;
  width: 38%;
  height: 41%;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.62), 0 0 36px rgba(242, 11, 22, 0.14);
}

.about-photo--side::after {
  background:
    radial-gradient(circle at 58% 46%, transparent 0 34%, rgba(0, 0, 0, 0.14) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
}

.about-photo--side img {
  object-position: 58% 48%;
}

.about-photo--bottom {
  right: 3%;
  bottom: 0;
  width: 49%;
  height: 36%;
}

.about-badge {
  position: absolute;
  left: 5%;
  bottom: 7%;
  max-width: 260px;
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--red);
  background: rgba(3, 3, 4, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-tight);
  color: var(--paper);
  font-family: var(--font-display);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.benefit-list {
  display: grid;
  gap: 1px;
  margin-top: 2.2rem;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 232, 0.12), transparent);
}

.benefit {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 0.82rem 0;
  border: 0;
  background: var(--black-2);
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.benefit--interactive {
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.benefit--interactive:hover,
.benefit--interactive:focus-visible {
  background:
    linear-gradient(90deg, rgba(242, 11, 22, 0.16), rgba(242, 11, 22, 0.03)),
    var(--black-2);
  color: var(--paper);
  transform: translateX(5px);
  box-shadow: inset 2px 0 0 rgba(242, 11, 22, 0.88), 0 0 28px rgba(242, 11, 22, 0.12);
  outline: 0;
}

.benefit--interactive:hover .benefit__icon,
.benefit--interactive:focus-visible .benefit__icon {
  border-color: rgba(255, 72, 72, 0.9);
  background: rgba(242, 11, 22, 0.14);
  box-shadow: 0 0 24px rgba(242, 11, 22, 0.3);
}

.benefit__icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.35rem;
  border: 1px solid rgba(242, 11, 22, 0.48);
  border-radius: 999px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-shadow: var(--glow);
  box-shadow: 0 0 18px rgba(242, 11, 22, 0.16);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.benefit strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-video {
  position: relative;
  width: 100vw;
  height: 80vh;
  min-height: 720px;
  margin: clamp(54px, 7vw, 92px) calc(50% - 50vw) 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(244, 239, 232, 0.12);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 38px 140px rgba(0, 0, 0, 0.72), 0 0 82px rgba(242, 11, 22, 0.12);
}

.about-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 42%, rgba(0, 0, 0, 0.14)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.26;
}

.about-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.28) contrast(1.12) saturate(1.12);
  transform: translate3d(0, var(--about-video-parallax, 0px), 0) scale(1.035);
  transition: transform 160ms linear, filter 520ms ease;
}

.about-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 32%, rgba(242, 11, 22, 0.24), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(242, 11, 22, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.42) 100%);
}

.about-video__content {
  position: absolute;
  left: clamp(18px, 7vw, 96px);
  right: clamp(18px, 9vw, 130px);
  bottom: clamp(28px, 8vw, 96px);
  z-index: 3;
  max-width: 820px;
  color: var(--paper);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.88), 0 0 34px rgba(242, 11, 22, 0.28);
}

.about-video__kicker {
  margin: 0 0 0.72rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.6vw, 1.16rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(242, 11, 22, 0.58);
}

.about-video h3 {
  margin: 0;
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 7.4vw, 7.25rem);
  line-height: 0.88;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.about-video__content p:last-child {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(244, 239, 232, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.events-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.month-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  justify-content: end;
}

.events-controls {
  display: grid;
  gap: 0.78rem;
  justify-items: end;
}

.month-tab {
  min-height: 50px;
  padding: 0.78rem 1.12rem;
  border: 1px solid rgba(244, 239, 232, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 10, 0.64);
  color: rgba(244, 239, 232, 0.62);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.month-tab:hover,
.month-tab:focus-visible,
.month-tab.is-active {
  color: var(--paper);
  border-color: rgba(255, 40, 40, 0.88);
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.28), rgba(242, 11, 22, 0.08)),
    rgba(10, 10, 10, 0.72);
  box-shadow: 0 0 18px rgba(242, 11, 22, 0.56), 0 0 58px rgba(242, 11, 22, 0.24);
}

.archive-toggle {
  min-height: 38px;
  padding: 0.54rem 0.86rem;
  border: 1px solid rgba(242, 11, 22, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.12), rgba(242, 11, 22, 0.03)),
    rgba(8, 8, 9, 0.62);
  color: rgba(244, 239, 232, 0.78);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 34px rgba(0, 0, 0, 0.32);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.archive-toggle:hover,
.archive-toggle:focus-visible {
  color: var(--paper);
  border-color: rgba(255, 54, 54, 0.84);
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.22), rgba(242, 11, 22, 0.07)),
    rgba(8, 8, 9, 0.74);
  box-shadow: 0 0 22px rgba(242, 11, 22, 0.32), 0 18px 42px rgba(0, 0, 0, 0.42);
  transform: translateY(-1px);
}

.events-panel {
  display: none;
  margin-top: 34px;
}

.events-panel.is-active {
  display: block;
  animation: panelIn 300ms ease both;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
}

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

.events-empty {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: clamp(24px, 5vw, 52px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54)),
    url("../images/gallery/stage-red.jpg") center / cover;
  box-shadow: var(--shadow);
}

.events-empty h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-empty p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.event-card {
  position: relative;
  min-height: clamp(520px, 52vw, 620px);
  overflow: hidden;
  border-radius: 22px;
  background: #050506;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(244, 239, 232, 0.055);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 520ms ease, box-shadow 520ms ease;
}

.event-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(244, 239, 232, 0.1);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 520ms ease, box-shadow 520ms ease;
}

.event-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 16%, rgba(242, 11, 22, 0.24), transparent 24rem),
    linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.16) 100%);
  opacity: 1;
  transition: opacity 520ms ease, background 520ms ease;
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.72), 0 0 44px rgba(242, 11, 22, 0.18);
}

.event-card:hover::before,
.event-card:focus-within::before {
  border-color: rgba(242, 11, 22, 0.7);
  box-shadow: inset 0 0 0 1px rgba(242, 11, 22, 0.2), 0 0 42px rgba(242, 11, 22, 0.28);
}

.event-card:hover::after,
.event-card:focus-within::after {
  opacity: 0.86;
}

.event-card img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06) brightness(0.82);
  transform: scale(1.005);
  transition: transform 560ms ease, filter 560ms ease;
}

.event-card:hover img,
.event-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.14) contrast(1.08) brightness(0.9);
}

.event-card__body {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 32px);
  color: var(--paper);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.86);
}

.event-card__date {
  position: absolute;
  top: clamp(20px, 2.6vw, 30px);
  left: clamp(22px, 3vw, 32px);
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.54rem 0.78rem;
  border: 1px solid rgba(242, 11, 22, 0.48);
  border-radius: 999px;
  background: rgba(8, 8, 9, 0.62);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(242, 11, 22, 0.52);
  box-shadow: 0 0 24px rgba(242, 11, 22, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.event-card__status {
  position: absolute;
  top: clamp(20px, 2.6vw, 30px);
  right: clamp(22px, 3vw, 32px);
  display: inline-flex;
  width: fit-content;
  padding: 0.54rem 0.78rem;
  border: 1px solid rgba(244, 239, 232, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 9, 0.68);
  color: rgba(244, 239, 232, 0.72);
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.event-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card p {
  max-width: 30rem;
  min-height: 0;
  margin: 0.92rem 0 0;
  color: rgba(244, 239, 232, 0.82);
  font-size: clamp(0.94rem, 1.35vw, 1.08rem);
  line-height: 1.42;
}

.event-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 0.62rem;
  margin-top: clamp(1.1rem, 2vw, 1.5rem);
}

.event-card .btn {
  width: 100%;
  min-height: 52px;
  padding: 0.82rem 0.84rem;
  font-size: 0.7rem;
  line-height: 1.08;
  letter-spacing: 0.09em;
  white-space: normal;
}

.event-card__vk {
  border-color: rgba(244, 239, 232, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(7, 7, 8, 0.74);
  color: rgba(244, 239, 232, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 28px rgba(0, 0, 0, 0.32);
}

.event-card__ticket {
  border-color: rgba(255, 54, 54, 0.82);
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.24), rgba(242, 11, 22, 0.06)),
    rgba(12, 9, 9, 0.82);
  box-shadow: 0 0 24px rgba(242, 11, 22, 0.34), 0 14px 34px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(242, 11, 22, 0.16);
}

.event-card__ticket:hover,
.event-card__ticket:focus-visible {
  border-color: rgba(255, 78, 78, 0.96);
  box-shadow: 0 0 28px rgba(242, 11, 22, 0.58), 0 0 72px rgba(242, 11, 22, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.events-archive-viewer {
  min-height: calc(100svh - 74px);
  padding: clamp(18px, 3vw, 36px);
  overflow: auto;
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 11, 22, 0.18), transparent 28rem),
    linear-gradient(180deg, #060506 0%, #030304 100%);
}

.events-archive-hero {
  max-width: 900px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.events-archive-hero span {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.events-archive-hero h3 {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.84;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-archive-hero p,
.events-archive-empty {
  max-width: 560px;
  margin: 0.92rem 0 0;
  color: rgba(244, 239, 232, 0.76);
  line-height: 1.58;
}

.events-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.events-archive-grid:empty {
  display: none;
}

.events-archive-grid .event-card {
  min-height: clamp(380px, 34vw, 480px);
  border-radius: 18px;
}

.events-archive-grid .event-card__body {
  padding: clamp(18px, 2vw, 24px);
}

.events-archive-grid .event-card h3 {
  font-size: clamp(2.1rem, 3.7vw, 3.6rem);
}

.events-archive-grid .event-card p {
  font-size: 0.9rem;
}

.events-archive-grid .event-card__actions {
  grid-template-columns: 1fr;
}

.events-archive-grid .event-card__ticket {
  display: none;
}

.events-archive-grid .event-card__vk {
  max-width: 220px;
}

.menu-video-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(80vh, 700px);
  padding-block: clamp(92px, 9vw, 132px);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.menu-video-section__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.menu-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.menu-video-bg.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.menu-video-bg.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.menu-video-bg__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.05) contrast(1.05) saturate(1.04);
}

.menu-video-bg__media--mobile {
  display: none;
}

.menu-video-bg__overlay,
.menu-video-bg__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.menu-video-bg__overlay {
  background: rgba(0, 0, 0, 0.42);
}

.menu-video-bg__gradient {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.18) 100%);
}

.menu-stage {
  max-width: 720px;
}

.menu-copy {
  position: relative;
  max-width: 720px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
}

.menu-title {
  line-height: 0.86;
}

.menu-lead {
  max-width: 30rem;
  margin-top: 1rem;
  color: rgba(244, 239, 232, 0.8);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-preview {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow), 0 0 58px rgba(242, 11, 22, 0.12);
}

.menu-preview::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(242, 11, 22, 0.32);
  border-radius: inherit;
  pointer-events: none;
}

.menu-preview::after {
  content: "Открыть меню";
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(242, 11, 22, 0.7);
  border-radius: 999px;
  background: rgba(3, 3, 4, 0.72);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--glow);
  backdrop-filter: blur(12px);
}

.menu-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.menu-preview:hover img,
.menu-preview:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.08) brightness(0.82);
}

.video-disco {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(98px, 9vw, 150px) clamp(16px, 5vw, 62px) clamp(58px, 8vw, 104px);
  background: #020203;
}

.video-disco__media {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.3) contrast(1.12) saturate(1.16);
  transform: translate3d(0, var(--disco-parallax, 0px), 0) scale(1.035);
  transition: transform 160ms linear, filter 520ms ease;
}

.video-disco__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 36%, rgba(242, 11, 22, 0.3), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(46, 96, 123, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 48%, rgba(0, 0, 0, 0.14));
}

.video-disco__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(0, 0, 0, 0.26));
  opacity: 0.24;
  mix-blend-mode: screen;
}

.video-disco__content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--container));
  margin-inline: auto;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.9), 0 0 42px rgba(242, 11, 22, 0.34);
}

.video-disco__kicker {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.35vw, 1.14rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(242, 11, 22, 0.62);
}

.video-disco h2 {
  margin: 0;
  max-width: 1040px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 12rem);
  line-height: 0.78;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-disco__lead {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: rgba(244, 239, 232, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.4;
}

.video-disco__beats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  max-width: 720px;
  margin-top: 1.25rem;
}

.video-disco__beats span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.66rem 0.9rem;
  border: 1px solid rgba(255, 40, 40, 0.46);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.5);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(242, 11, 22, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.menu-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.6rem;
}

.menu-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.6rem;
  background: rgba(244, 239, 232, 0.1);
}

.menu-stat {
  padding: 1rem 0.75rem;
  background: var(--black-2);
}

.menu-stat strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.karaoke-hero {
  position: relative;
  max-width: 780px;
  min-height: 0;
}

.karaoke-poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.karaoke-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.karaoke-copy {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.88);
}

.karaoke-copy::before {
  content: none;
}

.karaoke-copy > * {
  position: relative;
  z-index: 2;
}

.karaoke-title {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.karaoke-slogan {
  margin: 0.8rem 0 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.karaoke-info {
  position: relative;
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 0.95rem);
  max-width: 560px;
  margin-top: clamp(2rem, 3vw, 2.8rem);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(3, 3, 4, 0.66), rgba(3, 3, 4, 0.38)),
    radial-gradient(circle at 88% 0%, rgba(242, 11, 22, 0.12), transparent 18rem);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42), 0 0 38px rgba(242, 11, 22, 0.08);
  backdrop-filter: blur(14px);
}

.karaoke-info::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 239, 232, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.karaoke-info__eyebrow,
.karaoke-info p {
  position: relative;
  z-index: 1;
}

.karaoke-info__eyebrow {
  display: block;
  font-family: var(--font-display);
  color: var(--red);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.karaoke-info p {
  margin: 0;
  max-width: 30rem;
  color: rgba(244, 239, 232, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.gallery-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
  margin-top: clamp(30px, 4.4vw, 56px);
}

.gallery-archive-card {
  position: relative;
  min-height: clamp(410px, 39vw, 560px);
  overflow: hidden;
  border-radius: 24px;
  background: #030304;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 46px rgba(242, 11, 22, 0.08);
  isolation: isolate;
}

.gallery-archive-card::before,
.gallery-archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-archive-card::before {
  border: 1px solid rgba(242, 11, 22, 0.22);
  border-radius: inherit;
  transition: border-color 520ms ease, box-shadow 520ms ease, opacity 520ms ease;
}

.gallery-archive-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(circle at 18% 22%, rgba(242, 11, 22, 0.18), transparent 22rem);
  transition: opacity 520ms ease;
}

.gallery-archive-card:hover::before,
.gallery-archive-card:focus-within::before {
  border-color: rgba(242, 11, 22, 0.56);
  box-shadow: inset 0 0 0 1px rgba(242, 11, 22, 0.12), 0 0 58px rgba(242, 11, 22, 0.2);
}

.gallery-archive-card:hover .gallery-archive-card__media img,
.gallery-archive-card:focus-within .gallery-archive-card__media img {
  filter: brightness(1.02) saturate(1.14) contrast(1.08);
  transform: scale(1.052);
}

.gallery-archive-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.gallery-archive-card__media img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.86) saturate(1.08) contrast(1.06);
  transform: scale(1.005);
  transition: transform 780ms ease, filter 780ms ease, opacity 780ms ease;
}

.gallery-archive-card__media img + img {
  opacity: 0;
  mix-blend-mode: screen;
}

.gallery-archive-card:hover .gallery-archive-card__media img + img,
.gallery-archive-card:focus-within .gallery-archive-card__media img + img {
  opacity: 0.2;
}

.gallery-archive-card__content {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 2.6vw, 36px);
  right: clamp(20px, 2.6vw, 36px);
  bottom: clamp(22px, 3vw, 38px);
  color: var(--paper);
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.9);
}

.gallery-archive-card__content span {
  display: inline-flex;
  margin-bottom: 0.74rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.gallery-archive-card__content h3 {
  margin: 0;
  font-family: var(--font-display);
  max-width: min(100%, 560px);
  font-size: clamp(2.3rem, 4.25vw, 4.45rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-archive-card__content p {
  max-width: 26rem;
  margin: 0.82rem 0 0;
  color: rgba(244, 239, 232, 0.8);
  font-size: 0.92rem;
  line-height: 1.56;
}

.gallery-archive-card__button {
  min-height: 44px;
  margin-top: 1.05rem;
  padding: 0.66rem 0.92rem;
  border-radius: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  background:
    linear-gradient(180deg, rgba(242, 11, 22, 0.18), rgba(242, 11, 22, 0.035)),
    rgba(8, 8, 9, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 20px rgba(242, 11, 22, 0.18), inset 0 0 0 1px rgba(242, 11, 22, 0.12);
}

.contacts-final {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18));
  box-shadow: var(--shadow);
}

.contacts-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 32%, rgba(242, 11, 22, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

.contacts-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(24px, 5vw, 56px);
}

.contact-list {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: rgba(244, 239, 232, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list a {
  display: inline-block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 2.35rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-person-name,
.contact-note {
  display: block;
  margin-top: 0.36rem;
  color: rgba(244, 239, 232, 0.6);
  font-size: 0.86rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.contact-note {
  max-width: 34rem;
  margin-bottom: 0;
}

.contact-director-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0.2rem;
}

.contact-list .contact-director-row .contact-phone {
  margin-top: 0;
}

.contact-mini-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.contact-list .contact-mini-btn {
  min-height: 34px;
  margin-top: 0;
  padding: 0.48rem 0.62rem;
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.contact-list .contact-email {
  margin-top: 0.52rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: none;
}

.map-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 11, 22, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    #0b0b0d;
  box-shadow: inset 0 0 0 1px rgba(244, 239, 232, 0.1), 0 28px 92px rgba(0, 0, 0, 0.54);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
  filter: grayscale(0.8) invert(0.92) contrast(1.08) brightness(0.72);
  opacity: 0.76;
}

.map-card__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 1rem;
  border-left: 2px solid var(--red);
  background: rgba(3, 3, 4, 0.72);
  backdrop-filter: blur(14px);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid rgba(244, 239, 232, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 14% 16%, rgba(242, 11, 22, 0.18), transparent 28rem),
    rgba(5, 5, 6, 0.78);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.68), 0 0 86px rgba(242, 11, 22, 0.12);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.reviews-shell::before,
.reviews-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reviews-shell::before {
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(242, 11, 22, 0.18), transparent 34%),
    url("../images/gallery/poster-stairs.jpg") center / cover;
  opacity: 0.18;
  filter: saturate(0.88) contrast(1.12);
}

.reviews-shell::after {
  z-index: 0;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.reviews-head,
.reviews-layout,
.reviews-actions {
  position: relative;
  z-index: 1;
}

.reviews-head {
  max-width: 760px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.62fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.rating-card,
.review-card {
  border: 1px solid rgba(244, 239, 232, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(6, 6, 7, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.rating-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 11, 22, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 28px rgba(242, 11, 22, 0.18), 0 34px 82px rgba(0, 0, 0, 0.46);
}

.rating-card {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 18%, rgba(242, 11, 22, 0.22), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.014)),
    rgba(4, 4, 5, 0.82);
}

.rating-card__source,
.rating-card__stats,
.rating-card__link {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rating-card__source {
  color: rgba(244, 239, 232, 0.54);
  font-size: 0.8rem;
}

.rating-card strong {
  display: block;
  margin: 1.1rem 0 0.85rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 9vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0.03em;
  text-shadow: 0 0 36px rgba(242, 11, 22, 0.32), 0 18px 42px rgba(0, 0, 0, 0.62);
}

.rating-card strong span,
.review-card__stars {
  color: var(--red);
  text-shadow: 0 0 18px rgba(242, 11, 22, 0.54);
}

.rating-card__stats {
  display: grid;
  gap: 0.46rem;
  color: rgba(244, 239, 232, 0.78);
  font-size: 0.92rem;
}

.rating-card__link {
  width: fit-content;
  margin-top: 2rem;
  color: var(--paper);
  font-size: 0.76rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 11, 22, 0.7);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.rating-card__link:hover,
.rating-card__link:focus-visible {
  color: var(--red);
  text-shadow: 0 0 18px rgba(242, 11, 22, 0.48);
}

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

.review-card {
  min-height: 198px;
  display: grid;
  align-content: space-between;
  gap: 1.1rem;
  padding: 1.18rem;
  border-radius: var(--radius);
}

.review-card__stars {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.review-card p {
  margin: 0;
  color: rgba(244, 239, 232, 0.86);
  font-size: clamp(0.94rem, 1.25vw, 1.05rem);
  line-height: 1.5;
}

.review-card strong {
  color: rgba(244, 239, 232, 0.58);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: clamp(22px, 3vw, 34px);
}

.site-footer {
  padding: 32px clamp(16px, 4vw, 42px);
  color: rgba(244, 239, 232, 0.48);
  background: var(--black);
}

.site-footer__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.site-footer strong {
  color: var(--paper);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
}

.modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: none;
  grid-template-rows: auto 1fr;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
}

.modal.is-open {
  display: grid;
}

.modal__bar {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px clamp(14px, 3vw, 24px);
  border-bottom: 1px solid rgba(244, 239, 232, 0.12);
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(18px);
}

.modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 239, 232, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: rgba(242, 11, 22, 0.72);
  background: rgba(242, 11, 22, 0.13);
  box-shadow: var(--glow);
}

.menu-viewer {
  min-height: 0;
  overflow: auto;
  padding: clamp(12px, 3vw, 26px);
  overscroll-behavior: contain;
}

.menu-viewer img {
  width: min(1280px, 100%);
  max-width: none;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox {
  z-index: 160;
  grid-template-rows: 1fr;
  place-items: center;
  padding: 78px 16px 16px;
  background:
    linear-gradient(110deg, rgba(242, 11, 22, 0.18), transparent 38%),
    rgba(0, 0, 0, 0.94);
}

.lightbox .modal__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100svh - 110px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__nav {
  position: fixed;
  z-index: 3;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 72px;
  border: 1px solid rgba(244, 239, 232, 0.14);
  border-radius: 7px;
  background: rgba(3, 3, 4, 0.58);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  border-color: rgba(242, 11, 22, 0.72);
  background: rgba(242, 11, 22, 0.16);
  box-shadow: var(--glow);
}

.lightbox__nav--prev {
  left: clamp(10px, 2.6vw, 34px);
}

.lightbox__nav--next {
  right: clamp(10px, 2.6vw, 34px);
}

.lightbox__caption {
  position: fixed;
  z-index: 3;
  left: 50%;
  bottom: clamp(14px, 3vw, 28px);
  width: min(720px, calc(100% - 32px));
  margin: 0;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(244, 239, 232, 0.12);
  border-radius: 7px;
  background: rgba(3, 3, 4, 0.72);
  color: rgba(244, 239, 232, 0.78);
  font-size: 0.86rem;
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.photo-reports-modal,
.atmosphere-modal {
  z-index: 140;
  background:
    linear-gradient(115deg, rgba(242, 11, 22, 0.18), transparent 32%),
    linear-gradient(180deg, #030304 0%, #090909 46%, #020203 100%);
}

.photo-reports-modal__count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border: 1px solid rgba(244, 239, 232, 0.12);
  border-radius: 999px;
  color: rgba(244, 239, 232, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-reports-viewer {
  min-height: 0;
  overflow: auto;
  padding: clamp(14px, 3vw, 34px);
  overscroll-behavior: contain;
}

.photo-reports-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: end;
  min-height: clamp(360px, 48vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, 0.1);
  border-radius: var(--radius);
  background: #030304;
  box-shadow: var(--shadow), 0 0 70px rgba(242, 11, 22, 0.12);
}

.photo-reports-hero::before,
.photo-reports-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.photo-reports-hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 100%);
}

.photo-reports-hero::after {
  z-index: 3;
  border: 1px solid rgba(242, 11, 22, 0.18);
  border-radius: inherit;
}

.photo-reports-hero__media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 4px;
}

.photo-reports-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.18) contrast(1.08);
}

.photo-reports-hero__content {
  position: relative;
  z-index: 4;
  grid-column: 2;
  padding: clamp(22px, 4vw, 46px);
}

.photo-reports-hero__content span,
.photo-reports-strip span {
  color: var(--red);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.photo-reports-hero__content h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 6.2rem);
  line-height: 0.84;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-reports-hero__content p {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: rgba(244, 239, 232, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.photo-reports-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: clamp(16px, 2.4vw, 28px);
}

.photo-reports-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.86rem;
  border: 1px solid rgba(244, 239, 232, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 239, 232, 0.78);
  font-size: 0.74rem;
  text-shadow: none;
}

.photo-reports-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 18px);
  margin-top: clamp(18px, 2.6vw, 32px);
}

.photo-report-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, 0.11);
  border-radius: 18px;
  background: #040405;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  cursor: zoom-in;
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.photo-report-item--wide {
  grid-column: auto;
}

.photo-report-item--tall {
  grid-row: auto;
}

.photo-report-item::before,
.photo-report-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.photo-report-item::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.68) 100%),
    radial-gradient(circle at 20% 18%, rgba(242, 11, 22, 0.1), transparent 18rem);
  opacity: 0.86;
}

.photo-report-item::after {
  border: 1px solid rgba(242, 11, 22, 0);
  border-radius: inherit;
  opacity: 0;
}

.photo-report-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.9) saturate(1.08) contrast(1.06);
  transform: scale(1.005);
  transition: transform 620ms ease, filter 620ms ease;
}

.photo-report-item span {
  position: absolute;
  z-index: 3;
  left: 12px;
  right: 12px;
  bottom: 11px;
  color: rgba(244, 239, 232, 0.78);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.photo-report-item:hover,
.photo-report-item:focus-visible {
  border-color: rgba(242, 11, 22, 0.55);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.5), 0 0 30px rgba(242, 11, 22, 0.18);
  transform: translateY(-2px);
}

.photo-report-item:hover::after,
.photo-report-item:focus-visible::after {
  opacity: 1;
  border-color: rgba(242, 11, 22, 0.46);
}

.photo-report-item:hover img,
.photo-report-item:focus-visible img {
  filter: brightness(1.04) saturate(1.14) contrast(1.08);
  transform: scale(1.045);
}

.atmosphere-modal {
  background:
    radial-gradient(circle at 82% 12%, rgba(46, 96, 123, 0.12), transparent 28rem),
    radial-gradient(circle at 16% 18%, rgba(242, 11, 22, 0.2), transparent 30rem),
    linear-gradient(180deg, #020203 0%, #070707 52%, #020203 100%);
}

.atmosphere-viewer {
  min-height: 0;
  overflow: auto;
  display: block;
  padding: clamp(14px, 3vw, 38px);
  overscroll-behavior: contain;
}

.atmosphere-hero {
  position: relative;
  min-height: clamp(300px, 34vw, 460px);
  overflow: hidden;
  border: 1px solid rgba(242, 11, 22, 0.2);
  border-radius: 22px;
  background: #030304;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.54), 0 0 44px rgba(242, 11, 22, 0.1);
  isolation: isolate;
}

.atmosphere-hero::before,
.atmosphere-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.atmosphere-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 18% 28%, rgba(242, 11, 22, 0.28), transparent 22rem);
}

.atmosphere-hero::after {
  border: 1px solid rgba(244, 239, 232, 0.08);
  border-radius: inherit;
}

.atmosphere-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.74) saturate(1.04) contrast(1.1);
  transform: scale(1.02);
}

.atmosphere-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(620px, 100%);
  min-height: inherit;
  padding: clamp(24px, 4vw, 54px);
}

.atmosphere-hero__content span {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(0.76rem, 1.2vw, 0.98rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.atmosphere-hero__content h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.72);
}

.atmosphere-hero__content p {
  max-width: 540px;
  margin: clamp(14px, 2vw, 22px) 0 0;
  color: rgba(244, 239, 232, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 18px);
  margin-top: clamp(18px, 2.8vw, 32px);
}

.atmosphere-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, 0.11);
  border-radius: 20px;
  background: #030304;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
  cursor: zoom-in;
  isolation: isolate;
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.atmosphere-frame::before,
.atmosphere-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.atmosphere-frame::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 38%, rgba(0, 0, 0, 0.76) 100%),
    radial-gradient(circle at 18% 18%, rgba(242, 11, 22, 0.12), transparent 16rem);
}

.atmosphere-frame::after {
  border: 1px solid rgba(242, 11, 22, 0);
  border-radius: inherit;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.atmosphere-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(1.06) contrast(1.06);
  transform: scale(1.01) translateY(0);
  transition: transform 780ms ease, filter 780ms ease;
}

.atmosphere-frame[data-gallery-src*="V90QHsp5"] img {
  object-position: center 38%;
}

.atmosphere-frame span {
  position: absolute;
  z-index: 3;
  left: clamp(14px, 2vw, 22px);
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  color: rgba(244, 239, 232, 0.82);
  font-family: var(--font-display);
  font-size: clamp(0.86rem, 1.4vw, 1.2rem);
  letter-spacing: 0.1em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.82);
}

.atmosphere-frame:hover::after,
.atmosphere-frame:focus-visible::after {
  border-color: rgba(242, 11, 22, 0.52);
  box-shadow: inset 0 0 0 1px rgba(242, 11, 22, 0.12), 0 0 42px rgba(242, 11, 22, 0.18);
}

.atmosphere-frame:hover,
.atmosphere-frame:focus-visible {
  border-color: rgba(242, 11, 22, 0.34);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.48), 0 0 34px rgba(242, 11, 22, 0.14);
  transform: translateY(-2px);
}

.atmosphere-frame:hover img,
.atmosphere-frame:focus-visible img {
  filter: brightness(1.02) saturate(1.18) contrast(1.1);
  transform: scale(1.045);
}

.feature-modal {
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 11, 22, 0.28), transparent 28rem),
    radial-gradient(circle at 84% 76%, rgba(242, 11, 22, 0.12), transparent 24rem),
    rgba(0, 0, 0, 0.92);
}

.feature-modal__body {
  min-height: 0;
  overflow: auto;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  overscroll-behavior: contain;
}

.feature-modal__frame {
  position: relative;
  width: min(100%, 1120px);
  margin: 0;
  padding: clamp(10px, 1.5vw, 16px);
  overflow: hidden;
  border: 1px solid rgba(242, 11, 22, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(7, 7, 8, 0.82);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72), 0 0 64px rgba(242, 11, 22, 0.22);
}

.feature-modal__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(242, 11, 22, 0.14), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 4px);
  opacity: 0.56;
  mix-blend-mode: screen;
}

.feature-modal__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(76svh, 920px);
  object-fit: contain;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.54);
}

.feature-modal__caption {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 1rem clamp(1rem, 2vw, 1.35rem);
  border-left: 2px solid var(--red);
  background: rgba(3, 3, 4, 0.66);
  color: rgba(244, 239, 232, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.42rem);
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: pre-line;
  text-shadow: 0 0 22px rgba(242, 11, 22, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav-toggle {
    display: grid;
  }

  .about-scene,
  .menu-stage,
  .karaoke-hero,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .rating-card {
    min-height: 320px;
  }

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

  .events-controls {
    justify-items: start;
  }

  .month-tabs {
    justify-content: start;
  }

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

  .karaoke-copy {
    min-height: 520px;
  }

  .photo-reports-hero {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .photo-reports-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(242, 11, 22, 0.12), transparent 58%);
  }

  .photo-reports-hero__content {
    grid-column: 1;
    align-self: end;
  }

  .photo-reports-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-report-item {
    grid-column: auto;
  }

  .photo-report-item--wide {
    grid-column: auto;
  }

  .atmosphere-viewer {
    padding: clamp(14px, 2.6vw, 28px);
  }

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

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
    overflow-x: hidden;
  }

  #reviews {
    background-position: 58% center;
  }

  #contacts {
    background-position: 56% center;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span,
  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 82px 16px 118px;
  }

  .hero__video {
    filter: brightness(1.26) contrast(1.08) saturate(1.06);
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 36% 35%, rgba(242, 11, 22, 0.12), transparent 19rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 46%, rgba(0, 0, 0, 0.48) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.1));
  }

  .hero__mark {
    gap: 0.78rem;
  }

  .hero__logo {
    width: 180px;
    height: 180px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 22vw, 6rem);
  }

  .hero__meta {
    font-size: 0.76rem;
    gap: 0.3rem;
  }

  .hero__line {
    max-width: 21rem;
    font-size: 0.92rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0.55rem;
  }

  .hero__actions .btn {
    min-height: 54px;
    padding-inline: 0.62rem;
    font-size: 0.78rem;
  }

  .hero__bottom {
    bottom: 18px;
    display: grid;
    gap: 0.35rem;
    font-size: 0.7rem;
  }

  .scroll-cue::before {
    width: 24px;
  }

  .section {
    padding: 76px 16px;
  }

  .section__title {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .section__lead {
    font-size: 0.92rem;
  }

  #gallery {
    padding-block: 64px;
  }

  #gallery .section__title {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    line-height: 0.98;
  }

  #gallery .section__lead {
    max-width: 22rem;
    margin-top: 0.9rem;
  }

  .about-video-section {
    height: auto;
    min-height: 760px;
    padding: 88px 16px;
  }

  .about-scene,
  .about-copy {
    max-width: none;
  }

  .about-video-bg__media--desktop {
    display: none;
  }

  .about-video-bg__media--mobile {
    display: block;
    object-position: center center;
  }

  .menu-video-section {
    height: auto;
    min-height: 760px;
    padding: 88px 16px;
  }

  .menu-stage,
  .menu-copy {
    max-width: none;
  }

  .menu-video-bg__media--desktop {
    display: none;
  }

  .menu-video-bg__media--mobile {
    display: block;
    object-position: center center;
  }

  .about-collage {
    min-height: 500px;
  }

  .about-photo--main {
    inset: 0 0 24% 0;
  }

  .about-photo--side {
    display: none;
  }

  .about-photo--bottom {
    width: 64%;
    height: 38%;
    right: 0;
    bottom: 0;
  }

  .about-badge {
    left: 0;
    bottom: 8%;
    max-width: 230px;
    font-size: 0.78rem;
  }

  .benefit {
    min-height: 58px;
    grid-template-columns: 2.8rem 1fr;
  }

  .benefit strong {
    font-size: 1.26rem;
  }

  .about-video {
    width: calc(100vw - 32px);
    height: auto;
    min-height: min(72svh, 640px);
    margin-top: 44px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-video__media {
    inset: -3%;
    width: 106%;
    height: 106%;
    object-position: center center;
    filter: brightness(1.42) contrast(1.1) saturate(1.1);
    transform: translate3d(0, calc(var(--about-video-parallax, 0px) * 0.55), 0) scale(1.02);
  }

  .about-video__overlay {
    background:
      radial-gradient(circle at 28% 28%, rgba(242, 11, 22, 0.2), transparent 36%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.34) 100%);
  }

  .about-video__content {
    left: 16px;
    right: 16px;
    bottom: 24px;
  }

  .about-video__kicker {
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  .about-video h3 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
    line-height: 0.94;
  }

  .about-video__content p:last-child {
    max-width: 26rem;
    margin-top: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .month-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .events-controls {
    gap: 0.7rem;
    justify-items: stretch;
  }

  .month-tabs::-webkit-scrollbar {
    display: none;
  }

  .month-tab {
    flex: 0 0 auto;
  }

  .events-video-bg__media--desktop {
    display: none;
  }

  .events-video-bg__media--mobile {
    display: block;
    object-position: center center;
  }

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

  .event-card,
  .event-card img {
    min-height: 540px;
  }

  .video-disco {
    min-height: 100svh;
    padding: 90px 16px 42px;
  }

  .video-disco__media {
    inset: -3%;
    width: 106%;
    height: 106%;
    object-position: center center;
    filter: brightness(1.42) contrast(1.1) saturate(1.14);
    transform: translate3d(0, calc(var(--disco-parallax, 0px) * 0.55), 0) scale(1.02);
  }

  .video-disco__overlay {
    background:
      radial-gradient(circle at 26% 30%, rgba(242, 11, 22, 0.26), transparent 35%),
      radial-gradient(circle at 78% 22%, rgba(46, 96, 123, 0.32), transparent 34%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.36) 100%);
  }

  .video-disco__content {
    padding-bottom: 10px;
  }

  .video-disco__kicker {
    max-width: 18rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  .video-disco h2 {
    max-width: 21rem;
    font-size: clamp(3.7rem, 18vw, 5.5rem);
    line-height: 0.82;
  }

  .video-disco__lead {
    margin-top: 0.85rem;
    font-size: 1rem;
  }

  .video-disco__beats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .video-disco__beats span {
    min-height: 46px;
    justify-content: center;
    padding: 0.62rem 0.7rem;
    font-size: 0.95rem;
  }

  .menu-stats {
    grid-template-columns: 1fr;
  }

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

  .karaoke-video-section {
    height: auto;
    min-height: 760px;
    padding: 88px 16px;
  }

  .karaoke-video-bg__media--desktop {
    display: none;
  }

  .karaoke-video-bg__media--mobile {
    display: block;
    object-position: center center;
  }

  .karaoke-copy {
    min-height: 0;
    padding: 0;
  }

  .karaoke-info {
    max-width: none;
    margin-top: 1.5rem;
    padding: 20px;
    border-radius: 20px;
  }

  .karaoke-info__eyebrow {
    font-size: clamp(1.05rem, 6vw, 1.5rem);
  }

  .karaoke-info p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .events-archive-viewer {
    padding: 18px;
  }

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

  .events-archive-grid .event-card,
  .events-archive-grid .event-card img {
    min-height: 500px;
  }

  .gallery-archive {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .gallery-archive-card {
    min-height: clamp(310px, 78vw, 430px);
    border-radius: 22px;
  }

  .gallery-archive-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .gallery-archive-card__content span {
    margin-bottom: 0.62rem;
    font-size: 0.68rem;
  }

  .gallery-archive-card__content h3 {
    font-size: clamp(2.05rem, 10vw, 3.6rem);
    line-height: 0.98;
  }

  .gallery-archive-card__content p {
    max-width: 21rem;
    margin-top: 0.62rem;
    font-size: 0.84rem;
    line-height: 1.46;
  }

  .gallery-archive-card__button {
    min-height: 42px;
    margin-top: 0.78rem;
    padding: 0.58rem 0.78rem;
    font-size: 0.62rem;
  }

  .photo-reports-viewer {
    padding: 12px;
  }

  .photo-reports-modal .modal__bar,
  .atmosphere-modal .modal__bar {
    gap: 0.58rem;
    align-items: flex-start;
  }

  .photo-reports-modal__count {
    display: none;
  }

  .photo-reports-hero {
    min-height: min(76svh, 620px);
    border-radius: 14px;
  }

  .photo-reports-hero__media {
    grid-template-columns: 1fr;
  }

  .photo-reports-hero__media img:nth-child(2) {
    display: none;
  }

  .photo-reports-hero__content {
    padding: 20px;
  }

  .photo-reports-hero__content span {
    font-size: 0.72rem;
  }

  .photo-reports-hero__content h3 {
    font-size: clamp(2.45rem, 14vw, 4.4rem);
  }

  .photo-reports-hero__content p {
    font-size: 0.92rem;
  }

  .photo-reports-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -12px;
    padding-inline: 12px;
    scrollbar-width: none;
  }

  .photo-reports-strip::-webkit-scrollbar {
    display: none;
  }

  .photo-reports-strip span {
    flex: 0 0 auto;
  }

  .photo-reports-masonry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .photo-report-item,
  .photo-report-item--wide {
    grid-column: auto;
  }

  .photo-report-item--tall {
    grid-row: auto;
  }

  .photo-report-item span {
    font-size: 0.74rem;
  }

  .atmosphere-viewer {
    padding: 12px;
  }

  .atmosphere-hero {
    min-height: clamp(250px, 76vw, 360px);
    border-radius: 18px;
  }

  .atmosphere-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.76) 100%),
      radial-gradient(circle at 22% 24%, rgba(242, 11, 22, 0.24), transparent 18rem);
  }

  .atmosphere-hero__content {
    padding: 22px;
  }

  .atmosphere-hero__content h3 {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  .atmosphere-hero__content p {
    max-width: 28rem;
    font-size: 0.96rem;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }

  .atmosphere-frame {
    border-radius: 18px;
  }

  .lightbox {
    padding: 68px 10px 78px;
  }

  .lightbox img {
    max-height: calc(100svh - 154px);
    border-radius: 10px;
  }

  .lightbox__nav {
    width: 38px;
    height: 52px;
    border-radius: 10px;
    background: rgba(3, 3, 4, 0.68);
    font-size: 1.7rem;
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }

  .lightbox__caption {
    bottom: 12px;
    padding: 0.62rem 0.78rem;
    font-size: 0.8rem;
  }

  .contacts-grid {
    padding: 20px;
  }

  .reviews-shell {
    padding: 20px;
  }

  .reviews-layout {
    gap: 18px;
    margin-top: 28px;
  }

  .rating-card {
    min-height: 280px;
    padding: 20px;
  }

  .rating-card strong {
    font-size: clamp(4.8rem, 24vw, 6.4rem);
  }

  .reviews-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-inline: -20px;
    padding: 2px 20px 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 220px;
    scroll-snap-align: start;
  }

  .reviews-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reviews-actions .btn {
    min-height: 54px;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

  .site-footer__inner {
    display: grid;
  }

  .modal__bar {
    align-items: flex-start;
  }

  .modal__controls {
    flex-wrap: wrap;
    justify-content: end;
  }

  .feature-modal__body {
    padding: 12px;
  }

  .feature-modal__frame {
    padding: 8px;
  }

  .feature-modal__frame img {
    max-height: calc(100svh - 210px);
  }

  .feature-modal__caption {
    margin-top: 0.72rem;
    padding: 0.85rem;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    margin-top: 0.35rem;
  }

  .hero__actions .btn {
    min-height: 48px;
    padding: 0.64rem 0.48rem;
    font-size: 0.72rem;
  }

  .hero__actions .btn:last-child {
    grid-column: 1 / -1;
  }

  .hero__bottom {
    bottom: 12px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section--about-video {
    padding: 0 16px 54px;
  }

  .section--about-video .section__inner {
    width: 100%;
  }

  .about-video {
    width: 100%;
    min-height: min(62svh, 540px);
    margin-top: 0;
  }

  .about-video-section,
  .menu-video-section,
  .karaoke-video-section {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .menu-video-section {
    min-height: 620px;
  }

  .video-disco {
    min-height: 680px;
    padding-top: 66px;
    padding-bottom: 38px;
  }

  .events-panel {
    margin-top: 24px;
  }

  .events-grid {
    gap: 24px;
  }

  .gallery-archive {
    gap: 14px;
  }

  #events {
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-card,
  .event-card img {
    min-height: clamp(520px, 138vw, 600px);
  }

  .event-card {
    border-radius: 20px;
  }

  .event-card__body {
    padding: 20px;
  }

  .event-card__date {
    top: 18px;
    left: 20px;
    padding: 0.48rem 0.66rem;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
  }

  .event-card h3 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .event-card p {
    margin-top: 0.72rem;
    font-size: 0.9rem;
  }

  .event-card__actions {
    grid-template-columns: 1fr;
    gap: 0.52rem;
    margin-top: 1rem;
  }

  .event-card .btn {
    min-height: 50px;
    font-size: 0.66rem;
  }

  .month-tab {
    min-height: 44px;
    padding: 0.62rem 0.9rem;
    font-size: 0.78rem;
  }

  .benefit-list {
    margin-top: 1.45rem;
  }

  .benefit {
    min-height: 54px;
  }

  .menu-actions,
  .contact-buttons {
    gap: 0.55rem;
    margin-top: 1.1rem;
  }

  .gallery-archive {
    margin-top: 24px;
  }

  .reviews-shell {
    padding: 18px;
  }

  .reviews-layout {
    gap: 14px;
    margin-top: 22px;
  }

  .rating-card {
    min-height: 230px;
  }

  .review-card {
    min-height: 198px;
  }

  .reviews-actions {
    gap: 0.55rem;
    margin-top: 18px;
  }

  .reviews-track {
    margin-inline: -18px;
    padding: 2px 18px 10px;
  }
}

@media (max-width: 420px) {
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
