/* === Основной шрифт === */
@font-face {
  font-family: 'Gemunu Libre';
  src: url('../fonts/GemunuLibre-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: block; /* Скрываем текст, пока шрифт не загрузится (нет скачка шрифтов) */
}

* {
  font-family: 'Gemunu Libre', sans-serif;
}

/* === Логотип === */
.menu-header {
  text-align: center;
  padding: 40px 20px 20px;
  margin-bottom: 20px;
}

/* === Voyager logo === */
.brand-logo {
  display: inline-block;
  width: 138px;
  height: auto;
  margin: 0 auto;
  /* Убираем начальную opacity: 0 для LCP - логотип должен быть виден сразу */
  opacity: 1;
  transform: translateY(0) scale(1);
  /* убираем свечение с контейнера */
  filter: none !important;
  box-shadow: none !important;
  transition: opacity .6s ease, transform .6s ease;
  text-decoration: none;
  color: inherit;
  /* Анимация применяется только через класс .animating для избежания задержки LCP */
  will-change: transform, opacity;
}

.brand-logo svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 138px;
  /* Оптимизация для LCP - предотвращаем layout shift */
  aspect-ratio: 616 / 322;
}

/* Анимация появления логотипа - используется только для плавного появления при необходимости */
@keyframes logo-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Логотип виден сразу для LCP, анимация применяется опционально */
.brand-logo.is-ready {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Анимация применяется только если явно нужна (не для LCP элемента) */
.brand-logo.animating {
  animation: logo-fade-in 0.8s ease forwards;
}

/* подсветка только во время анимации появления */
.brand-logo svg * {
  filter: none;
  transition: filter .3s ease;
}

/* свечение только во время анимации появления */
.brand-logo.animating svg * {
  filter: drop-shadow(0 0 4px rgba(242, 202, 121, .45));
}

/* при ховере усиливаем glow */
.brand-logo:hover svg * {
  filter: drop-shadow(0 0 8px rgba(242, 202, 121, .7));
}

/* Логотип в бранч-теме - делаем черным для светлого фона */
body.brunch-theme .brand-logo svg {
  filter: brightness(0);
  transition: filter 0.3s ease;
}

body.brunch-theme .brand-logo:hover svg {
  filter: brightness(0) drop-shadow(0 0 8px rgba(45, 53, 58, 0.3));
}

/* Переопределяем стили для svg * в бранч-теме, чтобы фильтр на svg работал */
body.brunch-theme .brand-logo svg * {
  filter: none;
}

.brand-logo:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* уважение prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

  .brand-logo,
  .brand-logo.is-ready,
  .brand-logo svg * {
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Отключаем анимации меню */
  .menu-section-title,
  .item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Отключаем анимацию футера */
  .footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Отключаем анимацию предупреждения об аллергиях */
  .allergy-warning-menu {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Отключаем анимацию кнопки отзыва */
  .review-section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === Заголовки разделов === */
.menu-section-title {
  text-transform: uppercase;
  transition: color 0.5s ease;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 40px 0 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: title-fly-in 0.8s ease forwards;
}

/* Анимация появления заголовков */
@keyframes title-fly-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Задержка для каждого следующего заголовка */
.menu-section-title:nth-of-type(2) {
  animation-delay: 0.3s;
}

.menu-section-title:nth-of-type(3) {
  animation-delay: 0.6s;
}

.menu-section-title:nth-of-type(4) {
  animation-delay: 0.9s;
}

.menu-section-title:nth-of-type(5) {
  animation-delay: 1.2s;
}

/* Специальное сообщение под Signature Cocktails */
.custom-message {
  text-align: center;
  margin: 16px 0 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);

  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Анимация импульса для привлечения внимания к custom-message */
.custom-message.pulse-attention {
  animation: message-pulse-attention 2s ease-in-out 2;
}

@keyframes message-pulse-attention {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
    color: var(--gold);
  }
}



:root {
  /* Основные цвета */
  --bg: #2D353A;
  --gold: #F2CA79;
  --gold-rgb: 242, 202, 121;
  --ink: #EAEFF2;
  --muted: #A7B0B6;
  --hair: #3A444A;

  /* Safe Area Variables */
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-left: env(safe-area-inset-left, 0px);
  --safe-area-right: env(safe-area-inset-right, 0px);
}

/* Fallback для браузеров без поддержки safe area */
@supports not (padding: env(safe-area-inset-top)) {
  :root {
    --safe-area-top: 0px;
    --safe-area-bottom: 0px;
    --safe-area-left: 0px;
    --safe-area-right: 0px;
  }
}

* {
  box-sizing: border-box
}

/* === 1. Глобально — базовый шрифт для всего текста === */
html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 'Gemunu Libre', sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Убираем подчёркивание у всех ссылок */
a {
  text-decoration: none;
  color: var(--ink);
}

/* Убираем синее свечение при фокусе на кнопках и ссылках */
button:focus,
.btn:focus,
a:focus {
  outline: none;
  box-shadow: none;
}

/* Убираем синие эффекты при активном состоянии */
button:active,
.btn:active,
a:active {
  outline: none;
  box-shadow: none;
}

/* Убираем синий цвет у посещенных ссылок */
a:visited {
  color: var(--ink);
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px
}



.header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(45, 53, 58, .8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hair);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

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

.brand img {
  height: 28px
}

.title {
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .04em
}

.cta {
  display: grid;
  gap: 10px;
  padding: 12px 0
}

@media(min-width:680px) {
  .cta {
    grid-template-columns: repeat(3, 1fr)
  }
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(180deg, var(--gold), #b8924f);
  color: #1f2427
}

/* === Чипы: компактнее на 25%, активный по-прежнему scale(1.20) === */
.chips {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: calc(12px + var(--safe-area-top)) calc(10px + var(--safe-area-right)) 12px calc(10px + var(--safe-area-left));
  justify-content: center;
  background: rgba(45, 53, 58, .75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background-color 0.5s ease, border-bottom-color 0.5s ease;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  /* Начальное состояние для анимации */
  opacity: 0;
  transform: translateY(-10px);
  /* Анимация появления */
  animation: chips-fade-in 0.3s ease forwards;
}

/* Fallback: если JavaScript отключен или анимация не поддерживается, показываем элементы */
.no-js .chips,
.chips:not([style]) {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chips.is-overflowing {
  justify-content: flex-start;
}

/* Анимация появления контейнера чипов */
@keyframes chips-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Общие стили для чипов (используются на всех страницах) === */
.chips .chip {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: center;
  padding: 6px 12px;

  letter-spacing: 0.05em;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition:
    margin .25s cubic-bezier(.25, .8, .25, 1),
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
  will-change: transform, margin;
  /* Начальное состояние для анимации */
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  /* Анимация появления */
  animation: chip-bounce-in 0.5s ease forwards;
}

/* Fallback: если JavaScript отключен, показываем чипы */
.no-js .chips .chip,
.chips .chip:not([style]) {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none;
}

/* Синхронный старт анимации чипов: пока есть класс no-anim — не анимируем */
.chips.no-anim {
  animation: none !important;
  /* Сохраняем инлайновые стили во время инициализации */
  opacity: 0 !important;
  transform: translateY(-10px) !important;
}

.chips.no-anim .chip {
  animation: none !important;
  opacity: 0 !important;
  transform: translateY(10px) scale(0.8) !important;
}

/* Во время инициализации (до старта анимации) не применять «активное» увеличение */
.chips.initializing .chip.active {
  transform: translateY(10px) scale(0.8) !important;
  margin: 0 !important;
}

/* Дополнительная защита: предотвращаем мерцание активного чипа во время анимации */
.chips.initializing .chip.active,
.chips.no-anim .chip.active {
  /* Во время анимации активный чип должен выглядеть как обычный */
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(10px) scale(0.8) !important;
}

/* Анимация появления чипов */
@keyframes chip-bounce-in {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }

  50% {
    transform: translateY(-2px) scale(1.05);
  }

  100% {
    opacity: 0.9;
    transform: translateY(0) scale(1);
  }
}

/* Задержка для каждого чипа - начинаем после появления контейнера */
.chips .chip:nth-child(1) {
  animation-delay: 0.3s;
}

.chips .chip:nth-child(2) {
  animation-delay: 0.4s;
}

.chips .chip:nth-child(3) {
  animation-delay: 0.5s;
}

.chips .chip:nth-child(4) {
  animation-delay: 0.6s;
}

.chips .chip:nth-child(5) {
  animation-delay: 0.7s;
}

.chips .chip:nth-child(6) {
  animation-delay: 0.8s;
}

.chips .chip:nth-child(7) {
  animation-delay: 0.9s;
}

.chips .chip:nth-child(8) {
  animation-delay: 1.0s;
}

.chips .chip:nth-child(9) {
  animation-delay: 1.1s;
}

.chips .chip:nth-child(10) {
  animation-delay: 1.2s;
}

/* Активные чипы */
.chips .chip.active {

  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--gold) 20%, rgba(255, 255, 255, 0.06));
  border-color: var(--gold);
  color: #fff;
  opacity: 1;
  transform: scale(1.25);
  margin: 0 8px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, .18),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
}

/* когда есть активный чип, немного увеличиваем общий gap */
.chips:has(.chip.active) {
  gap: 12px;
}

/* узкие экраны — мягче масштаб */
@media (max-width:360px) {
  .chips .chip.active {
    transform: scale(1.18);
    margin: 0 6px;
  }
}

/* === Фирменные элементы-паттерн === */
.brand-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.15;
}

