/* Палитра + --site-header-offset (фикс. шапка, scroll-padding, main) */
:root {
  --bg-deep: #0a0806;
  --bg-card: rgba(23, 19, 13, 0.65);
  --gold-dark: #b37215;
  --gold-mid: #cf8d21;
  --gold-bright: #e6a730;
  --gold-light: #f0c154;
  --gold-glare: #f8e9bd;
  --amber-deep: #955a0f;
  --shadow-brown: #3a2813;
  --text: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.62);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  --radius: 20px;
  --shadow-glow: 0 0 60px rgba(207, 141, 33, 0.12);
  --site-header-offset: clamp(4.85rem, 3.4rem + 4.8vw, 7rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

main {
  padding-top: var(--site-header-offset);
}

main > .section:first-child {
  padding-top: clamp(1rem, 2.5vw, 1.85rem);
}

a {
  color: var(--gold-light);
  text-decoration: none;
}
a:hover {
  color: var(--gold-glare);
}

/* Фон: «живые» золотые пятна */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-effects__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float-orb 18s ease-in-out infinite;
}
.bg-effects__orb--1 {
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  background: radial-gradient(circle, var(--gold-mid) 0%, transparent 70%);
  top: -10%;
  right: -15%;
  animation-delay: 0s;
}
.bg-effects__orb--2 {
  width: min(55vw, 380px);
  height: min(55vw, 380px);
  background: radial-gradient(circle, var(--amber-deep) 0%, transparent 70%);
  bottom: 5%;
  left: -20%;
  animation-delay: -6s;
  opacity: 0.28;
}
.bg-effects__orb--3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--gold-bright) 0%, transparent 65%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -12s;
  opacity: 0.15;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3%, 4%) scale(1.05);
  }
  66% {
    transform: translate(-2%, -3%) scale(0.97);
  }
}

.bg-effects__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(207, 141, 33, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(207, 141, 33, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - clamp(1.15rem, 4.5vw, 2.5rem)));
  margin-inline: auto;
}

/* Шапка */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.92) 0%,
    rgba(10, 8, 6, 0.65) 70%,
    transparent 100%
);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: min(1120px, calc(100% - clamp(1.15rem, 4.5vw, 2.5rem)));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-decoration: none;
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(207, 141, 33, 0.35);
  box-shadow: var(--shadow-glow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: flex-start;
  margin-left: auto;
}

.nav a {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--gold-glare);
}

.nav a[aria-current="page"] {
  color: var(--gold-light);
}

.nav__cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--bg-deep) !important;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(207, 141, 33, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 167, 48, 0.45);
  color: var(--bg-deep) !important;
}

/* Мобильное меню: гамбургер + выезд справа */
.site-header__menu-btn {
  display: none;
  position: relative;
  z-index: 55;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: radial-gradient(circle at 30% 25%, rgba(230, 167, 48, 0.18), rgba(10, 8, 6, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(207, 141, 33, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.45);
  color: var(--gold-glare);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header__menu-btn:hover {
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.22),
    0 10px 32px rgba(207, 141, 33, 0.25);
}

.site-header__menu-btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.site-header__menu-btn-box {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 22px;
  height: 16px;
  display: grid;
  align-content: space-between;
}

.site-header__menu-line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-glare));
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-line:nth-child(1) {
  translate: 0 7px;
  rotate: 45deg;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-line:nth-child(2) {
  opacity: 0;
  scale: 0.2;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-line:nth-child(3) {
  translate: 0 -7px;
  rotate: -45deg;
}

.site-header__nav-backdrop {
  display: none;
}

body.site-nav-is-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  /* Без backdrop-filter у шапки: иначе position:fixed у drawer «прилипает» к шапке и не покрывает экран */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(
      to bottom,
      rgba(10, 8, 6, 0.97) 0%,
      rgba(10, 8, 6, 0.9) 55%,
      rgba(10, 8, 6, 0.45) 100%
    );
  }

  .site-header.site-header--nav-open {
    z-index: 250;
  }

  .site-header__menu-btn {
    display: grid;
    place-items: center;
    z-index: 70;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    z-index: 52;
  }

  .site-header__nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(4, 3, 2, 0.82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .site-header.site-header--nav-open .site-header__nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header:not(.site-header--nav-open) .nav {
    pointer-events: none;
  }

  .site-header.site-header--nav-open .nav {
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    z-index: 61;
    top: 0;
    right: 0;
    bottom: 0;
    margin-left: 0 !important;
    width: min(17.75rem, 88vw);
    max-width: 100vw;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    row-gap: 0;
    padding: clamp(5.85rem, 17vw, 6.85rem) 1.35rem max(2rem, env(safe-area-inset-bottom, 0px))
      calc(1.35rem + 3px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #0f0d0b;
    background: linear-gradient(180deg, #14110d 0%, #0d0b09 52%, #0f0d0b 100%);
    border-left: 1px solid rgba(207, 141, 33, 0.45);
    box-shadow:
      -28px 0 80px rgba(0, 0, 0, 0.75),
      inset 1px 0 0 rgba(248, 233, 189, 0.08);
    transform: translate3d(105%, 0, 0);
    visibility: hidden;
    transition:
      transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0.32s;
  }

  .nav::before {
    content: "Меню";
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold-glare);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(207, 141, 33, 0.35);
  }

  .nav a {
    position: relative;
    padding: 0.78rem 0.95rem;
    margin: 2px 0;
    border-radius: 11px;
    font-size: 0.96rem;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.88);
    background: transparent;
    opacity: 1;
    transform: none;
    transition:
      background 0.2s ease,
      color 0.2s ease;
    overflow: hidden;
  }

  .nav a::after {
    content: "";
    position: absolute;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.42rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(207, 141, 33, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(207, 141, 33, 0.1);
    color: var(--gold-glare);
  }

  .nav a:focus-visible::after {
    opacity: 1;
  }

  .nav a[aria-current="page"] {
    background: rgba(207, 141, 33, 0.14);
    color: var(--gold-glare);
  }

  .nav__cta {
    margin-top: 0.85rem !important;
    text-align: center;
    justify-content: center;
    padding: 0.82rem 1.2rem !important;
    letter-spacing: 0.06em;
    box-shadow:
      inset 0 0 0 1px rgba(248, 233, 189, 0.12),
      0 12px 32px rgba(207, 141, 33, 0.28);
  }

  .site-header--nav-open .nav {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__menu-line {
    transition: none;
  }

  .site-header__nav-backdrop {
    transition: none;
  }

  @media (max-width: 960px) {
    .nav {
      transition: none;
    }
  }
}

/* Герой */
.hero {
  position: relative;
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
}

.page-home .hero {
  padding-top: clamp(1.75rem, 4vw, 2.85rem);
}

/* Главная: карусель сразу после героя — без огромной «пустой» середины экрана */
.hero:has(+ .home-about-showcase) {
  min-height: 0;
  padding-bottom: clamp(0.6rem, 2vw, 1.1rem);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.1s;
}

.hero__tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.25s;
}

.hero__title span {
  background: linear-gradient(
    120deg,
    var(--gold-glare) 0%,
    var(--gold-bright) 35%,
    var(--gold-mid) 70%,
    var(--gold-light) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.4s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.55s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid) 50%, var(--gold-bright));
  color: var(--bg-deep);
  box-shadow: 0 6px 28px rgba(179, 114, 21, 0.45);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(207, 141, 33, 0.5);
}

.btn--ghost {
  background: rgba(207, 141, 33, 0.08);
  color: var(--gold-glare);
  border: 1px solid rgba(207, 141, 33, 0.35);
}

.btn--ghost:hover {
  background: rgba(207, 141, 33, 0.15);
  border-color: rgba(240, 193, 84, 0.5);
  transform: translateY(-2px);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1s ease forwards 0.35s;
}

.hero__frame {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: var(--radius);
  padding: 10px;
  background: linear-gradient(
    145deg,
    rgba(207, 141, 33, 0.45),
    rgba(149, 90, 15, 0.25) 40%,
    rgba(58, 40, 19, 0.6)
  );
  box-shadow: var(--shadow-glow), 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: hero-glow 5s ease-in-out infinite;
}

@keyframes hero-glow {
  0%,
  100% {
    box-shadow: var(--shadow-glow), 0 24px 80px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow: 0 0 80px rgba(207, 141, 33, 0.22), 0 24px 80px rgba(0, 0, 0, 0.45);
  }
}

.hero__frame-inner {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: var(--shadow-brown);
}

.hero__frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.hero__badge {
  position: absolute;
  bottom: -12px;
  right: -8px;
  padding: 0.65rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(207, 141, 33, 0.35);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-glare);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Без translateY у предка — иначе на моб. WebKit/Chromium часто ломается touch-scroll во внутреннем overflow */
@keyframes menu-list-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Секции общие */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  position: relative;
}

