/* ═══════════════════════════════════════
   ИСАЯ БИСТРО — фирменный стиль
   Палитра: тёплый крем + шоколадный коричневый
   ═══════════════════════════════════════ */

:root {
  --cream:        #F5EDD5;
  --cream-alt:    #EDE0C0;
  --cream-dark:   #D9C9A3;
  --brown-deep:   #231008;
  --brown-mid:    #5C3317;
  --brown-warm:   #8B5227;
  --brown-light:  #B8895A;
  --text:         #231008;
  --text-muted:   #7A5535;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Lora', 'Georgia', serif;
  --font-script:  'Dancing Script', cursive;

  --ease-smooth:  cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── УТИЛИТЫ ── */
.hidden { display: none !important; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────
   НАВИГАЦИЯ
───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(245, 237, 213, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(35, 16, 8, 0.1);
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: filter 0.4s, mix-blend-mode 0.4s;
}
.nav.hero-visible .nav__logo-img {
  filter: invert(1);
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: opacity 0.2s;
}
.nav.scrolled .nav__link { color: var(--text); }
.nav__link:hover { opacity: 0.6; }

.nav__link--ig {
  padding: 8px 20px;
  border: 1px solid currentColor;
  border-radius: 100px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.3s;
}
.nav.scrolled .nav__burger span { background: var(--text); }

/* Мобильное меню */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--brown-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-deep);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #3D1E0A 0%,
    #5C3317 30%,
    #7B4B28 60%,
    #2A1208 100%
  );
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(35, 16, 8, 0.2) 0%,
    rgba(35, 16, 8, 0.55) 60%,
    rgba(35, 16, 8, 0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__logo-wrap {
  transition: opacity 1s var(--ease-out) 0.2s, transform 1s var(--ease-out) 0.2s;
}

.hero__logo {
  height: clamp(100px, 18vw, 200px);
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(245, 237, 213, 0.6);
  transition: opacity 0.2s;
}
.hero__scroll:hover { opacity: 0.4; }

.hero__scroll-dot {
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ─────────────────────────────────────
   О НАС
───────────────────────────────────── */
.about {
  padding: clamp(56px, 7vw, 100px) 0;
  overflow: visible;
  position: relative;
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.about__deco {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(35,16,8,0.22);
  pointer-events: none;
  z-index: 0;
}
.about__deco--1 {
  width: 175px; height: 175px;
  top: 80px; right: -35px;
  transform: rotate(13deg);
}
.about__deco--2 {
  width: 155px; height: 155px;
  top: 44%; left: -40px;
  transform: rotate(-11deg);
}
.about__deco--3 {
  width: 140px; height: 140px;
  bottom: 130px; right: -20px;
  transform: rotate(7deg);
}
@media (max-width: 960px) {
  .about__deco { display: none; }
}

.about__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.about__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--brown-light);
}

.about__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.about__grid--reverse .about__text-block { order: 2; }
.about__grid--reverse .about__photo { order: 1; }

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}
.about__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--brown-mid);
}

.about__subhead {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.about__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about__body em { color: var(--text); font-style: italic; }
.about__body:last-child { margin-bottom: 0; }

/* Фотографии */
.about__photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-alt);
}
.about__photo--1 { aspect-ratio: 4/5; }
.about__photo--2 { aspect-ratio: 3/4; }

.about__photo img,
.about__photo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.about__photo-sm {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-alt);
}
.about__photo-sm--1 { aspect-ratio: 3/4; margin-top: 40px; }
.about__photo-sm--2 { aspect-ratio: 1/1; }
.about__photo-sm--3 { aspect-ratio: 3/4; margin-top: -20px; }

/* Плейсхолдер фото */
.photo__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}
.photo--empty .photo__placeholder {
  display: flex;
}
.photo__placeholder span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-light);
  opacity: 0.6;
}

/* ─────────────────────────────────────
   КОНЦЕПЦИЯ-ПОЛОСА
───────────────────────────────────── */
.concept-band {
  background: var(--brown-deep);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px);
  overflow: hidden;
  position: relative;
}

.concept-band__deco {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.45);
  pointer-events: none;
  opacity: 0.88;
}
.concept-band__deco--1 {
  width: 130px; height: 130px;
  top: 50%; left: 5%;
  transform: translateY(-50%) rotate(-10deg);
}
.concept-band__deco--2 {
  width: 110px; height: 110px;
  top: 50%; right: 5%;
  transform: translateY(-50%) rotate(10deg);
}
@media (max-width: 960px) {
  .concept-band__deco { display: none; }
}

