@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   GEM — светлый минимализм
   Бумажный фон, почти-чёрный текст, один тёплый акцент, взятый
   из логотипа. Никаких рамок-коробок: структуру держат волосяные
   линии, крупная типографика и воздух.
   ============================================================ */

:root {
  --paper: #f4f3f0;
  --paper-2: #ffffff;
  --paper-3: #ebe9e4;
  --ink: #14140f;
  --ink-2: #3a3a33;
  --muted: #86867d;
  --line: rgba(20, 20, 15, 0.14);
  --line-soft: rgba(20, 20, 15, 0.07);
  --accent: #c9761c;
  --accent-soft: #e39a3f;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter Tight', 'Inter', sans-serif;

  --container: 1360px;
  --pad: 44px;
  --ease: cubic-bezier(0.22, 0.68, 0, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { background: var(--paper); -webkit-text-size-adjust: 100%; }
html.no-scroll { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
input, textarea, select { font-family: inherit; font-size: 15px; color: var(--ink); }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--ink); color: var(--paper); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}
p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.container--full { max-width: none; }
.text-center { text-align: center; }

.section { padding: 130px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--line { border-top: 1px solid var(--line-soft); }

/* ---------- Типографические утилиты ---------- */
.display {
  font-family: var(--font-display);
  font-size: clamp(44px, 8.4vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 400;
  color: var(--ink);
}
.display em { font-style: normal; color: var(--muted); }

.h-lg { font-size: clamp(32px, 4.6vw, 68px); line-height: 0.98; letter-spacing: -0.04em; }
.h-md { font-size: clamp(24px, 2.6vw, 38px); letter-spacing: -0.03em; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.label::before { content: ''; width: 18px; height: 1px; background: var(--accent); }
.label--plain::before { display: none; }
.label--num { color: var(--ink); }

.lede { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.5; color: var(--ink-2); max-width: 46ch; }
.muted { color: var(--muted); }

/* ---------- Ссылки и кнопки ---------- */
.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  padding-bottom: 3px;
}
.link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.5s var(--ease);
}
.link:hover::after { right: 0; }
.link svg { transition: transform 0.45s var(--ease); }
.link:hover svg { transform: translateX(5px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.3s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: transparent; color: var(--accent); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn:disabled { opacity: 0.35; pointer-events: none; }

/* ============================================================
   Прелоадер
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo { width: min(230px, 52vw); opacity: 0; animation: pre-in 1s var(--ease) 0.1s forwards; }
.preloader__logo img { width: 100%; height: auto; }
.preloader__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.preloader__bar { width: 130px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.preloader__bar span { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--ink); }
.preloader__count { min-width: 2.4em; text-align: right; color: var(--ink); }
@keyframes pre-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Шапка
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 26px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(244, 243, 240, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; }
.brand__logo { height: 34px; width: auto; transition: opacity 0.4s var(--ease); }
.brand:hover .brand__logo { opacity: 0.6; }

.nav { display: flex; align-items: center; gap: 40px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  position: relative;
  font-size: 14px;
  color: var(--ink-2);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.45s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__toggle { display: none; width: 26px; height: 16px; position: relative; }
.nav__toggle span, .nav__toggle::before, .nav__toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transition: transform 0.45s var(--ease), opacity 0.3s;
}
.nav__toggle::before { top: 0; }
.nav__toggle span { top: 50%; transform: translateY(-50%); }
.nav__toggle::after { bottom: 0; }
.nav__toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span { opacity: 0; }
.nav__toggle[aria-expanded="true"]::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 790;
  background: var(--paper);
  padding: 120px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-nav a { font-family: var(--font-display); font-size: 34px; letter-spacing: -0.04em; color: var(--ink); display: block; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }

@media (max-width: 900px) {
  :root { --pad: 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

/* ============================================================
   Главный экран
   ============================================================ */
.hero { padding: 168px 0 0; }
.hero__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.hero h1 { margin: 26px 0 0; }
.hero__aside { max-width: 360px; padding-bottom: 10px; }
.hero__aside p { color: var(--ink-2); font-size: 15.5px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.hero__media {
  margin: 140px 0 0;
  position: relative;
  height: min(74vh, 720px);
  overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Бегущая строка */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.marquee__track { display: flex; gap: 44px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee__item b { color: var(--ink); font-weight: 500; }
.marquee__dot { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Блоки контента
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.grid-2--tight { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .grid-2, .grid-2--tight { grid-template-columns: 1fr; gap: 34px; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 80px; border-top: 1px solid var(--line); padding-top: 30px; }
.stat__num { font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px); letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.stat__label { display: block; margin-top: 10px; font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }
@media (max-width: 760px) { .stat-row { grid-template-columns: 1fr 1fr; gap: 26px; } }

/* Список блюд с превью по наведению */
.dish-list { border-top: 1px solid var(--line); }
.dish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.5s var(--ease), color 0.4s;
}
.dish-row:hover { padding-left: 16px; }
.dish-row__name { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -0.03em; color: var(--ink); }
.dish-row__price { font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; }
.dish-row:hover .dish-row__price { color: var(--accent); }

.hover-preview {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 320px;
  overflow: hidden;
  pointer-events: none;
  z-index: 700;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}
.hover-preview img { width: 100%; height: 100%; object-fit: cover; }

/* Полноэкранное фото */
.figure-full { position: relative; overflow: hidden; height: min(88vh, 820px); }
.figure-full img { width: 100%; height: 110%; object-fit: cover; }
.figure-full__text {
  position: absolute;
  left: var(--pad); bottom: 44px;
  max-width: 460px;
  color: #fff;
}
.figure-full__text h2 { color: #fff; }
.figure-full__text p { color: rgba(255, 255, 255, 0.76); }
.figure-full__text .btn { background: #fff; border-color: #fff; color: var(--ink); }
.figure-full__text .btn:hover { background: transparent; color: #fff; }

/* Информационные колонки без рамок */
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-col { background: var(--paper); padding: 42px 30px; }
.info-col__value { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.035em; color: var(--ink); line-height: 1.05; }
.info-col__label { display: block; margin-top: 12px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) { .info-row { grid-template-columns: 1fr; } }

/* Крупный призыв */
.cta-huge { text-align: center; padding: 40px 0; }
.cta-huge h2 { font-size: clamp(38px, 7vw, 104px); letter-spacing: -0.05em; line-height: 0.92; }
.cta-huge .btn { margin-top: 34px; }

/* Партнёры */
.partner-row { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; margin-top: 26px; }
.partner-row img { height: 68px; width: auto; filter: grayscale(1) contrast(0.2) brightness(0.6); opacity: 0.7; transition: filter 0.4s, opacity 0.4s; }
.partner-row a:hover img { filter: none; opacity: 1; }
@media (max-width: 640px) {
  .partner-row { flex-direction: column; gap: 32px; }
}

/* ============================================================
   Подвал
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 80px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--font); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 9px; font-size: 14.5px; color: var(--ink-2); }
.footer-grid ul a:hover { color: var(--accent); }
.footer__logo { height: 40px; width: auto; }
.socials { display: flex; gap: 10px; }
.socials a { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: 0.06em; transition: border-color 0.3s, color 0.3s; }
.socials a:hover { border-color: var(--ink); color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line-soft); font-size: 12.5px; color: var(--muted); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Внутренние страницы: шапка страницы
   ============================================================ */
.page-hero { padding: 190px 0 60px; }
.page-hero h1 { margin: 22px 0 0; }
.page-hero__lede { margin-top: 20px; }
.page-hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }

/* ============================================================
   Меню зала
   ============================================================ */
.menu-tabs-wrap { position: sticky; top: 0; z-index: 600; background: rgba(244, 243, 240, 0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.menu-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 14px 0; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button {
  flex: none;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.menu-tabs button:hover { border-color: var(--ink); }
.menu-tabs button.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.menu-category { max-width: 860px; margin: 0 auto 80px; }
.menu-category__title { font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -0.04em; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.menu-subsection__title { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 40px 0 12px; font-family: var(--font); }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.5s var(--ease);
}
.menu-item:hover { padding-left: 12px; }
.menu-item__name { font-family: var(--font-display); font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.menu-item__price { font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-item:hover .menu-item__price { color: var(--ink); }
.menu-item__weight { font-size: 11px; color: var(--muted); margin-left: 8px; }
.menu-item__desc { grid-column: 1 / -1; font-size: 13.5px; color: var(--muted); margin-top: 2px; max-width: 60ch; }
.menu-count { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.skeleton { background: linear-gradient(90deg, var(--paper-3) 25%, #f2f1ee 37%, var(--paper-3) 63%); background-size: 400% 100%; animation: skeleton 1.4s ease infinite; }
@keyframes skeleton { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ============================================================
   Доставка / витрина
   ============================================================ */
.dpage { padding-top: 130px; }
.dpage__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad) 110px; }

.dbar { padding: 14px 0; background: rgba(244, 243, 240, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); }
.dbar__inner { display: flex; align-items: center; gap: 14px; }
.dfield { flex: 1; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px; color: var(--muted); background: var(--paper-2); }
.dfield svg { flex: none; color: var(--muted); }
.dfield input { flex: 1; border: none; background: none; padding: 0; outline: none; }
.dfield:focus-within { border-color: var(--ink); }
.dpromo { display: none; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 999px; padding: 5px 18px 5px 5px; }
.dpromo img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.dpromo__text { font-size: 12px; color: var(--muted); line-height: 1.3; }
.dpromo__text b { display: block; color: var(--ink); font-weight: 500; font-size: 13px; }
@media (min-width: 1050px) { .dpromo { display: flex; } }
.dcart { position: relative; display: flex; align-items: center; gap: 10px; border-radius: 999px; background: var(--ink); color: var(--paper); padding: 12px 22px; font-size: 14px; white-space: nowrap; transition: opacity 0.3s; }
.dcart:hover { opacity: 0.85; }
.dcart__count { position: absolute; top: -6px; right: -4px; background: var(--accent); color: #fff; font-size: 10px; border-radius: 999px; padding: 1px 6px; }

.dfilter { padding: 30px 0 10px; }
.dsearch { max-width: 320px; }
.chips { display: flex; gap: 8px; overflow-x: auto; margin-top: 20px; padding-bottom: 6px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: var(--ink-2); white-space: nowrap; transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.dcat { padding-top: 56px; scroll-margin-top: 150px; }
.dcat__title { font-size: clamp(22px, 2.6vw, 34px); letter-spacing: -0.035em; margin-bottom: 24px; }
.dgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 26px; }
@media (max-width: 1100px) { .dgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .dgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .dgrid { grid-template-columns: 1fr; } }

.pcard { display: flex; flex-direction: column; }
.pcard__media { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__mono { width: 46%; opacity: 0.25; }
.pcard__mono img { width: 100%; height: auto; object-fit: contain; }
.pcard__name { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.02em; margin: 0 0 4px; line-height: 1.2; color: var(--ink); }
.pcard__meta { font-size: 12px; color: var(--muted); margin: 0 0 4px; }
.pcard__desc { font-size: 13px; color: var(--muted); margin: 0 0 10px; }
.pcard__buy { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; }
.pcard__price { font-size: 14.5px; color: var(--ink); font-variant-numeric: tabular-nums; }
.pcard__add { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; line-height: 1; color: var(--ink); transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s; }
.pcard__add:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.pcard__qty { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.pcard__qty button { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); transition: border-color 0.3s; }
.pcard__qty button:hover { border-color: var(--ink); }
.pcard__qty span { min-width: 1.2em; text-align: center; font-variant-numeric: tabular-nums; }

.dempty { text-align: center; padding: 70px 0; color: var(--muted); font-size: 14px; }

.dcheckout { margin-top: 110px; padding-top: 60px; border-top: 1px solid var(--line); max-width: 680px; }
.dcheckout__note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ============================================================
   Формы
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 0; }
.field input, .field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.4s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #b5b5ad; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--ink); }
.field textarea { min-height: 90px; resize: vertical; }
.field__hint, .field__error { font-size: 12.5px; color: var(--muted); margin: 0; }
.field__error { color: #c0392b; }

.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-card { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-size: 14px; cursor: pointer; transition: border-color 0.35s, background 0.35s, color 0.35s; }
.radio-card input { accent-color: var(--ink); }
.radio-card:has(input:checked) { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.radio-card:has(input:checked) input { accent-color: var(--paper); }

.stepper { display: inline-flex; align-items: center; gap: 14px; }
.stepper button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; font-size: 16px; color: var(--ink); transition: border-color 0.3s; }
.stepper button:hover { border-color: var(--ink); }
.stepper input { width: 56px; text-align: center; border: none; border-bottom: 1px solid var(--line); background: none; outline: none; padding: 6px 0; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; margin-top: 4px; }
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; inset: 0; }
.slot span { display: block; text-align: center; padding: 10px 0; border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; color: var(--ink-2); transition: border-color 0.3s, background 0.3s, color 0.3s; font-variant-numeric: tabular-nums; }
.slot:hover span { border-color: var(--ink); }
.slot input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.slot input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================================
   Бронирование
   ============================================================ */
.rsv__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
@media (max-width: 900px) { .rsv__grid { grid-template-columns: 1fr; gap: 44px; } }
.rsv__photo { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 28px; background: var(--paper-3); }
.rsv__photo img { width: 100%; height: 110%; object-fit: cover; }
.rsv__facts { display: flex; flex-direction: column; gap: 14px; }
.rsv__facts li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-2); }
.rsv__facts svg { flex: none; margin-top: 3px; color: var(--muted); }
.rsv__note { font-size: 13.5px; color: var(--muted); margin-top: 24px; }
.rsv__panel { border-top: 1px solid var(--line); padding-top: 34px; }
.rsv__legal { font-size: 12px; color: var(--muted); margin-top: 14px; }
.rsv__done { padding: 20px 0; }
.rsv__done-mark { display: inline-flex; width: 54px; height: 54px; border: 1px solid var(--ink); border-radius: 50%; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--ink); }

/* ============================================================
   Контакты
   ============================================================ */
.ctc-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .ctc-grid { grid-template-columns: 1fr; gap: 34px; } }
.ctc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.ctc-action { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; font-size: 14px; color: var(--ink); transition: border-color 0.35s, background 0.35s, color 0.35s; }
.ctc-action:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.ctc-action--accent { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.ctc-action--accent:hover { background: transparent; color: var(--ink); }
.ctc-map { position: relative; aspect-ratio: 4/3.2; overflow: hidden; background: var(--paper-3); }
.ctc-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }
.ctc-map__fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 30px; text-align: center; color: var(--muted); }
.ctc-cards { display: flex; flex-direction: column; }
.ctc-card { display: flex; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.ctc-card:first-child { border-top: 1px solid var(--line); }
.ctc-card__icon { width: 22px; height: 22px; flex: none; color: var(--muted); margin-top: 3px; }
.ctc-card__icon svg { width: 100%; height: 100%; }
.ctc-card h3 { font-family: var(--font); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.ctc-card p { color: var(--ink); margin: 0; font-size: 15.5px; }
.ctc-card__muted { color: var(--muted); font-size: 13.5px; }
.ctc-socials { margin-top: 60px; }
.ctc-socials .socials { margin-top: 16px; }

/* ============================================================
   404
   ============================================================ */
.error-page { min-height: 78vh; display: flex; align-items: center; padding: 200px 0 120px; }
.error-page__code { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.error-page h1 { margin: 20px 0 16px; }

/* ============================================================
   Корзина, ящик, тост
   ============================================================ */
.cart-fab {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 700;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.5);
}
.cart-fab__count { background: var(--paper); color: var(--ink); border-radius: 999px; padding: 1px 8px; font-size: 12px; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(20, 20, 15, 0.35); opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease); z-index: 900; backdrop-filter: blur(2px); }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--paper-2);
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.6s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--line-soft); }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px 28px; }
.drawer__foot { padding: 22px 28px 28px; border-top: 1px solid var(--line-soft); }
.icon-btn { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.icon-btn:hover { color: var(--ink); }
.cart-line { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line__name { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.qty-stepper { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-stepper button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); }
.qty-stepper button:hover { border-color: var(--ink); }
.qty-stepper span { min-width: 1.4em; text-align: center; font-variant-numeric: tabular-nums; }

.toast {
  position: fixed;
  left: 50%; bottom: 30px;
  transform: translate(-50%, 16px);
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 999px;
  opacity: 0;
  z-index: 1000;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   Анимация
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: var(--ink); transform: scaleX(0); transform-origin: 0 50%; z-index: 850; pointer-events: none; }
.reveal { opacity: 0; transform: translateY(24px); }
body.is-ready .reveal.is-visible { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--reveal-delay, 0s); }
[data-stagger] > * { opacity: 0; transform: translateY(20px); }
.split-word { display: inline-block; will-change: transform; }
.mask { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .scroll-progress, .hover-preview { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .hero { padding-top: 130px; }
  .hero__media { height: 60vh; margin-top: 40px; }
  .page-hero { padding: 140px 0 40px; }
  .figure-full { height: 70vh; }
}