/* Главная: «О нас» и «Меню» — один ряд, две равные колонки */
.home-intro-cards {
  display: grid;
  gap: clamp(1rem, 3vw, 1.35rem);
  align-items: stretch;
}

.home-intro-cards__cell {
  min-width: 0;
  scroll-margin-top: var(--site-header-offset);
}

.menu-teaser--tile {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.menu-teaser--tile .menu-teaser__inner {
  flex: 1;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .menu-teaser--tile .menu-teaser__inner {
    grid-template-columns: 1fr auto;
    justify-items: start;
  }
}

.menu-teaser--tile p {
  max-width: none;
}

@media (min-width: 880px) {
  .home-intro-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.section.page-home-intro-row {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-intro-cards__cell {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.page-home .home-intro-cards:not(.home-intro-cards--entered) .home-intro-cards__cell {
  opacity: 0;
}

.page-home .home-intro-cards:not(.home-intro-cards--entered) .home-intro-cards__cell:first-child {
  transform: translate3d(calc(-1 * clamp(1.25rem, 5vw, 3.5rem)), 0, 0);
}

.page-home .home-intro-cards:not(.home-intro-cards--entered) .home-intro-cards__cell:last-child {
  transform: translate3d(clamp(1.25rem, 5vw, 3.5rem), 0, 0);
}

.page-home .home-intro-cards--entered .home-intro-cards__cell {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 1.05s ease-out,
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .home-intro-cards--entered .home-intro-cards__cell:last-child {
  transition-delay: 0.1s;
}

.page-home #contact.section {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.65rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Карточки преимуществ */
.features__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(207, 141, 33, 0.15);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 141, 33, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, rgba(207, 141, 33, 0.2), rgba(58, 40, 19, 0.5));
  border: 1px solid rgba(207, 141, 33, 0.25);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Меню-тизер */
.menu-teaser {
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(
    135deg,
    rgba(179, 114, 21, 0.12) 0%,
    rgba(58, 40, 19, 0.45) 50%,
    rgba(10, 8, 6, 0.9) 100%
  );
  border: 1px solid rgba(207, 141, 33, 0.22);
  position: relative;
  overflow: hidden;
}

.menu-teaser::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 40%, rgba(230, 167, 48, 0.08), transparent 55%);
  pointer-events: none;
}

.menu-teaser__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .menu-teaser__inner {
    grid-template-columns: 1fr auto;
  }
}

.menu-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.menu-teaser p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-section {
  scroll-margin-top: var(--site-header-offset);
}

.menu-section.menu-page-stage:has(#menu-list-view:not([hidden])) {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--site-header-offset));
  min-height: calc(100dvh - var(--site-header-offset));
  padding-bottom: 0;
}

.menu-section.menu-page-stage:has(#menu-list-view:not([hidden])) #menu-list-view {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.menu-toolbar {
  padding: 0.35rem 0 0;
  margin: 0;
}

.menu-search-wrap {
  display: block;
}

.menu-search {
  width: 100%;
  max-width: 480px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 141, 33, 0.35);
  background: rgba(23, 19, 13, 0.75);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-search::placeholder {
  color: var(--text-muted);
}

.menu-search:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(207, 141, 33, 0.2);
}

.menu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.menu-chip {
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid rgba(207, 141, 33, 0.22);
  background: rgba(207, 141, 33, 0.07);
  color: var(--gold-light);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.menu-chip:hover,
.menu-chip:focus-visible {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--bg-deep);
  border-color: transparent;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 114, 21, 0.35);
}

.menu-root {
  margin-top: 0;
}

.menu-block {
  margin-bottom: 2.65rem;
  scroll-margin-top: calc(var(--site-header-offset) + 5rem);
}

.menu-block:last-child {
  margin-bottom: 0;
}

.menu-block__head {
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(207, 141, 33, 0.2);
}

.menu-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.menu-block__subtitle {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.menu-item {
  border-radius: 16px;
  padding: 1.1rem 1.35rem;
  background: rgba(23, 19, 13, 0.48);
  border: 1px solid rgba(207, 141, 33, 0.1);
  transition: border-color 0.3s ease, transform 0.28s ease, box-shadow 0.3s ease;
  animation: menu-pop 0.55s ease backwards;
  animation-delay: var(--d, 0s);
}

@keyframes menu-pop {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-item {
    animation: none;
  }
}

.menu-item:hover {
  border-color: rgba(207, 141, 33, 0.32);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.menu-item__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item__main {
  min-width: 0;
}

.menu-item__name {
  font-weight: 700;
  font-size: clamp(1.08rem, 2.95vw, 1.34rem);
  line-height: 1.32;
  color: var(--text);
}

.menu-item__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.58rem;
}

.menu-item__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}

.menu-item__tag {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  line-height: 1.2;
}

.menu-item__tag--spicy {
  color: #ffc5a8;
  border: 1px solid rgba(255, 129, 90, 0.45);
  background: rgba(90, 32, 24, 0.38);
}

.menu-item__tag--seasonal {
  color: var(--gold-light);
  border: 1px solid rgba(230, 167, 48, 0.45);
  background: rgba(58, 40, 19, 0.45);
}

.menu-item__tag--vegetarian {
  color: #a8e098;
  border: 1px solid rgba(120, 200, 130, 0.35);
  background: rgba(28, 48, 32, 0.45);
}

/* Маркировки из админки: произвольный текст + палитра */
.menu-item__tag--palette-green {
  color: #a8e098;
  border: 1px solid rgba(120, 200, 130, 0.35);
  background: rgba(28, 48, 32, 0.45);
}