.concept-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.concept-band__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.concept-band__quote em {
  color: var(--cream-dark);
  font-style: italic;
}

/* ─────────────────────────────────────
   МЕНЮ
───────────────────────────────────── */
.menu {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}

.menu__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.menu__header {
  margin-bottom: 60px;
}

.menu__number, .menu__tag {
  display: inline-block;
}

.menu__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-right: 16px;
}

.menu__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 8px;
}

.menu__note {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--brown-light);
  letter-spacing: 0.04em;
}

/* Табы */
.menu__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 0;
}

.menu__tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  position: relative;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.menu__tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--brown-mid);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-smooth);
  transform-origin: left;
}

.menu__tab.active {
  color: var(--text);
}
.menu__tab.active::after { transform: scaleX(1); }
.menu__tab:hover { color: var(--text); background: rgba(35, 16, 8, 0.03); }

/* Категории */
.menu__cat { animation: fadeInMenu 0.4s var(--ease-out); }
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu__subsection { margin-bottom: 48px; }
.menu__subsection:last-child { margin-bottom: 0; }

.menu__subsection-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 4px;
}

.menu__sub-weight {
  font-style: normal;
  font-size: 0.7em;
  color: var(--brown-light);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.menu__subsection-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Сетка блюд */
.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--cream-dark);
}

.menu__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
}
.menu__item:hover { background: rgba(35, 16, 8, 0.02); }

.menu__item--wide {
  grid-column: 1 / -1;
}

.menu__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.menu__item-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.menu__item-weight {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.06em;
}

.menu__item-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.menu__item-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown-light);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 60px;
  text-align: right;
}

/* Добавки */
.menu__addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
}

.menu__addon-col--full {
  grid-column: 1 / -1;
}

.menu__addon-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.menu__addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu__addon-tags span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  background: var(--cream-alt);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 5px 14px;
  transition: background 0.2s, border-color 0.2s;
}
.menu__addon-tags span:hover {
  background: var(--cream-dark);
  border-color: var(--brown-light);
}

/* ─────────────────────────────────────
   ГАЛЕРЕЯ
───────────────────────────────────── */
.gallery {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--cream-alt);
}

.gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.gallery__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--brown-light);
}

.gallery__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--text);
  margin-left: auto;
}
.gallery__title em { font-style: italic; font-weight: 300; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-dark);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Ряд 1: 5 + 7 = 12 */
.gallery__item--tall { grid-column: span 5; aspect-ratio: 4/5; }
.gallery__item--wide { grid-column: span 7; aspect-ratio: 16/9; }
/* Ряд 2: 4 + 4 + 4 = 12 */
.gallery__item--sm   { grid-column: span 4; aspect-ratio: 4/5; }

/* ─────────────────────────────────────
   INSTAGRAM
───────────────────────────────────── */
.instagram {
  background: var(--brown-deep);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
}

.instagram__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.instagram__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0.6;
}

