/* =========================================================
   ПІК · Дизайн-концепт 2 · «Маркування»
   Айдентика з карпатської маркування стежок:
   біла — кольорова — біла смуга + стрілки-вказівники.
   Колір мітки кодує тип спорядження:
   сигнальний = похід · синій = вода · жовтий = зима і гори · зелений = табір і сімʼя
   ========================================================= */

:root {
  --navy: #0D2B45;
  --navy-d: #081E33;
  --navy-l: #16405F;
  --ink: #0E1A26;
  --muted: #4A5A6A;
  --muted-lt: #A9BCCD;
  --snow: #F2F5F8;
  --ice: #E6F3FA;
  --line: #DCE3EA;
  --signal: #FF5A1F;
  --signal-h: #FF7033;
  --on-signal: #0B1017;     /* 6.2:1 на сигнальному */
  --signal-text: #A8380A;   /* 6.5:1 на білому, 5.9:1 на «снігу» */
  --signal-lt: #FF8A57;     /* 6.2:1 на темно-синьому */
  --blue: #2F7FE0;
  --yellow: #FFC21A;
  --green: #22A45D;

  --f-display: "Unbounded", "Arial Black", "Helvetica Neue", system-ui, sans-serif;
  --f-text: "Golos Text", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --gutter: 20px;
  --header-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-io: cubic-bezier(.7, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  overflow-x: clip;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
body { background: var(--navy-d); }
main { display: block; background: #fff; }

img { max-width: 100%; display: block; }
figure { margin: 0; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
a { color: inherit; }
svg { flex-shrink: 0; }

:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

.wrap { width: min(100% - 2 * var(--gutter), 1240px); margin-inline: auto; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--yellow); color: var(--ink); padding: 12px 16px; font-weight: 700;
}
.skip:focus { top: 12px; }

/* ---------- Мітка маркування: біла / кольорова / біла ---------- */
.mk {
  display: inline-grid;
  grid-template-rows: 1fr 1fr 1fr;
  width: 20px; height: 18px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px rgba(13, 43, 69, .22);
  flex-shrink: 0;
  vertical-align: middle;
}
.mk::before, .mk::after { content: ""; background: #fff; }
.mk i { background: var(--c, var(--signal)); }
.mk--lg { width: 30px; height: 26px; }

/* ---------- Типографіка ---------- */
.eyebrow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.eyebrow .num {
  font-family: var(--f-display); font-weight: 800; letter-spacing: 0;
  font-size: 13px; color: var(--signal-text);
}
.eyebrow--light { color: #fff; }
.eyebrow--light .num { color: var(--signal-lt); }
.eyebrow--light .mk { box-shadow: none; }
.eyebrow--ink { color: var(--on-signal); }
.eyebrow--ink .num { color: var(--on-signal); }

.h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 7.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--navy);
  text-wrap: balance;
}
.h2--light { color: #fff; }

.lead { margin-top: 16px; font-size: 17px; color: var(--muted); max-width: 52ch; }
.lead--light { color: var(--muted-lt); }
.nowrap { white-space: nowrap; }
.link.nowrap { display: inline-block; padding-block: 12px; margin-block: -12px; }
.link { color: var(--signal-text); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.section { padding-block: 72px; }
.section__head { margin-bottom: 32px; }

/* ---------- Кнопки-вказівники ---------- */
.btn {
  --bg: var(--signal);
  --fg: var(--on-signal);
  --tip: 16px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px;
  padding: 0 calc(var(--tip) + 20px) 0 22px;
  border: 0;
  font-family: var(--f-text); font-weight: 700; font-size: 16px; line-height: 1.15;
  text-decoration: none; text-align: center;
  color: var(--fg);
  background: var(--bg);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--tip)) 0, 100% 50%, calc(100% - var(--tip)) 100%, 0 100%);
  transition: background-color .2s var(--ease), transform .2s var(--ease), padding .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn::before { /* «мазок фарби» пробігає на hover */
  content: "";
  position: absolute; inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  z-index: -1;
  transition: left .55s var(--ease);
}
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.btn:hover { background: var(--signal-h); }
.btn:hover::before { left: 120%; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn:focus-visible { outline: none; background: var(--yellow); color: var(--on-signal); box-shadow: inset 0 0 0 3px var(--on-signal); }
.btn--sm { min-height: 44px; font-size: 15px; padding: 0 32px 0 18px; --tip: 13px; }
.btn--block { width: 100%; }
.btn--navy { --bg: var(--navy); --fg: #fff; }
.btn--navy:hover { background: var(--navy-l); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 20px;
  border: 2px solid var(--navy); color: var(--navy);
  font-weight: 700; text-decoration: none;
  transition: background-color .2s, color .2s;
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* =========================================================
   ПРЕЛОАДЕР
   ========================================================= */
.preloader { display: none; }
.js .preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: radial-gradient(90% 60% at 50% 40%, var(--navy-l), var(--navy) 60%, var(--navy-d));
  color: #fff;
}
.rm .preloader { display: none !important; }
.preloader.is-done { animation: plOut .45s var(--ease-io) forwards; }
.preloader__inner { display: grid; justify-items: center; gap: 18px; }
.preloader__post {
  display: grid; grid-template-rows: repeat(3, 26px);
  width: 120px;
  padding: 8px; background: #3a2a1f;
  background: linear-gradient(90deg, #2b1f17, #4a3627 50%, #2b1f17);
  border-radius: 4px;
}
.pl-bar { display: block; background: #fff; transform: scaleX(0); transform-origin: left center; animation: paint .26s var(--ease-io) forwards; }
.pl-bar--c { background: var(--signal); animation-delay: .1s; }
.pl-bar:last-child { animation-delay: .2s; }
.preloader__word {
  font-family: var(--f-display); font-weight: 900; font-size: 44px; letter-spacing: .02em; line-height: 1;
  opacity: 0; transform: translateY(10px);
  animation: rise .3s var(--ease) .3s forwards;
}
.preloader__colors { display: flex; gap: 8px; }
.preloader__colors i { width: 26px; height: 6px; background: var(--c); transform: scaleX(0); transform-origin: left; animation: paint .18s var(--ease-io) forwards; }
.preloader__colors i:nth-child(1) { animation-delay: .4s; }
.preloader__colors i:nth-child(2) { animation-delay: .45s; }
.preloader__colors i:nth-child(3) { animation-delay: .5s; }
.preloader__colors i:nth-child(4) { animation-delay: .55s; }

@keyframes paint { to { transform: scaleX(1); } }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes plOut {
  0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% -30%, 0 0); visibility: hidden; }
}

/* =========================================================
   ШАПКА
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(13, 43, 69, .5); }
.header__progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; pointer-events: none; }
.header__progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--signal) 0 70%, var(--yellow));
  transform: scaleX(0); transform-origin: left;
}
.header__row { height: var(--header-h); display: flex; align-items: center; gap: 16px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); min-height: 44px; }
.logo__mark { width: 40px; height: 40px; transition: transform .35s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__word { font-family: var(--f-display); font-weight: 900; font-size: 24px; line-height: .9; letter-spacing: .01em; display: grid; }
.logo__word small { font-family: var(--f-text); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.logo--light { color: #fff; }
.logo--light .logo__word small { color: var(--muted-lt); }

.nav { display: none; }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header__phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 44px; min-height: 44px;
  text-decoration: none; font-weight: 700; color: var(--navy);
}
.header__phone svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header__phone span { display: none; }
.header__cta { display: none; }

.burger {
  width: 46px; height: 46px; border: 0; background: var(--navy); cursor: pointer;
  display: grid; place-content: center; gap: 5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%, 0 88%);
}
.burger span { display: block; width: 20px; height: 2.5px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(2) { background: var(--signal); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.burger:focus-visible { outline-offset: 2px; }

/* ---------- Мобільне меню ---------- */
.menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-d) 100%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.menu[hidden] { display: none; }
.menu.is-anim { animation: menuIn .45s var(--ease-io); }
@keyframes menuIn { from { clip-path: polygon(0 0, 100% 0, 100% 0, 0 12%); } to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
.menu__nav { display: grid; }
.menu__nav a {
  display: flex; align-items: center; gap: 16px;
  min-height: 60px;
  font-family: var(--f-display); font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: -.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.menu__nav .mk { box-shadow: none; width: 24px; height: 22px; }
.menu__foot { margin-top: 28px; display: grid; gap: 10px; }
.menu__phone { font-family: var(--f-display); font-weight: 800; font-size: 28px; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.menu__foot p { color: var(--muted-lt); margin-bottom: 8px; }

/* =========================================================
   ПЕРШИЙ ЕКРАН
   ========================================================= */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(47, 127, 224, .28), transparent 60%),
    linear-gradient(170deg, var(--navy-l) 0%, var(--navy) 42%, var(--navy-d) 100%);
  padding: 22px 0 36px;
  overflow: hidden;
}
.hero__stripes {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-60deg, transparent 0 54px, rgba(255, 255, 255, .03) 54px 66px);
}
.hero__grid { position: relative; display: grid; gap: 24px; grid-template-areas: "copy" "media" "form" "trust"; }
.hero__copy { grid-area: copy; }
.hero__media { grid-area: media; }
.finder { grid-area: form; }
.trust { grid-area: trust; }

.hero .eyebrow { margin-bottom: 14px; font-size: 12px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(34px, 9.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero__line { display: block; }
.hero__band {
  display: inline-block;
  margin-top: .16em;
  font-size: .74em;
  white-space: nowrap;
  line-height: 1;
  color: var(--on-signal);
  position: relative;
  padding: .2em .5em .22em .32em;
}
.hero__band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, var(--signal) 0%, #FF7A35 100%);
  clip-path: polygon(0 0, calc(100% - .55em) 0, 100% 50%, calc(100% - .55em) 100%, 0 100%);
  transform-origin: left center;
}
.hero__band span { position: relative; }
.hero__lead { margin-top: 18px; font-size: 17px; line-height: 1.5; color: #D6E1EB; max-width: 46ch; }

/* Фото у рамці-вказівнику */
.hero__media { position: relative; height: 258px; margin-right: calc(-1 * var(--gutter)); }
.hero__photo {
  position: absolute; inset: 0 0 0 34px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 86%);
  overflow: hidden;
  background: var(--navy-l);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 30%; transform: scale(1.04); }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(8, 30, 51, .55));
}
.hero__photo2 {
  position: absolute; left: 0; bottom: -18px;
  width: 44%; aspect-ratio: 4 / 3; max-width: 100%;
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
  border: 0;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--navy);
}
.hero__photo2 img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 60%; }
.hero__photo2::before { /* біла окантовка стрілки */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, #fff 0 5px, transparent 5px);
}
.tree { /* мітка, намальована «на дереві» */
  position: absolute; left: 10px; top: 20px;
  display: grid; grid-template-rows: repeat(3, 16px);
  width: 18px;
}
.tree span { background: #fff; }
.tree span:nth-child(2) { background: var(--signal); }
.hero__sticker {
  position: absolute; left: 52px; top: 14px;
  display: flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--on-signal);
  padding: 8px 12px 8px 10px;
  transform: rotate(-4deg);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .6);
}
.hero__sticker b { font-family: var(--f-display); font-weight: 900; font-size: 30px; line-height: 1; }
.hero__sticker span { font-size: 12px; font-weight: 700; line-height: 1.1; text-transform: uppercase; letter-spacing: .04em; }

