/* ============================================================
   Balıkçı Meyhanesi Kaleiçi — premium redesign 2026
   Dark meyhane: ink, brass, terracotta. Cormorant + Manrope.
   ============================================================ */

:root {
  --ink: #101418;
  --ink2: #161b21;
  --ink3: #1d232b;
  --paper: #f4ede1;
  --paper2: #f9f4ea;
  --gold: #c9a86a;
  --gold2: #e8d5a5;
  --terra: #c86f4a;
  --line: rgba(201, 168, 106, .28);
  --line-d: rgba(244, 237, 225, .14);
  --txt-d: #e9e2d2;
  --txt-m: #a7a293;
  --sea: #4e6a76;

  --ff-d: "Cormorant Garamond", Georgia, serif;
  --ff-t: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);   /* спокойный экспоненциальный ease-out, без пружин */
  --r: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-t);
  font-size: 16px;
  line-height: 1.65;
  background: var(--ink);
  color: var(--txt-d);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- type ---------- */
.h2 {
  font-family: var(--ff-d);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.lead { color: var(--txt-m); font-size: 17px; max-width: 560px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--ff-t);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--gold2), var(--gold));
  color: #221a0c;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s;
  box-shadow: 0 10px 30px rgba(201, 168, 106, .25);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201, 168, 106, .35); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold2); box-shadow: none; }

.btn--small { padding: 10px 22px; font-size: 11.5px; }
.btn--full { width: 100%; }

/* ---------- header ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, 4vw);
  height: 84px;
  background: transparent;
  transition: background .4s, border-color .4s, height .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(16, 20, 24, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-d);
  height: 68px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-d);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--paper);
}
.nav__fish { width: 40px; color: var(--gold); }
.nav__links {
  display: flex;
  gap: 30px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--txt-m);
  position: relative;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 18px; }

.lang { display: flex; gap: 2px; }
.lang__btn {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--txt-m);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.lang__btn:hover { color: var(--paper); }
.lang__btn.is-active { color: var(--gold2); background: rgba(201, 168, 106, .12); }

/* burger */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex: none;
}
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.6px;
  background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s, top .3s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(16, 20, 24, .97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.nav__mobile.is-open { opacity: 1; pointer-events: auto; }
.nav__mobile a {
  font-family: var(--ff-d);
  font-size: 30px;
  color: var(--paper);
}
.nav__mobile .btn { margin-top: 8px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;            /* контент прижат вниз — не «парит в центре экрана» */
  overflow: hidden;
  isolation: isolate;
  min-height: 72svh;                /* высота по содержимому + воздух, не 100vh */
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* локальная плашка под текстом, фото справа дышит */
  background:
    linear-gradient(90deg, rgba(16,20,24,.88) 0%, rgba(16,20,24,.62) 34%, rgba(16,20,24,.12) 62%, rgba(16,20,24,0) 100%),
    linear-gradient(180deg, rgba(16,20,24,.35) 0%, transparent 22%, rgba(16,20,24,.55) 100%);
}
.hero__inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 130px 0 56px;            /* низ, не вертикальный центр */
}
.hero__place {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--ff-d);
  font-weight: 500;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: .98;
  color: var(--paper);
  margin-bottom: 26px;
}
.hero__title2 { color: var(--gold2); font-style: italic; }
.hero__lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--txt-d);
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__rating {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rating { display: flex; align-items: center; gap: 10px; }
.rating__score {
  font-family: var(--ff-d);
  font-size: 30px;
  color: var(--gold2);
}
.rating__stars { color: var(--gold); letter-spacing: 2px; }
.rating__src { color: var(--txt-m); font-size: 13.5px; }
.hero__sep { width: 1px; height: 34px; background: var(--line-d); }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 20px;
  transform: translateX(-50%);
  display: none;                    /* скрыт: hero больше не full-viewport, скролл-подсказка не нужна */
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line-d);
  background: var(--ink2);
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: mq 46s linear infinite;
}
.marquee__track span {
  font-family: var(--ff-d);
  font-size: 19px;
  letter-spacing: .12em;
  color: var(--gold2);
  white-space: nowrap;
  padding: 0 26px;
  position: relative;
}
.marquee__track span::after {
  content: "·";
  position: absolute;
  right: -4px;
  color: var(--terra);
}
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- facts: лента-строка, не 4 равные клетки ---------- */
.facts { padding: 72px 0 64px; }
.facts__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 0;
  border-block: 1px solid var(--line-d);
  padding: 26px 0;
}
.fact {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 28px;
  border-left: 1px solid var(--line-d);
}
.fact:first-child { border-left: none; padding-left: 0; }
.fact__num {
  font-family: var(--ff-d);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--gold2);
  line-height: 1;
  white-space: nowrap;
}
.fact__num em { font-style: normal; font-size: .55em; color: var(--txt-m); letter-spacing: 0; }
.fact__label { color: var(--txt-m); font-size: 13px; max-width: 150px; line-height: 1.35; }
.fact__label b { color: var(--paper); font-weight: 600; }