.instagram__handle {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.instagram__handle:hover { opacity: 0.7; }

.instagram__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.instagram__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1px solid rgba(245, 237, 213, 0.35);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background 0.25s, border-color 0.25s;
}
.instagram__btn:hover {
  background: rgba(245, 237, 213, 0.1);
  border-color: rgba(245, 237, 213, 0.6);
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  background: var(--cream-alt);
  border-top: 1px solid var(--cream-dark);
  padding: 40px clamp(24px, 5vw, 80px);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer__right {
  text-align: right;
}

.footer__city {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.6;
}

.footer__phone {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s var(--ease-out);
}

.footer__phone:hover {
  opacity: 0.6;
}

/* ═════════════════════════════════════
   ДВА ГОРОДА: приветствие + переключатель
═════════════════════════════════════ */

/* видимость переключаемых данных */
html:not(.city-chosen) [data-city-only] { display: none !important; }
html.city-chosen [data-city-prompt] { display: none !important; }

/* ── ПРИВЕТСТВЕННЫЙ ЭКРАН (overlay поверх сайта) ── */
.welcome {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: radial-gradient(120% 90% at 50% 0%, #3A1C0C 0%, var(--brown-deep) 60%, #160a04 100%);
}
@supports (min-height: 100svh) { .welcome { min-height: 100svh; } }
@supports (min-height: 100dvh) { .welcome { min-height: 100dvh; } }
.welcome.is-hidden { display: none !important; }
html.city-chosen .welcome { display: none; }

.welcome__inner {
  width: 100%;
  max-width: 440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.welcome__hello {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.05;
  color: var(--cream);
}
.welcome__logo {
  height: clamp(72px, 18vw, 104px);
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}
.welcome__logo-text { font-family: var(--font-display); font-size: 32px; color: var(--cream); }
.welcome__sub {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 213, 0.7);
}
.welcome__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 4px;
}
.welcome__city {
  flex: 1 1 150px;
  min-height: 60px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brown-deep);
  background: var(--cream);
  border: 1.5px solid var(--cream);
  border-radius: 100px;
  transition: background 0.2s, transform 0.1s;
}
.welcome__city:hover { background: var(--cream-alt); }
.welcome__city:active { transform: scale(0.97); }
.welcome__city.is-active { background: var(--brown-warm); border-color: var(--brown-warm); color: var(--cream); }
.welcome__skip {
  margin-top: 6px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(245, 237, 213, 0.6);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.welcome__skip:hover { color: var(--cream); border-color: rgba(245, 237, 213, 0.5); }

/* ── ПЕРЕКЛЮЧАТЕЛЬ ГОРОДА В ШАПКЕ ── */
.nav__city-wrap {
  position: relative;
  margin-left: 20px;
  margin-right: auto;   /* logo+город слева, ссылки справа */
}
.nav__city {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 60vw;
  padding: 7px 13px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(245, 237, 213, 0.1);
  border: 1px solid rgba(245, 237, 213, 0.35);
  border-radius: 100px;
  transition: background 0.2s, color 0.3s, border-color 0.3s;
}
.nav__city span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav__city-pin { flex: none; }
.nav__city-caret { flex: none; transition: transform 0.2s; }
.nav__city[aria-expanded="true"] .nav__city-caret { transform: rotate(180deg); }
.nav__city:hover { background: rgba(245, 237, 213, 0.2); }
.nav.scrolled .nav__city {
  color: var(--text);
  background: rgba(35, 16, 8, 0.06);
  border-color: rgba(35, 16, 8, 0.2);
}
.nav.scrolled .nav__city:hover { background: rgba(35, 16, 8, 0.1); }

.nav__city-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  padding: 6px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(35, 16, 8, 0.22);
  z-index: 150;
}
.nav__city-menu.open { display: flex; }
.nav__city-opt {
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  text-align: left;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav__city-opt:hover { background: var(--cream-alt); }
.nav__city-opt.is-active { background: var(--brown-deep); color: var(--cream); }

/* ── ФУТЕР: карта (светлый фон) ── */
.footer__maps {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s, border-color 0.2s;
}
.footer__maps:hover { color: var(--brown-deep); border-color: var(--brown-mid); }
.footer__prompt {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--cream-dark);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.footer__prompt:hover { color: var(--brown-mid); }

/* ── СОЦРАЗДЕЛ: подсказка (тёмный фон) ── */
.instagram__prompt {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--cream-dark);
  opacity: 0.75;
  border-bottom: 1px dashed rgba(245, 237, 213, 0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s, color 0.2s;
}
.instagram__prompt:hover { opacity: 1; color: var(--cream); }

/* ─────────────────────────────────────
   АДАПТИВ
───────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__city-wrap { margin-left: 14px; }
  .nav__city { max-width: 52vw; }

  .about__grid,
  .about__grid--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__grid--reverse .about__text-block { order: 1; }
  .about__grid--reverse .about__photo { order: 2; }

  .about__photo-row { grid-template-columns: 1fr 1fr; }
  .about__photo-sm--3 { display: none; }
  .about__photo-sm--1, .about__photo-sm--2 { margin-top: 0; }

  .menu__grid { grid-template-columns: 1fr; }
  .menu__item { grid-column: 1; }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item--sm {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }

  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer__right { text-align: center; }

  .gallery__header {
    flex-wrap: wrap;
  }
  .gallery__title {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  .menu__tabs { gap: 4px; }
  .menu__tab { padding: 10px 12px; font-size: 11px; }

  .about__photo-row { grid-template-columns: 1fr; }
  .about__photo-sm--1, .about__photo-sm--2 { margin-top: 0; aspect-ratio: 4/3; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item--sm {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

/* ── Фолбэки текстового логотипа ── */
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: 0.03em;
  transition: color 0.4s;
}
.nav__logo-text b { font-style: normal; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; display: block; }
.nav.scrolled .nav__logo-text { color: var(--text); }