/* Форма пошуку */
.finder {
  position: relative;
  background: #fff; color: var(--ink);
  padding: 20px 18px 18px;
  margin-top: 14px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.finder::before { /* смуга маркування зверху */
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--signal) 0 40%, #fff 40% 41.5%, var(--blue) 41.5% 62%, #fff 62% 63.5%, var(--yellow) 63.5% 82%, #fff 82% 83.5%, var(--green) 83.5% 100%);
}
.finder__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.finder__num {
  display: grid; place-items: center; width: 30px; height: 30px;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 16px;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
  padding-right: 6px;
}
.finder__title { font-family: var(--f-display); font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--navy); letter-spacing: -.01em; }
.finder__grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; min-width: 0; border: 0; padding: 0; margin: 0; }
.field label, .field legend, .field__label { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .02em; padding: 0; }
.field legend { margin-bottom: 6px; }
.field select, .date input {
  width: 100%; min-height: 52px;
  font: 600 16px/1.2 var(--f-text); color: var(--ink);
  background-color: var(--snow);
  border: 2px solid var(--line); border-radius: 0;
  padding: 0 14px;
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.field select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D2B45' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  cursor: pointer;
}
.field select:hover, .date input:hover { border-color: #b9c6d2; }
.field select:focus, .date input:focus { outline: none; border-color: var(--navy); background-color: #fff; box-shadow: 0 4px 0 0 var(--signal); }
.dates { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.date { position: relative; display: block; min-width: 0; }
.date span {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; pointer-events: none;
}
.date input { padding-left: 34px; padding-right: 6px; font-size: 15px; min-width: 0; display: block; }
.date input::-webkit-date-and-time-value { text-align: left; }
.date input::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; margin-left: 2px; }
.date input::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.stepper { display: grid; grid-template-columns: 52px 1fr 52px; min-height: 52px; border: 2px solid var(--line); background: var(--snow); }
.stepper button { border: 0; background: transparent; cursor: pointer; display: grid; place-items: center; transition: background-color .2s, color .2s; }
.stepper button:hover { background: var(--navy); color: #fff; }
.stepper button:active { transform: scale(.94); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; background: transparent; color: inherit; }
.stepper svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.stepper output { display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: 20px; color: var(--navy); }
.finder__submit { width: 100%; margin-top: 4px; }
.finder__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; margin-top: 12px; }
.chip-link {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 2px;
  border: 0; background: none; cursor: pointer;
  font-weight: 700; font-size: 14px; color: var(--signal-text);
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.chip-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.chip-link:hover { color: var(--navy); }
.finder__calc { font-size: 14px; color: var(--muted); }
.finder__calc b { color: var(--navy); }

/* Плашки довіри */
.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
.trust li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.3; color: #D6E1EB;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.trust li b { color: #fff; display: block; }
.trust li > span:last-child { min-width: 0; }
.trust .mk { box-shadow: none; margin-top: 1px; }
.trust__star { width: 20px; height: 20px; fill: var(--yellow); }

/* =========================================================
   НАБОРИ
   ========================================================= */
.kits { background: linear-gradient(180deg, #fff 0%, var(--snow) 100%); }
.legend {
  display: flex; gap: 8px;
  overflow-x: auto; scrollbar-width: none;
  margin: 0 calc(-1 * var(--gutter)) 22px;
  padding: 4px var(--gutter);
}
.legend::-webkit-scrollbar { display: none; }
.legend__tab {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 46px; padding: 0 16px;
  border: 2px solid var(--navy); background: #fff; color: var(--navy);
  font-weight: 700; font-size: 15px; white-space: nowrap; cursor: pointer;
  transition: background-color .2s, color .2s, transform .2s;
}
.legend__tab:hover { background: var(--snow); }
.legend__tab:active { transform: scale(.97); }
.legend__tab.is-active { background: var(--navy); color: #fff; }
.legend__tab.is-active .mk { box-shadow: none; }

.kits__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(84%, 340px); gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  margin: 0 calc(-1 * var(--gutter));
  padding: 6px var(--gutter) 22px;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.kits__track::-webkit-scrollbar { display: none; }
.kits__track.is-filtered + .kits__hint { visibility: hidden; }
.kits__hint { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--muted); }
.kits__hint span { width: 48px; height: 4px; background: linear-gradient(90deg, var(--navy) 0 30%, var(--line) 30%); }

.kit {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.kit[hidden] { display: none; }
.kit:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(13, 43, 69, .55); }
.kit__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%); }
.kit__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.kit__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 30, 51, .35), transparent 45%); }
.kit:hover .kit__media img { transform: scale(1.06); }
.kit__tag {
  position: absolute; left: 12px; top: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 18px 7px 8px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}