/* ---------- about ---------- */
.about { padding: 90px 0; position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.about__img {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__img:hover img { transform: scale(1.04); }
.about__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 213, 165, .25);
  border-radius: var(--r);
  pointer-events: none;
}
.about__badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(16, 20, 24, .82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 12.5px;
  color: var(--gold2);
  letter-spacing: .06em;
}
.about__txt .eyebrow { margin-bottom: 18px; }
.about__txt h2 { margin-bottom: 22px; }
.about__txt p { color: var(--txt-m); margin-bottom: 16px; max-width: 480px; }
.about__txt p:last-of-type { margin-bottom: 0; }

/* ---------- signature dishes: асимметричный bento ---------- */
.dishes { padding: 40px 0 100px; }
.dishes__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.dishes__head .lead { margin-top: 14px; }
.dishes__grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;   /* колонки РАЗНОЙ ширины — не равный трёхколоночник */
  grid-auto-rows: 220px;
  gap: 18px;
}
.dish {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
}
.dish:nth-child(1) { grid-column: 1 / span 1; grid-row: span 2; }   /* высокий мезе-стол */
.dish:nth-child(2) { grid-column: 2; }
.dish:nth-child(3) { grid-column: 3; grid-row: span 2; }           /* высокий правый */
.dish:nth-child(4) { grid-column: 2; }
.dish:nth-child(5) { display: none; }                               /* 4 фото — ритм рваный, пятый убран */
.dish--wide { grid-column: 1 !important; }                          /* HTML-класс больше не главнее nth-ритм */
.dish img { width: 100%; height: 100%; object-fit: cover; }
.dish::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 18, 0);
  transition: background .35s;
}
.dish:hover::after { background: rgba(12, 15, 18, .35); }           /* затемнение вместо зума */
.dish__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 15, 18, .92) 100%);
}
.dish__tag {
  position: absolute;
  inset: auto 18px 18px 18px;
  font-family: var(--ff-d);
  font-size: 24px;
  color: var(--paper);
  letter-spacing: .02em;
}
.dish__tag small {
  display: block;
  font-family: var(--ff-t);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-top: 4px;
}
.dish--wide { grid-column: span 2; }
.dish--wide .dish__tag { font-size: 30px; }

/* ---------- menu section ---------- */
.menu { padding: 90px 0; background: var(--ink2); border-block: 1px solid var(--line-d); }
.menu__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.menu__head .lead { margin: 16px auto 0; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 56px;
}
.menu__col h3 {
  font-family: var(--ff-d);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu__col h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  opacity: .5;
}
.menu__list { list-style: none; }
.menu__list li {
  padding: 11px 0;
  border-bottom: 1px dashed rgba(244, 237, 225, .1);
  color: var(--txt-d);
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.menu__list li span { color: var(--txt-m); font-size: 13px; align-self: baseline; }
.menu__daily {
  text-align: center;
  margin-top: 44px;
  color: var(--txt-m);
  font-style: italic;
  font-family: var(--ff-d);
  font-size: 19px;
}
.menu__cta { text-align: center; margin-top: 34px; }

/* ---------- gallery ---------- */
.gallery { padding: 90px 0 60px; }
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gcell { position: relative; border-radius: 10px; overflow: hidden; cursor: zoom-in; }
.gcell img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gcell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0);
  transition: background .3s;
}
.gcell:hover::after { background: rgba(16, 20, 24, .25); }
.gcell--tall { grid-row: span 2; aspect-ratio: 1 / 1.55; }
.gcell--big { grid-column: span 3; aspect-ratio: 2 / 1.1; }
.gcell--sm { grid-column: span 2; aspect-ratio: 1.45; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 12, 15, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--ff-d);
  font-size: 40px;
  color: var(--paper);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ---------- reviews: каскад, не 3+3 ---------- */