.brand-element {
  position: absolute;
  fill: var(--gold);
  opacity: 1;
  animation: float-brand linear infinite;
  pointer-events: none;
}

.brand-element.star-small {
  width: 16px;
  height: 16px;
  animation-duration: 72s;
}

.brand-element.star-medium {
  width: 28px;
  height: 28px;
  animation-duration: 90s;
}

.brand-element.star-large {
  width: 40px;
  height: 40px;
  animation-duration: 108s;
}

.brand-element.star-thin {
  width: 50px;
  height: 50px;
  animation-duration: 96s;
}

.brand-element.planet {
  width: 45px;
  height: 21px;
  animation-duration: 120s;
}

.brand-element.cosmic {
  width: 35px;
  height: 26px;
  animation-duration: 84s;
}

.brand-element.rocket {
  width: 48px;
  height: 48px;
  animation-duration: 96s;
}

.brand-element.moon {
  width: 44px;
  height: 44px;
  animation-duration: 114s;
}

.brand-element.compass {
  width: 49px;
  height: 25px;
  animation-duration: 102s;
}

/* Анимация плавающих элементов */
@keyframes float-brand {
  0% {
    transform: translateY(120vh) translateX(0) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 0.6;
  }

  15% {
    transform: translateY(80vh) translateX(20px) rotate(45deg);
    opacity: 0.6;
  }

  25% {
    transform: translateY(60vh) translateX(-30px) rotate(90deg);
    opacity: 0.6;
  }

  35% {
    transform: translateY(40vh) translateX(40px) rotate(135deg);
    opacity: 0.6;
  }

  45% {
    transform: translateY(20vh) translateX(-20px) rotate(180deg);
    opacity: 0.6;
  }

  55% {
    transform: translateY(0vh) translateX(30px) rotate(225deg);
    opacity: 0.6;
  }

  65% {
    transform: translateY(-20vh) translateX(-40px) rotate(270deg);
    opacity: 0.6;
  }

  75% {
    transform: translateY(-40vh) translateX(20px) rotate(315deg);
    opacity: 0.6;
  }

  85% {
    transform: translateY(-60vh) translateX(-30px) rotate(360deg);
    opacity: 0.6;
  }

  95% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-80vh) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

