/* Нетипичная пельменная — стили лендинга. Жанр: editorial (журнальный).
   Директивы страницы: алый база на глубоком тёмном, комплементарный
   пастельный тёплый бирюзовый акцент; узкая центральная колонка;
   элементы без границ — только воздух; контраст начертаний в заголовках. */

:root {
  color-scheme: dark;

  /* ---- тёмная тема (по умолчанию) ---- */
  --bg: #15100e;
  --bg-soft: #1c1613;
  --ink: #f4ece5;
  --ink-dim: #b7a89f;
  --ink-faint: #86766e;

  --scarlet: #c85c4d;
  --scarlet-strong: #e0715f;
  --scarlet-ink: #2a0f0a;

  --teal: #7fac9f;
  --teal-strong: #9bc4b7;

  --panel-invert-bg: #ece3d8;
  --panel-invert-ink: #201510;

  --ring-bg: rgba(244, 236, 229, .14);
  --ring-fill: var(--scarlet-strong);

  --map-filter: invert(.92) hue-rotate(180deg) brightness(.92) contrast(.95);

  --focus: #e0715f;

  --space-1: clamp(.5rem, .4rem + .4vw, .75rem);
  --space-2: clamp(1rem, .8rem + .8vw, 1.5rem);
  --space-3: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
  --space-4: clamp(3rem, 2.2rem + 3.4vw, 5rem);
  --space-5: clamp(4.5rem, 3.2rem + 5.4vw, 8rem);

  --measure: min(94vw, 42rem);
  --measure-wide: min(94vw, 60rem);

  --font-sans: system-ui, -apple-system, "Segoe UI Variable", "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas,
    "Liberation Mono", monospace;

  --dur: 200ms;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f2ece4;
  --bg-soft: #e9e1d6;
  --ink: #221812;
  --ink-dim: #5c4c42;
  --ink-faint: #8a7a6f;

  --scarlet: #b64432;
  --scarlet-strong: #a23a2a;
  --scarlet-ink: #fbe9e2;

  --teal: #4f7f73;
  --teal-strong: #3d675c;

  --panel-invert-bg: #241611;
  --panel-invert-ink: #f2e6da;

  --ring-bg: rgba(34, 24, 18, .12);
  --ring-fill: var(--scarlet-strong);

  --map-filter: none;

  --focus: #a23a2a;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

img { max-width: 100%; height: auto; display: block; -webkit-user-drag: none; }
svg { display: block; }

a { color: inherit; }

h1, h2, h3, p, figure, ul, ol, dl, dd { margin: 0; }

ul { padding: 0; list-style: none; }

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nowrap { white-space: nowrap; }
.tabular { font-variant-numeric: tabular-nums; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -3rem;
  background: var(--scarlet);
  color: var(--scarlet-ink);
  padding: .6em 1em;
  border-radius: .3em;
  z-index: 500;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-2); }

/* ---------- Появление при прокрутке ----------
   По умолчанию всё видно всегда — и без JS, и пока скрипт ещё не
   решил, какие блоки лежат ниже первого экрана. Прячет их только
   сам скрипт, вешая .reveal-pending уже после первого кадра — так
   что ошибка в скрипте не может оставить пустое полотно. */
.reveal-pending {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-pending.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-pending { transition: none; opacity: 1; transform: none; }
}

/* ============ Контейнеры ============
   Единая колонка для всех секций: левый край не прыгает. Читаемость
   текста держат внутренние max-width в ch, а не ширина контейнера. */
