/* Планета лошадей — конный клуб, Красноярск.
   Гамма: стальная база, почти чёрный фон, латунный (комплементарный стали) акцент.
   Приём: диагональная штриховка, полосы во всю ширину, крупный набор.
   Пара шрифтов: широкий системный гротеск + узкий сжатый в надзаголовках. */

:root {
  --bg:        oklch(0.16 0.014 250);
  --bg-2:      oklch(0.20 0.016 250);
  --surf:      oklch(0.235 0.018 250);
  --surf-2:    oklch(0.28 0.020 250);
  --line:      oklch(0.36 0.020 250);
  --ink:       oklch(0.95 0.008 250);
  --ink-2:     oklch(0.78 0.014 250);
  --ink-3:     oklch(0.66 0.014 250);
  --acc:       oklch(0.80 0.115 80);   /* латунь: чистый тёплый, не бурый */
  --acc-2:     oklch(0.86 0.100 80);
  --acc-ink:   oklch(0.20 0.045 80);
  --acc-soft:  oklch(0.80 0.115 80 / .13);
  --ring-bg:   oklch(0.32 0.020 250);
  --hatch:     oklch(0.80 0.115 80 / .07);
  --shadow:    0 18px 44px oklch(0.08 0.02 250 / .55);
  --plate:     oklch(0.18 0.016 250 / .86);
  --map-filter: invert(.92) hue-rotate(180deg) saturate(.55) brightness(.95);

  --r:  4px;          /* острые скругления — характер формы этой страницы */
  --r2: 2px;
  --s1: 8px;  --s2: 14px; --s3: 22px; --s4: 34px; --s5: 54px; --s6: 84px;

  --sans: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --narrow: "Arial Narrow", "Roboto Condensed", "Liberation Sans Narrow", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Consolas", "Liberation Mono", monospace;

  --wrap: 1180px;
}

html[data-theme="light"] {
  --bg:        oklch(0.945 0.006 250);
  --bg-2:      oklch(0.905 0.008 250);
  --surf:      oklch(0.985 0.003 250);
  --surf-2:    oklch(0.925 0.008 250);
  --line:      oklch(0.83 0.010 250);
  --ink:       oklch(0.24 0.018 250);
  --ink-2:     oklch(0.40 0.016 250);
  --ink-3:     oklch(0.50 0.014 250);
  --acc:       oklch(0.55 0.115 72);
  --acc-2:     oklch(0.47 0.110 70);
  --acc-ink:   oklch(0.99 0.01 80);
  --acc-soft:  oklch(0.55 0.115 72 / .11);
  --ring-bg:   oklch(0.86 0.010 250);
  --hatch:     oklch(0.55 0.115 72 / .08);
  --shadow:    0 16px 38px oklch(0.45 0.02 250 / .16);
  --plate:     oklch(0.99 0.003 250 / .88);
  --map-filter: saturate(.75) contrast(1.02);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.62 var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--acc); color: var(--acc-ink); }

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

.wrap { width: min(100% - 2 * var(--s3), var(--wrap)); margin-inline: auto; }
.nowrap { white-space: nowrap; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--acc); color: var(--acc-ink); padding: 10px 16px;
}
.skip:focus { left: 12px; top: 12px; }

/* ─── иконки: единая сетка 24, единая толщина штриха ─── */
.ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor;
      stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ic--s { width: 17px; height: 17px; }

/* ─── типографика ─── */
.over {
  font: 600 12px/1.4 var(--narrow);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 var(--s2);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.over .num { font-family: var(--mono); letter-spacing: 0; color: var(--acc); font-size: 12px; }
.h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.1; letter-spacing: -.02em; font-weight: 700;
  max-width: 20ch;
}
.head { margin-bottom: var(--s5); }
.lnk { color: var(--acc); text-decoration: none; border-bottom: 1px solid var(--acc-soft); transition: border-color .18s; }
.lnk:hover { border-color: currentColor; }
.lnk--dim { color: var(--ink-3); }

