/* =========================================================
   ПІК · Дизайн-концепт 3 · «Нічний табір»
   Sofia Sans Condensed (заголовки) · Inter Tight (текст) · JetBrains Mono (цифри)
   ========================================================= */

:root {
  --night: #0B1220;
  --pine: #0F1A17;
  --pine-2: #111E1B;
  --surface: #172521;
  --ink: #EDE8DD;
  --ink-2: #C9C6BC;
  --muted: #A9B3AC;
  --sand: #D9C7A3;
  --amber: #F2A93B;
  --amber-hi: #FFC56B;
  --amber-lo: #C9791E;
  --ember: #E8742A;
  --lake: #6FC2B7;
  --red: #F2907F;
  --line: rgba(237, 232, 221, .12);
  --line-2: rgba(237, 232, 221, .2);
  --glass: linear-gradient(160deg, rgba(237, 232, 221, .075), rgba(237, 232, 221, .025) 60%);

  --f-display: "Sofia Sans Condensed", "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif;
  --f-text: "Inter Tight", "Golos Text", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --r: 14px;
  --r-lg: 22px;
  --gutter: 16px;
  --header-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}
@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1080px) { :root { --header-h: 76px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--pine);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.locked { overflow: hidden; }
img { max-width: 100%; display: block; }
main { overflow-x: hidden; overflow-x: clip; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.mono { font-family: var(--f-mono); font-feature-settings: "zero" 0; letter-spacing: -.01em; }
::selection { background: var(--amber); color: var(--pine); }

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

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }

/* плівкове зерно — дуже легке */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- кнопки ---------- */
.btn {
  --bg: transparent;
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .7em 1.35em;
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 1rem; line-height: 1.1; letter-spacing: .005em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .35s var(--ease), background-color .25s, border-color .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn .ic { transition: transform .3s var(--ease); }
.btn:hover .ic:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn--sm { min-height: 44px; padding: .55em 1.05em; font-size: .95rem; }
.btn--lg { min-height: 56px; padding: .85em 1.6em; font-size: 1.05rem; }

.btn--amber {
  color: #15110A;
  background: linear-gradient(180deg, #FFC56B 0%, #F2A93B 55%, #E8952A 100%);
  box-shadow: 0 1px 0 rgba(255, 244, 214, .7) inset, 0 -2px 0 rgba(150, 80, 10, .25) inset, 0 10px 30px -10px rgba(242, 169, 59, .65);
}
.btn--amber::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(120% 140% at 50% -20%, rgba(255, 244, 214, .9), transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.btn--amber:hover { box-shadow: 0 1px 0 rgba(255, 244, 214, .8) inset, 0 -2px 0 rgba(150, 80, 10, .25) inset, 0 16px 44px -10px rgba(242, 169, 59, .9), 0 0 0 6px rgba(242, 169, 59, .12); transform: translateY(-1px); }
.btn--amber:hover::before { opacity: .55; }
.btn--amber:active { box-shadow: 0 1px 0 rgba(255, 244, 214, .5) inset, 0 4px 16px -6px rgba(242, 169, 59, .8); }

.btn--ghost {
  color: var(--ink);
  background: rgba(237, 232, 221, .04);
  border-color: var(--line-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(242, 169, 59, .6); color: var(--amber-hi); background: rgba(242, 169, 59, .08); box-shadow: 0 0 24px -6px rgba(242, 169, 59, .35); }

/* ---------- скляні картки ---------- */
.glass {
  position: relative;
  background: var(--glass), rgba(17, 30, 27, .55);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06) inset, 0 24px 60px -30px rgba(0, 0, 0, .8);
}
/* справжнє розмиття — лише там, де під склом є зображення */
.finder, .board, .shoes, .nights { backdrop-filter: blur(14px) saturate(130%); -webkit-backdrop-filter: blur(14px) saturate(130%); }
/* тонкий блік по верхньому краю */
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  padding: 1px;
  background: linear-gradient(170deg, rgba(255, 236, 200, .28), transparent 28%, transparent 72%, rgba(242, 169, 59, .12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
/* «налобний ліхтарик»: світло за курсором */
[data-glow]::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, -30%), rgba(242, 169, 59, .13), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
@media (hover: hover) { [data-glow]:hover::after { opacity: 1; } }

/* ---------- дуотон ніч/бурштин ---------- */
.duo { position: relative; overflow: hidden; background: #0B1220; isolation: isolate; }
.duo img { width: 100%; height: 100%; object-fit: cover; filter: url(#duo-night); }
.duo--ice img { filter: url(#duo-ice); }

/* ---------- типографіка секцій ---------- */
.section { position: relative; padding-block: clamp(64px, 8vw, 116px); }
.kicker {
  display: inline-flex; align-items: center; gap: .75em;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sand);
  margin-bottom: 18px;
}
.kicker span { color: var(--amber); }
.kicker span::after { content: ""; display: inline-block; width: 28px; height: 1px; margin-left: .75em; vertical-align: middle; background: linear-gradient(90deg, var(--amber), transparent); }
.h2 {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.45rem, 1.55rem + 3.9vw, 4.9rem); line-height: .93; letter-spacing: .005em;
  text-wrap: balance;
}
.h2 em, .hero__title em { font-style: normal; color: var(--amber); text-shadow: 0 0 36px rgba(242, 169, 59, .35); }
.h2--sm { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); }
.shead { margin-bottom: clamp(32px, 5vw, 56px); max-width: 760px; }
.shead__lead { margin-top: 18px; color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.shead--row { max-width: none; display: grid; gap: 8px; }
@media (min-width: 900px) {
  .shead--row { grid-template-columns: 1fr minmax(280px, 420px); align-items: end; gap: 48px; }
  .shead--row .shead__lead { margin-top: 0; }
}

/* ---------- прелоадер ---------- */
.preloader { display: none; }
.js .preloader {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; align-content: center; gap: 14px;
  background: radial-gradient(120% 90% at 50% 60%, #0F1A17, #070B14 70%);
  transition: opacity .55s var(--ease), visibility .55s;
  animation: pl-failsafe .5s 3s forwards;
}
.preloader__glow {
  position: absolute; left: 50%; top: 50%; width: 30vmax; height: 30vmax; margin: -15vmax 0 0 -15vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 197, 107, .55), rgba(242, 169, 59, .18) 35%, transparent 65%);
  transform: scale(.05); opacity: 0;
  animation: pl-spread 1.1s .35s var(--ease-out) forwards;
}
.preloader__lamp { position: relative; filter: drop-shadow(0 0 0 rgba(242, 169, 59, 0)); animation: pl-lamp .9s .3s var(--ease) forwards; }
.pl-flame { transform-origin: 40px 78px; transform: scale(0); animation: pl-ignite .5s .15s var(--ease-out) forwards, pl-flicker 1.4s .65s ease-in-out infinite; }
.preloader__word { position: relative; font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .5em; padding-left: .5em; color: var(--sand); opacity: 0; animation: pl-word .6s .5s var(--ease) forwards; }
.loaded .preloader { opacity: 0; visibility: hidden; pointer-events: none; }
.loaded .preloader__glow { transform: scale(3); }
@keyframes pl-ignite { 0% { transform: scale(0); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }
@keyframes pl-flicker { 0%, 100% { transform: scale(1) skewX(0); } 30% { transform: scale(1.06, .95) skewX(2deg); } 60% { transform: scale(.96, 1.05) skewX(-2deg); } }
@keyframes pl-spread { 0% { transform: scale(.05); opacity: 0; } 30% { opacity: 1; } 100% { transform: scale(1.6); opacity: 1; } }
@keyframes pl-lamp { to { filter: drop-shadow(0 0 22px rgba(242, 169, 59, .75)); } }
@keyframes pl-word { to { opacity: 1; } }
@keyframes pl-failsafe { to { opacity: 0; visibility: hidden; } }
.rm .preloader { display: none; }

/* ---------- шапка ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  transition: background-color .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(11, 18, 32, .72);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.header__row { height: 100%; display: flex; align-items: center; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); min-height: 44px; }
.logo__mark { color: var(--sand); flex: none; overflow: visible; }
.logo__mark .logo-star { filter: drop-shadow(0 0 4px rgba(242, 169, 59, .9)); }
.logo__word { font-family: var(--f-display); font-weight: 900; font-size: 1.85rem; letter-spacing: .08em; line-height: 1; }
.logo__tag { display: none; font-size: .68rem; line-height: 1.15; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; padding-left: 10px; border-left: 1px solid var(--line-2); }
@media (min-width: 420px) { .logo__tag { display: block; } }
.nav { display: none; }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header__phone { display: none; align-items: center; gap: 8px; text-decoration: none; font-size: .92rem; color: var(--ink); min-height: 44px; padding-inline: 6px; transition: color .2s; }
.header__phone:hover { color: var(--amber-hi); }
.header__phone .ic { color: var(--amber); }
.header__cta { display: none; }
.burger {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(237, 232, 221, .06); border: 1px solid var(--line-2); cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.burger:hover { border-color: var(--amber); color: var(--amber-hi); }
@media (min-width: 560px) { .header__cta { display: inline-flex; } }
@media (min-width: 1080px) {
  .nav { display: flex; gap: 2px; margin-left: 28px; }
  .nav a {
    position: relative; padding: 10px 12px; text-decoration: none; font-size: .95rem; font-weight: 500; color: var(--ink-2);
    transition: color .2s;
  }
  .nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); box-shadow: 0 0 8px var(--amber); }
  .nav a:hover, .nav a.is-active { color: var(--ink); }
  .nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
  .burger { display: none; }
}
@media (min-width: 1240px) { .header__phone { display: inline-flex; } }

/* ---------- мобільне меню ---------- */
.mnav { position: fixed; inset: 0; z-index: 120; background: radial-gradient(90% 60% at 80% 100%, rgba(242, 169, 59, .16), transparent 60%), linear-gradient(180deg, #0B1220, #0F1A17); }
.mnav[hidden] { display: none; }
.mnav__stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.mnav__inner { position: relative; height: 100%; display: flex; flex-direction: column; padding: 8px var(--gutter) calc(20px + env(safe-area-inset-bottom)); overflow-y: auto; }
.mnav__top { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.mnav__links { margin-top: 20px; display: grid; }
.mnav__links a {
  display: flex; align-items: baseline; gap: 16px; padding: 12px 0; min-height: 56px;
  font-family: var(--f-display); font-weight: 800; font-size: 2.6rem; line-height: 1; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(14px);
  transition: color .2s;
}
.mnav__links a span { font-size: .8rem; color: var(--amber); font-weight: 500; }
.mnav__links a:hover, .mnav__links a:active { color: var(--amber-hi); }
.mnav.is-open .mnav__links a { animation: mnav-in .55s var(--ease-out) forwards; }
.mnav.is-open .mnav__links a:nth-child(2) { animation-delay: .04s; }
.mnav.is-open .mnav__links a:nth-child(3) { animation-delay: .08s; }
.mnav.is-open .mnav__links a:nth-child(4) { animation-delay: .12s; }
.mnav.is-open .mnav__links a:nth-child(5) { animation-delay: .16s; }
.mnav.is-open .mnav__links a:nth-child(6) { animation-delay: .2s; }
.rm .mnav__links a { opacity: 1; transform: none; animation: none !important; }
@keyframes mnav-in { to { opacity: 1; transform: none; } }
.mnav__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 10px; }
.mnav__foot .btn { width: 100%; min-height: 54px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + 28px);
  background:
    radial-gradient(70% 45% at 72% 88%, rgba(242, 169, 59, .16), transparent 70%),
    radial-gradient(60% 40% at 15% 10%, rgba(60, 90, 140, .22), transparent 70%),
    linear-gradient(180deg, #070C17 0%, #0B1220 38%, #121B2A 62%, #0F1A17 100%);
}
.hero__stars { position: absolute; inset: 0 0 auto; width: 100%; height: 78%; pointer-events: none; }
.hero__aura { position: absolute; inset: auto -10% 22% -10%; height: 40%; pointer-events: none; background: radial-gradient(50% 60% at 60% 100%, rgba(242, 169, 59, .12), transparent 70%); filter: blur(10px); }
.hero__copy { position: relative; z-index: 2; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(180deg, rgba(15, 26, 23, 0), #0F1A17); pointer-events: none; z-index: 0; }
.coords { display: inline-flex; align-items: center; gap: 10px; font-size: .74rem; letter-spacing: .08em; color: var(--sand); text-transform: uppercase; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(11, 18, 32, .5); }
.coords__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(242, 169, 59, .6); animation: beacon 2.4s infinite; }
@keyframes beacon { 0% { box-shadow: 0 0 0 0 rgba(242, 169, 59, .55); } 70%, 100% { box-shadow: 0 0 0 9px rgba(242, 169, 59, 0); } }
.hero__title {
  margin-top: 20px;
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.7rem, 1.25rem + 6.9vw, 6.4rem); line-height: .9; letter-spacing: -.003em;
  text-shadow: 0 2px 30px rgba(7, 12, 23, .6);
}
.hero__title em { display: inline-block; background: linear-gradient(180deg, #FFE0A6 10%, #F2A93B 70%, #E08A26); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; filter: drop-shadow(0 0 22px rgba(242, 169, 59, .35)); }
.hero__lead { margin-top: 20px; max-width: 46ch; font-size: 1.08rem; color: var(--ink-2); }

.hero__scene { position: relative; z-index: 1; height: 250px; margin-top: -30px; pointer-events: none; }
.ridge { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ridge g[data-depth] { will-change: transform; }
.tent-glow { animation: glow 4.5s ease-in-out infinite; transform-origin: 900px 286px; }
.tent__door { animation: door 3.2s ease-in-out infinite; }
.beam { animation: beam 7s ease-in-out infinite; transform-origin: 973px 262px; }
@keyframes glow { 0%, 100% { opacity: .85; transform: scale(1); } 45% { opacity: 1; transform: scale(1.04); } 70% { opacity: .9; } }
@keyframes door { 0%, 100% { opacity: 1; } 50% { opacity: .82; } 55% { opacity: .95; } }
@keyframes beam { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-4deg); } }
.peak-label--far { display: none; }
@media (min-width: 900px) { .peak-label--far { display: inline; } }

.hero__bottom { position: relative; z-index: 3; margin-top: -54px; padding-bottom: 40px; }

/* форма пошуку */
.finder { padding: 18px; border-radius: 24px; background: linear-gradient(160deg, rgba(237, 232, 221, .1), rgba(237, 232, 221, .03) 60%), rgba(12, 20, 26, .72); }
.finder__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.finder__kicker { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); }
.finder__hint { font-size: .78rem; color: var(--amber-hi); }
.finder__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field--what, .field--people, .finder__submit { grid-column: 1 / -1; }
.field__label { font-size: .8rem; font-weight: 500; color: var(--muted); padding-left: 4px; }
.field__control { position: relative; display: block; }
.field select, .field input {
  width: 100%; min-height: 52px; padding: 12px 14px;
  background: rgba(7, 12, 20, .55); border: 1px solid var(--line-2); border-radius: 14px;
  color: var(--ink); font-size: 1rem; appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .25s, background-color .2s;
  color-scheme: dark;
}
.field select { padding-right: 42px; cursor: pointer; }
.field select option { background: #0F1A17; color: var(--ink); }
.field input[type="date"] { font-family: var(--f-mono); font-size: .95rem; letter-spacing: -.02em; padding-right: 8px; min-width: 0; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(76%) sepia(55%) saturate(700%) hue-rotate(345deg) brightness(100%); cursor: pointer; opacity: .9; padding: 4px; }
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.field select:hover, .field input:hover { border-color: rgba(242, 169, 59, .45); }
.field select:focus, .field input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(242, 169, 59, .18), 0 0 30px -8px rgba(242, 169, 59, .5); }
.field__chev { position: absolute; right: 14px; top: 50%; translate: 0 -50%; color: var(--amber); pointer-events: none; }
.stepper { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 4px; background: rgba(7, 12, 20, .55); border: 1px solid var(--line-2); border-radius: 14px; }
.stepper__btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; border: 0; background: rgba(237, 232, 221, .07); cursor: pointer; transition: background-color .2s, color .2s, transform .15s; }
.stepper__btn:hover { background: rgba(242, 169, 59, .18); color: var(--amber-hi); }
.stepper__btn:active { transform: scale(.92); }
.stepper__val { font-size: 1.15rem; font-weight: 500; min-width: 3ch; text-align: center; }
.stepper__val.bump { animation: bump .3s var(--ease); }
@keyframes bump { 40% { transform: scale(1.3); color: var(--amber-hi); } }
.finder__submit { width: 100%; margin-top: 4px; }

@media (min-width: 560px) {
  .finder__grid { grid-template-columns: 1fr 1fr 1fr; }
  .field--what { grid-column: 1 / -1; }
  .field--people { grid-column: auto; }
}
@media (min-width: 1080px) {
  .finder { padding: 20px 20px 20px 24px; }
  .finder__grid { grid-template-columns: 1.3fr 1fr 1fr .9fr auto; align-items: end; gap: 12px; }
  .field--what, .field--people, .finder__submit { grid-column: auto; }
  .finder__submit { width: auto; min-height: 52px; margin-top: 0; }
}

/* довіра */
.trust { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--line); }
.trust li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(12, 20, 22, .82); font-size: .86rem; line-height: 1.25; color: var(--ink-2); min-height: 64px; }
.trust__big { font-size: 1.5rem; font-weight: 700; color: var(--amber); line-height: 1; letter-spacing: -.04em; }
.trust .ic { color: var(--amber); }
@media (min-width: 900px) { .trust { grid-template-columns: repeat(4, 1fr); } .trust li { padding: 16px 20px; font-size: .92rem; } }

@media (min-width: 900px) {
  .hero { min-height: max(780px, 100svh); display: flex; flex-direction: column; }
  .hero__copy { padding-top: 5vh; }
  .hero__scene { position: absolute; inset: auto 0 170px 0; height: 50%; margin: 0; }
  .hero__scene::after { content: ""; position: absolute; left: 0; right: 0; top: calc(100% - 2px); height: 180px; background: #0F1A17; }
  .hero__bottom { margin-top: auto; padding-bottom: 36px; }
  .hero__lead { font-size: 1.2rem; }
}

/* ---------- НАБОРИ ---------- */
.sets { background: linear-gradient(180deg, var(--pine), #0D1715 60%, var(--pine)); }
.sets::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 500px; background: radial-gradient(closest-side, rgba(242, 169, 59, .07), transparent); pointer-events: none; }
.sets__rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 14px;
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  padding: 6px var(--gutter) 22px; scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.sets__rail::-webkit-scrollbar { display: none; }
.kit { scroll-snap-align: start; display: flex; flex-direction: column; overflow: hidden; }
.kit__photo { aspect-ratio: 16 / 10; border-radius: calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px) 0 0; }
.kit__photo::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 45%, rgba(15, 26, 23, .92)); pointer-events: none; }
.kit__photo img { transition: transform 1.2s var(--ease-out); }
.kit:hover .kit__photo img { transform: scale(1.05); }
.kit__body { position: relative; z-index: 3; display: flex; flex-direction: column; padding: 0 20px 20px; margin-top: -34px; flex: 1; }
.kit__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .75rem; color: var(--sand); letter-spacing: .06em; }
.chip { display: inline-flex; align-items: center; min-height: 26px; padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(11, 18, 32, .7); color: var(--ink-2); font-size: .72rem; letter-spacing: .02em; }
.chip--amber { border-color: rgba(242, 169, 59, .5); color: var(--amber-hi); background: rgba(40, 26, 8, .75); }
.kit__title { margin-top: 14px; font-family: var(--f-display); font-weight: 800; font-size: 2rem; line-height: .95; text-transform: uppercase; }
.kit__who { margin-top: 4px; color: var(--muted); font-size: .95rem; }
.kit__price { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-2); }
.kit__num { font-size: 2rem; font-weight: 700; color: var(--amber); letter-spacing: -.05em; line-height: 1; }
.kit__unit { color: var(--ink-2); font-size: .92rem; }
.kit__alt { margin-top: 6px; display: inline-block; font-size: .85rem; color: var(--pine); background: var(--sand); border-radius: 6px; padding: 3px 8px; }
.kit__toggle {
  margin-top: 16px; display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 48px;
  padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(237, 232, 221, .03);
  cursor: pointer; font-weight: 500; transition: border-color .2s, background-color .2s, color .2s;
}
.kit__toggle:hover { border-color: rgba(242, 169, 59, .5); color: var(--amber-hi); }
.kit__toggle .ic { transition: transform .35s var(--ease); color: var(--amber); }
.kit__toggle[aria-expanded="true"] .ic { transform: rotate(180deg); }
.kit__list { overflow: hidden; }
.kit__list ul { padding: 10px 4px 2px; display: grid; gap: 0; }
.kit__list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .93rem; color: var(--ink-2); }
.kit__list li .mono { color: var(--sand); }
.kit__list.is-anim { animation: drop .4s var(--ease-out); }
@keyframes drop { from { opacity: 0; transform: translateY(-6px); } }
.kit__cta { margin-top: auto; width: 100%; }
.kit__list + .kit__cta, .kit__toggle + .kit__list[hidden] + .kit__cta { margin-top: 16px; }
.rail-hint { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.rail-hint .ic { color: var(--amber); animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(5px); } }
@media (min-width: 768px) { .sets__rail { grid-auto-columns: 46%; } }
@media (min-width: 1080px) {
  .sets__rail { grid-auto-flow: row; grid-template-columns: repeat(6, 1fr); overflow: visible; max-width: 1280px; margin-inline: auto; padding: 6px var(--gutter) 0; }
  .kit { grid-column: span 2; }
  .kit:nth-child(1), .kit:nth-child(2) { grid-column: span 3; }
  .kit:nth-child(1) .kit__photo, .kit:nth-child(2) .kit__photo { aspect-ratio: 16 / 8; }
  .rail-hint { display: none; }
}

/* ---------- ТАРИФ «ВИХІДНІ» ---------- */
.weekend { background: radial-gradient(60% 70% at 85% 50%, rgba(242, 169, 59, .1), transparent 70%), linear-gradient(180deg, var(--pine), var(--night) 50%, var(--pine)); overflow: hidden; }
.weekend__grid { display: grid; gap: 36px; align-items: center; }
.weekend__lead { margin-top: 18px; color: var(--ink-2); font-size: 1.1rem; max-width: 46ch; }
.weekend__example { margin-top: 20px; display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 10px 14px; border-radius: 12px; border: 1px dashed rgba(217, 199, 163, .35); color: var(--sand); font-size: .88rem; }
.weekend__example b { color: var(--amber-hi); font-weight: 700; }
.nights { padding: 26px 16px 20px; overflow: hidden; }
.nights__track { position: relative; }
.nights__arc { position: absolute; left: 12.5%; width: 75%; top: 0; height: 86px; overflow: visible; }
.nights__arc-lit { stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 6px rgba(242, 169, 59, .8)); transition: stroke-dashoffset 1.8s var(--ease-out) .2s; }
.nights.is-in .nights__arc-lit, .rm .nights__arc-lit, html:not(.reveal-on) .nights__arc-lit { stroke-dashoffset: 0; }
.nights__row { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-top: 60px; }
.night { display: grid; justify-items: center; gap: 8px; text-align: center; }
.night__icon { order: -1; position: relative; z-index: 1; }
.night__day { font-size: .8rem; letter-spacing: .12em; color: var(--sand); }
.night__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(11, 18, 32, .9); border: 1px solid var(--line-2); color: var(--ink-2); }
.night--start .night__icon, .night--end .night__icon { background: radial-gradient(circle at 50% 40%, #FFD58A, #F2A93B 60%, #C9791E); color: #15110A; border-color: transparent; box-shadow: 0 0 28px -2px rgba(242, 169, 59, .6); }
.night__txt { font-size: .85rem; color: var(--ink-2); line-height: 1.25; }
.night__txt .mono { font-size: .72rem; color: var(--muted); }
.nights__sum { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line-2); display: flex; align-items: center; justify-content: center; gap: 14px; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; line-height: 1; color: var(--ink); }
.nights__big { font-size: 4.2rem; color: var(--amber); letter-spacing: -.06em; text-shadow: 0 0 30px rgba(242, 169, 59, .45); }
@media (min-width: 900px) {
  .weekend__grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
  .nights { padding: 34px 30px 26px; }
  .nights__arc { height: 100px; }
  .nights__row { padding-top: 70px; }
  .night__icon { width: 60px; height: 60px; }
  .night__txt { font-size: .95rem; }
}

/* ---------- КАТАЛОГ ---------- */
.catalog { background: var(--pine); }
.catalog::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'%3E%3Cg fill='none' stroke='%23D9C7A3' stroke-opacity='.06'%3E%3Cpath d='M-20 320c80-50 160-40 220-80s110-90 200-80 150 50 220 30'/%3E%3Cpath d='M-20 350c90-50 180-40 240-80s120-100 220-90 150 60 200 40'/%3E%3Cpath d='M-20 290c70-40 140-35 200-70s100-80 180-70 140 40 240 20'/%3E%3Cpath d='M-20 260c60-30 120-30 170-60s90-70 160-60 130 30 290 10'/%3E%3Cpath d='M-20 380c100-50 200-45 260-85s130-110 240-100 110 60 140 50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 400px; }
.cats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px; height: 100%; min-height: 128px;
  padding: 16px; text-decoration: none; border-radius: 18px; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s;
}
.cat__ic { fill: none; stroke: var(--sand); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s, filter .3s, transform .4s var(--ease); }
.cat__name { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; line-height: 1; text-transform: uppercase; letter-spacing: .01em; margin-top: auto; }
.cat__sub { font-size: .8rem; color: var(--muted); line-height: 1.3; margin-top: -4px; }
.cat:hover { transform: translateY(-3px); border-color: rgba(242, 169, 59, .4); }
.cat:hover .cat__ic { stroke: var(--amber-hi); filter: drop-shadow(0 0 8px rgba(242, 169, 59, .7)); transform: scale(1.08); }
@media (min-width: 768px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .cats { grid-template-columns: repeat(5, 1fr); gap: 14px; } .cat { min-height: 168px; padding: 20px; } .cat__name { font-size: 1.5rem; } }