.col, .col--wide {
  width: var(--measure-wide);
  margin-inline: auto;
  padding-inline: var(--space-2);
}
.section {
  padding-block: var(--space-5);
}
.section__kicker {
  display: block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.section__title {
  font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  max-width: 22ch;
}
.section__lede {
  margin-top: var(--space-2);
  color: var(--ink-dim);
  font-size: clamp(1rem, .96rem + .2vw, 1.15rem);
  max-width: 56ch;
}

/* ============ Шапка ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.site-header__inner {
  width: var(--measure-wide);
  margin-inline: auto;
  padding: var(--space-1) var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.brand {
  display: flex;
  align-items: center;
  gap: .6em;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  margin-right: auto;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name { line-height: 1.1; }
.brand__name small {
  display: block;
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.main-nav {
  display: none;
}
.main-nav__list {
  display: flex;
  gap: var(--space-3);
  font-size: .92rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-dim);
  padding-block: .3em;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--scarlet);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .75em 1.3em;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { opacity: .86; }
.btn:active { transform: scale(.98); }
.btn--primary {
  background: var(--scarlet);
  color: var(--scarlet-ink);
}
.btn--ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 28%, transparent);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.btn--small { padding: .55em 1em; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

.header-phone { display: none; }
@media (min-width: 560px) {
  .header-phone { display: inline-flex; }
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background var(--dur) var(--ease);
}
.icon-btn:hover { background: color-mix(in oklab, var(--ink) 10%, transparent); }
.icon-btn svg { width: 20px; height: 20px; }

.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: grid;
  place-items: center;
}
@media (min-width: 860px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: var(--space-2);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__top {
  display: flex;
  justify-content: flex-end;
}
.mobile-nav__list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 1.6rem;
  font-weight: 700;
}
.mobile-nav__list a { text-decoration: none; }
.mobile-nav__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

/* ============ Герой ============ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(30rem, 82vh, 44rem);
  padding-block: var(--space-4);

  /* Текст всегда лежит на затемнённом фото — цвета не зависят от темы. */
  --ink: #f4ece5;
  --ink-dim: #d9c9be;
  --ink-faint: #b7a89f;
  --scarlet-strong: #e0715f;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-kenburns 26s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo { animation: none; }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(21, 16, 14, .35) 0%,
    rgba(21, 16, 14, .74) 55%,
    var(--bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.hero__title {
  font-size: clamp(2.6rem, 1.6rem + 5.4vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 var(--space-3);
}
.hero__title-light {
  display: block;
  font-weight: 200;
  color: var(--ink-dim);
}
.hero__title-bold {
  display: block;
  font-weight: 900;
  color: var(--scarlet-strong);
}
.hero__title-sub {
  display: block;
  margin-top: var(--space-2);
  font-size: clamp(1rem, .9rem + .4vw, 1.3rem);
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0;
}
.hero__text {
  max-width: 46ch;
  color: var(--ink-dim);
  font-size: clamp(1rem, .96rem + .2vw, 1.1rem);
}
.hero__meta {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1.2em;
  font-size: .92rem;
  color: var(--ink-faint);
}
.hero__meta strong { color: var(--ink); font-weight: 600; }
[data-open-badge] {
  display: inline-flex;
  align-items: center;
}
.status-dot {
  display: inline-block;
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: var(--teal-strong);
  margin-right: .5em;
}
.status-dot--closed { background: var(--ink-faint); }

.hero__actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

/* ============ Инвертированная панель (фактическое подтверждение) ============ */
.panel-invert {
  background: var(--panel-invert-bg);
  color: var(--panel-invert-ink);
  /* Дорожка кольца на инвертированной панели — от цвета самой панели,
     не от цвета остальной страницы, иначе она сливается с фоном. */
  --ring-bg: color-mix(in oklab, var(--panel-invert-ink) 14%, transparent);
}
.panel-invert .section__kicker { color: var(--scarlet-strong); }
.panel-invert .section__lede { color: color-mix(in oklab, var(--panel-invert-ink) 70%, transparent); }

.facts {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3) var(--space-2);
  max-width: 26rem;
  align-items: start;
}
.fact {
  display: flex;
  flex-direction: column;
}
.fact__value {
  font-size: clamp(2rem, 1.6rem + 2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}
.fact__label {
  margin-top: .5em;
  font-size: .88rem;
  color: color-mix(in oklab, var(--panel-invert-ink) 65%, transparent);
  max-width: 20ch;
}

.rating-block {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}
.rating-ring {
  position: relative;
  width: clamp(120px, 10vw + 90px, 180px);
  height: clamp(120px, 10vw + 90px, 180px);
  flex: none;
}
.rating-ring svg { width: 100%; height: 100%; }
.rating-ring__num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.rating-text {
  max-width: 32ch;
  font-size: 1.05rem;
}
.rating-text b { font-weight: 700; }
.rating-text span { display: block; margin-top: .35em; color: color-mix(in oklab, var(--panel-invert-ink) 65%, transparent); font-size: .92rem; }

/* ============ Столбики цен (ланч / средний чек) ============ */
.price-bars {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 30rem;
}
.price-bar__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: .45em;
  font-size: .98rem;
}
.price-bar__label { color: color-mix(in oklab, var(--panel-invert-ink) 75%, transparent); }
.price-bar__value { font-weight: 700; }
.price-bar__track {
  height: 14px;
  border-radius: 100px;
  background: color-mix(in oklab, var(--panel-invert-ink) 14%, transparent);
  overflow: hidden;
}
.price-bar__fill {
  height: 100%;
  min-width: 3px;
  border-radius: 100px;
  background: var(--teal);
}
.price-bar__fill--strong { background: var(--scarlet-strong); }

/* ============ Меню / услуги ============ */
.menu-spread {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 760px) {
  .menu-spread { flex-direction: row; align-items: stretch; }
  .menu-col { flex: 1 1 0; display: flex; flex-direction: column; gap: var(--space-4); }
  .menu-col:first-child { padding-right: var(--space-4); }
  .menu-col:last-child { padding-left: var(--space-4); border-left: 2px solid var(--scarlet); }
}
.menu-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.menu-entry {
  display: flex;
  gap: var(--space-2);
}
.menu-entry__index {
  flex: none;
  width: 2.2ch;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  color: color-mix(in oklab, var(--scarlet-strong) 55%, transparent);
}
.menu-entry__title {
  font-size: clamp(1.2rem, 1.05rem + .6vw, 1.6rem);
  font-weight: 700;
  margin-bottom: .7em;
}
.menu-entry__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5em 1.2em;
  font-size: .98rem;
  color: var(--ink-dim);
}
.menu-entry__list li b { color: var(--ink); font-weight: 600; }

.disclose { margin-top: var(--space-2); }
.disclose__more { display: none; }
.disclose.is-open .disclose__more { display: block; }
.disclose__btn {
  margin-top: var(--space-2);
  color: var(--teal-strong);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.disclose__btn svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.disclose.is-open .disclose__btn svg { transform: rotate(180deg); }

/* ============ Полоса-заявление ============ */
.statement-band {
  background: var(--panel-invert-bg);
  overflow: hidden;
}
.statement-band__text {
  padding-block: var(--space-4);
  margin: 0;
  text-align: center;
  text-transform: lowercase;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.03em;
  font-size: clamp(3.2rem, 1.6rem + 9vw, 9rem);
  color: var(--scarlet-strong);
}

/* ============ Фото / галерея ============ */
.gallery {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-2);
}
.gallery--single {
  max-width: 30rem;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: .4rem;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.05); }
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-1) var(--space-2);
  font-size: .82rem;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  background: rgba(10, 7, 6, .92);
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
}
.lightbox.is-open { display: flex; }
.lightbox__figure { max-width: min(94vw, 1100px); max-height: 88vh; }
.lightbox__figure img { max-height: 80vh; width: auto; margin-inline: auto; border-radius: .4rem; }
.lightbox__cap { color: #f2e9e2; text-align: center; margin-top: var(--space-1); font-size: .9rem; }
.lightbox__close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #fff;
  border-radius: 50%;
}
.lightbox__close:hover { background: rgba(255,255,255,.12); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #fff;
  border-radius: 50%;
}
.lightbox__nav:hover { background: rgba(255,255,255,.12); }
.lightbox__nav--prev { left: var(--space-2); }
.lightbox__nav--next { right: var(--space-2); }

