/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Oswald:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* Tokens */
:root {
  --ink: #08080A;
  --ink-2: #0E0E11;
  --panel: #141419;
  --panel-2: #1B1B21;
  --line: rgba(213, 175, 108, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --brass: #C9A051;
  --brass-hi: #E7C77F;
  --brass-dim: #8A6E36;
  --oxblood: #5E1A1E;
  --cream: #F4EBDA;
  --text: #E6DFD2;
  --muted: #9E978A;
  --muted-2: #6F6A61;

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-label: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --r-sm: 4px;
  --r-md: 8px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --z-grain: 5;
  --z-header: 50;
  --z-drawer: 60;
  --z-lightbox: 70;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--brass-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--brass); color: #0A0A0A; }

/* Film grain */
.grain {
  position: fixed;
  inset: -50%;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Shell */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--brass);
  color: #0A0A0A;
  padding: 12px 20px;
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip:focus { left: 12px; top: 12px; }

/* Typography helpers */
.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass));
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  flex: none;
}

.title {
  font-size: clamp(34px, 5.2vw, 62px);
  letter-spacing: -0.02em;
}
.title em {
  font-style: italic;
  color: var(--brass-hi);
  font-weight: 400;
}

.lede {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  max-width: 60ch;
}

.section {
  padding-block: clamp(72px, 10vw, 132px);
  position: relative;
}
[id] { scroll-margin-top: 96px; }
.section-head { margin-bottom: clamp(36px, 5vw, 62px); }
.section-head--center { text-align: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head .title { margin-top: 18px; }
.section-head .lede { margin-top: 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--brass-hi), var(--brass));
  color: #14100A;
  box-shadow: 0 10px 30px -14px rgba(201, 160, 81, 0.7);
}
.btn--primary:hover { background: var(--brass-hi); box-shadow: 0 14px 38px -14px rgba(231, 199, 127, 0.8); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-hi); background: rgba(201, 160, 81, 0.06); }
.btn--block { width: 100%; }
.btn--muted {
  background: var(--panel-2);
  color: var(--muted);
  border: 1px solid var(--line-soft);
  cursor: not-allowed;
}
.btn--muted:hover { background: var(--panel-2); color: var(--muted); }

.soon { display: inline-block; margin-top: 28px; }
.soon--sm { margin-top: 0; flex: none; }
.soon--sm .btn { min-height: 46px; padding: 0 24px; }
.soon--sm .soon__tag { top: -7px; right: -9px; font-size: 9px; padding: 3px 9px 4px; }
.soon--block { display: block; margin-top: 0; }
.soon .btn--muted { position: relative; overflow: visible; }
.soon__tag {
  position: absolute;
  top: -10px;
  right: -12px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #14100A;
  background: linear-gradient(180deg, var(--brass-hi), var(--brass));
  padding: 4px 11px 5px;
  border-radius: 100px;
  line-height: 1;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.9);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 86px;
  transition: height 0.3s var(--ease);
}
.header.is-stuck .header__bar { height: 70px; }

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand__mark { width: 50px; height: 50px; flex: none; object-fit: contain; transition: width 0.3s var(--ease), height 0.3s var(--ease); }
.header.is-stuck .brand__mark { width: 42px; height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.brand__sub {
  font-family: var(--font-label);
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__link {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover { color: var(--brass-hi); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--brass-hi); }

.header__cta { display: flex; align-items: center; gap: 16px; flex: none; }
.header__phone {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--ease);
}
.header__phone:hover { color: var(--brass-hi); }
.header__phone svg { color: var(--brass); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-left: auto;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  position: relative;
  transition: background-color 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded='true'] span { background: transparent; }
.burger[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  background: var(--ink);
  padding: 100px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__link {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__link:hover { color: var(--brass-hi); }
.drawer__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 14px; }
.drawer__meta { font-size: 14px; color: var(--muted); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(8, 8, 10, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.72) 0%, rgba(8, 8, 10, 0.36) 34%, rgba(8, 8, 10, 0.9) 82%, var(--ink) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(36px, 6vw, 68px); }
.hero__logo {
  width: clamp(92px, 10vw, 138px);
  height: auto;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.65));
}
.hero__title {
  font-size: clamp(46px, 9.2vw, 128px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-top: 26px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
}
.hero__title em { display: block; font-style: italic; font-weight: 400; color: var(--brass-hi); }
.hero__quote {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.1vw, 26px);
  color: var(--text);
  max-width: 22ch;
  line-height: 1.35;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.facts {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  padding: 24px 30px 28px 0;
  border-right: 1px solid var(--line-soft);
}
.fact + .fact { padding-left: 30px; }
.fact:last-child { border-right: none; padding-right: 0; }
.fact__k {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.fact__v {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--cream);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fact__v small { font-family: var(--font-body); font-size: 12.5px; font-weight: 300; color: var(--muted); letter-spacing: 0; }
.stars { display: inline-flex; gap: 2px; color: var(--brass); }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__media figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-md); }
.about__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.about__media figure:hover img { transform: scale(1.04); }
.about__media figure:nth-child(1) { grid-row: span 2; aspect-ratio: 3 / 4.5; }
.about__media figure:nth-child(2) { aspect-ratio: 4 / 3; }
.about__media figure:nth-child(3) { aspect-ratio: 4 / 3; }
.about__media figure::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line), inset 0 -70px 90px -50px rgba(0, 0, 0, 0.9);
  border-radius: var(--r-md);
  pointer-events: none;
}