/* Вариации движения для разнообразия */
.brand-element:nth-child(even) {
  animation-direction: reverse;
}

.brand-element:nth-child(3n) {
  animation-delay: -10s;
}

.brand-element:nth-child(4n) {
  animation-delay: -20s;
}

.brand-element:nth-child(5n) {
  animation-delay: -30s;
}



/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .chips {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .chips .chip,
  .chips .chip.active {
    transition: none;
    transform: none;
    margin: 0;
    animation: none !important;
    opacity: 0.9 !important;
  }
}

/* === 2. Exan-3 для акцентов === */

/* Заголовки разделов меню */
h1,
h2,
h3 {

  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.menu h2 {
  font-size: 1.52rem;
  margin: 72px auto 32px;
  text-align: center;
  color: var(--gold);
  transition: color 0.5s ease
}

/* Кнопки - стили только в index.html */

/* Цены */
.menu-item-price {

  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Бейджи */
.badge {

  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Названия блюд и коктейлей */
.ttl {

  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* === 3. Описания блюд и коктейлей — космический шрифт === */
.menu-item-description {

  font-weight: 400;
  font-size: .75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 6px
}

/* Анимация появления блюд */
.item {
  opacity: 0;
  transform: translateX(-30px);
  animation: item-slide-in 0.6s ease forwards;
}

@keyframes item-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Задержка для каждого блюда в секции */
.grid .item:nth-child(1) {
  animation-delay: 0.2s;
}

.grid .item:nth-child(2) {
  animation-delay: 0.3s;
}

.grid .item:nth-child(3) {
  animation-delay: 0.4s;
}

.grid .item:nth-child(4) {
  animation-delay: 0.5s;
}

.grid .item:nth-child(5) {
  animation-delay: 0.6s;
}

.grid .item:nth-child(6) {
  animation-delay: 0.7s;
}

.grid .item:nth-child(7) {
  animation-delay: 0.8s;
}

.grid .item:nth-child(8) {
  animation-delay: 0.9s;
}

@media (min-width:900px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px
  }
}

/* Десктоп/планшет: выравнивание цены по первой строке названия */
@media (min-width: 768px) {
  .desktop-line {
    display: grid;
    grid-template-columns: 1fr 60px;
    /* слева название, справа цена с фиксированной шириной */
    align-items: start;
    /* цена по верхнему краю */
    column-gap: 32px;
    /* зазор между колонками */
  }

  .desktop-ttl {
    grid-column: 1;
    min-width: 0;
    /* корректные переносы длинных названий */
    max-width: calc(100% - 92px);
    /* увеличили ширину для текста с учетом фиксированной ширины цены */
  }

  .desktop-price {
    grid-column: 2;
    text-align: right;
    /* выравнивание по правому краю */
    align-self: start;
    white-space: nowrap;
    /* € не переносим */
  }

  /* описание и бейджи идут отдельными блоками под .line — ограничиваем ширину */
  .desc {
    margin-top: 4px;
    max-width: calc(100% - 140px);
    /* больше места для цены + зазор */
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    /* отключаем автоматические дефисы - пусть типограф работает */
    -webkit-hyphens: none;
    -moz-hyphens: none;
  }

  .desktop-desc {
    margin-top: 4px;
    max-width: calc(100% - 140px);
    /* больше места для цены + зазор */
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    /* отключаем автоматические дефисы - пусть типограф работает */
    -webkit-hyphens: none;
    -moz-hyphens: none;
  }

  .meta {
    margin-top: 6px;
  }
}

.item {
  padding: 10px 0
}

.line {
  display: flex;
  align-items: baseline;
  gap: 8px
}

.ttl {
  flex: 0 0 auto
}

.flexfill {
  flex: 1 1 auto;
  min-width: 16px
}

.dots {
  border-bottom: 1px dotted #5b6770;
  transform: translateY(-2px);
  opacity: .9;
  display: none;
}

.price {
  flex: 0 0 60px;
  font-weight: 800;
  color: var(--gold);
  text-align: right;
  transition: color 0.5s ease
}

.desc {
  color: var(--muted);
  font-size: .75rem;
  margin-top: 4px;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  align-items: center
}

/* Убираем gap для иконки глазика, когда она одна */
.meta:has(.photo-icon:only-child) {
  gap: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: .72rem;

  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  background: rgba(255, 255, 255, .02);
  vertical-align: middle;
  min-height: 20px;
  line-height: 1;
  box-shadow: 0 0 0 0.5px rgba(var(--gold-rgb), 0.2);
}

.footer {
  border-top: 1px solid var(--hair);
  padding: 14px 0;
  margin-top: 16px;
  color: var(--muted);
  font-size: .92rem;
  opacity: 0;
  transform: translateY(20px);
  animation: footer-fade-in 0.8s ease forwards 1.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes footer-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Секция отзывов */
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  animation: review-fade-in 0.8s ease forwards 1.8s;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.5s ease;
  min-width: 200px;
  width: 200px;
  height: 48px;
  box-sizing: border-box;
}

.ig-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.5s ease;
  min-width: 200px;
  width: 200px;
  height: 48px;
  box-sizing: border-box;
}

.review-link:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.review-link:active {
  transform: translateY(0) scale(0.98);
}

.ig-follow:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.ig-follow:active {
  transform: translateY(0) scale(0.98);
}

.review-icon,
.ig-icon {
  display: block;
  opacity: 0.9;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #F2CA79;
  fill: currentColor;
  transition: color 0.5s ease;
}

body.brunch-theme .review-icon,
body.brunch-theme .ig-icon {
  color: var(--ink);
}





@keyframes review-fade-in {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Уважение prefers-reduced-motion для footer элементов */
@media (prefers-reduced-motion: reduce) {
  .footer-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === Light Theme for Brunch === */
body.brunch-theme {
  --bg: #D8D8D8;
  --ink: #2D353A;
  --muted: #6B7280;
  --hair: #E5E7EB;
}

body.brunch-theme .menu h2,
body.brunch-theme .menu-section-title {
  color: var(--ink);
  transition: color 0.5s ease;
}

body.brunch-theme .item {
  color: var(--ink);
  transition: color 0.5s ease, background-color 0.5s ease;
}

body.brunch-theme .ttl,
body.brunch-theme .desktop-ttl {
  color: var(--ink);
  transition: color 0.5s ease;
}

body.brunch-theme .desc,
body.brunch-theme .desktop-desc {
  color: var(--muted);
}

body.brunch-theme .price {
  color: var(--ink);
  transition: color 0.5s ease;
}

body.brunch-theme .tag {
  background: rgba(45, 53, 58, 0.1);
  border-color: rgba(45, 53, 58, 0.3);
  color: var(--ink);
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

body.brunch-theme .footer {
  border-top-color: var(--hair);
  color: var(--muted);
}

body.brunch-theme .review-link,
body.brunch-theme .ig-follow {
  background: rgba(45, 53, 58, 0.08);
  border-color: rgba(45, 53, 58, 0.2);
  color: var(--ink);
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

body.brunch-theme .review-link span,
body.brunch-theme .ig-follow span {
  color: var(--ink);
}

body.brunch-theme .review-link:hover,
body.brunch-theme .ig-follow:hover {
  background: rgba(45, 53, 58, 0.15);
  border-color: var(--ink);
}

body.brunch-theme .photo-icon {
  background: rgba(45, 53, 58, 0.1);
  border-color: var(--hair);
}

body.brunch-theme .photo-icon:hover {
  background: rgba(45, 53, 58, 0.2);
  border-color: var(--ink);
}

body.brunch-theme .allergy-warning-menu {
  background: rgba(45, 53, 58, 0.08);
  border-color: var(--hair);
  color: var(--muted);
}

body.brunch-theme .custom-message {
  background: rgba(45, 53, 58, 0.08);
  border-color: var(--hair);
  color: var(--ink);
}

body.brunch-theme .small {
  color: var(--muted);
}

body.brunch-theme .menu-container {
  background: transparent;
}

body.brunch-theme .grid {
  background: transparent;
}

body.brunch-theme .item {
  background: transparent;
  color: var(--ink);
}

body.brunch-theme .dots {
  border-bottom-color: var(--hair);
}

/* Чипы в бранч-теме - светлые с темным текстом */
body.brunch-theme .chips {
  background: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(45, 53, 58, 0.1);
  backdrop-filter: blur(6px);
  transition: background-color 0.5s ease, border-bottom-color 0.5s ease;
}

body.brunch-theme .chip {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(45, 53, 58, 0.15);
  color: var(--ink);
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

body.brunch-theme .chip:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(45, 53, 58, 0.25);
  color: var(--ink);
}

body.brunch-theme .chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

/* Логотип в бранч-теме - делаем черным для светлого фона */
body.brunch-theme .brand-logo svg {
  filter: brightness(0);
  transition: filter 0.3s ease;
}

body.brunch-theme .brand-logo:hover svg {
  filter: brightness(0) drop-shadow(0 0 8px rgba(45, 53, 58, 0.3));
}

/* Переопределяем стили для svg * в бранч-теме, чтобы фильтр на svg работал */
body.brunch-theme .brand-logo svg * {
  filter: none;
}

/* Переключатель языка в бранч-теме */
body.brunch-theme .lang-switcher {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(45, 53, 58, 0.2);
  backdrop-filter: blur(10px);
  transition: background-color 0.5s ease, border-color 0.5s ease;
}

body.brunch-theme .lang-btn {
  color: rgba(45, 53, 58, 0.6);
}

body.brunch-theme .lang-btn:hover {
  color: var(--ink);
  background: rgba(45, 53, 58, 0.08);
}

body.brunch-theme .lang-btn.active {
  color: var(--ink);
  background: rgba(45, 53, 58, 0.12);
}

/* === Оверлей для 18+ === */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-modal {
  background: rgba(45, 53, 58, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 16px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);

}

.age-modal-logo {
  text-align: center;
  margin-bottom: 16px;
}

.age-logo {
  width: 120px;
  height: auto;
  max-width: 100%;
  opacity: 0.9;
  /* Убрано свечение для чистого вида */
  /* filter: drop-shadow(0 0 8px rgba(242,202,121,.3)); */
  /* Сохраняем правильные пропорции логотипа (616:322) */
  aspect-ratio: 616 / 322;
  object-fit: contain;
}

.age-modal h2 {
  font-size: 1.5rem;
  color: #F2CA79;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;

}

.age-modal p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;

}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.age-cookie-link {
  color: #F2CA79;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;

}

.age-cookie-link:hover {
  color: #ffffff;
  border-bottom-color: #F2CA79;
}

.age-buttons button {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;

  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.age-buttons button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.age-buttons button:active {
  transform: translateY(0);
}

/* Предупреждение об аллергиях в меню */
.allergy-warning-menu {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 16px 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: allergy-fade-in 0.8s ease forwards 2.0s;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes allergy-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.small {
  font-size: .75rem;
  color: var(--muted);

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-disclaimer {
  text-align: center;
  margin: 8px 0 0;
}

/* Отступы и переносы для мобильных экранов */
@media (max-width: 560px) {

  /* Общие отступы для всего контейнера меню */
  .menu-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Названия блюд */
  .item .ttl {
    min-width: 0;
    flex: 1 1 auto;
    /* Переопределяем flex: 0 0 auto */
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    /* Предлоги не должны оставаться в конце строки */
    orphans: 2;
    widows: 2;
  }

  /* Названия блюд для десктопа */
  .desktop-ttl {
    min-width: 0;
    overflow-wrap: normal;
    /* Не принуждаем к переносу, уважаем white-space: nowrap */
    word-break: normal;
    hyphens: none;
    /* Отключаем автоматические переносы, используем только наши неразрывные пробелы */
    /* Предлоги не должны оставаться в конце строки */
    orphans: 2;
    widows: 2;
    /* Принудительно уважаем неразрывные пробелы */
    white-space: normal;
  }



  /* Описание блюд */
  .item .desc {
    margin-top: 6px;
    line-height: 1.4;
    max-width: calc(100% - 76px);
    /* увеличили на 4px для мобиле (было 80px) */
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    /* отключаем автоматические дефисы - пусть типограф работает */
    -webkit-hyphens: none;
    -moz-hyphens: none;
  }

  /* Описание блюд для десктопа */
  .desktop-desc {
    margin-top: 6px;
    line-height: 1.4;
    max-width: calc(100% - 140px);
    /* ограничиваем на десктопе */
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    /* отключаем автоматические дефисы - пусть типограф работает */
    -webkit-hyphens: none;
    -moz-hyphens: none;
  }

  /* Дополнительные ограничения для длинных описаний */
  .item .desc,
  .item .desktop-desc {
    /* Ограничиваем количество строк для длинных описаний */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* максимум 3 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* На больших экранах разрешаем больше строк */
  @media (min-width: 1200px) {

    .item .desc,
    .item .desktop-desc {
      -webkit-line-clamp: 4;
      /* на больших экранах - 4 строки */
    }
  }
}

/* Иконка глаза для товаров с фото */
.photo-icon {
  margin-left: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--hair);
  vertical-align: middle;
  visibility: visible !important;
  width: 40px;
  height: 28px;
  min-width: 40px;
  min-height: 28px;
  position: relative;
  z-index: 100;
}

/* Отступ только если есть другие элементы перед иконкой */
.meta .photo-icon:not(:first-child) {
  margin-left: 8px;
}



.photo-icon:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.photo-icon svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

body.brunch-theme .photo-icon svg {
  color: var(--ink);
}

/* Анимация импульсов для привлечения внимания */
.photo-icon.pulse-attention {
  animation: eye-pulse-attention 2s ease-in-out 2;
}

/* Уважение prefers-reduced-motion для импульсов */
@media (prefers-reduced-motion: reduce) {
  .photo-icon.pulse-attention {
    animation: none !important;
    transform: none !important;
    box-shadow: none !important;
    /* Вместо анимации просто делаем более заметным */
    opacity: 1 !important;
    background: rgba(242, 202, 121, 0.2) !important;
    border-color: var(--gold) !important;
  }
}

@keyframes eye-pulse-attention {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(242, 202, 121, 0);
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(242, 202, 121, 0.1);
  }
}

/* Модальное окно для просмотра фото */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  animation: photoModalFadeIn 0.4s ease forwards;
}

.photo-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  animation: photoContentScaleIn 0.4s ease forwards 0.1s;
}

.photo-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: photoImageFadeIn 0.3s ease forwards 0.2s;
  /* Размытие границ для скрытия огрехов вырезания фона */
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 16px rgba(0, 0, 0, 0.6));
}

.photo-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1;
  font-weight: 300;
}

.photo-modal-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

@keyframes photoModalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes photoContentScaleIn {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

@keyframes photoImageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Анимация закрытия модального окна */
.photo-modal-closing {
  animation: photoModalFadeOut 0.3s ease forwards;
}

.photo-modal-closing .photo-modal-content {
  animation: photoContentScaleOut 0.3s ease forwards;
}

.photo-modal-closing .photo-modal-image {
  animation: photoImageFadeOut 0.3s ease forwards;
}

@keyframes photoModalFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes photoContentScaleOut {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

@keyframes photoImageFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* === Анимации главной страницы === */

/* Анимация появления описания героя */
.hero-description {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-description-fade-in 0.8s ease forwards 0.3s;
}

@keyframes hero-description-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Анимация появления кнопок CTA */
.cta-buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: cta-buttons-fade-in 0.8s ease forwards 0.6s;
}

@keyframes cta-buttons-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Анимация появления заголовков секций */
.section-title {
  opacity: 0;
  transform: translateY(20px);
  animation: section-title-fade-in 0.8s ease forwards;
}

@keyframes section-title-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Задержки для заголовков секций */
#highlights .section-title {
  animation-delay: 0.2s;
}

#about .section-title {
  animation-delay: 0.4s;
}

#events .section-title {
  animation-delay: 0.6s;
}