/* ============ Отзывы ============ */
.reviews {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.review__stars {
  display: flex;
  gap: .2em;
  color: var(--scarlet-strong);
}
.review__stars svg { width: 15px; height: 15px; }
.review__text {
  font-size: 1.02rem;
  color: var(--ink-dim);
  quotes: "«" "»";
}
.review__text::before { content: open-quote; color: var(--scarlet-strong); }
.review__text::after { content: close-quote; color: var(--scarlet-strong); }

.review--feature .review__stars svg { width: 19px; height: 19px; }
.review--feature .review__text {
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  max-width: 44ch;
}
.reviews__rest {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 640px) {
  .reviews__rest { grid-template-columns: 1fr 1fr; }
}
.review--compact .review__text { font-size: .96rem; }

/* ============ Часы ============ */
.hours-card {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
  align-items: flex-start;
}
.hours-now {
  font-size: clamp(1.3rem, 1.1rem + .8vw, 1.8rem);
  font-weight: 700;
}
.hours-now__label {
  display: block;
  margin-top: .35em;
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-faint);
}
.pay-list, .amenity-list {
  display: flex;
  flex-direction: column;
  gap: .5em;
  font-size: .96rem;
  color: var(--ink-dim);
}
.pay-list dt, .amenity-list dt {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .4em;
}
.pay-list dd, .amenity-list dd { margin: 0; display: flex; align-items: center; gap: .5em; }
.pay-list svg, .amenity-list svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