/* ─── кнопки ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 20px;
  border: 1px solid transparent; border-radius: var(--r);
  font: 600 15px/1 var(--sans); text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s, border-color .18s, color .18s;
}
.btn--accent { background: var(--acc); color: var(--acc-ink); }
.btn--accent:hover { background: var(--acc-2); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--acc); transform: translateY(-2px); }
.btn--lg { min-height: 54px; padding: 0 26px; font-size: 16px; }
.btn__num { font-variant-numeric: tabular-nums; }

.icobtn {
  width: 44px; height: 44px; display: inline-grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r);
  color: var(--ink); cursor: pointer; transition: border-color .18s, color .18s;
}
.icobtn:hover { border-color: var(--acc); color: var(--acc); }
.ic--moon { display: none; }
html[data-theme="light"] .ic--sun { display: none; }
html[data-theme="light"] .ic--moon { display: block; }

/* ─── шапка ─── */
.top {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top__in { display: flex; align-items: center; gap: var(--s3); min-height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand__txt { display: grid; line-height: 1.15; }
.brand__txt b { font-size: 15px; letter-spacing: -.01em; }
.brand__txt i {
  font: 500 10.5px/1.4 var(--narrow); font-style: normal;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.nav { display: flex; gap: var(--s3); }
.nav a {
  text-decoration: none; font-size: 14.5px; color: var(--ink-2);
  display: inline-flex; align-items: center; min-height: 44px;
  border-bottom: 1px solid transparent; transition: color .18s, border-color .18s;
}
.nav a:hover { color: var(--ink); border-color: var(--acc); }
.top__act { display: flex; align-items: center; gap: 10px; }
.burger { display: none; }

@media (max-width: 980px) {
  .nav {
    position: absolute; inset: 70px 0 auto; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: var(--s2) var(--s3); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { min-height: 48px; border-bottom: 1px solid var(--line); }
  .burger { display: inline-grid; }
  .btn--call .btn__num { display: none; }
  .btn--call { padding: 0 14px; width: 46px; }
}
@media (max-width: 620px) { .btn--call { display: none; } }

/* ─── первый экран: центральная композиция, огромный воздух ─── */
.hero { position: relative; padding: clamp(40px, 7vw, 96px) 0 clamp(48px, 7vw, 86px); overflow: hidden; }
.hero__hatch {
  position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(45deg, var(--hatch) 0 1px, transparent 1px 11px);
  mask-image: radial-gradient(120% 78% at 50% 42%, #000 12%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 78% at 50% 42%, #000 12%, transparent 72%);
}
.hero__in { position: relative; text-align: center; display: grid; justify-items: center; }
.hero__over { justify-content: center; color: var(--ink-3); }

.hero__h1 { margin: 0 0 var(--s4); display: grid; justify-items: center; gap: 2px; }
.hero__wide {
  display: block; font-weight: 800;
  font-size: clamp(44px, 12vw, 148px); line-height: .95;
  letter-spacing: -.045em;
}
.hero__narrow {
  display: block; font-family: var(--narrow); font-weight: 700;
  font-size: clamp(44px, 12vw, 148px); line-height: .98;
  letter-spacing: .01em; color: var(--acc);
  text-transform: uppercase;
}
.hero__sub {
  display: block; margin-top: var(--s3);
  font: 500 clamp(15px, 2vw, 20px)/1.35 var(--narrow);
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2);
}
.hero__lead { margin: 0 0 var(--s4); max-width: 56ch; color: var(--ink-2); font-size: clamp(16px, 1.5vw, 18px); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 14px; margin: 0 0 var(--s4);
  padding: 12px 20px 12px 16px;
  background: var(--acc-soft); border: 1px solid color-mix(in oklab, var(--acc) 40%, transparent);
  border-radius: var(--r); text-align: left;
}
.hero__badge-n {
  font: 800 30px/1 var(--sans); color: var(--acc);
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.hero__badge-t { font-size: 13.5px; line-height: 1.35; color: var(--ink-2); }
.hero__badge-t i { font-style: normal; color: var(--ink-3); font-size: 12.5px; }

.hero__act { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }
.hero__note { margin: var(--s3) 0 0; font-size: 14px; color: var(--ink-3); }
/* пальцу нужно 44 px: телефонные ссылки в тексте набираются высокой строкой */
.hero__note .lnk, .steps__note .lnk, .tile__v .lnk {
  display: inline-flex; align-items: center; min-height: 44px;
}

/* ─── секции ─── */
.sect { padding: clamp(52px, 7vw, 94px) 0; position: relative; }
.sect--facts { background: var(--bg-2); border-block: 1px solid var(--line); }
.sect--rev { background: var(--bg-2); border-block: 1px solid var(--line); }

/* ─── мозаика плиток: ряды без сирот ─── */
.bento { display: grid; gap: var(--s2); grid-template-columns: repeat(3, 1fr); }
.tile {
  background: var(--surf); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--s3);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--acc) 55%, var(--line)); }
.tile__cap { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }
.tile__k {
  margin: 0; font: 600 11.5px/1.3 var(--narrow);
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
}
.tile__v { margin: 0; font-size: clamp(19px, 2.2vw, 25px); font-weight: 700; letter-spacing: -.015em; font-variant-numeric: tabular-nums; }
.tile--big { justify-content: space-between; }
.tile--place {
  background:
    linear-gradient(var(--acc-soft), var(--acc-soft)),
    repeating-linear-gradient(45deg, var(--hatch) 0 1px, transparent 1px 9px),
    var(--surf);
  border-color: color-mix(in oklab, var(--acc) 38%, var(--line));
  justify-content: space-between;
}

/* плитка рейтинга во всю ширину ряда: кольцо слева, строка справа */
.tile--rating {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; gap: clamp(var(--s3), 4vw, var(--s5));
  padding: clamp(var(--s3), 3vw, var(--s4));
}
.rating__txt { display: grid; gap: 8px; }
.rating__line {
  margin: 0; font-size: clamp(22px, 3.1vw, 38px); font-weight: 800;
  line-height: 1.12; letter-spacing: -.025em;
}
.rating__line b { color: var(--acc); font-weight: 800; font-variant-numeric: tabular-nums; }
.rating__sub { margin: 0; color: var(--ink-2); font-size: 15px; max-width: 52ch; }
.rating__stars { color: var(--acc); letter-spacing: .18em; font-size: 15px; }

.giant {
  margin: 0; font-weight: 800; letter-spacing: -.04em; line-height: .88;
  font-size: clamp(52px, 7vw, 92px); font-variant-numeric: tabular-nums;
}
.giant--accent { color: var(--acc); }

/* кольцо: диаметр от 160 px, цифра ≈ треть диаметра, дуга полная (5,0 из 5) */
.ring { position: relative; width: clamp(160px, 17vw, 190px); aspect-ratio: 1; flex: none; }
.ring svg { width: 100%; height: 100%; display: block; }
.ring__track { stroke: var(--ring-bg); }
.ring__fill  { stroke: var(--acc); stroke-linecap: round; }
.ring__val {
  position: absolute; inset: 0; display: grid; place-items: center;
  font: 800 clamp(52px, 5.6vw, 62px)/1 var(--sans);
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}

/* шкала места: 25 сегментов — ровно столько, сколько клубов в рубрике */
.bars { display: flex; gap: 3px; align-items: flex-end; }
.bars__b { flex: 1; height: 14px; min-width: 2px; background: var(--ring-bg); border-radius: 1px; }
.bars__b--on { background: var(--acc); height: 24px; }
.bars__cap {
  margin: 6px 0 0; font: 600 12px/1.3 var(--narrow); letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-2);
}
.bars__cap b { color: var(--acc); font-variant-numeric: tabular-nums; }

.plain { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.plain li { display: flex; align-items: center; gap: 9px; color: var(--ink-2); }
.plain .ic { color: var(--acc); }

.msg { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; min-width: 44px; padding: 0 15px;
  border: 1px solid var(--line); border-radius: var(--r);
  font-size: 14px; text-decoration: none; color: var(--ink-2);
  transition: border-color .18s, color .18s;
}
.chip:hover { border-color: var(--acc); color: var(--acc); }
.chip .ic { color: var(--acc); }

.state { margin: 0; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); flex: none; }
.state--closed .dot { background: var(--ink-3); }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; }
  .tile--rating { flex-direction: column; align-items: flex-start; }
  .ring { align-self: center; }
}