#map-wrap .section-title {
  animation-delay: 0.8s;
}

#contact .section-title {
  animation-delay: 1.0s;
}

/* Основные стили для заголовков секций (объединено с анимацией выше) */
.section-title,
h2.section-title {
  font-weight: 400;
  /* Regular */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  /* плотнее под техно-вайб */
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  color: var(--voy-color-accent);
  text-align: center;
  margin: 2.5rem 0 1.25rem;
}

/* Анимация появления карточек хайлайтов */
.card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: card-fade-in 0.6s ease forwards;
}

@keyframes card-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Задержки для карточек */
.card:nth-child(1) {
  animation-delay: 0.3s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.5s;
}

.card:nth-child(4) {
  animation-delay: 0.6s;
}

.card:nth-child(5) {
  animation-delay: 0.7s;
}

.card:nth-child(6) {
  animation-delay: 0.8s;
}

/* Анимация появления контента About */
.about-content {
  opacity: 0;
  transform: translateY(20px);
  animation: about-content-fade-in 0.8s ease forwards 0.5s;
}

@keyframes about-content-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Анимация появления карты */
.map {
  opacity: 0;
  transform: translateY(20px);
  animation: map-fade-in 0.8s ease forwards 0.5s;
}

@keyframes map-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Анимация появления контактной информации */
.contact-info {
  opacity: 0;
  transform: translateY(20px);
  animation: contact-info-fade-in 0.8s ease forwards 0.5s;
}