.reviews { padding: 80px 0 90px; background: var(--ink2); border-block: 1px solid var(--line-d); }
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: 760px; margin: 0 auto 46px; }
.reviews__head .lead { margin: 16px 0 0; }
.revtop {
  display: flex;
  align-items: baseline;
  gap: 40px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.revtop__card {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
}
.revtop__score {
  font-family: var(--ff-d);
  font-size: 44px;
  color: var(--gold2);
  line-height: 1;
}
.revtop__stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; align-self: center; }
.revtop__label { color: var(--txt-m); font-size: 13px; max-width: 130px; line-height: 1.35; }
.revtop__label b { color: var(--paper); }

/* отзывы-цитаты: каскад 2-1 с разной шириной */
.revcards {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
}
.revcard {
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: 26px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.revcard:nth-child(3) { grid-column: 1 / -1; max-width: 720px; }   /* широкая финальная цитата-лента */
.revcard__q {
  font-family: var(--ff-d);
  font-size: 54px;
  color: var(--gold);
  line-height: .6;
  opacity: .55;
}
.revcard__text { color: var(--txt-d); font-size: 14.5px; flex: 1; }
.revcard__text b { color: var(--gold2); font-weight: 600; }
.revcard__name { color: var(--txt-m); font-size: 12.5px; letter-spacing: .06em; }

/* ---------- reserve ---------- */
.reserve { padding: 100px 0; position: relative; overflow: hidden; }
.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(200, 111, 74, .12), transparent 70%),
    radial-gradient(50% 70% at 10% 90%, rgba(201, 168, 106, .09), transparent 70%);
  pointer-events: none;
}
.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  position: relative;
}
.reserve__phone {
  font-family: var(--ff-d);
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--gold2);
  margin: 18px 0 26px;
  display: inline-block;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--ink2);
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: clamp(24px, 3.4vw, 38px);
}
.form__row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr) 0.9fr; gap: 12px; }
.contact-grid > * { min-width: 0; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-m);
}
.form input, .form select {
  font-family: var(--ff-t);
  font-size: 15px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-d);
  border-radius: 9px;
  padding: 13px 15px;
  transition: border-color .25s;
  outline: none;
  width: 100%;
}
.form input:focus, .form select:focus { border-color: var(--gold); }
.form input[type="date"], .form input[type="time"] { color-scheme: dark; }
.form__hint { font-size: 12.5px; color: var(--txt-m); }
.form__done {
  padding: 12px 16px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: rgba(201, 168, 106, .08);
  color: var(--gold2);
  font-size: 13.5px;
}

/* ---------- visit / map ---------- */
.visit { padding: 0 0 100px; }
.visit__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}
.vinfo {
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  background: var(--ink2);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.vinfo__item { display: flex; gap: 16px; }
.vinfo__ico {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.vinfo__ico svg { width: 20px; }
.vinfo__label { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--txt-m); margin-bottom: 4px; }
.vinfo__value { color: var(--paper); font-size: 15.5px; }
.vinfo__value a:hover { color: var(--gold2); }
.vmap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-d);
  min-height: 340px;
  position: relative;
}
.vmap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.9) invert(.92) contrast(.9) hue-rotate(180deg); }
.vmap-btn { margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--ink2); border-block: 1px solid var(--line-d); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 70px); }
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid var(--line-d);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-d);
  font-size: 22px;
  text-align: left;
  color: var(--paper);
  transition: color .25s;
}
.faq__q:hover { color: var(--gold2); }
.faq__q i {
  font-style: normal;
  font-size: 26px;
  color: var(--gold);
  transition: transform .3s var(--ease);
  flex: none;
}
.faq__item.is-open .faq__q i { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq__a p { padding: 0 40px 22px 0; color: var(--txt-m); max-width: 640px; }

/* ---------- footer ---------- */
.footer { background: #0b0e11; border-top: 1px solid var(--line-d); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-d);
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer__tag { color: var(--txt-m); font-size: 13.5px; margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-d);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--txt-m);
  transition: color .25s, border-color .25s;
}
.footer__social a:hover { color: var(--gold2); border-color: var(--line); }
.footer__social svg { width: 17px; }
.footer__col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__col--links { display: flex; flex-direction: column; gap: 10px; }
.footer__col--links a { color: var(--txt-m); font-size: 14px; transition: color .25s; }
.footer__col--links a:hover { color: var(--paper); }
.footer__col address { font-style: normal; color: var(--txt-m); font-size: 14px; line-height: 1.7; }
.footer__line { margin-top: 10px; color: var(--txt-m); font-size: 14px; }
.footer__line a { color: var(--paper); }
.footer__line a:hover { color: var(--gold2); }
.footer__col--map { min-height: 180px; border-radius: 10px; overflow: hidden; }
.footer__col--map iframe { width: 100%; height: 100%; min-height: 180px; border: 0; filter: grayscale(1) invert(.9); }
.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-d);
  padding: 20px 0;
  color: var(--txt-m);
  font-size: 12.5px;
}