/* ---------- ПОПУЛЯРНЕ ---------- */
.popular { background: linear-gradient(180deg, var(--pine), #0C1614); padding-top: 0; }
.tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding: 4px; margin-inline: -4px; }
.tabs::-webkit-scrollbar { display: none; }
.tabs [role="tab"] {
  flex: none; min-height: 44px; padding: 8px 18px; border-radius: 999px; cursor: pointer;
  background: rgba(237, 232, 221, .04); border: 1px solid var(--line-2); color: var(--ink-2); font-weight: 500;
  transition: background-color .25s, color .25s, border-color .25s, box-shadow .3s;
}
.tabs [role="tab"]:hover { border-color: rgba(242, 169, 59, .5); color: var(--ink); }
.tabs [role="tab"][aria-selected="true"] { background: var(--amber); color: #15110A; border-color: var(--amber); box-shadow: 0 6px 24px -8px rgba(242, 169, 59, .8); font-weight: 600; }
@media (min-width: 900px) { .popular .tabs { justify-content: flex-end; } }

.items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.item { display: grid; grid-template-columns: 1fr; align-content: start; gap: 12px; padding: 8px; border-radius: 18px; transition: transform .35s var(--ease), border-color .3s, opacity .3s; }
.item.is-hidden { display: none; }
.item.is-pop { animation: pop .45s var(--ease-out) both; }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }
.item:hover { border-color: rgba(242, 169, 59, .35); }
.item__plate {
  position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1;
  background: radial-gradient(90% 90% at 50% 35%, #FFFDF7 0%, #F4ECDC 55%, #DCCDB0 100%);
  box-shadow: 0 0 0 1px rgba(255, 240, 210, .4) inset, 0 12px 30px -12px rgba(242, 169, 59, .35);
}
.item__plate::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(255, 214, 140, .3), transparent 70%); pointer-events: none; }
.item__plate img { position: absolute; inset: var(--pad, 10px); width: calc(100% - 2 * var(--pad, 10px)); height: calc(100% - 2 * var(--pad, 10px)); object-fit: contain; mix-blend-mode: multiply; transition: transform .6s var(--ease-out); }
.item__plate--top img { object-fit: cover; object-position: 50% 0; --pad: 0px; }
.item:hover .item__plate img { transform: scale(1.06) rotate(-1deg); }
.item__plate { aspect-ratio: 5 / 4; }
.item__body { min-width: 0; display: flex; flex-direction: column; padding: 0 6px 6px; flex: 1; }
.item__name { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; line-height: 1.02; text-transform: uppercase; overflow-wrap: break-word; }
.item__brand { display: block; font-family: var(--f-text); text-transform: none; font-weight: 500; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.item__price { margin-top: 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.item__price .mono { font-size: 1.2rem; font-weight: 700; color: var(--amber); letter-spacing: -.04em; }
.item__price small { font-size: .78rem; color: var(--muted); }
.item__from { font-size: .8rem; color: var(--ink-2); line-height: 1.35; margin-top: 4px; }
.item__from b { color: var(--sand); font-weight: 500; }
.ladder { display: none; }
.item__deposit { margin-top: auto; padding-top: 8px; font-size: .76rem; color: var(--muted); line-height: 1.35; }
.item__deposit .mono { display: block; }
.item__deposit .mono { color: var(--ink-2); white-space: nowrap; }
.note { margin-top: 20px; font-size: .88rem; color: var(--muted); }

@media (min-width: 640px) {
  .items { gap: 14px; }
  .item { padding: 12px; }
  .item__name { font-size: 1.35rem; }
  .item__price .mono { font-size: 1.35rem; }
  .item__from { font-size: .86rem; }
  .item__deposit { font-size: .8rem; }
  .item__deposit .mono { display: inline; }
}
@media (min-width: 1080px) {
  .items { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .item { padding: 14px; }
  .item__plate { aspect-ratio: 4 / 3; --pad: 18px; }
  .item__body { padding: 6px 6px 4px; }
  .item__name { font-size: 1.5rem; }
  .ladder { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 1px; margin-top: 12px; border-radius: 10px; overflow: hidden; background: var(--line); border: 1px solid var(--line); }
  .ladder div { background: rgba(11, 18, 32, .6); padding: 6px 8px; text-align: center; }
  .ladder dt { font-size: .68rem; color: var(--muted); }
  .ladder dt::after { content: " діб"; }
  .ladder dd { font-size: .9rem; color: var(--ink); }
}

/* ---------- ЯК ЦЕ ПРАЦЮЄ ---------- */
.steps { background: linear-gradient(180deg, #0C1614, var(--night)); }
.trail { position: relative; display: grid; gap: 0; counter-reset: s; }
.trail::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 0; border-left: 2px dashed rgba(217, 199, 163, .25); }
.trail__step { position: relative; display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; padding-bottom: 30px; }
.trail__step:last-child { padding-bottom: 0; }
.trail__node {
  grid-row: span 2; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #1d2a33, #0B1220); border: 1px solid var(--line-2); color: var(--amber); font-weight: 700;
  box-shadow: 0 0 0 6px var(--night);
  transition: box-shadow .5s, background .5s, color .5s;
}
.trail__step.is-lit .trail__node { background: radial-gradient(circle at 50% 40%, #FFD58A, #F2A93B 60%, #C9791E); color: #15110A; border-color: transparent; box-shadow: 0 0 0 6px var(--night), 0 0 36px rgba(242, 169, 59, .55); }
.rm .trail__node, html:not(.reveal-on) .trail__node { background: radial-gradient(circle at 50% 40%, #FFD58A, #F2A93B 60%, #C9791E); color: #15110A; }
.trail__step h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; line-height: 1; text-transform: uppercase; padding-top: 6px; }
.trail__step p { margin-top: 8px; color: var(--muted); max-width: 40ch; }
@media (min-width: 900px) {
  .trail { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .trail::before { left: 28px; right: 28px; top: 28px; bottom: auto; height: 0; width: auto; border-left: 0; border-top: 2px dashed rgba(217, 199, 163, .25); }
  .trail__step { grid-template-columns: 1fr; padding-bottom: 0; }
  .trail__node { grid-row: auto; margin-bottom: 22px; }
}

/* ---------- ДОСТАВКА ---------- */
.delivery { background: linear-gradient(180deg, var(--night), var(--pine) 70%); }
.delivery__grid { display: grid; gap: 32px; align-items: center; }
.checks { margin-top: 24px; display: grid; gap: 10px; }
.checks li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.checks .ic { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: rgba(242, 169, 59, .14); color: var(--amber-hi); stroke-width: 2.2; }
.map { padding: 10px; overflow: hidden; }
.map__svg { width: 100%; height: auto; display: block; }
.map__route { stroke-dashoffset: 0; animation: route 1.6s linear infinite; filter: drop-shadow(0 0 4px rgba(242, 169, 59, .7)); }
@keyframes route { to { stroke-dashoffset: -28; } }
.map__cap { display: flex; align-items: center; gap: 10px; padding: 12px 10px 6px; border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); }
.map__cap .ic { color: var(--amber); }
@media (min-width: 900px) { .delivery__grid { grid-template-columns: .9fr 1.1fr; gap: 64px; } }

.clean { margin-top: clamp(72px, 10vw, 130px); display: grid; gap: 28px; }
.clean__photo { border-radius: var(--r-lg); aspect-ratio: 16 / 10; }
.clean__photo img { object-position: 50% 40%; }
.clean__photo::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 23, .7)); }
.clean__list { margin-top: 26px; display: grid; gap: 10px; }
.clean__list li { display: flex; gap: 16px; padding: 18px; border-radius: 18px; }
.clean__list .ic { color: var(--amber); margin-top: 2px; }
.clean__list h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.3; }
.clean__list p { margin-top: 4px; color: var(--muted); font-size: .94rem; }
@media (min-width: 900px) {
  .clean { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
  .clean__photo { aspect-ratio: 4 / 5; }
}

/* ---------- СНІГОСТУПИ ---------- */
.snow { overflow: hidden; background: linear-gradient(180deg, var(--pine), #0C1522); }
.snow__bg { position: absolute; inset: 0 0 auto 0; height: 70%; opacity: .5; }
.snow__bg img { object-position: 50% 20%; filter: url(#duo-ice) blur(1px); }
.snow__bg::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, #0F1A17 0%, rgba(15, 26, 23, .7) 25%, rgba(12, 21, 34, .6) 55%, #0C1522 100%); }
.snow .container { position: relative; z-index: 1; }
.shoes { padding: 16px; display: grid; gap: 18px; }
.tabs--models { margin: 0; flex-wrap: wrap; overflow: visible; }
.shoe { display: grid; grid-template-columns: 1fr; gap: 18px; }
.shoe[hidden] { display: none; }
.shoe.is-pop { animation: pop .45s var(--ease-out) both; }
.shoe__plate { aspect-ratio: 4 / 3; --pad: 22px; }
.shoe__feats { margin-top: 16px; display: grid; gap: 8px; }
.shoe__feats li { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: .95rem; }
.shoe__feats .ic { color: var(--amber); stroke-width: 2.2; }
.shoe__type { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--sand); }
.shoe__name { font-family: var(--f-display); font-weight: 900; font-size: clamp(3.4rem, 2rem + 6vw, 6rem); line-height: .9; text-transform: uppercase; background: linear-gradient(180deg, #F4F7FA, #A9B8C6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.specs { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.specs div { padding: 12px 14px; background: rgba(11, 18, 32, .75); }
.specs dt { font-size: .78rem; color: var(--muted); }
.specs dd { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-top: 2px; letter-spacing: -.03em; }
.shoes__offer { display: grid; gap: 16px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.shoes__deal { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.shoes__deal b { color: var(--amber-hi); }
.shoes__deal .ic { color: var(--amber); margin-top: 2px; }
.shoes__btns { display: grid; gap: 10px; }
.shoes__btns .btn { width: 100%; white-space: normal; text-align: center; }
@media (min-width: 900px) {
  .shoes { padding: 28px; grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .tabs--models { grid-column: 1 / -1; }
  .shoe { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .shoes__offer { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; }
  .shoes__btns { grid-auto-flow: column; }
  .shoes__btns .btn { width: auto; white-space: nowrap; }
}

/* ---------- МАРШРУТИ ---------- */
.routes { overflow: hidden; background: linear-gradient(180deg, #0C1522, var(--pine)); }
.routes__bg { position: absolute; inset: 0; }
.routes__bg img { object-position: 78% 30%; opacity: .6; }
.routes__bg::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, #0C1522 0%, rgba(12, 21, 34, .55) 32%, rgba(12, 21, 34, .7) 70%, var(--pine) 100%), linear-gradient(90deg, rgba(12, 21, 34, .85), rgba(12, 21, 34, .2) 60%, rgba(12, 21, 34, .5)); }
.routes .container { position: relative; z-index: 1; }
.badge-example { display: flex; width: fit-content; align-items: center; gap: 8px; margin-bottom: 10px; padding: 4px 10px; border-radius: 999px; font-size: .74rem; color: #15110A; background: var(--sand); letter-spacing: .02em; }
.board { padding: 6px 0; overflow: hidden; background: linear-gradient(160deg, rgba(237, 232, 221, .08), rgba(237, 232, 221, .02)), rgba(8, 13, 22, .78); }
.board__row { display: grid; grid-template-columns: 1fr; gap: 4px 16px; padding: 16px 18px; border-top: 1px solid var(--line); }
.board__row:first-child { border-top: 0; }
.board__row--head { display: none; }
.board__name { font-family: var(--f-display); font-weight: 700; font-size: 1.45rem; line-height: 1.05; text-transform: uppercase; }
.board__meta { font-size: .82rem; color: var(--muted); }
.status { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; margin-top: 4px; }
.status i { flex: none; width: 10px; height: 10px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.status--open { color: var(--lake); }
.status--open i { animation: blink 2.4s ease-in-out infinite; }
.status--permit { color: var(--amber-hi); }
.status--check { color: var(--sand); }
.status--check i { background: transparent; border: 2px solid currentColor; box-shadow: none; }
.status--closed { color: var(--red); }
@keyframes blink { 50% { opacity: .45; } }
.routes__cta { margin-top: 24px; }
.routes__cta .btn { width: 100%; white-space: normal; text-align: center; }
@media (min-width: 768px) {
  .board__row { grid-template-columns: 1.3fr 1fr 1.2fr; align-items: center; padding: 18px 26px; }
  .board__row--head { display: grid; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sand); padding-block: 12px; }
  .status { margin-top: 0; }
  .routes__cta .btn { width: auto; }
  .board__row:not(.board__row--head) { transition: background-color .25s; }
  .board__row:not(.board__row--head):hover { background: rgba(242, 169, 59, .05); }
}

/* ---------- ІСТОРІЯ ---------- */
.story { background: radial-gradient(70% 60% at 20% 50%, rgba(232, 116, 42, .14), transparent 70%), var(--pine); }
.story__grid { display: grid; gap: 32px; align-items: center; }
.story__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 80px -30px rgba(232, 116, 42, .5); }
.story__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.05); }
.story__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 26, 23, 0) 40%, rgba(15, 26, 23, .75)), radial-gradient(80% 80% at 40% 70%, transparent 40%, rgba(11, 18, 32, .5)); }
.sparks { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sparks i { position: absolute; bottom: 30%; left: 42%; width: 3px; height: 3px; border-radius: 50%; background: #FFC56B; box-shadow: 0 0 6px 2px rgba(255, 170, 60, .8); opacity: 0; animation: spark 3.6s linear infinite; }
.sparks i:nth-child(2) { left: 38%; animation-delay: .6s; animation-duration: 4.2s; }
.sparks i:nth-child(3) { left: 47%; animation-delay: 1.3s; }
.sparks i:nth-child(4) { left: 35%; animation-delay: 2s; animation-duration: 3.2s; }
.sparks i:nth-child(5) { left: 50%; animation-delay: 2.6s; animation-duration: 4.6s; }
.sparks i:nth-child(6) { left: 44%; animation-delay: 3.1s; }
.sparks i:nth-child(7) { left: 40%; animation-delay: 1.8s; animation-duration: 5s; }
@keyframes spark { 0% { opacity: 0; transform: translate(0, 0) scale(1); } 10% { opacity: 1; } 100% { opacity: 0; transform: translate(30px, -220px) scale(.3); } }
.rm .sparks { display: none; }
.story__text { margin-top: 22px; font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); line-height: 1.4; color: var(--ink); max-width: 34ch; }
.story__sub { margin-top: 14px; color: var(--muted); max-width: 46ch; }
.story__line { margin-top: 28px; display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--sand); flex-wrap: wrap; }
.story__line i { flex: 1; min-width: 40px; height: 1px; background: linear-gradient(90deg, var(--ember), var(--amber)); box-shadow: 0 0 10px rgba(242, 169, 59, .7); }
@media (min-width: 900px) { .story__grid { grid-template-columns: 1fr 1fr; gap: 72px; } .story__photo { aspect-ratio: 5 / 4; } }

/* ---------- ВІДГУКИ ---------- */
.reviews { padding-top: 0; background: var(--pine); }
.rating { padding: 26px 20px; display: grid; gap: 20px; overflow: hidden; }
.rating::before { background: linear-gradient(120deg, rgba(255, 214, 140, .5), transparent 30%, transparent 70%, rgba(242, 169, 59, .25)); }
.rating__score { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rating__num { font-family: var(--f-display); font-size: clamp(5rem, 3.4rem + 7vw, 9rem); font-weight: 900; line-height: .85; letter-spacing: -.01em; color: var(--amber); text-shadow: 0 0 50px rgba(242, 169, 59, .4); }
.rating__stars { display: flex; gap: 4px; }
.rating__stars svg { fill: var(--amber); filter: drop-shadow(0 0 6px rgba(242, 169, 59, .6)); }
.rating__copy p { margin-top: 10px; color: var(--muted); max-width: 44ch; }
.rating .btn { width: 100%; }
@media (min-width: 900px) {
  .rating { grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; padding: 40px 48px; }
  .rating__score { flex-direction: column; align-items: flex-start; gap: 10px; }
  .rating .btn { width: auto; }
}

/* ---------- FAQ ---------- */
.faq { background: linear-gradient(180deg, var(--pine), var(--night)); }
.faq__grid { display: grid; gap: 8px; }
.faq__call { margin-top: 22px; }
.acc { border-top: 1px solid var(--line-2); }
.acc__item { border-bottom: 1px solid var(--line-2); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 16px 2px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-display); font-weight: 700; font-size: 1.45rem; line-height: 1.1; text-transform: uppercase; letter-spacing: .01em;
  transition: color .2s;
}
.acc__btn .ic { width: 40px; height: 40px; padding: 9px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--amber); transition: transform .4s var(--ease), background-color .3s, color .3s, border-color .3s; }
.acc__btn:hover { color: var(--amber-hi); }
.acc__btn:hover .ic { border-color: var(--amber); }
.acc__btn[aria-expanded="true"] { color: var(--amber-hi); }
.acc__btn[aria-expanded="true"] .ic { transform: rotate(45deg); background: var(--amber); color: #15110A; border-color: var(--amber); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding: 0 56px 22px 2px; color: var(--ink-2); font-size: 1.02rem; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
html:not(.js) .acc__panel { grid-template-rows: 1fr; }
@media (min-width: 900px) { .faq__grid { grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; } .acc__btn { font-size: 1.7rem; min-height: 80px; } }

/* ---------- КОНТАКТИ ---------- */
.contacts { background: var(--night); overflow: hidden; }
.contacts__sky { position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 110%, rgba(242, 169, 59, .2), transparent 60%); pointer-events: none; }
.contacts__card { padding: 26px 20px; display: grid; gap: 28px; }
.contacts__phone { display: inline-block; margin-top: 22px; font-size: clamp(2rem, 1.2rem + 4vw, 3.6rem); font-weight: 700; letter-spacing: -.05em; line-height: 1; text-decoration: none; color: var(--amber); text-shadow: 0 0 40px rgba(242, 169, 59, .35); transition: color .2s, text-shadow .3s; }
.contacts__phone:hover { color: var(--amber-hi); text-shadow: 0 0 50px rgba(242, 169, 59, .6); }
.contacts__mail { display: flex; align-items: center; gap: 10px; margin-top: 12px; min-height: 44px; font-size: 1.1rem; text-decoration: none; color: var(--ink); width: fit-content; }
.contacts__mail:hover { color: var(--amber-hi); }
.contacts__mail .ic { color: var(--amber); }
.messengers { margin-top: 16px; display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 8px; }
.messengers .btn { padding-inline: .9em; }
@media (max-width: 400px) { .messengers { grid-template-columns: repeat(3, 1fr); } .messengers .btn { padding-inline: .4em; font-size: .9rem; } .messengers .ic { display: none; } }
.contacts__facts { display: grid; gap: 1px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--line); align-self: end; }
.contacts__facts li { display: flex; gap: 14px; padding: 16px; background: rgba(11, 18, 32, .8); }
.contacts__facts .ic { color: var(--amber); margin-top: 2px; }
.contacts__facts b { display: block; font-weight: 600; }
.contacts__facts span { color: var(--muted); font-size: .94rem; }
@media (min-width: 900px) { .contacts__card { grid-template-columns: 1.2fr 1fr; gap: 56px; padding: 48px; } }

/* ---------- ФУТЕР ---------- */
.footer { position: relative; background: #070B14; border-top: 1px solid var(--line); padding: 44px 0 calc(110px + env(safe-area-inset-bottom)); }
.footer__row { display: grid; gap: 22px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 4px 6px; }
.footer__nav a { padding: 10px 10px 10px 0; min-height: 44px; display: inline-flex; align-items: center; color: var(--ink-2); text-decoration: none; margin-right: 8px; }
.footer__nav a:hover { color: var(--amber-hi); }
.footer__legal { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 8px; color: var(--muted); font-size: .9rem; }
.footer__legal a { display: inline-flex; align-items: center; min-height: 44px; margin-right: 18px; color: var(--ink-2); text-underline-offset: 4px; }
.footer__legal a:hover { color: var(--amber-hi); }
.concept-tag { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; padding: 10px 14px; border-radius: 12px; border: 1px dashed rgba(217, 199, 163, .3); font-size: .76rem; color: var(--sand); }
.concept-tag a { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; color: var(--amber-hi); text-decoration: none; }
.concept-tag a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 900px) {
  .footer { padding-bottom: 36px; }
  .footer__row { grid-template-columns: auto 1fr; align-items: center; }
  .footer__nav { justify-content: flex-end; }
  .footer__legal { grid-template-columns: 1fr auto; align-items: center; }
}

/* ---------- мобільна нижня панель ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 8px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(11, 18, 32, .5), rgba(11, 18, 32, .92));
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  transform: translateY(110%); transition: transform .5s var(--ease-out);
}
.dock .btn { min-height: 50px; padding-inline: 12px; }
.loaded .dock, html:not(.js) .dock { transform: none; }
.dock.is-hidden { transform: translateY(110%); }
@media (min-width: 1080px) { .dock { display: none; } }

/* ---------- альтиметр ---------- */
.alti { display: none; }
@media (min-width: 1280px) {
  .alti { position: fixed; right: 18px; top: 50%; z-index: 40; transform: translateY(-50%); display: grid; justify-items: center; gap: 8px; font-size: .66rem; color: var(--muted); letter-spacing: .04em; pointer-events: none; opacity: 0; transition: opacity .6s; }
  .alti.is-on { opacity: 1; }
  .alti__track { position: relative; width: 1px; height: 180px; background: repeating-linear-gradient(180deg, var(--line-2) 0 1px, transparent 1px 12px); }
  .alti__fill { position: absolute; left: 0; bottom: 0; width: 1px; height: var(--alt, 0%); background: linear-gradient(0deg, transparent, var(--amber)); }
  .alti__mark { position: absolute; left: -4px; bottom: var(--alt, 0%); width: 9px; height: 9px; margin-bottom: -4px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
  .alti__val { color: var(--amber-hi); min-width: 6ch; text-align: center; }
}

/* ---------- тост ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(86px + env(safe-area-inset-bottom)); z-index: 150;
  display: flex; align-items: center; gap: 12px; width: min(92vw, 460px);
  padding: 14px 18px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(60, 40, 12, .95), rgba(20, 16, 10, .96)); border: 1px solid rgba(242, 169, 59, .45);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .7), 0 0 40px -10px rgba(242, 169, 59, .5);
  color: var(--ink); font-size: .95rem; line-height: 1.35;
  opacity: 0; visibility: hidden; transform: translate(-50%, 20px); transition: opacity .35s, transform .45s var(--ease-out), visibility .35s;
}
.toast .ic { color: var(--amber); }
.toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (min-width: 1080px) { .toast { bottom: 32px; } }

/* ---------- поява секцій ---------- */
.reveal-on [data-reveal] { opacity: 0; transform: translateY(26px); filter: blur(4px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out), filter .9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-on [data-reveal].is-in { opacity: 1; transform: none; filter: none; }
.reveal-on .hero [data-reveal] { transition-duration: 1.1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}