.menu-item__tag--palette-gold {
  color: var(--gold-light);
  border: 1px solid rgba(230, 167, 48, 0.45);
  background: rgba(58, 40, 19, 0.45);
}

.menu-item__tag--palette-red {
  color: #ffc5a8;
  border: 1px solid rgba(255, 129, 90, 0.45);
  background: rgba(90, 32, 24, 0.38);
}

.menu-item__tag--palette-orange {
  color: #ffd4a3;
  border: 1px solid rgba(255, 160, 90, 0.42);
  background: rgba(56, 36, 18, 0.42);
}

.menu-item__tag--palette-blue {
  color: #a8d4ff;
  border: 1px solid rgba(120, 170, 230, 0.4);
  background: rgba(22, 38, 56, 0.42);
}

.menu-item__tag--palette-violet {
  color: #d4b8ff;
  border: 1px solid rgba(180, 140, 230, 0.38);
  background: rgba(38, 28, 52, 0.42);
}

.menu-item__tag--palette-neutral {
  color: rgba(245, 240, 232, 0.72);
  border: 1px solid rgba(245, 240, 232, 0.28);
  background: rgba(40, 36, 32, 0.45);
}

.menu-item__meta {
  display: block;
  font-size: clamp(1.05rem, 3vw, 1.26rem);
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 0.38rem;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.menu-item__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 3.35vw, 1.72rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: 0.03em;
  color: var(--gold-glare);
  padding: 0.44rem 0.92rem;
  border-radius: 11px;
  border: 1px solid rgba(230, 167, 48, 0.65);
  background: radial-gradient(
    140% 120% at 50% -20%,
    rgba(240, 193, 84, 0.22),
    rgba(23, 19, 13, 0.95) 55%
  );
  box-shadow:
    0 2px 0 rgba(248, 233, 189, 0.12) inset,
    0 3px 18px rgba(0, 0, 0, 0.5);
  text-shadow:
    0 0 24px rgba(248, 233, 189, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.92);
}

.menu-item:hover .menu-item__price {
  color: #fff9e8;
  border-color: rgba(248, 233, 189, 0.85);
  background: radial-gradient(
    140% 120% at 50% -20%,
    rgba(248, 233, 189, 0.28),
    rgba(58, 40, 19, 0.9) 50%
  );
}

.menu-item__desc {
  margin: 0.6rem 0 0;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(207, 141, 33, 0.08);
  font-size: clamp(0.95rem, 2.15vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.56;
}

.menu-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.menu-cta-footer {
  flex-shrink: 0;
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}

.menu-cta-footer .btn {
  min-width: min(100%, 22rem);
}

/* Страница «О нас» */
.about-page-hero {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.about-page-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-page-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.about-open-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-glare);
  border: 1px solid rgba(207, 141, 33, 0.45);
  background: rgba(207, 141, 33, 0.1);
  box-shadow: 0 0 30px rgba(207, 141, 33, 0.12);
}

.about-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.1rem;
  letter-spacing: 0.02em;
}

.about-page-lead {
  margin: 0 0 1.6rem;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
}

.about-page-address {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38rem;
}

.about-page-address a {
  color: var(--gold-light);
  font-weight: 600;
}

.about-page-address a:hover {
  color: var(--gold-glare);
}

.about-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-page-audio-sample {
  margin-top: clamp(1.35rem, 3.5vw, 1.85rem);
  display: inline-block;
}

.about-page-hero__visual {
  display: flex;
  justify-content: center;
}

.about-page-frame {
  position: relative;
  width: min(100%, 380px);
  margin: 0;
}

.about-page-frame__inner {
  border-radius: var(--radius);
  padding: 10px;
  background: linear-gradient(
    148deg,
    rgba(207, 141, 33, 0.5),
    rgba(149, 90, 15, 0.28) 45%,
    rgba(58, 40, 19, 0.55)
  );
  box-shadow: var(--shadow-glow), 0 24px 80px rgba(0, 0, 0, 0.45);
}

.about-page-frame__inner img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

.about-capacity-pill {
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.65rem 1.2rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: var(--bg-card);
  border: 1px solid rgba(207, 141, 33, 0.35);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
  white-space: nowrap;
}

.about-capacity-pill strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-glare);
}

.about-banquet-panel {
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(
    155deg,
    rgba(179, 114, 21, 0.14) 0%,
    rgba(58, 40, 19, 0.42) 42%,
    rgba(10, 8, 6, 0.92) 100%
  );
  border: 1px solid rgba(207, 141, 33, 0.24);
  position: relative;
  overflow: hidden;
}

.about-banquet-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 20% 15%, rgba(230, 167, 48, 0.1), transparent 60%);
  pointer-events: none;
}

.about-banquet-panel__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.about-banquet-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 600;
  margin: 0.5rem 0 0.85rem;
}

.about-banquet-panel__intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.about-banquet-panel__jump {
  margin: 1.35rem 0 0;
}

.about-banquet-panel__jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--gold-glare);
  border: 1px solid rgba(248, 233, 189, 0.35);
  background: rgba(207, 141, 33, 0.12);
}

.about-banquet-panel__jump-link:hover {
  color: var(--text);
  border-color: rgba(248, 233, 189, 0.55);
  background: rgba(207, 141, 33, 0.2);
}

.banquet-directions {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 620px) {
  .banquet-directions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .banquet-directions {
    grid-template-columns: repeat(4, 1fr);
  }
}

.banquet-direction {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  background: rgba(23, 19, 13, 0.55);
  border: 1px solid rgba(207, 141, 33, 0.12);
  transition: border-color 0.3s ease, transform 0.28s ease, box-shadow 0.3s ease;
}

.banquet-direction:hover {
  border-color: rgba(207, 141, 33, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

.banquet-direction__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-bright);
  background: rgba(207, 141, 33, 0.12);
  border: 1px solid rgba(207, 141, 33, 0.22);
  border-radius: 12px;
}

.banquet-direction h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.banquet-direction p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.about-banquet-footnote {
  position: relative;
  z-index: 1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(207, 141, 33, 0.15);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 52rem;
  margin-inline: auto;
}

.about-banquet-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 1.5rem;
}

.banquet-directions .banquet-direction.reveal:nth-child(1) {
  transition-delay: 0s;
}
.banquet-directions .banquet-direction.reveal:nth-child(2) {
  transition-delay: 0.05s;
}
.banquet-directions .banquet-direction.reveal:nth-child(3) {
  transition-delay: 0.1s;
}
.banquet-directions .banquet-direction.reveal:nth-child(4) {
  transition-delay: 0.15s;
}
.banquet-directions .banquet-direction.reveal:nth-child(5) {
  transition-delay: 0.02s;
}
.banquet-directions .banquet-direction.reveal:nth-child(6) {
  transition-delay: 0.07s;
}
.banquet-directions .banquet-direction.reveal:nth-child(7) {
  transition-delay: 0.12s;
}
.banquet-directions .banquet-direction.reveal:nth-child(8) {
  transition-delay: 0.17s;
}

/* Контакты */
.contact-layout {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr minmax(230px, 300px);
  }
}

.contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.contact-qr__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.contact__box {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .contact__box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-item {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(23, 19, 13, 0.5);
  border: 1px solid rgba(207, 141, 33, 0.12);
  transition: border-color 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(207, 141, 33, 0.3);
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.35rem;
}

.contact-item span,
.contact-item a {
  font-size: 1.05rem;
  color: var(--text);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features__grid .feature-card.reveal:nth-child(1) {
  transition-delay: 0s;
}
.features__grid .feature-card.reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.features__grid .feature-card.reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.contact__box .contact-item.reveal:nth-child(1) {
  transition-delay: 0s;
}
.contact__box .contact-item.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.contact__box .contact-item.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.contact__box .contact-item.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* QR-код сайта */
.qr-widget {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  overflow: visible;
}

.qr-widget--showcase {
  animation: qr-float 6s ease-in-out infinite;
}

.qr-widget--strip {
  animation: qr-float 7s ease-in-out infinite;
  flex-shrink: 0;
}

.qr-widget--footer-thumb {
  animation: qr-float-sm 8s ease-in-out infinite;
  flex-shrink: 0;
}

.qr-widget__inner {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  line-height: 0;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(207, 141, 33, 0.45),
    0 10px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.qr-widget--showcase .qr-widget__inner {
  border-radius: 18px;
  padding: 6px;
  background: linear-gradient(155deg, rgba(23, 19, 13, 0.95), rgba(58, 40, 19, 0.55));
}

.qr-widget--showcase:hover .qr-widget__inner {
  transform: scale(1.03) rotate(-1deg);
  box-shadow:
    0 0 0 2px rgba(230, 167, 48, 0.5),
    0 20px 56px rgba(207, 141, 33, 0.2);
}

.qr-widget--strip .qr-widget__inner {
  border-radius: 16px;
  padding: 5px;
  background: linear-gradient(155deg, rgba(23, 19, 13, 0.95), rgba(58, 40, 19, 0.5));
}

.qr-widget--strip:hover .qr-widget__inner {
  transform: scale(1.04);
  box-shadow:
    0 0 0 2px rgba(230, 167, 48, 0.45),
    0 16px 48px rgba(0, 0, 0, 0.35);
}

.qr-widget img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  vertical-align: bottom;
}

.qr-widget--showcase img {
  width: 208px;
  height: 208px;
  object-fit: cover;
}

.qr-widget--strip img {
  width: 168px;
  height: 168px;
  object-fit: cover;
}

.qr-widget__scan {
  position: absolute;
  left: -12%;
  right: -12%;
  top: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(248, 233, 189, 0.28),
    rgba(207, 141, 33, 0.12),
    transparent
  );
  pointer-events: none;
  animation: qr-scan 3.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.qr-widget--strip .qr-widget__scan {
  animation-duration: 3.2s;
}

.qr-widget__pulse {
  position: absolute;
  z-index: 0;
  inset: -10px;
  border-radius: 24px;
  border: 1px solid rgba(207, 141, 33, 0.4);
  animation: qr-pulse-ring 2.9s ease-out infinite;
  pointer-events: none;
}

.qr-widget__pulse--small {
  inset: -5px;
  border-radius: 16px;
  animation-duration: 3.4s;
}

.qr-widget__inner--footer {
  padding: 3px;
  border-radius: 12px;
  background: rgba(23, 19, 13, 0.65);
  box-shadow:
    0 0 0 1px rgba(207, 141, 33, 0.35),
    0 6px 22px rgba(0, 0, 0, 0.3);
}

.qr-widget--footer-thumb:hover .qr-widget__inner--footer {
  transform: scale(1.08);
  box-shadow:
    0 0 0 2px rgba(230, 167, 48, 0.5),
    0 10px 28px rgba(207, 141, 33, 0.15);
}

.qr-widget__inner--footer img {
  width: 64px;
  height: 64px;
  border-radius: 9px;
  object-fit: cover;
}

.qr-widget__hint {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--gold-light);
}

.qr-strip {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.qr-strip__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(207, 141, 33, 0.22);
  background: linear-gradient(
    125deg,
    rgba(207, 141, 33, 0.1),
    rgba(58, 40, 19, 0.38),
    rgba(10, 8, 6, 0.88)
  );
  position: relative;
  overflow: hidden;
}

.qr-strip__inner::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 70% 30%, rgba(230, 167, 48, 0.09), transparent 55%);
  pointer-events: none;
}

.qr-strip__text,
.qr-strip__inner > .qr-widget {
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .qr-strip__inner {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
  }

  .qr-strip__inner > .qr-widget {
    justify-self: end;
  }
}

.qr-strip__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 600;
}

.qr-strip__lead {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.62;
}

@keyframes qr-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes qr-float-sm {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes qr-scan {
  0% {
    transform: translateY(-130%);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  100% {
    transform: translateY(230%);
    opacity: 0;
  }
}

@keyframes qr-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  65% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qr-widget--showcase,
  .qr-widget--strip,
  .qr-widget--footer-thumb {
    animation: none !important;
  }

  .qr-widget__scan,
  .qr-widget__pulse {
    animation: none !important;
  }

  .banquet-music-banner__pulse,
  .banquet-music-banner__decor,
  .banquet-music-banner__scan {
    animation: none !important;
  }
}

/* Футер */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(207, 141, 33, 0.12);
  margin-top: 2rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer .brand {
  font-size: 0.72rem;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
  justify-content: center;
  flex: 1 1 14rem;
  text-align: center;
  line-height: 1.45;
}

.site-footer__addr {
  flex-basis: 100%;
  font-size: 0.78rem;
  max-width: 28rem;
}

@media (min-width: 900px) {
  .site-footer__addr {
    flex-basis: auto;
    max-width: none;
  }
}

.site-footer__tel,
.site-footer__www {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__tel:hover,
.site-footer__www:hover {
  color: var(--gold-glare);
}

@media (max-width: 640px) {
  .brand span {
    max-width: 10rem;
    line-height: 1.3;
  }
}

/* Карусель категорий + двухрежимное меню (menu.html) */
.menu-page-stage {
  overflow-x: clip;
}

.menu-explorer {
  outline: none;
}

.menu-explorer:focus-visible .menu-slider-shell,
.menu-explorer:focus-within .menu-slider-shell {
  outline: 2px solid rgba(230, 167, 48, 0.55);
  outline-offset: 4px;
}

/* Карусель на главной без подписи секции — только слайдер */
.section--carousel-only.home-about-showcase {
  padding-top: 0;
  padding-bottom: clamp(0.35rem, 1.2vw, 0.75rem);
}

.section--carousel-only:not(.home-about-showcase) {
  padding-top: clamp(0.75rem, 2vw, 1.5rem);
  padding-bottom: clamp(0.5rem, 1.5vw, 1.25rem);
}

.menu-slider-shell {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 clamp(0.65rem, 2.5vw, 1.5rem);
  box-sizing: border-box;
}

.menu-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: clamp(14px, 2.5vw, 22px);
  min-height: clamp(268px, 38vw, 420px);
  border: 1px solid rgba(207, 141, 33, 0.28);
  background: radial-gradient(
    ellipse 90% 80% at 50% 120%,
    rgba(207, 141, 33, 0.12),
    rgba(10, 8, 6, 0.96)
  );
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.45),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu-slider__track {
  display: flex;
  height: 100%;
}

.menu-slide {
  position: relative;
  flex-shrink: 0;
}

.menu-slide__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: clamp(268px, 38vw, 420px);
  overflow: hidden;
}