@keyframes contact-info-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Отключаем анимации для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

  .brand-logo,
  .hero-description,
  .cta-buttons,
  .section-title,
  .card,
  .about-content,
  .map,
  .contact-info {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Новые стили для универсального модального окна (как на главной) */
.image-modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.image-modal.show .image-modal-content {
  transform: scale(1);
  opacity: 1;
}

.image-modal img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  /* Размытие границ для скрытия огрехов вырезания фона */
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 16px rgba(0, 0, 0, 0.6));
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--gold);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* ===== Voyager 1 — Menu Typography tweaks (Gemunu Libre variable) =====
   NOTE: Gemunu Libre is a variable font (wght 200–800).
   We control weight via standard font-weight values: 400, 600, 700, etc.
   Do NOT simulate bold → keep font-synthesis disabled globally if present.
*/

/* Цвета — использовать существующие, при отсутствии — fallback ниже */
:root {
  --voy-color-accent: #E5B567;
  /* золото Voyager */
  --voy-color-text: #ECECEC;
  --voy-color-sub: #AAB0B6;
  --voy-badge-bg: #30363d;
}

/* Заголовки разделов (EM PRESSÃO / LICORES ARTESANAIS) */
.menu .section-title,
.menu h2.section-title,
.menu-section>h2,
.menu .section-header {

  font-weight: 400;
  /* Regular */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  /* плотнее под техно-вайб */
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  color: var(--voy-color-accent);
  text-align: center;
  margin: 2.5rem 0 1.25rem;
}