/* ─── как проходит прогулка ─── */
.steps { display: grid; gap: var(--s2); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step {
  position: relative; padding: var(--s3);
  background: var(--surf); border: 1px solid var(--line); border-radius: var(--r);
  border-top: 3px solid var(--acc);
  display: flex; flex-direction: column; gap: 8px;
}
.step__n {
  font: 700 12px/1 var(--mono); color: var(--acc); letter-spacing: .1em;
}
.step__t { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.step__d { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.steps__note { margin: var(--s3) 0 0; font-size: 14px; color: var(--ink-3); max-width: 74ch; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ─── фотография во всю ширину экрана, кен-бёрнс ─── */
.sect--photo { padding: 0; }
.shot { position: relative; margin: 0; }
.shot__btn {
  display: block; width: 100%; padding: 0; border: 0; background: var(--surf-2);
  cursor: zoom-in; position: relative; overflow: hidden;
  height: clamp(420px, 68vh, 720px);
}
.shot__btn img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: kb 32s ease-in-out infinite alternate;
}
@keyframes kb {
  from { transform: scale(1.04) translate3d(-1.2%, 1%, 0); }
  to   { transform: scale(1.16) translate3d(1.5%, -1.6%, 0); }
}
.shot__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, oklch(0.12 0.02 250 / .78) 0%, oklch(0.12 0.02 250 / .15) 42%, oklch(0.12 0.02 250 / .8) 100%);
}
.shot__over {
  position: absolute; left: 0; right: 0; top: 0; pointer-events: none;
  padding: clamp(var(--s3), 4vw, var(--s5)) 0 0;
}
.shot__over .over { color: oklch(0.86 0.01 250); }
.shot__h2 {
  margin: 0; color: oklch(0.98 0.005 250);
  font-size: clamp(28px, 4.4vw, 56px); line-height: 1.05;
  letter-spacing: -.025em; font-weight: 800; max-width: 16ch;
  text-shadow: 0 2px 26px oklch(0.1 0.02 250 / .6);
}
.shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 0 0 clamp(var(--s3), 4vw, var(--s4));
  color: oklch(0.9 0.008 250); font-size: 14.5px;
  text-shadow: 0 1px 16px oklch(0.1 0.02 250 / .7);
}
.shot__cap .wrap { display: block; }
.shot__cap .wrap > * { max-width: 62ch; }
.shot__cap a { color: var(--acc-2); }
.shot__zoom {
  position: absolute; right: clamp(14px, 4vw, 34px); bottom: clamp(14px, 4vw, 34px);
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--acc); color: var(--acc-ink); border-radius: var(--r);
  transition: transform .2s ease;
}
.shot__btn:hover .shot__zoom { transform: translateY(-3px); }
.shot__btn:hover img { animation-play-state: paused; }

