/* ══════════════════════════════════════════════════
   DVLOP — Industrial. Swiss + data aesthetic.
   ══════════════════════════════════════════════════ */

:root {
  --bg: #eef2f1;
  --bg-2: #dce3e1;
  --ink: #081517;
  --ink-2: #1a2a2c;
  --dim: #5a6e72;
  --rule: #0a1a1c22;
  --accent: #064348;
  --accent-ink: #f4f6f5;
  --pill: #0a1a1c10;
  --radius: 0;
  --maxw: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-feature-settings: "ss01","ss02","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }
sup { font-size: 0.5em; vertical-align: super; font-weight: 400; }
em { font-style: italic; }

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; letter-spacing: 0.02em; text-transform: uppercase; }
.mono.small { font-size: 11px; }
.dim { color: var(--dim); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal--in { opacity: 1; transform: none; }

/* ── Hatch placeholder ── */
.hatch {
  position: relative;
  width: 100%;
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
}
.hatch__pattern { position: absolute; inset: 0; width: 100%; height: 100%; }
.hatch__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* .hatch--photo .hatch__label { background: rgba(0,0,0,.52); border-color: rgba(8,21,23,.52); color: #fff; border-width: 2px; } */
/* .hatch--photo .hatch__label { background: rgba(238,242,241,.62); border-color: rgba(255,255,255,.12)} */

.hatch__label {
  position: absolute;
  inset: auto 40% 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  padding: 10px 12px;
  border: 1px solid var(--rule);
  align-items: flex-start;
  max-width: 50%;
  transition: background 0.2s, border-color 0.2s;
}
/* .hatch__label:hover {
  background: var(--bg-2);
  border-color: color-mix(in srgb, var(--ink) 20%, transparent);
} */
/* .hatch--photo .hatch__label:hover { background: rgba(255,255,255,.72); } */
.hatch__label .mono {
  font-weight: bold;
}
.hatch__label__more {
  margin-top: 2px;
  font-size: 13px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s;
}
.hatch__label__more:hover { color: var(--ink); }
.hatch--photo .hatch__label__more { color: rgba(255,255,255,.6); }
.hatch--photo .hatch__label__more:hover { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 0;
  text-transform: none;
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); color: var(--accent-ink); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 18px 28px; font-size: 15px; }
.btn span.btn__arr { transition: transform 0.3s; display: inline-block; }
.btn:hover span.btn__arr { transform: translateX(4px); }

.pill {
  display: inline-block;
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  padding: 4px 10px;
  background: var(--pill);
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════ */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tick linear infinite;
  width: max-content;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-family: "JetBrains Mono", monospace;
}
.ticker__dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.ticker__val { font-weight: 600; letter-spacing: 0.04em; }
.ticker__item .dim { color: #9aa0a8; }
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   YANDEX MAP
   ══════════════════════════════════════════════════ */
#map-container { position: relative; }
#ymap { width: 100%; height: 560px; }

/* ── Pin ── */
.ymap-marker {
  transform: translate(-50%, -100%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}
.ymap-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}

/* Тег маркера */
.ymap-pin__tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(8,21,23,.82);
  color: #eef2f1;
  padding: 6px 12px 6px 9px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

/* Цветная точка внутри тега */
@keyframes ymapPulse {
  0%   { box-shadow: 0 0 0 0   rgba(6,67,72,.7); }
  70%  { box-shadow: 0 0 0 7px rgba(6,67,72,0); }
  100% { box-shadow: 0 0 0 0   rgba(6,67,72,0); }
}
.ymap-pin__dot-inline {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  flex-shrink: 0;
  animation: ymapPulse 2.6s ease-out infinite;
  transition: background 0.18s;
}

/* Ножка и якорь */
.ymap-pin__stem {
  width: 2px;
  height: 12px;
  background: rgba(8,21,23,.7);
  transition: background 0.18s;
}
.ymap-pin__anchor {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #081517;
  border: 2px solid rgba(255,255,255,.6);
  transition: transform 0.18s;
}

/* hover */
.ymap-marker:hover .ymap-pin__tag {
  background: rgba(8,21,23,.96);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 4px 18px rgba(0,0,0,.55);
}
.ymap-marker:hover .ymap-pin__dot-inline { background: #5eead4; }
.ymap-marker:hover .ymap-pin__anchor { transform: scale(1.2); }

/* active — маркер увеличивается и меняет цвет */
.ymap-marker.is-active .ymap-pin {
  transform: scale(1.22);
  transform-origin: bottom center;
}
.ymap-marker.is-active .ymap-pin__tag {
  background: #064348;
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 6px 24px rgba(6,67,72,.65);
  font-size: 13px;
  padding: 7px 14px 7px 10px;
}
.ymap-marker.is-active .ymap-pin__dot-inline {
  background: #5eead4;
  animation: none;
  box-shadow: 0 0 0 3px rgba(94,234,212,.35);
  width: 9px;
  height: 9px;
}
.ymap-marker.is-active .ymap-pin__stem {
  background: #064348;
  height: 16px;
}
.ymap-marker.is-active .ymap-pin__anchor {
  background: #064348;
  border-color: #2dd4bf;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 4px rgba(6,67,72,.3);
  transform: scale(1.0); /* сброс hover-scale, scale уже на .ymap-pin */
}
.ymap-marker.is-active { z-index: 10; }

/* ── Карточка объекта (фиксированная в контейнере) ── */
.ymap-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background: #081517;
  color: #eef2f1;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.2,.7,.2,1), transform 0.28s cubic-bezier(.2,.7,.2,1);
}
.ymap-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ymap-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.ymap-card__body {
  padding: 16px;
  position: relative;
}
.ymap-card__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #9aa0a8;
  font-size: 16px;
  line-height: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-radius: 50%;
}
.ymap-card__close:hover { background: rgba(255,255,255,.16); color: #eef2f1; }
.ymap-card__status {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2dd4bf;
  margin-bottom: 5px;
}
.ymap-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
  padding-right: 30px;
  line-height: 1.2;
}
.ymap-card__loc {
  font-size: 11px;
  color: #9aa0a8;
  margin-bottom: 14px;
}
.ymap-card__rows {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
}
.ymap-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ymap-card__row:last-child { border-bottom: none; }
.ymap-card__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9aa0a8;
}
.ymap-card__val {
  font-size: 13px;
  font-weight: 500;
}
.ymap-card__btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: #eef2f1;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s;
}
.ymap-card__btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); }