.features { display: grid; gap: 2px; margin-top: 38px; border-top: 1px solid var(--line-soft); }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature__ico {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brass);
}
.feature__t { font-family: var(--font-label); font-size: 15px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); }
.feature__d { font-size: 14.5px; color: var(--muted); margin-top: 3px; line-height: 1.55; }

/* Rail */
.rail {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 160, 81, 0.05), transparent);
}
.rail__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  padding-block: 22px;
}
.rail__item {
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  padding-inline: clamp(14px, 2.4vw, 30px);
  position: relative;
}
.rail__item + .rail__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass-dim);
}

/* Menu */
.menu__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 34px;
  scrollbar-width: thin;
  scrollbar-color: var(--brass-dim) transparent;
  -webkit-overflow-scrolling: touch;
}
.menu__tabs::-webkit-scrollbar { height: 3px; }
.menu__tabs::-webkit-scrollbar-thumb { background: var(--brass-dim); }
.tab {
  flex: none;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 11px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.tab:hover { color: var(--cream); border-color: var(--line); }
.tab.is-active { color: #14100A; background: var(--brass); border-color: var(--brass); font-weight: 500; }

.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.dish {
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.dish:hover {
  border-color: var(--line);
  box-shadow: 0 22px 50px -30px rgba(0, 0, 0, 0.95);
}
.dish__ph {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel-2);
}
.dish__ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 10, 0.45) 100%);
  pointer-events: none;
}
.dish__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
  transition: transform 0.6s var(--ease);
}
.dish:hover .dish__ph img { transform: scale(1.05); }
.dish__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}
.dish__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.dish__foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
}
.dish__weight { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.14em; color: var(--muted-2); }

/* Ценник как в печатном меню */
.chip {
  flex: none;
  display: inline-block;
  padding: 5px 15px 6px;
  background: var(--cream);
  color: #14100A;
  border-radius: 100px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
}

.menu__cat-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid var(--brass-dim);
}

.rows { display: grid; gap: 2px; margin-top: 26px; }
.dishes + .rows { margin-top: clamp(26px, 3vw, 40px); padding-top: clamp(20px, 2.4vw, 30px); border-top: 1px solid var(--line-soft); }
.row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: 0 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.row__main { display: block; max-width: 46ch; }
.row__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}
.row__desc { display: block; font-size: 13.5px; color: var(--muted); margin-top: 5px; line-height: 1.55; }
.row__lead { height: 1px; border-bottom: 1px dotted var(--muted-2); opacity: 0.5; transform: translateY(-4px); }
.row__w { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.12em; color: var(--muted-2); white-space: nowrap; }

.menu__note {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--muted-2);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--panel);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s var(--ease); filter: saturate(0.9) brightness(0.9); }
.shot:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  border-radius: var(--r-md);
  pointer-events: none;
}
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot--big { grid-column: span 2; grid-row: span 2; }

/* Events */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.event {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(165deg, var(--panel), var(--ink-2));
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.event:hover { border-color: var(--line); }
.event::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.5;
}
.event__no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  color: var(--brass-dim);
  line-height: 1;
}
.event__t { font-size: 25px; font-weight: 600; color: var(--cream); margin-top: 18px; }
.event__d { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.65; }

/* Reviews */
.reviews__grid { display: grid; grid-template-columns: 0.8fr 2fr; gap: clamp(28px, 4vw, 58px); align-items: start; }
.score {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(165deg, rgba(201, 160, 81, 0.07), transparent);
  text-align: center;
}
.score__n { font-family: var(--font-display); font-size: 72px; font-weight: 700; color: var(--cream); line-height: 1; }
.score .stars { margin-top: 14px; font-size: 18px; }
.score__c { font-size: 14px; color: var(--muted); margin-top: 12px; }
.score__src { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }

.bars__cap {
  margin-top: 26px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.bars { display: grid; gap: 12px; margin-top: 16px; }
.bar { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; font-size: 13px; }
.bar__k { color: var(--muted); }
.bar__v { font-family: var(--font-label); color: var(--brass-hi); font-size: 12.5px; letter-spacing: 0.06em; }
.bar__track { grid-column: 1 / -1; height: 2px; background: var(--line-soft); border-radius: 2px; overflow: hidden; }
.bar__fill { height: 100%; background: linear-gradient(90deg, var(--brass-dim), var(--brass-hi)); border-radius: 2px; }

.quotes { display: grid; gap: 18px; }
.quote {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--panel);
}
.quote__text { font-family: var(--font-display); font-size: clamp(17px, 1.5vw, 20px); font-style: italic; color: var(--text); line-height: 1.6; }
.quote__meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 16px;
  flex: none;
}
.quote__name { font-family: var(--font-label); font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); }
.quote__date { font-size: 12.5px; color: var(--muted-2); }

/* Booking */
.booking { background: var(--ink-2); border-block: 1px solid var(--line-soft); }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

.callout {
  display: block;
  margin-top: 34px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(201, 160, 81, 0.1), rgba(20, 20, 25, 0.4));
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.callout:hover { border-color: var(--brass); }
.callout__k {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.callout__v {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
}
.callout:hover .callout__v { color: var(--brass-hi); }
.callout__note { display: block; margin-top: 10px; font-size: 14.5px; color: var(--muted); }

.contacts { display: grid; gap: 22px; }
.contact { display: flex; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.contact__ico { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--brass); }
.contact__k { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.contact__v { font-size: 16.5px; color: var(--cream); margin-top: 5px; }
.contact__v a:hover { color: var(--brass-hi); }
.contact__note { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.map {
  margin-top: 6px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--panel);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05) brightness(0.88); }

/* Footer */
.footer { padding-block: clamp(48px, 6vw, 76px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer__about { font-size: 14.5px; color: var(--muted); margin-top: 20px; max-width: 40ch; line-height: 1.7; }
.footer__h { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer__list { display: grid; gap: 11px; font-size: 15px; color: var(--muted); }
.footer__list a:hover { color: var(--brass-hi); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.social {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.social:hover { color: var(--brass-hi); border-color: var(--brass); background: rgba(201, 160, 81, 0.07); }
.footer__bottom {
  margin-top: clamp(38px, 5vw, 58px);
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(5, 5, 7, 0.96);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 100%; max-height: 84vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox__cap {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox__btn {
  position: absolute;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(20, 20, 25, 0.7);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.lightbox__btn:hover { color: var(--brass-hi); border-color: var(--brass); }
.lightbox__btn--close { top: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); }
.lightbox__btn--prev { left: clamp(10px, 2.5vw, 30px); top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: clamp(10px, 2.5vw, 30px); top: 50%; transform: translateY(-50%); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d='1'] { transition-delay: 0.08s; }
.reveal[data-d='2'] { transition-delay: 0.16s; }
.reveal[data-d='3'] { transition-delay: 0.24s; }

/* Breakpoints */
@media (max-width: 1080px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .header__cta .btn { display: none; }
  .about__grid, .reviews__grid, .booking__grid { grid-template-columns: 1fr; }
  .events { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 20px 18px 22px 0; }
  .fact:nth-child(2n) { border-right: none; padding-left: 20px; padding-right: 0; }
  .fact:nth-child(2n + 1) { padding-left: 0; }
  .fact:nth-child(-n + 2) { border-bottom: 1px solid var(--line-soft); }
  .about__media { grid-template-columns: 1fr 1fr; }
  .about__media figure:nth-child(1) { grid-row: auto; grid-column: span 2; aspect-ratio: 4 / 3; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .shot--big { grid-column: span 2; grid-row: span 2; }
  .shot--wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; }
  .dishes { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
  .row { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .row__main { grid-column: 1; grid-row: 1; }
  .row .chip { grid-column: 2; grid-row: 1; }
  .row__lead { display: none; }
  .row__w { grid-column: 1; grid-row: 2; }
  .lightbox__btn--prev { left: 10px; }
  .lightbox__btn--next { right: 10px; }
}

@media (max-width: 420px) {
  .dishes { grid-template-columns: 1fr; }
  .hero { min-height: 92svh; }
}

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