/* ---------- inner pages ---------- */
.menu-hero {
  padding: 150px 0 60px;
  background: var(--ink2);
  border-bottom: 1px solid var(--line-d);
}
.menu-hero__crumb { color: var(--txt-m); font-size: 13px; margin-bottom: 16px; }
.menu-hero__crumb a { color: var(--gold2); }
.menu-hero__lead { color: var(--txt-m); margin-top: 14px; max-width: 640px; }
.menu-page { padding: 70px 0 80px; }

.menu-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.menu-card {
  background: var(--ink2);
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: 30px;
  transition: border-color .3s, transform .3s var(--ease);
}
.menu-card:hover { border-color: var(--line); transform: translateY(-3px); }
.menu-card__ico { font-size: 30px; margin-bottom: 14px; }
.menu-card h3 { font-family: var(--ff-d); font-size: 24px; font-weight: 500; color: var(--paper); margin-bottom: 10px; }
.menu-card p { color: var(--txt-m); font-size: 14.5px; }

.reserve--compact { padding: 80px 0; }
.contact-page { padding: 70px 0 90px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 20px; border: 1px solid var(--line-d); border-radius: var(--r); background: var(--ink2); padding: clamp(24px, 3vw, 36px); }
.cinfo__item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 18px; border-bottom: 1px dashed rgba(244, 237, 225, .1); }
.cinfo__item:last-child { border: none; padding-bottom: 0; }
.cinfo__item strong { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.cinfo__item a, .cinfo__item span:last-child { color: var(--txt-d); font-size: 15.5px; line-height: 1.6; }
.cinfo__item a:hover { color: var(--gold2); }
.btn--dark { background: var(--ink3); color: var(--paper); border: 1px solid var(--line); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__burger { display: block; }

  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__img { max-width: 560px; aspect-ratio: 4 / 4.6; }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .dish--wide { grid-column: span 2; }
  .menu__grid { grid-template-columns: 1fr; gap: 14px; }
  .revcards, .revtop { grid-template-columns: 1fr 1fr; }
  .reserve__grid, .visit__grid, .faq__grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .form { max-width: 560px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--map { grid-column: span 2; }
  .menu-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .nav { height: 64px; }
  .nav.is-solid { height: 60px; }
  .nav__brand { font-size: 18px; }
  .nav__fish { width: 32px; }
  .hero__inner { padding: 110px 0 48px; }
  .hero__rating { gap: 10px; }
  .hero__sep { display: none; }
  .hero {
    min-height: 0;                   /* на мобиле — высота контента, без минимальных 72svh */
  }
  .hero__inner { padding: 70px 0 40px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); margin-bottom: 16px; }
  .hero__lead { font-size: 15px; }
  .hero__actions { margin-top: 22px; }
  .hero__rating { margin-top: 22px; }
  .rating__score { font-size: 24px; }
  .facts { padding: 44px 0 36px; }
  .facts__grid { padding: 18px 0; }
  .fact { width: 100%; border-left: none; padding: 6px 0; }
  .about__txt .lead, .about__txt p, .reviews__head .lead, .menu__head .lead { max-width: 100%; }
  .about { padding: 60px 0; }
  .dishes { padding: 24px 0 60px; }
  .dishes__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 10px; }
  .dish:nth-child(1) { grid-row: span 2; }
  .dish:nth-child(3) { grid-row: span 1; }
  .menu { padding: 60px 0; }
  .gallery { padding: 60px 0 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gcell--big { grid-column: span 2; }
  .gcell--tall { grid-row: span 1; aspect-ratio: 1.2; }
  .gcell--sm { grid-column: span 1; aspect-ratio: 1.3; }
  .reviews { padding: 56px 0 60px; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
  .revtop { gap: 20px; }
  .revtop__label { display: none; }   /* на мобиле — счёт и звёзды */
  .revcards { grid-template-columns: 1fr; }
  .revcard:nth-child(3) { grid-column: span 1; max-width: none; }
  .reserve { padding: 64px 0; }
  .form__row { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .form__row label:last-child { grid-column: span 2; }
  .visit { padding: 0 0 64px; }
  .faq { padding: 60px 0; }
  .faq__q { font-size: 19px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__col--map { grid-column: span 1; }
  .menu-hero { padding: 120px 0 44px; }
  .menu-page { padding: 48px 0 60px; }
  .contact-page { padding: 48px 0 64px; }
  .contact-grid { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
}