.ymap-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  color: var(--dim);
}

/* ══════════════════════════════════════════════════
   INTERACTIVE MAP (SVG — legacy)
   ══════════════════════════════════════════════════ */
.map {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  color: var(--ink);
  overflow: hidden;
}
.map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}
.map__pin {
  width: 14px; height: 14px;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
  border-radius: 50%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.map__marker:hover .map__pin,
.map__marker.is-active .map__pin {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(6,67,72,0.15), 0 0 0 1px var(--accent);
}
.map__chip {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 4px 10px;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 500;
}
.map__card {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  background: var(--ink);
  color: var(--bg);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 5;
}
.map__marker:hover .map__card,
.map__marker.is-active .map__card {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.map__card-head {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid #ffffff22;
  padding-bottom: 10px; margin-bottom: 10px;
}
.map__card-head .dim { color: #9aa0a8; }
.map__card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.map__card-row {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px dashed #ffffff18;
}
.map__card-row:last-child { border: 0; }
.map__card-row .dim { color: #9aa0a8; font-family: "JetBrains Mono", monospace; font-size: 11px; }

.map__legend {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-size: 12px;
  display: flex; flex-direction: column; gap: 7px;
  z-index: 1;
}
.map__legend > div:first-child { margin-bottom: 2px; }
.map__legend > div { display: flex; align-items: center; gap: 8px; }
.map__lg-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; }
.map__lg-ring { width: 12px; height: 12px; border: 1.5px solid var(--ink); border-radius: 50%; }
.map__lg-line { width: 18px; height: 0; border-top: 1px dashed var(--ink); }

.map__compass {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 8px 10px;
  text-align: center;
  font-size: 10px;
}
.map__compass-axis { width: 2px; height: 22px; background: var(--ink); margin: 4px auto; }

/* ══════════════════════════════════════════════════
   DRAG GALLERY
   ══════════════════════════════════════════════════ */
.gal { position: relative; }
.gal__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.gal__nav { display: flex; gap: 6px; }
.gal__btn {
  width: 40px; height: 40px;
  border: 1px solid var(--ink);
  font-size: 16px;
  transition: all 0.2s;
}
.gal__btn:hover { background: var(--ink); color: var(--bg); }
.gal__track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  cursor: grab;
  scrollbar-width: thin;
  user-select: none;
  touch-action: pan-x pan-y;
}
.gal__track.is-dragging { cursor: grabbing; }
.gal__track::-webkit-scrollbar { height: 2px; }
.gal__track::-webkit-scrollbar-track { background: var(--rule); }
.gal__track::-webkit-scrollbar-thumb { background: var(--ink); }

.gal__card {
  flex: 0 0 360px;
  background: var(--bg);
  border: 1px solid var(--rule);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.3s;
}
.gal__card:hover { border-color: var(--ink)}
.gal__card-num {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--dim);
}
.gal__card-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.gal__card-title { font-size: 24px; font-weight: 600; }
.gal__card-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.gal__card-stats > div { display: flex; flex-direction: column; gap: 2px; }
.gal__card-stats b { font-size: 15px; font-weight: 500; }
.gal__card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
}
.gal__card-foot .mono.small {
  font-size: 13px;
}
.gal__end {
  flex: 0 0 auto;
  display: flex; align-items: center; padding: 0 40px;
  color: var(--dim);
}

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.va-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}
.va-header__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 32px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
.va-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
}
.va-logo__mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; background: var(--ink); color: var(--bg);
  font-size: 14px;
}
.va-nav {
  display: flex; gap: 26px; justify-content: center;
  font-size: 14px; font-weight: 500;
}
.va-nav a {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.va-nav a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.va-nav a .dim { color: var(--accent) !important; opacity: 0.7; }
.va-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  transition: color 0.2s;
}
.va-phone:hover { color: var(--accent); }
.va-header__actions {
  display: flex; align-items: center; gap: 16px;
  grid-column: 3;
}
.va-logo { grid-column: 1; }
.va-nav  { grid-column: 2; }