/* ============ Карта / контакты ============ */
.contact-grid {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
.contact-info dt {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: var(--space-2);
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: .3em 0 0;
  font-size: 1.05rem;
}
.contact-info a { text-decoration: none; }
.contact-info a:hover { color: var(--scarlet-strong); }

.map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: .5rem;
  overflow: hidden;
  background: var(--bg-soft);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.map.is-dragging { cursor: grabbing; user-select: none; }
.map__tiles {
  position: absolute;
  inset: 0;
  filter: var(--map-filter);
}
.map__tiles img {
  position: absolute;
  top: 0; left: 0;
  width: 256px; height: 256px;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
.map__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 5;
}
.map__pin svg { width: 40px; height: 48px; filter: drop-shadow(0 4px 6px rgba(0,0,0,.35)); }
.map__controls {
  position: absolute;
  right: var(--space-1);
  bottom: var(--space-1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}
.map__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  color: var(--ink);
  border-radius: .35rem;
  backdrop-filter: blur(6px);
  font-size: 1.1rem;
  font-weight: 700;
}
.map__btn:hover { background: var(--bg); }
.map__recenter {
  position: absolute;
  left: var(--space-1);
  bottom: var(--space-1);
  z-index: 10;
}
.map__credit {
  position: absolute;
  right: var(--space-1);
  top: var(--space-1);
  font-size: .68rem;
  color: var(--ink-faint);
  z-index: 4;
}

/* ============ Финальный призыв ============ */
.cta-band {
  padding-block: var(--space-4);
  text-align: left;
}
.cta-band__title {
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 800;
  max-width: 20ch;
}
.cta-band__actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

/* ============ Подвал ============ */
.site-footer {
  padding-block: var(--space-4) var(--space-3);
  color: var(--ink-dim);
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: .6em; }
.footer-brand .brand { margin-right: 0; }
.footer-nav-title {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .8em;
}
.footer-nav ul, .footer-contacts ul { display: flex; flex-direction: column; gap: .55em; }
.footer-nav a, .footer-contacts a { text-decoration: none; }
.footer-nav a:hover, .footer-contacts a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: .6em 1.4em;
  justify-content: space-between;
}
.footer-credit a { color: var(--ink-faint); text-decoration: underline; text-underline-offset: .2em; }
.footer-credit a:hover { color: var(--ink); }

/* ============ Утилиты overflow ============ */
.overflow-safe { overflow-wrap: anywhere; }