.menu-slide__frame--to-menu {
  cursor: pointer;
}

.menu-slide__frame--to-menu:hover {
  box-shadow: inset 0 0 0 1px rgba(230, 167, 48, 0.35);
}

.menu-slide__frame--to-menu:focus-visible {
  outline: 2px solid rgba(230, 167, 48, 0.6);
  outline-offset: 3px;
  z-index: 5;
}

.menu-slide__img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.menu-slide.is-active .menu-slide__img-wrap {
  opacity: 0.75;
}

.menu-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.menu-slide.is-active .menu-slide__img {
  animation: menu-slide-zoom 10s ease-in-out infinite alternate;
}

@keyframes menu-slide-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.menu-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 8, 6, 0.78) 0%,
    rgba(10, 8, 6, 0.35) 48%,
    rgba(58, 40, 19, 0.25) 100%
  );
  pointer-events: none;
}

.menu-slide__pulse {
  position: absolute;
  inset: 10px;
  border-radius: clamp(11px, 2vw, 18px);
  border: 1px solid rgba(207, 141, 33, 0.35);
  z-index: 2;
  pointer-events: none;
  animation: qr-pulse-ring 3.1s ease-out infinite;
}

.menu-slide__scan {
  position: absolute;
  left: -14%;
  right: -14%;
  top: 0;
  height: 42%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(248, 233, 189, 0.35),
    rgba(207, 141, 33, 0.12),
    transparent
  );
  pointer-events: none;
  z-index: 1;
  animation: qr-scan 3.45s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.menu-slide__caption {
  position: relative;
  z-index: 4;
  max-width: min(560px, 92%);
  padding: clamp(1.45rem, 4vw, 2.25rem);
  pointer-events: none;
}

.menu-slide__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  line-height: 1.08;
  margin: 0 0 0.45rem;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 0, 0, 0.5);
}

.menu-slide__subtitle {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  font-weight: 600;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.menu-slide__meta-line {
  margin: 0;
  font-size: clamp(0.88rem, 2.1vw, 1.02rem);
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.menu-slider__dots-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.menu-slider__dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90vw;
}

.menu-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(207, 141, 33, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.menu-slider__dot:hover,
.menu-slider__dot:focus-visible {
  transform: scale(1.14);
  border-color: rgba(248, 233, 189, 0.75);
  outline: none;
}

.menu-slider__dot.is-active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  border-color: transparent;
  box-shadow: 0 0 18px rgba(207, 141, 33, 0.45);
}

.menu-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(207, 141, 33, 0.42);
  background: rgba(10, 8, 6, 0.68);
  color: var(--gold-glare);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-slider__arrow:hover {
  background: rgba(207, 141, 33, 0.18);
  border-color: rgba(248, 233, 189, 0.55);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.menu-slider__arrow--prev {
  left: clamp(0.65rem, 2.5vw, 1rem);
}

.menu-slider__arrow--next {
  right: clamp(0.65rem, 2.5vw, 1rem);
}

.menu-explorer__bottom {
  margin-top: 2rem;
}

.menu-blurb-panel {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: clamp(1.35rem, 3.5vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(23, 19, 13, 0.55);
  border: 1px solid rgba(207, 141, 33, 0.2);
  text-align: center;
  backdrop-filter: blur(12px);
}

.menu-blurb-panel__tag {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.menu-blurb-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.42rem, 3.6vw, 2rem);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.menu-blurb-panel__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 2.4vw, 1.09rem);
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
}

.menu-blurb-panel__cta .btn {
  width: min(100%, 22rem);
}

.menu-explorer__hint-label {
  text-align: center;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.menu-list-view:not([hidden]) {
  animation: menu-list-fade-in 0.22s ease both;
}

@media (min-width: 768px) {
  .menu-list-view:not([hidden]) {
    animation: fade-up 0.55s ease both;
  }
}

.menu-list-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 0;
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.menu-back-catalog {
  flex-shrink: 0;
  align-self: flex-start;
  margin-bottom: 0.65rem;
}

.menu-catalog-heading {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.52rem);
  font-weight: 600;
  color: var(--gold-light);
}

.menu-list-workspace {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: min(620px, 72vh);
  min-height: min(620px, 72dvh);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(207, 141, 33, 0.22);
  background: rgba(10, 8, 6, 0.55);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(248, 233, 189, 0.05),
    0 12px 48px rgba(0, 0, 0, 0.35);
}

.menu-list-workspace__header {
  flex: 0 0 auto;
  z-index: 6;
  padding: 0.6rem clamp(0.55rem, 3vw, 1rem) 0.85rem;
  background: linear-gradient(
    180deg,
    #0f0d0c 0%,
    rgba(12, 10, 9, 0.99) 55%,
    rgba(13, 11, 9, 0.98) 100%
  );
  border-bottom: 1px solid rgba(207, 141, 33, 0.32);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}

.menu-list-workspace__header .menu-toolbar {
  padding: 0;
}

.menu-list-workspace__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  padding: 0.5rem clamp(0.45rem, 2.8vw, 1rem) 1.25rem;
  background:
    radial-gradient(ellipse 80% 52% at 50% -8%, rgba(207, 141, 33, 0.06), transparent 48%),
    rgba(10, 8, 6, 0.35);
}

.menu-list-workspace__scroll:focus {
  outline: none;
}

@media (max-width: 639px) {
  .menu-list-workspace {
    min-height: min(560px, 76vh);
    min-height: min(560px, 76dvh);
  }
}

@media (max-width: 767px) {
  .menu-list-workspace__scroll {
    touch-action: pan-y pinch-zoom;
    scroll-behavior: auto;
    overscroll-behavior-y: auto;
  }
}

@media (min-width: 960px) {
  .menu-list-workspace {
    min-height: min(520px, 65vh);
    min-height: min(520px, 65dvh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-list-workspace__scroll {
    scroll-behavior: auto;
  }
}

.menu-chip.is-current-section {
  background: rgba(207, 141, 33, 0.22);
  border-color: rgba(248, 233, 189, 0.45);
  color: var(--gold-glare);
  box-shadow: 0 0 18px rgba(207, 141, 33, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .menu-slide.is-active .menu-slide__img {
    animation: none;
  }
  .menu-slide__scan {
    animation: none !important;
  }
  .menu-slide__pulse {
    animation: none !important;
  }
}

/* Отзывы */
.reviews-page {
  position: relative;
  z-index: 1;
}

.reviews-hero {
  padding-bottom: clamp(1.25rem, 4vw, 2rem);
}

.reviews-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin: 0 0 0.85rem;
  line-height: 1.12;
}

.reviews-hero__lead {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.02rem, 2.6vw, 1.14rem);
  color: var(--text-muted);
  line-height: 1.72;
}

.reviews-showcase {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.reviews-grid {
  display: grid;
  gap: clamp(1.25rem, 3.5vw, 1.75rem);
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 680px) and (max-width: 899px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
    max-width: min(100%, 40rem);
    justify-self: center;
  }
}

.review-card {
  position: relative;
  padding: clamp(1.35rem, 3.2vw, 1.75rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(165deg, rgba(207, 141, 33, 0.07), transparent 42%),
    rgba(23, 19, 13, 0.72);
  border: 1px solid rgba(207, 141, 33, 0.22);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  transition:
    transform 0.32s ease,
    border-color 0.28s ease,
    box-shadow 0.35s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--gold-light),
    var(--gold-dark) 55%,
    transparent
  );
  opacity: 0.85;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 233, 189, 0.35);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.review-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 1rem;
  margin-bottom: 0.95rem;
}