/* ── Бургер ── */
.va-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 0;
  background: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.va-burger:hover { border-color: var(--ink); }
.va-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), opacity 0.2s, width 0.2s;
}
.va-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.va-burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.va-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Drawer (мобильное меню — выдвижное слева) ── */
.va-drawer {
  position: fixed; inset: 0;
  z-index: 250;
  pointer-events: none;
}
.va-drawer.is-open { pointer-events: auto; }
.va-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(8,21,23,.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(.4,0,.2,1);
}
.va-drawer.is-open .va-drawer__overlay { opacity: 1; }
.va-drawer__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--bg);
  border-left: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(8,21,23,.18);
}
.va-drawer.is-open .va-drawer__panel { transform: translateX(0); }
.va-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.va-drawer__close {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: none; border: 1px solid var(--rule);
  font-size: 20px; line-height: 1; cursor: pointer;
  color: var(--dim);
  transition: border-color 0.2s, color 0.2s;
}
.va-drawer__close:hover { border-color: var(--ink); color: var(--ink); }
.va-drawer__nav {
  flex: 1;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.va-drawer__nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 17px 20px;
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s, color 0.15s;
  text-decoration: none; color: var(--ink);
}
.va-drawer__nav a:last-child { border-bottom: none; }
.va-drawer__nav a:hover { background: var(--bg-2); color: var(--accent); }
.va-drawer__nav a .dim { color: var(--accent) !important; opacity: 0.6; }
.va-drawer__foot {
  padding: 18px 20px;
  border-top: 1px solid var(--rule);
  flex-shrink: 0;
}
.va-drawer__foot a {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px; font-weight: 600;
  color: var(--dim); letter-spacing: 0.04em;
  text-decoration: none; transition: color 0.2s;
}
.va-drawer__foot a:hover { color: var(--ink); }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.va-hero {
  position: relative;
  min-height: 92vh;
  border-bottom: 1px solid var(--rule);
  isolation: isolate;
  overflow: hidden;
}
.va-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100% !important;
  z-index: 0;
  aspect-ratio: auto;
}
.va-hero__bg .hatch__label { display: none; }
.va-hero__grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 48px 32px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: 92vh;
  align-content: space-between;
}
.va-hero__meta {
  display: flex; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.va-hero__title {
  font-family: "Space Grotesk", "Inter Tight", sans-serif;
  font-size: clamp(56px, 11.2vw, 184px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.03em;
  display: flex; flex-direction: column;
  margin: 40px 0 32px;
}
.va-hero__title span:nth-child(2) { padding-left: 8%; }
.va-hero__title span:nth-child(3) { padding-left: 18%; }
.va-hero__sub {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
  max-width: 920px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule);
}
.va-hero__sub p { font-size: 17px; max-width: 48ch; }
.va-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
}
.va-hero__stat {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--rule);
  background: var(--bg);
}
.va-hero__stat:last-child { border-right: 0; }
.va-hero__stat b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1; color: var(--accent);
}
.va-hero__ctas { display: flex; gap: 14px; }
.va-hero__crop {
  display: flex; justify-content: space-between;
  padding-top: 14px;
  border-top: 2px solid var(--accent);
}