/* Названия позиций (строка с названием напитка/блюда) */
.menu .item-title,
.menu .menu-item .title,
.menu .menu-item h3,
.menu .menu-item .name {

  font-weight: 600;
  /* SemiBold — дает чёткость в капсе */
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.25;
  color: var(--voy-color-text);
}

/* Описания под позициями */
.menu .item-description,
.menu .menu-item .description,
.menu .menu-item .subtitle,
.menu .menu-item small {

  font-weight: 400;
  /* Regular */
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: none;
  /* описания читаются лучше без all-caps */
  color: var(--voy-color-sub);
}

/* Цены (правый столбец) */
.menu .price,
.menu .menu-item .price {

  font-weight: 500;
  /* Medium — выделяет, но не кричит */
  color: var(--voy-color-accent);
}

/* Бейджи (red / vinho verde / white) */
.menu .badge,
.menu .chip,
.menu .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 400;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
  background: var(--voy-badge-bg);
  color: var(--voy-color-text);
  min-height: 20px;
  white-space: nowrap;
}

/* Навигационные табы сверху (если нужны лёгкие правки) */
.menu .tabs .tab,
.menu .filters .pill {

  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Мобильная плотность — слегка уменьшаем заголовки и интервалы */
@media (max-width: 520px) {
  .menu .section-title {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
  }

  .menu .item-title {
    font-size: 0.95rem;
    letter-spacing: 0.035em;
  }

  .menu .item-description {
    font-size: 0.82rem;
  }
}

/* Hero секция - главный заголовок */
.hero h1,
.hero .hero-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--voy-color-text);
  margin: 0 0 1rem;
}