.review-card__stars {
  display: inline-flex;
  gap: 0.12rem;
  font-size: 1rem;
  line-height: 1;
}

.review-card__star {
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(230, 167, 48, 0.35);
}

.review-card__who {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.review-card__quote {
  margin: 0 0 1.25rem;
  padding: 0 0 0 0.95rem;
  border-left: 2px solid rgba(207, 141, 33, 0.45);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.3vw, 1.22rem);
  font-weight: 500;
  line-height: 1.52;
}

.review-card__quote p {
  margin: 0;
}

.review-card__reply {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(10, 8, 6, 0.55);
  border: 1px solid rgba(207, 141, 33, 0.14);
}

.review-card__reply-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.review-card__reply p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.reviews-form-section {
  padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.reviews-form-shell {
  position: relative;
  max-width: min(640px, 100%);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(
    138deg,
    rgba(207, 141, 33, 0.11) 0%,
    rgba(23, 19, 13, 0.88) 38%,
    rgba(10, 8, 6, 0.95) 100%
  );
  border: 1px solid rgba(207, 141, 33, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(248, 233, 189, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.reviews-form-shell__glow {
  position: absolute;
  width: 120%;
  height: 140%;
  top: -60%;
  right: -45%;
  background: radial-gradient(circle, rgba(230, 167, 48, 0.12), transparent 55%);
  pointer-events: none;
}

.reviews-form-shell__head {
  position: relative;
  z-index: 1;
  margin-bottom: 1.65rem;
  text-align: center;
}

.reviews-form-shell__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.52rem, 3.8vw, 2rem);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.reviews-form-shell__lead {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.reviews-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.reviews-form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 540px) {
  .reviews-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.reviews-form__field {
  display: grid;
  gap: 0.45rem;
}

.reviews-form__field--full {
  grid-column: 1 / -1;
}

.reviews-form__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.reviews-form__field input,
.reviews-form__field textarea {
  font: inherit;
  color: var(--text);
  padding: 0.72rem 0.92rem;
  border-radius: 12px;
  border: 1px solid rgba(207, 141, 33, 0.22);
  background: rgba(10, 8, 6, 0.55);
}

.reviews-form__field textarea {
  resize: vertical;
  min-height: 7rem;
}

.reviews-form__field input:focus-visible,
.reviews-form__field textarea:focus-visible {
  outline: none;
  border-color: rgba(248, 233, 189, 0.45);
  box-shadow: 0 0 0 3px rgba(207, 141, 33, 0.2);
}

.reviews-form__rating {
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  gap: 0.65rem;
}

.reviews-form__rating legend {
  padding: 0;
}

.reviews-stars-input {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-stars-input__lbl {
  cursor: pointer;
  user-select: none;
  line-height: 1;
}

.reviews-stars-input__hit {
  display: block;
  font-size: clamp(1.65rem, 4.5vw, 2rem);
  line-height: 1;
  color: rgba(245, 240, 232, 0.22);
  transition:
    color 0.18s ease,
    transform 0.2s ease;
}

.reviews-stars-input[data-rating="1"] .reviews-stars-input__lbl:nth-child(-n + 1) .reviews-stars-input__hit,
.reviews-stars-input[data-rating="2"] .reviews-stars-input__lbl:nth-child(-n + 2) .reviews-stars-input__hit,
.reviews-stars-input[data-rating="3"] .reviews-stars-input__lbl:nth-child(-n + 3) .reviews-stars-input__hit,
.reviews-stars-input[data-rating="4"] .reviews-stars-input__lbl:nth-child(-n + 4) .reviews-stars-input__hit,
.reviews-stars-input[data-rating="5"] .reviews-stars-input__lbl:nth-child(-n + 5) .reviews-stars-input__hit {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(230, 167, 48, 0.35);
}

.reviews-stars-input__lbl:focus-within .reviews-stars-input__hit {
  outline: 2px solid rgba(248, 233, 189, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
}

.reviews-stars-input__lbl:hover .reviews-stars-input__hit {
  transform: scale(1.06);
}

.reviews-form__rating-hint {
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.reviews-form__check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.86rem;
  line-height: 1.52;
  color: var(--text-muted);
  cursor: pointer;
}

.reviews-form__check input {
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--gold-mid);
}

.reviews-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.reviews-form__note {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(179, 114, 21, 0.12);
  border: 1px solid rgba(207, 141, 33, 0.26);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gold-light);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
  }
  .review-card:hover {
    transform: none;
  }
  .reviews-stars-input__hit {
    transition: none;
  }
}

/* Галерея */
.gallery-page {
  position: relative;
  z-index: 1;
}

.gallery-hero {
  padding-bottom: 1rem;
}

.gallery-dev-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 52rem;
  margin: 0 auto 2rem;
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1.15rem, 3vw, 1.5rem);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(
    118deg,
    rgba(207, 141, 33, 0.22) 0%,
    rgba(10, 8, 6, 0.92) 55%
  );
  border: 1px solid rgba(248, 233, 189, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(248, 233, 189, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.38);
}

.gallery-dev-banner__icon {
  flex-shrink: 0;
  margin-top: 0.08em;
  color: var(--gold-bright);
  font-size: 1rem;
}

.gallery-dev-banner p {
  margin: 0;
  font-size: clamp(0.9rem, 2.4vw, 1.02rem);
  line-height: 1.6;
  color: var(--text);
}

.gallery-dev-banner strong {
  color: var(--gold-light);
}

.gallery-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0;
  line-height: 1.1;
}

.gallery-board-section {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.gallery-board {
  position: relative;
  margin-inline: auto;
  padding: clamp(1.65rem, 5vw, 2.85rem);
  transform: rotate(-0.65deg);
  max-width: fit-content;
}

.gallery-board__frame {
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background:
    repeating-linear-gradient(
      -42deg,
      transparent,
      transparent 14px,
      rgba(207, 141, 33, 0.06) 14px,
      rgba(207, 141, 33, 0.06) 15px
    ),
    linear-gradient(145deg, rgba(207, 141, 33, 0.18), rgba(10, 8, 6, 0.55) 40%, transparent 82%);
  border: 2px dashed rgba(207, 141, 33, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.52);
  pointer-events: none;
}

.gallery-board__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.gallery-board__corners span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold-bright);
  border-style: solid;
}