/* ══════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════ */
.va-section { padding: 100px 32px; border-bottom: 1px solid var(--rule); max-width: var(--maxw); margin: 0 auto; width: 100%; }
.va-section--alt { background: var(--bg-2); max-width: none; padding-left: max(32px, calc((100vw - var(--maxw))/2 + 32px)); padding-right: max(32px, calc((100vw - var(--maxw))/2 + 32px)); }
.va-section__head { margin-bottom: 48px; }
.sec-label {
  display: inline-flex; gap: 14px; align-items: center;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--rule);
  margin-bottom: 22px;
  font-size: 11px;
  background: var(--bg);
}
.sec-label::before {
  content: "";
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  display: inline-block;
}
.va-h2 {
  font-family: "Space Grotesk", "Inter Tight", sans-serif;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 18ch;
}
.va-section__kicker { margin-top: 18px; max-width: 60ch; }

/* ══════════════════════════════════════════════════
   PROJECTS TABLE
   ══════════════════════════════════════════════════ */
.va-table { border: 1px solid var(--rule); background: var(--bg); }
.va-table__row {
  display: grid;
  grid-template-columns: 48px 1.4fr 1.6fr 1fr 1fr 1.4fr 1fr 1fr;
  padding: 18px 20px; gap: 16px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: background 0.15s;
  font-size: 14px;
}
.va-table__row:last-child { border-bottom: 0; }
.va-table__row--head { background: var(--ink); color: var(--bg); padding: 14px 20px; border-left: 4px solid var(--accent); }
.va-table__row--head .dim { color: #9aa0a8; }
.va-table__row:not(.va-table__row--head) { border-left: 4px solid transparent; transition: border-color 0.15s, background 0.15s; }
.va-table__row:not(.va-table__row--head):hover { background: var(--bg-2); cursor: pointer; border-left-color: var(--accent); }
.va-table__row .pill { background: rgba(6,67,72,0.1); color: var(--accent); font-weight: 600; }

/* ══════════════════════════════════════════════════
   PROJECT PREVIEW
   ══════════════════════════════════════════════════ */
.va-preview {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.va-preview__img .hatch { aspect-ratio: 16/9; }
.va-preview__info { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.va-preview__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px; font-weight: 500; letter-spacing: -0.01em;
  margin-top: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  align-self: flex-start;
}
.va-preview__iso {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--rule);
  padding: 10px;
  color: var(--accent);
  margin: 4px 0 8px;
}
.va-preview__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  width: 100%; padding: 14px 0;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--rule);
}
.va-preview__specs > div { display: flex; flex-direction: column; gap: 3px; }
.va-preview__specs b { font-weight: 500; font-size: 15px; }

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.va-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.va-service {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all 0.25s;
}
.va-service:hover { border-color: var(--ink); transform: translateY(-4px); }
.va-service__head .mono { color: var(--accent) !important; }
.va-service__head h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px; font-weight: 500; letter-spacing: -0.01em;
  margin-top: 4px;
}
.va-service ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--accent);
}
.va-service li {
  display: grid; grid-template-columns: 32px 1fr; gap: 8px;
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2);
}

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.va-about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.va-about__lead {top: 100px; align-self: start; }
.va-about__body p { font-size: 17px; line-height: 1.55; margin-bottom: 20px; }
.va-about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 30px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.va-about__stats > div {
  padding: 22px 20px 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--rule);
}
.va-about__stats > div:last-child { border: 0; padding-left: 20px; }
.va-about__stats b { font-family: "Space Grotesk", sans-serif; font-size: 48px; font-weight: 500; letter-spacing: -0.02em; color: var(--accent); }