.kit__tag .mk { box-shadow: none; width: 16px; height: 15px; }
.kit__body { display: flex; flex-direction: column; flex: 1; padding: 6px 18px 18px; }
.kit__name { font-family: var(--f-display); font-weight: 700; font-size: 19px; line-height: 1.15; color: var(--navy); text-transform: uppercase; letter-spacing: -.01em; min-height: 2.3em; }
.kit__price { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.kit__price b { font-family: var(--f-display); font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -.03em; color: var(--ink); white-space: nowrap; }
.kit__price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.kit__alt { margin-top: 6px; font-size: 14px; color: var(--muted); min-height: 1.55em; }
.kit__alt b { color: var(--signal-text); font-weight: 800; }
.kit__toggle {
  display: flex; align-items: center; gap: 8px; width: 100%;
  min-height: 48px; margin-top: 14px; padding: 0;
  border: 0; border-top: 2px solid var(--ink); background: none; cursor: pointer;
  font-weight: 700; font-size: 15px; color: var(--navy); text-align: left;
}
.kit__toggle em { font-style: normal; font-weight: 600; color: var(--muted); font-size: 13px; }
.kit__toggle svg { margin-left: auto; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .3s var(--ease); }
.kit__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.kit__toggle:hover { color: var(--signal-text); }
.kit__list { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.kit__list > ul { overflow: hidden; min-height: 0; }
.kit.is-open .kit__list { grid-template-rows: 1fr; }
.kit__list li { position: relative; padding: 7px 0 7px 22px; font-size: 15px; border-bottom: 1px dashed var(--line); }
.kit__list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 12px; height: 4px; background: var(--c); box-shadow: 0 -4px 0 #fff, 0 4px 0 #fff, 0 0 0 1px rgba(13, 43, 69, .25); transform: translateY(-50%); }
.kit__list li:last-child { border-bottom: 0; margin-bottom: 10px; }
.kit .btn { margin-top: auto; }
.kit__body > .btn { margin-top: 14px; }

/* =========================================================
   ТАРИФ «ВИХІДНІ»
   ========================================================= */
.weekend {
  position: relative;
  color: var(--on-signal);
  background:
    repeating-linear-gradient(-60deg, transparent 0 40px, rgba(255, 255, 255, .07) 40px 52px),
    linear-gradient(115deg, #FF5A1F 0%, #FF6F2A 55%, #FF8F3F 100%);
  padding: 76px 0 80px;
  clip-path: polygon(0 34px, 100% 0, 100% calc(100% - 34px), 0 100%);
  margin-block: -34px;
  z-index: 1;
}
.weekend__grid { display: grid; gap: 28px; }
.weekend .eyebrow { margin-bottom: 8px; }
.weekend__title { font-family: var(--f-display); font-weight: 900; font-size: clamp(44px, 13vw, 128px); line-height: .95; letter-spacing: -.04em; }
.weekend__lead { margin-top: 14px; font-size: 20px; line-height: 1.4; font-weight: 500; max-width: 30ch; }
.weekend__lead strong { font-weight: 800; background: linear-gradient(transparent 60%, rgba(255, 255, 255, .45) 60%); }

.weekend__track { display: grid; gap: 18px; }
.days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.days li { display: grid; gap: 8px; justify-items: start; }
.days__sign {
  display: grid; place-items: center start;
  width: 100%; height: 50px; padding-left: 10px;
  font-family: var(--f-display); font-weight: 800; font-size: 17px; text-transform: uppercase;
  background: var(--on-signal); color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.days__sign--go { background: #fff; color: var(--on-signal); }
.days em { font-style: normal; font-size: 13px; font-weight: 600; line-height: 1.2; }
.weekend__pay {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px 12px 14px;
  background: var(--navy-d); color: #fff;
  justify-self: start;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  padding-right: 40px;
}
.weekend__pay b { font-family: var(--f-display); font-weight: 900; font-size: 56px; line-height: .9; color: var(--signal-lt); }
.weekend__pay span { font-weight: 700; font-size: 15px; line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; }
.weekend__ex { display: grid; gap: 0; border-top: 2px solid var(--on-signal); }
.weekend__ex li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(11, 16, 23, .25); font-weight: 600; }
.weekend__ex b { font-family: var(--f-display); font-weight: 800; font-size: 20px; white-space: nowrap; }

/* =========================================================
   КАТАЛОГ
   ========================================================= */
.catalog { padding-top: 96px; }
.code { margin-top: 22px; padding: 16px; background: var(--snow); border-left: 4px solid var(--navy); }
.code__title { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.code__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.code__list li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }

.cats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cat {
  --c: var(--signal);
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-start;
  min-height: 150px; height: 100%;
  padding: 16px 14px 14px;
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--line);
  text-decoration: none;
  overflow: hidden;
  transition: background-color .3s var(--ease), color .3s, border-color .3s, transform .3s var(--ease);
}
.cat::before { /* мітка на «дереві» у кутку */
  content: ""; position: absolute; right: 12px; top: 0;
  width: 14px; height: 36px;
  background: linear-gradient(#fff 0 33.3%, var(--c) 33.3% 66.6%, #fff 66.6%);
  box-shadow: 0 0 0 1.5px rgba(13, 43, 69, .2);
  transition: height .35s var(--ease);
}
.cat::after { /* кольорова заливка при наведенні */
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px; background: var(--c);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.cat__ic { width: 34px; height: 34px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: auto; transition: stroke .3s, transform .35s var(--ease); }
.cat__name { margin-top: 18px; font-weight: 700; font-size: 16px; line-height: 1.2; color: var(--navy); transition: color .3s; hyphens: auto; }
.cat__sub { margin-top: 4px; font-size: 13px; line-height: 1.3; color: var(--muted); transition: color .3s; padding-right: 22px; }
.cat__go { position: absolute; right: 12px; bottom: 14px; width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease), stroke .3s; }
.cat:hover { background: var(--navy); border-color: var(--navy); }
.cat:hover .cat__name { color: #fff; }
.cat:hover .cat__sub { color: var(--muted-lt); }
.cat:hover .cat__ic { stroke: #fff; transform: translateY(-2px); }
.cat:hover .cat__go { stroke: #fff; transform: translateX(4px); }
.cat:hover::before { height: 52px; box-shadow: none; }
.cat:hover::after { transform: scaleX(1); }
.cat:active { transform: scale(.98); }

/* =========================================================
   ПОПУЛЯРНЕ
   ========================================================= */
.popular { background: var(--snow); }
.items { display: grid; gap: 12px; }
.item {
  --c: var(--signal);
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-areas: "plate body" "periods periods" "dep dep";
  gap: 12px 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.item::before { content: ""; position: absolute; left: -1px; top: 16px; width: 5px; height: 42px; background: var(--c); }
.item:hover { box-shadow: 0 20px 36px -28px rgba(13, 43, 69, .55); }
.item__plate { grid-area: plate; aspect-ratio: 1; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; padding: 8px; overflow: hidden; }
.item__plate img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .5s var(--ease); }
.item:hover .item__plate img { transform: scale(1.07) rotate(-2deg); }
.item__body { grid-area: body; min-width: 0; }
.item__name { font-weight: 700; font-size: 16px; line-height: 1.25; color: var(--navy); }
.item__name small { display: block; font-size: 13px; font-weight: 600; color: var(--muted); }
.item__price { margin-top: 6px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 6px; font-weight: 700; color: var(--ink); }
.item__price b { font-family: var(--f-display); font-weight: 800; font-size: 32px; line-height: 1.05; letter-spacing: -.03em; display: inline-block; }
.item__price b.bump { animation: bump .35s var(--ease); }
@keyframes bump { 0% { transform: translateY(-40%); opacity: 0; } 100% { transform: none; opacity: 1; } }
.item__price span { font-size: 13px; font-weight: 600; color: var(--muted); }
.item__from { margin-top: 2px; font-size: 13px; color: var(--signal-text); font-weight: 600; }
.periods { grid-area: periods; display: flex; gap: 6px; }
.period {
  flex: 1 1 0; min-width: 0; min-height: 44px; padding: 0 4px;
  border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  font-weight: 700; font-size: 13px; color: var(--navy); white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s;
}
.period:hover { border-color: var(--navy); }
.period[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.item__dep { grid-area: dep; display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 10px; }
.item__dep b { color: var(--ink); white-space: nowrap; }
.items__more { margin-top: 20px; display: flex; justify-content: center; }
.items__more svg { transition: transform .3s; }
@media (max-width: 767px) {
  .items:not(.is-all) .item:nth-child(n+7) { display: none; }
}

/* =========================================================
   ЯК ЦЕ ПРАЦЮЄ
   ========================================================= */
.steps { position: relative; display: grid; gap: 26px; counter-reset: s; }
.steps::before { /* стежка */
  content: ""; position: absolute; left: 26px; top: 30px; bottom: 30px; width: 4px;
  background: repeating-linear-gradient(180deg, var(--navy) 0 10px, transparent 10px 20px);
  opacity: .25;
}
.step { position: relative; display: grid; grid-template-columns: 70px 1fr; grid-template-rows: auto 1fr; column-gap: 14px; }
.step__sign {
  grid-row: 1 / 3;
  position: relative;
  display: grid; place-items: center start;
  width: 62px; height: 54px; padding-left: 16px;
  font-family: var(--f-display); font-weight: 900; font-size: 24px; line-height: 1;
  color: #fff; background: var(--navy);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
}

.step__sign--end { background: var(--signal); color: var(--on-signal); }
.step h3 { font-family: var(--f-display); font-weight: 700; font-size: 18px; line-height: 1.2; color: var(--navy); text-transform: uppercase; letter-spacing: -.01em; padding-top: 4px; }
.step p { margin-top: 6px; color: var(--muted); font-size: 15px; }

/* =========================================================
   ДОСТАВКА
   ========================================================= */
.delivery, .routes {
  position: relative;
  color: #fff;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-d) 100%);
  padding: 92px 0 96px;
  clip-path: polygon(0 0, 100% 34px, 100% 100%, 0 100%);
  overflow: hidden;
}
.topo {
  position: absolute; inset: 0; pointer-events: none;
  background: url("img/topo.svg") center / cover no-repeat;
  opacity: .5;
}
.delivery__grid { position: relative; display: grid; gap: 36px; }
.ticks { margin-top: 24px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.4; color: #E3EBF2; }
.ticks svg { width: 24px; height: 24px; margin-top: 0; fill: none; stroke: var(--signal-lt); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.line-map {
  position: relative;
  padding: 22px 20px 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .14);
}
.line-map__start { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.line-map__note { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; background: rgba(255, 255, 255, .08); padding: 6px 12px; }
.line-map__note svg { width: 22px; height: 22px; fill: none; stroke: var(--signal-lt); stroke-width: 1.8; }
.stop { position: relative; display: inline-flex; align-items: center; gap: 14px; font-family: var(--f-display); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: -.01em; }
.stop::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background: var(--navy-d); border: 4px solid #fff; flex-shrink: 0; }
.stop--big { font-size: 26px; }
.stop--big::before { width: 26px; height: 26px; background: var(--signal); border-color: #fff; }
.line-map__stops { position: relative; margin: 8px 0 0 10px; padding: 18px 0 0 0; display: grid; gap: 18px; }
.line-map__stops::before { /* маркування вздовж лінії */
  content: ""; position: absolute; left: 0; top: -22px; bottom: 14px; width: 6px;
  background: repeating-linear-gradient(180deg, #fff 0 8px, var(--blue) 8px 18px, #fff 18px 26px, transparent 26px 38px);
  transform-origin: top;
}
.line-map__stops li { position: relative; padding-left: 30px; }
.line-map__stops li::before { content: ""; position: absolute; left: 3px; top: 50%; width: 26px; height: 2px; background: rgba(255, 255, 255, .35); }
.line-map__stops .stop::before { margin-left: 0; }
.line-map__foot { margin-top: 18px; font-size: 12px; color: var(--muted-lt); letter-spacing: .06em; text-transform: uppercase; }

/* =========================================================
   ЧИСТОТА
   ========================================================= */
.clean__grid { display: grid; gap: 40px; }
.clean__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.clean__photo { position: relative; overflow: hidden; background: var(--snow); }
.clean__photo img { width: 100%; height: 100%; object-fit: cover; }
.clean__photo--a { height: 330px; clip-path: polygon(0 9%, 50% 0, 100% 9%, 100% 100%, 0 100%); }
.clean__photo--b { height: 330px; margin-top: 44px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%); }
.clean__photo--b img { object-position: 50% 60%; }
.clean__cap { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); font-weight: 600; }
.promise { margin-top: 26px; display: grid; gap: 4px; }
.promise li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.promise li:last-child { border-bottom: 1px solid var(--line); }
.promise__ic { width: 52px; height: 52px; display: grid; place-items: center; background: var(--navy); color: #fff; clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%); }
.promise__ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.promise li:first-child .promise__ic { background: var(--green); color: var(--on-signal); }
.promise h3 { font-weight: 700; font-size: 18px; line-height: 1.3; color: var(--navy); }
.promise p { margin-top: 4px; color: var(--muted); font-size: 15px; }

/* =========================================================
   СНІГОСТУПИ
   ========================================================= */
.snow { position: relative; background: linear-gradient(170deg, var(--ice) 0%, #F7FBFD 55%, #fff 100%); overflow: hidden; }
.snow__flakes {
  position: absolute; inset: 0; pointer-events: none; opacity: .7;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, #fff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 40% 80%, rgba(47, 127, 224, .18) 0 1.5px, transparent 2.5px);
  background-size: 120px 120px, 90px 90px, 140px 140px;
}
.snow__grid { position: relative; display: grid; gap: 32px; }
.offer {
  position: relative; margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
  background: var(--yellow); color: var(--on-signal);
  padding: 16px 44px 16px 16px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
  max-width: 520px;
}
.offer p { font-size: 16px; line-height: 1.4; }
.offer strong { font-weight: 800; }
.offer__arrow { width: 14px; align-self: stretch; background: linear-gradient(#fff 0 33%, var(--navy) 33% 66%, #fff 66%); flex-shrink: 0; min-height: 44px; }

.models { background: #fff; border: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(13, 43, 69, .45); }
.models__tabs { display: grid; grid-template-columns: repeat(4, auto); border-bottom: 2px solid var(--navy); overflow-x: auto; scrollbar-width: none; }
.models__tabs::-webkit-scrollbar { display: none; }
.models__tabs button {
  min-height: 52px; padding: 0 12px; border: 0; background: #fff; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: 14px; color: var(--navy); white-space: nowrap;
  border-right: 1px solid var(--line);
  transition: background-color .2s, color .2s;
}
.models__tabs button:last-child { border-right: 0; }
.models__tabs button:hover { background: var(--snow); }
.models__tabs button.is-active { background: var(--navy); color: #fff; box-shadow: inset 0 -5px 0 var(--yellow); }
.model[hidden] { display: none !important; }
.model { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 18px; align-items: center; }
.model:not([hidden]) { animation: rise .4s var(--ease); }
.model__plate { aspect-ratio: 3 / 4; display: grid; place-items: center; padding: 8px; background: #fff; border: 1px solid var(--line); }
.model__plate img { width: 100%; height: 100%; object-fit: contain; }
.model__kind { font-family: var(--f-display); font-weight: 800; font-size: 20px; line-height: 1.15; text-transform: uppercase; color: var(--navy); }
.specs { margin: 14px 0 0; display: grid; gap: 10px; }
.specs div { display: grid; gap: 2px; padding-left: 12px; border-left: 4px solid var(--yellow); }
.specs dt { font-size: 13px; color: var(--muted); font-weight: 600; }
.specs dd { margin: 0; font-family: var(--f-display); font-weight: 800; font-size: 20px; color: var(--ink); line-height: 1.15; }
.models__foot { border-top: 1px solid var(--line); padding: 16px 18px 18px; display: grid; gap: 12px; }
.models__price { font-weight: 600; color: var(--muted); }
.models__price b { font-family: var(--f-display); font-weight: 800; font-size: 28px; color: var(--ink); margin-right: 4px; }
.models__btns { display: grid; gap: 10px; }

/* =========================================================
   МАРШРУТИ
   ========================================================= */
.routes { background: radial-gradient(80% 60% at 0% 100%, rgba(34, 164, 93, .18), transparent 60%), linear-gradient(165deg, var(--navy-d) 0%, #06182A 100%); clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%); }
.routes__grid { position: relative; display: grid; gap: 40px; }
.note-tag { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255, 194, 26, .14); color: var(--yellow); font-weight: 700; font-size: 14px; border: 1px dashed rgba(255, 194, 26, .5); }
.note-tag svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.routes__cta { margin-top: 26px; }

.post { position: relative; padding-left: 28px; max-width: 560px; }
.post__pole {
  position: absolute; left: 6px; top: -18px; bottom: -30px; width: 14px;
  background: linear-gradient(90deg, #3b2b1f, #6b4e38 45%, #3b2b1f);
  border-radius: 3px 3px 0 0;
}
.post__pole::before { /* мітка на стовпі */
  content: ""; position: absolute; left: 0; right: 0; top: 10px; height: 36px;
  background: linear-gradient(#fff 0 33%, var(--signal) 33% 66%, #fff 66%);
}
.post__signs { display: grid; gap: 14px; }
.sign {
  position: relative;
  display: grid; gap: 6px; justify-items: start;
  padding: 14px 48px 14px 18px;
  background: #fff; color: var(--ink);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}
.sign::before { /* кріплення до стовпа */
  content: ""; position: absolute; left: 6px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: #9aa9b7; transform: translateY(-50%);
}
.sign:nth-child(2) { transform: rotate(.7deg); margin-right: 18px; }
.sign:nth-child(3) { transform: rotate(-.5deg); }
.sign:nth-child(4) { transform: rotate(.6deg); margin-right: 30px; }
.sign:nth-child(5) { transform: rotate(-.7deg); margin-right: 8px; }
.sign:hover { transform: rotate(0) translateX(6px); }
.sign__name { font-family: var(--f-display); font-weight: 700; font-size: 16px; line-height: 1.2; text-transform: uppercase; letter-spacing: -.01em; color: var(--navy); padding-left: 8px; }
.sign__meta { font-size: 14px; font-weight: 600; color: var(--muted); padding-left: 8px; }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 5px 10px; font-size: 13px; font-weight: 700; line-height: 1.25; margin-left: 8px; }
.status i { width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.status--ok { background: #DDF3E6; color: #0F5E33; }
.status--permit { background: #FFF1C2; color: #6B4A00; }
.status--wait { background: #E3EAF1; color: #34465A; }
.status--closed { background: #FFE1D6; color: #9A2F06; }

/* =========================================================
   ІСТОРІЯ + ВІДГУКИ
   ========================================================= */
.story { background: #fff; }
.story__grid { display: grid; gap: 40px; }
.story__title { display: flex; align-items: flex-end; gap: 14px; font-family: var(--f-display); text-transform: uppercase; color: var(--navy); }
.story__big { font-weight: 900; font-size: clamp(120px, 34vw, 240px); line-height: .78; letter-spacing: -.06em; background: linear-gradient(175deg, var(--navy) 30%, var(--navy-l)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.story__title span:last-child { font-weight: 800; font-size: clamp(24px, 6.4vw, 44px); line-height: 1; padding-bottom: .1em; }
.story__text { margin-top: 26px; display: grid; gap: 10px; font-size: 20px; line-height: 1.45; max-width: 36ch; }
.story__text strong { font-weight: 700; color: var(--navy); }
.trail-break { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.tb { width: 44px; height: 24px; }
.tb--on { background: linear-gradient(#fff 0 33%, var(--signal) 33% 66%, #fff 66%); box-shadow: 0 0 0 1.5px rgba(13, 43, 69, .25); }
.tb--gap { background: repeating-linear-gradient(-45deg, #3c4650 0 3px, #20282f 3px 6px); opacity: .85; }
.story__dates { margin-top: 20px; display: grid; gap: 10px; }
.story__dates li { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.story__dates time { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--navy); }
.story__dates span { color: var(--muted); }

.reviews {
  position: relative; align-self: start;
  padding: 28px 22px 22px;
  background: radial-gradient(90% 70% at 100% 0%, rgba(255, 194, 26, .2), transparent 60%), linear-gradient(160deg, var(--navy-l), var(--navy) 50%, var(--navy-d));
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}
.reviews__label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--muted-lt); }
.reviews__score b { display: block; font-family: var(--f-display); font-weight: 900; font-size: 96px; line-height: 1; letter-spacing: -.05em; margin-top: 10px; }
.stars { display: flex; gap: 4px; margin-top: 8px; }
.stars svg { width: 28px; height: 28px; fill: var(--yellow); }
.reviews__count { margin: 10px 0 22px; font-weight: 600; color: #D6E1EB; font-size: 17px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--snow); }
.faq__grid { display: grid; gap: 8px; }
.acc { display: grid; gap: 10px; }
.acc__item { background: #fff; border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s; }
.acc__item.is-open { border-color: var(--navy); box-shadow: 6px 6px 0 var(--signal); }
.acc__item h3 { font-size: inherit; }
.acc__btn {
  width: 100%; min-height: 64px; display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border: 0; background: none; cursor: pointer; text-align: left;
  font-weight: 700; font-size: 17px; line-height: 1.3; color: var(--navy);
}
.acc__btn:hover { color: var(--signal-text); }
.acc__btn:focus-visible { outline-offset: -3px; }
.acc__ic { position: relative; margin-left: auto; width: 32px; height: 32px; flex-shrink: 0; background: var(--navy); clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%); transition: background-color .3s; }
.acc__ic::before, .acc__ic::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2.5px; background: #fff; transform: translate(-50%, -50%); transition: transform .35s var(--ease); }
.acc__ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__ic { background: var(--signal); }
.acc__btn[aria-expanded="true"] .acc__ic::before, .acc__btn[aria-expanded="true"] .acc__ic::after { background: var(--on-signal); }
.acc__btn[aria-expanded="true"] .acc__ic::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc__panel > div { overflow: hidden; min-height: 0; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel p { padding: 0 18px 20px; color: var(--muted); font-size: 16px; max-width: 60ch; }
.no-js-open .acc__panel { grid-template-rows: 1fr; }

/* =========================================================
   КОНТАКТИ + ФУТЕР
   ========================================================= */
.footer {
  position: relative;
  color: #fff;
  background:
    repeating-linear-gradient(-60deg, transparent 0 54px, rgba(255, 255, 255, .025) 54px 66px),
    linear-gradient(170deg, var(--navy) 0%, var(--navy-d) 70%);
  padding: 92px 0 28px;
  clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%);
  margin-top: -34px;
  z-index: 1;
}
.contact { display: grid; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.contact__phone {
  display: inline-block; margin-top: 24px;
  font-family: var(--f-display); font-weight: 800; font-size: clamp(30px, 8.6vw, 64px); line-height: 1.05; letter-spacing: -.02em;
  text-decoration: none; white-space: nowrap;
  background: linear-gradient(transparent 88%, var(--signal) 88%) no-repeat 0 0 / 0% 100%;
  transition: background-size .45s var(--ease);
  min-height: 44px;
}
.contact__phone:hover { background-size: 100% 100%; }
.contact__mail { display: inline-flex; align-items: center; min-height: 44px; margin-top: 8px; font-size: 20px; font-weight: 600; color: #D6E1EB; text-underline-offset: 5px; }
.contact__mail:hover { color: #fff; }
.contact__lead { display: flex; flex-direction: column; align-items: flex-start; }
.msgs { display: flex; flex-wrap: wrap; gap: 10px; }
.msg {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 50px; padding: 0 18px 0 14px;
  background: rgba(255, 255, 255, .08); border: 1.5px solid rgba(255, 255, 255, .22);
  font-weight: 700; text-decoration: none;
  transition: background-color .2s, border-color .2s, transform .2s;
}
.msg .mk { box-shadow: none; }
.msg:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }
.info { margin: 26px 0 0; display: grid; gap: 16px; }
.info dt { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-lt); }
.info dt svg { width: 18px; height: 18px; fill: none; stroke: var(--signal-lt); stroke-width: 2; }
.info dd { margin: 4px 0 0; font-size: 17px; font-weight: 600; }

.footer__bottom { display: grid; gap: 22px; padding-top: 30px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0 20px; }
.footer__nav a, .footer__legal a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; color: #D6E1EB; font-weight: 600; }
.footer__nav a:hover, .footer__legal a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 0 20px; font-size: 14px; color: var(--muted-lt); }
.concept { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.concept__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; font-size: 13px; font-weight: 700; background: rgba(255, 255, 255, .08); color: #fff; }
.concept__badge .mk { box-shadow: none; }
.concept__back { display: inline-flex; align-items: center; min-height: 44px; color: var(--signal-lt); font-weight: 700; font-size: 14px; text-underline-offset: 4px; }

/* =========================================================
   МОБІЛЬНА ПАНЕЛЬ + ПОВІДОМЛЕННЯ
   ========================================================= */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.dock a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background-color .2s, transform .15s;
}
.dock a:active { transform: scale(.97); }
.dock svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dock__call { background: var(--navy); color: #fff; }
.dock__book { background: var(--signal); color: var(--on-signal); clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%); padding-right: 12px; }

.toast {
  position: fixed; left: 12px; right: 12px; bottom: calc(80px + env(safe-area-inset-bottom)); z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 8px 12px 16px;
  background: var(--navy-d); color: #fff;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
  border-left: 5px solid var(--signal);
  opacity: 0; transform: translateY(16px); visibility: hidden;
  transition: opacity .3s, transform .3s var(--ease), visibility 0s .3s;
}
.toast.is-on { opacity: 1; transform: none; visibility: visible; transition: opacity .3s, transform .3s var(--ease); }
.toast .mk { box-shadow: none; }
.toast p { font-size: 15px; font-weight: 600; line-height: 1.35; }
.toast__close { margin-left: auto; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.toast__close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

/* =========================================================
   АНІМАЦІЇ ПОЯВИ (лише з JS і без reduced motion)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
  .js [data-reveal="sign"] { transform: translateX(-30px) rotate(-3deg); }
  .js .sign.is-in { transition: opacity .6s var(--ease), transform .6s var(--ease); }

  .js .eyebrow .mk i, .js .code__list .mk i, .js:not(.is-loaded) .hero .eyebrow .mk i { transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-io) .25s; }
  .js .is-in .eyebrow .mk i, .js .eyebrow.is-in .mk i, .js .is-in .code__list .mk i, .js.is-loaded .hero .eyebrow .mk i { transform: scaleX(1); }

  .js:not(.is-loaded) .hero__line, .js:not(.is-loaded) .hero__band span { opacity: 0; transform: translateY(40%); }
  .js:not(.is-loaded) .hero__band::before { transform: scaleX(0); }
  .js:not(.is-loaded) .hero__photo { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%, 0 100%); }
  .js:not(.is-loaded) .tree span { transform: scaleX(0); }
  .hero__line, .hero__band span { transition: opacity .6s var(--ease), transform .7s var(--ease); }
  .hero__line:nth-child(2) { transition-delay: .08s; }
  .hero__band span { transition-delay: .3s; }
  .hero__band::before { transition: transform .5s var(--ease-io) .18s; }
  .hero__photo { transition: clip-path .9s var(--ease-io) .1s; }
  .tree span { transition: transform .3s var(--ease-io); transform-origin: left; }
  .tree span:nth-child(1) { transition-delay: .5s; }
  .tree span:nth-child(2) { transition-delay: .6s; }
  .tree span:nth-child(3) { transition-delay: .7s; }

  .js .line-map__stops::before { transform: scaleY(0); transition: transform 1.1s var(--ease-io) .2s; }
  .js .line-map.is-in .line-map__stops::before { transform: scaleY(1); }
}

/* =========================================================
   ≥ 600
   ========================================================= */
@media (min-width: 600px) {
  :root { --gutter: 32px; }
  .header__cta { display: inline-flex; }
  .hero__media { height: 380px; }
  .kits__track { grid-auto-columns: minmax(300px, 46%); }
  .code__list { grid-template-columns: repeat(4, auto); justify-content: start; }
  .items { grid-template-columns: 1fr 1fr; }
  .models__btns { grid-template-columns: auto auto; justify-content: start; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .dates { gap: 10px; }
}

/* =========================================================
   ≥ 768
   ========================================================= */
@media (min-width: 768px) {
  .section { padding-block: 96px; }
  .items__more { display: none; }
  .finder__grid { grid-template-columns: 1fr 1fr; }
  .field--dates { grid-column: 1 / -1; }
  .finder__submit { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr 1fr; column-gap: 32px; }
  .steps::before { display: none; }
  .clean__photo--a, .clean__photo--b { height: 460px; }
  .snow__grid { grid-template-columns: 1fr; }
  .model { grid-template-columns: 180px 1fr; padding: 24px; gap: 24px; }
  .contact__phone { margin-top: 30px; }
  .toast { left: auto; right: 24px; max-width: 460px; }
  .weekend__track { grid-template-columns: 1fr auto; align-items: center; }
}

/* =========================================================
   ≥ 1024 — десктоп
   ========================================================= */
@media (min-width: 1024px) {
  :root { --gutter: 40px; --header-h: 76px; }
  body { padding-bottom: 0; }
  .dock { display: none; }
  .toast { bottom: 24px; }

  .logo__mark { width: 44px; height: 44px; }
  .logo__word { font-size: 26px; }

  /* Перший екран */
  .hero { padding: 48px 0 64px; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    grid-template-areas: "copy media" "form form" "trust trust";
    column-gap: 48px; row-gap: 0;
    align-items: center;
  }
  .hero__copy { padding-bottom: 80px; }
  .hero .eyebrow { font-size: 13px; margin-bottom: 22px; }
  .hero__title { font-size: clamp(50px, 4.7vw, 70px); }
  .hero__band { font-size: .72em; }
  .hero__lead { font-size: 19px; margin-top: 26px; }
  .hero__media { height: 580px; margin-right: 0; }
  .hero__photo { inset: 0 0 60px 60px; clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 0 0); }
  .js:not(.is-loaded) .hero__photo { clip-path: polygon(0 0, 0 0, 0 50%, 0 100%, 0 100%, 0 0); }
  .hero__photo img { object-position: 74% 30%; }
  .hero__photo2 { left: 0; bottom: 0; width: 42%; }
  .tree { left: 44px; top: 70px; grid-template-rows: repeat(3, 26px); width: 32px; z-index: 1; box-shadow: 0 8px 18px -8px rgba(0,0,0,.5); }
  .hero__sticker { left: auto; right: 18%; top: 22px; padding: 12px 16px 12px 14px; }
  .hero__sticker b { font-size: 40px; }
  .hero__sticker span { font-size: 13px; }

  .finder { margin-top: -40px; padding: 26px 28px 20px; }
  .finder__grid { grid-template-columns: 1.05fr 1.55fr .85fr auto; align-items: end; gap: 14px; }
  .field--dates, .finder__submit { grid-column: auto; }
  .finder__submit { width: auto; min-height: 52px; margin-top: 0; white-space: nowrap; }
  .trust { margin-top: 34px; gap: 20px; }
  .trust li { font-size: 15px; }

  /* Набори: дерзка сітка 2 + 3 */
  .section__head--split { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
  .section__head--split .code { margin-top: 0; }
  .legend { margin-inline: 0; padding-inline: 0; flex-wrap: wrap; overflow: visible; }
  .kits__track {
    grid-auto-flow: row; grid-template-columns: repeat(6, 1fr); grid-auto-columns: auto;
    gap: 20px; overflow: visible; margin: 0; padding: 0;
  }
  .kits__track .kit { grid-column: span 2; }
  .kits__track:not(.is-filtered) .kit:nth-child(-n+2) { grid-column: span 3; }
  .kits__track:not(.is-filtered) .kit:nth-child(-n+2) .kit__media { aspect-ratio: 16 / 8; }
  .kits__track:not(.is-filtered) .kit:nth-child(-n+2) .kit__price b { font-size: 52px; }
  .kits__hint { display: none; }
  .kit__name { min-height: 0; }

  .weekend { padding: 120px 0 124px; clip-path: polygon(0 70px, 100% 0, 100% calc(100% - 70px), 0 100%); margin-block: -70px; }
  .weekend__title { font-size: clamp(64px, 6.2vw, 96px); }
  .weekend__grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); grid-template-areas: "copy track" "copy ex"; column-gap: 64px; row-gap: 26px; align-items: end; }
  .weekend__copy { grid-area: copy; align-self: center; }
  .weekend__track { grid-area: track; }
  .weekend__ex { grid-area: ex; }
  .weekend__lead { font-size: 24px; }
  .days__sign { height: 64px; font-size: 22px; padding-left: 16px; }
  .days em { font-size: 14px; }

  .catalog { padding-top: 140px; }
  .cats { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .cat { min-height: 190px; padding: 22px 18px 18px; }
  .cat__ic { width: 40px; height: 40px; }
  .cat__name { font-size: 17px; }

  .items { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .popular .section__head { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: end; column-gap: 40px; }
  .popular .section__head .eyebrow { grid-column: 1 / -1; }
  .popular .section__head .lead { margin: 0; justify-self: end; }

  .steps { grid-template-columns: repeat(4, 1fr); column-gap: 28px; }
  .steps::before { display: block; left: 0; right: 0; top: 25px; bottom: auto; width: auto; height: 4px; background: repeating-linear-gradient(90deg, var(--navy) 0 12px, transparent 12px 24px); }
  .step { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 0; align-content: start; }
  .step__sign { grid-row: auto; width: 84px; height: 56px; margin-bottom: 22px; box-shadow: 0 0 0 8px #fff; }
  .step h3 { font-size: 19px; }

  .delivery { padding: 150px 0 140px; clip-path: polygon(0 0, 100% 70px, 100% 100%, 0 100%); }
  .delivery__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .line-map { padding: 34px 36px 26px; }
  .stop { font-size: 24px; }
  .stop--big { font-size: 32px; }

  .clean__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .clean__photo--a, .clean__photo--b { height: 540px; }
  .clean__photo--b { margin-top: 80px; }

  .snow__grid { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
  .model { grid-template-columns: 190px 1fr; padding: 30px; }
  .model__kind { font-size: 26px; }
  .specs { grid-template-columns: 1fr 1fr; gap: 16px; }
  .specs dd { font-size: 23px; white-space: nowrap; }
  .models__foot { padding: 20px 30px 26px; }
  .models__btns { justify-content: start; }
  .models__btns .btn, .models__btns .btn-ghost { white-space: nowrap; }
  .models__tabs { grid-template-columns: repeat(4, 1fr); }
  .models__tabs button { font-size: 15px; }

  .routes { padding: 160px 0 140px; clip-path: polygon(0 70px, 100% 0, 100% 100%, 0 100%); }
  .routes__grid { grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
  .post { padding-left: 0; max-width: none; }
  .post__pole { left: 44%; top: -40px; bottom: -60px; width: 18px; }
  .post__signs { gap: 18px; }
  .sign { margin-left: calc(44% + 4px); margin-right: 0 !important; padding: 18px 54px 18px 22px; }
  .sign--left {
    margin-left: 0; margin-right: calc(56% - 14px) !important; width: auto;
    clip-path: polygon(28px 0, 100% 0, 100% 100%, 28px 100%, 0 50%);
    padding: 18px 22px 18px 50px;
    transform-origin: right center;
  }
  .sign--left::before { left: auto; right: 6px; }
  .sign--left:hover { transform: rotate(0) translateX(-6px); }
  .sign__name { font-size: 18px; }
  .js .sign--left[data-reveal="sign"] { transform: translateX(30px) rotate(3deg); }

  .story__grid { grid-template-columns: 1.4fr .6fr; gap: 72px; align-items: center; }
  .story__copy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); column-gap: 56px; align-items: start; }
  .story__copy > .eyebrow, .story__title { grid-column: 1 / -1; }
  .story__text { grid-column: 1; grid-row: 3 / 5; }
  .trail-break { grid-column: 2; grid-row: 3; margin-top: 30px; }
  .story__dates { grid-column: 2; grid-row: 4; }
  .reviews { padding: 36px 32px 30px; }
  .reviews__score b { font-size: 120px; }

  .faq__grid { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
  .faq .section__head { position: sticky; top: calc(var(--header-h) + 30px); }

  .footer { padding: 150px 0 32px; clip-path: polygon(0 70px, 100% 0, 100% 100%, 0 100%); margin-top: -70px; }
  .contact { grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end; padding-bottom: 56px; }
  .footer__bottom { grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
  .footer__nav { justify-content: center; }
}

@media (min-width: 1100px) {
  .nav { display: flex; align-items: center; gap: 2px; margin-left: 28px; }
  .nav a {
    position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 11px;
    font-weight: 600; font-size: 15px; color: var(--navy); text-decoration: none;
  }
  .nav a::after {
    content: ""; position: absolute; left: 11px; right: 11px; bottom: 6px; height: 3px; background: var(--signal);
    transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
  }
  .nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }
  .burger { display: none; }
  .header__actions { gap: 14px; }
}
@media (min-width: 1280px) {
  .header__phone span { display: inline; }
  .nav a { padding: 0 13px; }
}
@media (min-width: 1440px) {
  .hero__media { height: 620px; }
}

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