.gallery-board__corners span:nth-child(1) {
  top: 1.75rem;
  left: 1.75rem;
  border-width: 3px 0 0 3px;
  border-radius: 6px 0 0 0;
}

.gallery-board__corners span:nth-child(2) {
  top: 1.75rem;
  right: 1.75rem;
  border-width: 3px 3px 0 0;
  border-radius: 0 6px 0 0;
}

.gallery-board__corners span:nth-child(3) {
  bottom: 1.75rem;
  left: 1.75rem;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 6px;
}

.gallery-board__corners span:nth-child(4) {
  bottom: 1.75rem;
  right: 1.75rem;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 6px 0;
}

.gallery-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: clamp(0.85rem, 2.4vw, 1.35rem);
  grid-template-columns: repeat(4, min(280px, 22vw));
  grid-auto-rows: min(280px, 22vw);
  justify-content: center;
}

@media (max-width: 959px) {
  .gallery-board {
    transform: none;
    max-width: 100%;
    padding: clamp(1.15rem, 4vw, 1.85rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(136px, 280px));
    grid-auto-rows: minmax(136px, min(280px, 42vw));
  }
}

@media (max-width: 380px) {
  .gallery-grid {
    gap: 0.55rem;
  }
}

.gallery-grid__cell {
  perspective: 800px;
}

.gallery-grid__cell:nth-child(odd) .gallery-thumb {
  transform: rotate(0.85deg);
}

.gallery-grid__cell:nth-child(even) .gallery-thumb {
  transform: rotate(-0.55deg);
}

.gallery-grid__cell:nth-child(3n) .gallery-thumb:hover {
  transform: rotate(-0.2deg) translateY(-3px);
}

.gallery-grid__cell:nth-child(3n + 1) .gallery-thumb:hover {
  transform: rotate(1deg) translateY(-3px);
}

.gallery-thumb {
  position: relative;
  appearance: none;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: clamp(14px, 3vw, 20px);
  cursor: zoom-in;
  background: radial-gradient(circle at 30% 20%, rgba(207, 141, 33, 0.15), rgba(10, 8, 6, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  overflow: hidden;
}

.gallery-thumb:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 2px rgba(248, 233, 189, 0.45),
    0 0 0 4px rgba(207, 141, 33, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.5);
}

.gallery-thumb img {
  width: min(280px, 100%);
  height: min(280px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}

.gallery-thumb__shine {
  position: absolute;
  inset: -25%;
  background: linear-gradient(
    118deg,
    transparent 42%,
    rgba(248, 233, 189, 0.08) 48%,
    transparent 54%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-thumb:hover .gallery-thumb__shine {
  opacity: 1;
}

.gallery-thumb__zoom {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--bg-deep);
  background: rgba(248, 233, 189, 0.92);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-thumb:hover .gallery-thumb__zoom,
.gallery-thumb:focus-visible .gallery-thumb__zoom {
  opacity: 1;
}

.gallery-about {
  position: relative;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding: clamp(1.65rem, 4vw, 2.35rem);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(23, 19, 13, 0.72);
  border: 1px solid rgba(207, 141, 33, 0.22);
  overflow: hidden;
}

.gallery-about__glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -40%;
  right: -22%;
  background: radial-gradient(circle, rgba(230, 167, 48, 0.12), transparent 62%);
  pointer-events: none;
}

.gallery-about__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.gallery-about__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 3.8vw, 1.92rem);
  margin: 0 0 1rem;
}

.gallery-about__text {
  margin: 0;
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.gallery-about__text strong {
  color: var(--gold-light);
  font-weight: 600;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(0.65rem, env(safe-area-inset-top, 0px)) max(0.65rem, env(safe-area-inset-right, 0px))
    max(0.65rem, env(safe-area-inset-bottom, 0px)) max(0.65rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(720px, 96vw);
  margin: auto;
  box-sizing: border-box;
  padding: 3rem clamp(0.45rem, 3vw, 0.85rem) 0.35rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(248, 233, 189, 0.18), transparent 45%),
    rgba(23, 19, 13, 0.98);
  border: 1px solid rgba(207, 141, 33, 0.45);
  box-shadow:
    0 0 0 1px rgba(248, 233, 189, 0.1),
    0 40px 120px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  background: linear-gradient(145deg, var(--gold-mid), var(--gold-dark));
  color: var(--bg-deep);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--gold-glare);
  outline-offset: 3px;
}

.gallery-lightbox__stage {
  padding: 0.4rem clamp(0.25rem, 2vw, 0.65rem) 0.75rem;
  border-radius: 14px;
  background: radial-gradient(circle at 40% 20%, rgba(207, 141, 33, 0.12), transparent 55%);
  min-height: 0;
}

.gallery-lightbox__stage img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(72dvh, 72vh, calc(100vw - 4rem));
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-board {
    transform: none;
  }
  .gallery-grid__cell:nth-child(odd) .gallery-thumb,
  .gallery-grid__cell:nth-child(even) .gallery-thumb {
    transform: none;
  }
  .gallery-grid__cell:nth-child(n) .gallery-thumb:hover {
    transform: translateY(-2px);
  }
}

/* Банкетный зал */
.banquet-page {
  position: relative;
  z-index: 1;
}

.banquet-hero {
  padding-bottom: clamp(0.85rem, 3vw, 1.75rem);
}

.banquet-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin: 0 0 0.95rem;
  line-height: 1.08;
}

.banquet-hero__lead {
  margin: 0 auto 1.65rem;
  max-width: 48rem;
  font-size: clamp(1.02rem, 2.6vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.banquet-hero__lead strong {
  color: var(--gold-light);
  font-weight: 600;
}

.banquet-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.banquet-formats-section .about-banquet-panel {
  margin-bottom: 0;
}

.banquet-music-banner {
  position: relative;
  display: grid;
  gap: clamp(1.35rem, 3.5vw, 2rem);
  align-items: center;
  margin-top: clamp(2rem, 4.5vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(207, 141, 33, 0.28);
  background: linear-gradient(
    125deg,
    rgba(207, 141, 33, 0.12),
    rgba(58, 40, 19, 0.38),
    rgba(10, 8, 6, 0.9)
  );
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.06),
    0 22px 56px rgba(0, 0, 0, 0.42);
}

.banquet-music-banner::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 72% 28%, rgba(230, 167, 48, 0.1), transparent 54%);
  pointer-events: none;
}

.banquet-music-banner__pulse {
  position: absolute;
  z-index: 0;
  left: clamp(1.85rem, 5vw, 3.25rem);
  top: 50%;
  width: clamp(174px, 38vw, 222px);
  height: clamp(210px, 48vw, 268px);
  translate: 0 -50%;
  border-radius: 26px;
  border: 1px solid rgba(207, 141, 33, 0.42);
  animation: qr-pulse-ring 2.85s ease-out infinite;
  pointer-events: none;
}

@media (max-width: 719px) {
  .banquet-music-banner__pulse {
    left: 50%;
    translate: -50% -115%;
    top: clamp(5.5rem, 18vw, 7rem);
  }
}

.banquet-music-banner__decor-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.banquet-music-banner__decor {
  animation: qr-float 6.5s ease-in-out infinite;
}