/* Hero описание */
.hero .hero-description,
.hero p {

  font-weight: 400;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--voy-color-sub);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Навигационные чипы */
.chip {

  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--voy-color-text);
}

/* CTA кнопки */
.hero .cta-button,
.hero .btn,
.cta-button,
.btn {

  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: var(--voy-color-text);
}


/* About Us заголовок */
.about-slogan {

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.2;
  color: var(--voy-color-accent);
  margin: 0 0 1rem;
}

/* About Us описание */
.about p {

  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--voy-color-text);
}

/* Заголовки событий */
.event h3 {

  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--voy-color-accent);
  margin: 0 0 0.5rem;
}

/* Описания событий */
.event p {

  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--voy-color-sub);
}

/* Заголовки хайлайтов */
.highlight h3,
.highlight .title {

  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--voy-color-text);
  margin: 0 0 0.5rem;
}

/* Описания хайлайтов */
.highlight p,
.highlight .description {

  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--voy-color-sub);
}

/* Footer текст */
.footer p,
.footer span {

  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--voy-color-sub);
}

/* Footer ссылки */
.footer a {

  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  color: var(--voy-color-accent);
}

/* Мобильная адаптация для главной */
@media (max-width: 520px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 0.06em;
  }

  .hero .hero-description {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
  }

  .about-slogan {
    font-size: 1rem;
  }

  .about p {
    font-size: 0.85rem;
  }

  .chip {
    font-size: 0.8rem;
  }

  .cta-button,
  .btn {
    font-size: 0.8rem;
  }
}

.image-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}