/* ══════════════════════════════════════════════════
   CTA / CONTACT FORM
   ══════════════════════════════════════════════════ */
.va-cta { background: var(--ink); color: var(--bg); padding: 100px 32px; }
.va-cta .dim { color: #9aa0a8; }
.va-cta__inner { max-width: var(--maxw); margin: 0 auto; }
.va-cta h2 { color: var(--bg); margin-top: 18px; }
.va-form { margin-top: 50px; max-width: 960px; }
.va-form__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid #ffffff24; margin-bottom: 20px; }
.va-form label {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 18px;
  border-right: 1px solid #ffffff24;
}
.va-form label:last-child { border-right: 0; }
.va-form input, .va-form select {
  background: transparent; border: 0; color: var(--bg);
  font: inherit; outline: none; font-size: 15px;
  padding: 4px 0;
}
.va-form input::placeholder { color: #9aa0a8; }
.va-form select { appearance: none; cursor: pointer; }
.va-cta .btn--solid { background: var(--accent); color: var(--bg); }
.va-cta .btn--solid:hover { background: var(--bg); color: var(--ink); }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.va-footer { background: var(--bg-2); padding: 80px 32px 30px; border-top: 1px solid var(--rule); }
.va-footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.va-footer__grid p { font-size: 15px; line-height: 1.5; }
.va-footer__grid a { transition: color 0.2s; }
.va-footer__grid a:hover { color: var(--accent); }
.va-footer__base {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}

.va-section { padding-top: 80px; padding-bottom: 80px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Бургер вместо навигации — nav скрыта, drawer открывается слева */
  .va-burger { display: flex; }
  .va-phone { display: none; }
  .va-nav { display: none; }

  .va-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .va-hero__stat:nth-child(2) { border-right: 0; }
  .va-hero__stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .va-table__row { grid-template-columns: 40px 1.3fr 1fr 1fr 1fr; font-size: 12px; }
  .va-table__row > div:nth-child(n+6) { display: none; }
  .va-preview { grid-template-columns: 1fr; }
  .va-services { grid-template-columns: 1fr; }
  .va-about { grid-template-columns: 1fr; gap: 30px; }
  .va-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .va-hero__title { font-size: 56px; }
  .va-hero__title span:nth-child(2), .va-hero__title span:nth-child(3) { padding-left: 0; }
  .va-hero__sub { grid-template-columns: 1fr; gap: 20px; }
  .va-hero__stats { grid-template-columns: 1fr; }
  .va-hero__stat { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .va-section { padding: 60px 20px; }
  .va-table__row { grid-template-columns: 40px 1fr 1fr; gap: 10px; font-size: 12px; padding: 14px; }
  .va-table__row > div:nth-child(n+4) { display: none; }
  .va-form__row { grid-template-columns: 1fr; }
  .va-form label { border-right: 0; border-bottom: 1px solid #ffffff24; }
  .va-footer__grid { grid-template-columns: 1fr; }
  .gal__card { flex-basis: 280px; }
  .map__card { width: 200px; font-size: 11px; }
  .va-header__inner { padding: 14px 20px; }
}

/* Сообщение об успешной отправке формы */
.va-form__ok {
  margin-top: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-height: 20px;
  transition: opacity 0.3s;
}