.banquet-music-banner__frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(136px, 28vw, 172px);
  height: clamp(136px, 28vw, 172px);
  overflow: hidden;
  border-radius: 18px;
  padding: 6px;
  background: linear-gradient(155deg, rgba(23, 19, 13, 0.95), rgba(58, 40, 19, 0.52));
  box-shadow:
    0 0 0 1px rgba(207, 141, 33, 0.48),
    0 12px 40px rgba(0, 0, 0, 0.42);
}

.banquet-music-banner__frame--player {
  width: clamp(154px, 36vw, 198px);
  height: auto;
  min-height: unset;
  place-items: stretch;
  padding: clamp(0.65rem, 2vw, 0.85rem) clamp(0.72rem, 2.4vw, 0.95rem);
}

.banquet-music-sample {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
}

.banquet-music-sample__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: rgba(248, 233, 189, 0.92);
}

.banquet-music-sample__credit {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gold-light);
}

.banquet-music-sample__audio {
  display: none;
}

.banquet-music-sample__toggle {
  appearance: none;
  margin-top: 0.15rem;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(207, 141, 33, 0.55);
  background: radial-gradient(circle at 32% 28%, rgba(230, 167, 48, 0.22), rgba(10, 8, 6, 0.92));
  color: var(--gold-bright);
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.08),
    0 4px 14px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.banquet-music-sample__toggle:hover {
  border-color: rgba(248, 233, 189, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.12),
    0 0 22px rgba(230, 167, 48, 0.25);
}

.banquet-music-sample__toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.banquet-music-sample__toggle:active {
  transform: scale(0.96);
}

.banquet-music-sample__glyph {
  grid-area: 1 / 1;
  display: block;
}

.banquet-music-sample__glyph--play {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent currentColor;
  opacity: 1;
}

.banquet-music-sample__glyph--pause {
  width: 12px;
  height: 12px;
  margin: 0;
  border: none;
  border-radius: 1px;
  background: linear-gradient(
    to right,
    currentColor 0 33%,
    transparent 33% 66%,
    currentColor 66% 100%
  );
  opacity: 0;
}

.banquet-music-sample__toggle.is-playing .banquet-music-sample__glyph--play {
  opacity: 0;
}

.banquet-music-sample__toggle.is-playing .banquet-music-sample__glyph--pause {
  opacity: 1;
}

.banquet-music-banner__scan {
  position: absolute;
  left: -12%;
  right: -12%;
  top: 0;
  height: 44%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(248, 233, 189, 0.34),
    rgba(207, 141, 33, 0.12),
    transparent
  );
  pointer-events: none;
  animation: qr-scan 3.25s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@media (min-width: 720px) {
  .banquet-music-banner {
    grid-template-columns: auto 1fr;
    gap: clamp(1.65rem, 4vw, 3rem);
  }

  .banquet-music-banner__decor-wrap {
    justify-content: flex-end;
    padding-right: 0.35rem;
  }
}

.banquet-spotlight.banquet-spotlight--embed {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.banquet-spotlight--embed .banquet-spotlight__title {
  padding-right: 0;
}

.banquet-spotlight--embed .banquet-spotlight__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 10px 0 0 10px;
}

@media (max-width: 520px) {
  .banquet-spotlight--embed .banquet-spotlight__title {
    padding-top: 2rem;
    margin-top: 0.65rem;
  }

  .banquet-spotlight--embed .banquet-spotlight__ribbon {
    top: -0.25rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
  }

  .banquet-music-banner__pulse {
    top: clamp(7rem, 22vw, 8.5rem);
  }
}

.banquet-spotlight {
  position: relative;
  max-width: min(720px, 100%);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.15rem) clamp(1.35rem, 4vw, 2rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 12% 20%, rgba(207, 141, 33, 0.18), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(179, 114, 21, 0.12), transparent 45%),
    rgba(10, 8, 6, 0.94);
  border: 3px solid rgba(230, 167, 48, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 189, 0.15),
    0 8px 0 rgba(207, 141, 33, 0.12),
    0 0 52px rgba(207, 141, 33, 0.18),
    0 28px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .banquet-spotlight {
    padding-left: clamp(2rem, 5vw, 2.75rem);
    padding-right: clamp(2rem, 5vw, 2.75rem);
  }
}

.banquet-spotlight__ribbon {
  position: absolute;
  top: 1rem;
  right: -2px;
  padding: 0.35rem 1.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold-bright));
  color: var(--bg-deep);
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 6px 20px rgba(0, 0, 0, 0.38);
}

.banquet-spotlight__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.42rem, 3.8vw, 1.92rem);
  margin: 0 0 0.95rem;
  padding-right: 6.5rem;
  line-height: 1.2;
}

@media (max-width: 520px) {
  .banquet-spotlight__title {
    padding-right: 0;
    padding-top: 2rem;
  }
  .banquet-spotlight__ribbon {
    top: -1px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
  }
}

.banquet-spotlight__lead {
  margin: 0 0 1.1rem;
  font-size: clamp(0.96rem, 2.4vw, 1.06rem);
  line-height: 1.74;
  color: var(--text);
}

.banquet-spotlight__lead strong {
  color: var(--gold-light);
}

.banquet-spotlight__fine {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-muted);
  border: 1px dashed rgba(207, 141, 33, 0.45);
  background: rgba(23, 19, 13, 0.55);
}

.banquet-spotlight__fine strong {
  color: var(--gold-mid);
}

/* Узкие экраны: блоки всех разделов — компактнее отступы, без горизонтального переполнения */
@media (max-width: 639px) {
  .section {
    padding-top: clamp(2.4rem, 8vw, 3.75rem);
    padding-bottom: clamp(2.4rem, 8vw, 3.75rem);
  }

  .section__head {
    margin-bottom: 2rem;
  }

  .hero {
    padding-top: clamp(1.35rem, 5vw, 2.25rem);
    padding-bottom: clamp(3rem, 10vw, 4rem);
  }

  .menu-item {
    padding: 0.95rem 1.05rem;
    animation: none;
  }

  .menu-chip,
  .menu-explorer__bottom .menu-chip,
  .menu-back-catalog {
    touch-action: manipulation;
  }

  .menu-list-view .menu-chips {
    margin-top: 0.75rem;
  }

  .gallery-dev-banner {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    margin-inline: 0;
    gap: 0.8rem;
  }

  .gallery-about {
    padding: clamp(1.25rem, 5vw, 1.85rem);
  }

  .contact-layout {
    gap: 1.65rem;
  }

  .contact-item {
    padding: 1.15rem 1rem;
    min-width: 0;
  }

  .qr-strip__inner {
    padding: 1.1rem 0.95rem;
    gap: 1.45rem;
  }

  .reviews-form-shell {
    padding: 1.2rem 0.92rem;
  }

  .about-banquet-panel {
    padding: clamp(1.25rem, 5vw, 2.35rem);
  }

  .banquet-music-banner {
    padding: clamp(1.15rem, 5vw, 1.95rem);
    min-width: 0;
    gap: 1.25rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .site-footer__meta {
    justify-content: center;
  }

  .menu-slider-shell {
    padding: 0 clamp(0.55rem, 2vw, 1.25rem);
  }
}