/* ─── отзывы врезками ─── */
.revs { display: grid; gap: var(--s2); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.rev {
  margin: 0; padding: var(--s4) var(--s3) var(--s3);
  background: var(--surf); border: 1px solid var(--line); border-left: 3px solid var(--acc);
  border-radius: var(--r);
  display: flex; flex-direction: column; gap: 12px;
}
.rev p { margin: 0; }
.rev__lead {
  font-size: clamp(19px, 2.1vw, 25px); line-height: 1.25; font-weight: 700;
  letter-spacing: -.015em; color: var(--ink);
}
.rev__rest { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.rev__meta {
  margin-top: auto; padding-top: var(--s2); border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}
.rev__stars { color: var(--acc); letter-spacing: .18em; font-size: 14px; }

/* ─── контакты: карта во всю ширину, карточка плашкой поверх ─── */
.cont { position: relative; }
.map {
  position: relative; overflow: hidden;
  height: clamp(430px, 60vh, 620px);
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surf-2); touch-action: pan-y; user-select: none; -webkit-user-select: none;
}
.map__layer { position: absolute; inset: 0; overflow: hidden; filter: var(--map-filter); }
.map__t {
  position: absolute; left: 0; top: 0; width: 256px; height: 256px;
  background-repeat: no-repeat; background-size: 256px 256px;
}
.map__pin {
  position: absolute; left: 50%; top: 50%; width: 36px; height: 36px;
  transform: translate(-50%, -100%); pointer-events: none;
}
.map__pin svg { width: 100%; height: 100%; fill: var(--acc); stroke: var(--bg); stroke-width: 1.1; }
.map__pin-in { fill: var(--bg); stroke: none; }
.map__ctl { position: absolute; right: 12px; top: 12px; display: grid; gap: 8px; }
.map__ctl button {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--surf); color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--r); font: 600 20px/1 var(--sans); cursor: pointer;
  transition: border-color .18s, color .18s;
}
.map__ctl button:hover { border-color: var(--acc); color: var(--acc); }
.map__attr {
  position: absolute; left: 0; bottom: 0; margin: 0;
  padding: 3px 9px; font-size: 11px;
  background: color-mix(in oklab, var(--bg) 80%, transparent); color: var(--ink-3);
}
.map__attr a { color: inherit; text-decoration: none; }