.hero__logo-text {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 130px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  text-align: center;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* ─────────────────────────────────────
   РУКОПИСНЫЙ СЛОГАН
───────────────────────────────────── */
.hero__slogan-svg {
  display: block;
  width: clamp(170px, 26vw, 320px);
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.3));
}

/* ── HERO CTA КНОПКИ ── */
.hero__cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.hero__cta-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 213, 0.9);
  padding: 11px 26px;
  border: 1px solid rgba(245, 237, 213, 0.4);
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.hero__cta-btn:hover {
  background: rgba(245, 237, 213, 0.12);
  border-color: rgba(245, 237, 213, 0.75);
  color: var(--cream);
}

/* ─────────────────────────────────────
   МЕНЮ — НАВИГАЦИЯ ПО РАЗДЕЛАМ
───────────────────────────────────── */
.menu__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu__nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  white-space: nowrap;
}

.menu__nav-link:hover {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--cream);
}

.menu__nav--bottom {
  margin-bottom: 0;
  margin-top: 48px;
  padding-bottom: 0;
  border-bottom: none;
  border-top: 1px solid var(--cream-dark);
  padding-top: 28px;
}

/* ─────────────────────────────────────
   МЕНЮ — СЕКЦИИ (новая вертикальная структура)
───────────────────────────────────── */
.menu__section {
  margin-bottom: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu__section--last {
  border-bottom: none;
  padding-bottom: 0;
}

.menu__section-header {
  margin-bottom: 40px;
}

.menu__section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
}

.menu__section-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-top: 14px;
}

/* ─────────────────────────────────────
   МЕНЮ — КАРТОЧКИ БЛЮД
───────────────────────────────────── */
.menu__dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.menu__dish-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s;
  box-shadow: 0 2px 16px rgba(35, 16, 8, 0.07);
}

.menu__dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(35, 16, 8, 0.15);
}

.menu__dish-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

/* Концептуальный оверлей при наведении */
.menu__dish-card-concept {
  position: absolute;
  inset: 0;
  background: rgba(35, 16, 8, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
  pointer-events: none;
}

.menu__dish-card:hover .menu__dish-card-concept {
  opacity: 0;
}

.menu__dish-card-concept p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.72;
  color: var(--cream);
  font-style: italic;
  text-align: center;
}

.menu__dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-smooth);
}

.menu__dish-card:hover .menu__dish-card-img img {
  transform: scale(1.06);
}

.menu__dish-card-body {
  padding: 16px 18px 18px;
}

.menu__dish-card-name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.menu__dish-card-desc {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
  opacity: 0.8;
}

.menu__dish-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.menu__dish-card-weight {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.04em;
}

.menu__dish-card-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--brown-warm);
}

/* Добавки-теги внутри категорий */
.menu__cat .menu__subsection { margin-top: 8px; }

@media (max-width: 900px) {
  .menu__dish-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 540px) {
  .menu__dish-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────────────────────────────
   ДОБАВКИ — СПИСОК С ЦЕНАМИ
───────────────────────────────────── */
.menu__addon-rows {
  display: flex;
  flex-direction: column;
}

.menu__addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 137, 90, 0.12);
  gap: 12px;
}

.menu__addon-row:last-child {
  border-bottom: none;
}

.menu__addon-name {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--text);
}

.menu__addon-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   НАПИТКИ
───────────────────────────────────── */
.drinks-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  padding-top: 8px;
}

.drinks-group {
  margin-bottom: 36px;
}

.drinks-group__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.01em;
  padding-bottom: 8px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--cream-dark);
}

.drinks-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184, 137, 90, 0.12);
  gap: 12px;
}

.drinks-item:last-child {
  border-bottom: none;
}

.drinks-item__name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--text);
}

.drinks-item__vol {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.drinks-item__price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown-warm);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 680px) {
  .drinks-menu { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────
   СЕКЦИЯ НАПИТКОВ (отдельный блок)
───────────────────────────────────── */
.drinks-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-alt);
}

.drinks-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.drinks-section__header {
  margin-bottom: 60px;
}

.drinks-section__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-right: 16px;
  display: inline-block;
}

.drinks-section__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
}

.drinks-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-top: 16px;
}

/* ── Тонкая зернистость фона ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