.cont__card {
  position: absolute; left: var(--s3); top: var(--s3); z-index: 2;
  width: min(380px, calc(100% - 2 * var(--s3)));
  max-height: calc(100% - 2 * var(--s3)); overflow: auto;
  background: var(--plate); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--s3); display: flex; flex-direction: column; gap: var(--s3);
  box-shadow: var(--shadow);
}
.dl { margin: 0; display: grid; gap: var(--s3); }
.dl__row { display: grid; gap: 4px; }
.dl dt {
  font: 600 11.5px/1.3 var(--narrow); letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-3);
}
.dl dd { margin: 0; font-size: 15.5px; overflow-wrap: anywhere; }
.dl dd .lnk { display: inline-flex; align-items: center; min-height: 44px; }
.dl__links { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 860px) {
  .cont__card {
    position: static; width: 100%; max-height: none; margin-bottom: var(--s2);
    backdrop-filter: none; background: var(--surf);
  }
  .map { height: clamp(340px, 52vh, 460px); }
}

/* ─── подвал ─── */
.foot { background: var(--bg-2); border-top: 1px solid var(--line); padding: var(--s5) 0 calc(var(--s5) + 40px); }
.foot__in {
  display: grid; gap: var(--s4);
  grid-template-columns: 2fr 1fr 1fr; align-items: start;
}
.foot__brand { display: flex; gap: 12px; align-items: flex-start; }
.foot__brand b { font-size: 16px; }
.foot__brand p { margin: 4px 0 0; font-size: 14px; color: var(--ink-3); max-width: 34ch; }
.foot__msg { margin: var(--s2) 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.foot__col { display: grid; gap: 8px; align-content: start; font-size: 14.5px; }
.foot__col .lnk { display: inline-flex; align-items: center; min-height: 44px; }
.foot__k { margin: 0 0 2px; font: 600 11.5px/1.3 var(--narrow); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.foot__cr { grid-column: 1 / -1; margin: 0; padding-top: var(--s3); border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }
@media (max-width: 760px) { .foot__in { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ─── постоянная кнопка звонка на телефоне ─── */
.callbar { display: none; }
@media (max-width: 620px) {
  .callbar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 45;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 52px; border-radius: var(--r);
    background: var(--acc); color: var(--acc-ink);
    font: 600 16px/1 var(--sans); text-decoration: none;
    font-variant-numeric: tabular-nums; box-shadow: var(--shadow);
  }
  .foot { padding-bottom: 96px; }
}

/* ─── лайтбокс ─── */
.lb {
  position: fixed; inset: 0; z-index: 60; display: grid; place-items: center;
  background: oklch(0.10 0.015 250 / .93); padding: var(--s3);
}
.lb[hidden] { display: none; }
.lb img { max-width: min(1100px, 96vw); max-height: 86vh; width: auto; border-radius: var(--r); }
.lb__close {
  position: absolute; right: 16px; top: 16px; width: 46px; height: 46px;
  display: grid; place-items: center; background: transparent;
  border: 1px solid oklch(0.7 0 0 / .5); border-radius: var(--r);
  color: oklch(0.97 0 0); cursor: pointer;
}
.lb__close:hover { border-color: var(--acc); color: var(--acc); }

/* ─── появление блоков: ничего не прячем, анимируем только приход ─── */
.js .reveal.is-in { animation: rise .55s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal.is-in { animation: none; }
  .shot__btn img { animation: none; transform: none; }
  .btn, .tile, .chip { transition: none; }
}
