/* ============================================================
   LADOGA ESTATE — управление загородной недвижимостью
   Дизайн-система. Основа стиля: тёмно-синий + жёлтый акцент,
   крупные скругления, плотная типографика, табличные карточки.

   Куски между /* @critical:start *​/ и /* @critical:end *​/
   вшиваются сборщиком в <head> каждой страницы. Это первый экран:
   токены, шрифты, сброс, типографика, кнопки, шапка, герой.
   Остальное подгружается отложенно тем же файлом целиком —
   правила не дублируются вручную, дублируется только их доставка.
   ============================================================ */

/* @critical:start */

/* ---------- 0. Шрифты ----------
   Захостены локально: вариативные Manrope и Montserrat, субсет
   «латиница + кириллица + типографика + ₽». Два файла на все
   начертания, никаких сторонних доменов — сайт одинаково быстро
   открывается офлайн и в сетях с блокировками.               */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-var.woff2') format('woff2-variations'),
       url('../fonts/manrope-var.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-var.woff2') format('woff2-variations'),
       url('../fonts/montserrat-var.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* Подменные начертания с подогнанными метриками: пока грузится
   веб-шрифт, текст занимает ровно столько же места, сколько займёт
   после подмены. Отсюда нулевой сдвиг макета при swap. */
@font-face {
  font-family: 'Manrope Fallback';
  src: local('Arial'), local('Helvetica'), local('Liberation Sans');
  size-adjust: 102.02%;
  ascent-override: 104.49%;
  descent-override: 29.41%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Montserrat Fallback';
  src: local('Arial'), local('Helvetica'), local('Liberation Sans');
  size-adjust: 113.84%;
  ascent-override: 85.03%;
  descent-override: 22.05%;
  line-gap-override: 0%;
}

/* ---------- 1. Токены ---------- */
:root {
  /* цвет */
  --ink:        #162133;
  --ink-700:    #2A415E;
  --ink-500:    #48607F;
  /* Приглушённый текст. Базовый тон бренда — #6A7784, но на фоне
     --bg он даёт 4.15:1 и не проходит WCAG AA для мелкого текста.
     Затемнён до минимума, при котором проходит (4.60:1). */
  --muted:      #63707D;
  --muted-2:    #8A94A0;
  --line:       #E1E5EA;
  --line-soft:  #EDF0F3;
  --bg:         #F2F4F7;
  --bg-2:       #E8ECF1;
  --white:      #FFFFFF;

  --accent:     #FFCE00;
  --accent-2:   #FFD540;
  --accent-ink: #162133;
  --accent-soft:#FFF6D4;

  --pine:       #1E4A3D;
  --pine-2:     #2C6552;
  --pine-soft:  rgba(30, 74, 61, .08);
  --blue-soft:  rgba(14, 86, 169, .07);
  --red:        #E53838;
  --green:      #2E9E5B;

  /* текст на тёмном: уровни, проходящие AA на фоне --ink */
  --on-dark-1:  rgba(255, 255, 255, .78);
  --on-dark-2:  rgba(255, 255, 255, .62);
  --on-dark-3:  rgba(255, 255, 255, .55);

  /* радиусы */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;

  /* тени */
  --sh-1: 0 1px 2px rgba(22, 33, 51, .05), 0 4px 16px rgba(22, 33, 51, .05);
  --sh-2: 0 2px 6px rgba(22, 33, 51, .06), 0 16px 40px rgba(22, 33, 51, .09);
  --sh-3: 0 30px 80px rgba(22, 33, 51, .18);
  --sh-yellow: 0 8px 24px rgba(255, 206, 0, .35);

  /* сетка */
  --container: 1240px;
  --gutter: 20px;
  --header-h: 76px;

  /* шрифты */
  --font-head: 'Manrope', 'Manrope Fallback', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Montserrat', 'Montserrat Fallback', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* анимация */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; display: block; }

/* сгенерированные пейзажи всегда лежат фоном своего контейнера */
[data-scene] { position: relative; }
.scene-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -.01em; }
p { margin: 0; }
table { border-collapse: collapse; width: 100%; }
address { font-style: normal; }

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

/* ---------- 2.1 Доступность ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 300;
  transform: translate(-50%, -120%);
  padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Единая заметная обводка на всём интерактивном. Мышью не видна. */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}
.section--dark :focus-visible,
.hero :focus-visible,
.pagehero :focus-visible,
.footer :focus-visible,
.cta :focus-visible,
.mobile-menu :focus-visible,
.calc__result :focus-visible,
.header--over:not(.is-stuck) :focus-visible {
  outline-color: var(--accent);
  outline-offset: 3px;
}
.modal__close:focus-visible { outline-offset: 4px; }

/* ---------- 3. Сетка и утилиты ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--flush-top { padding-top: 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--paper { background: var(--white); }

.stack-8  > * + * { margin-top: 8px; }
.stack-12 > * + * { margin-top: 12px; }
.stack-16 > * + * { margin-top: 16px; }
.stack-24 > * + * { margin-top: 24px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.nowrap { white-space: nowrap; }
.accent { color: var(--accent); }

/* ---------- 4. Типографика ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .eyebrow, .cta .eyebrow, .pagehero .eyebrow { color: var(--on-dark-3); }

.display {
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.025em;
}
.display span { font-weight: 300; display: block; }

.h1 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -.022em; }
.h2 {
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.h2 .thin { font-weight: 300; }
.h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; }
.h4 { font-size: 18px; line-height: 1.3; font-weight: 700; }

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--muted);
}
.section--dark .lead, .cta .lead, .pagehero .lead { color: var(--on-dark-1); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head__text { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head .lead { margin-top: 18px; }

/* ---------- 5. Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .005em;
  white-space: nowrap;
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease),
              transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-2); box-shadow: var(--sh-yellow); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-700); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--white); }

.btn--ghost-light {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .5); }

.btn--sm { height: 42px; padding: 0 18px; font-size: 13px; }
.btn--lg { height: 58px; padding: 0 32px; font-size: 15px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow::after {
  content: '';
  width: 16px; height: 16px;
  background: currentColor;
  /* Отдельные свойства вместо сокращения mask: сокращение
     с синтаксисом «позиция/размер» не принимает валидатор W3C. */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' stroke='%23000' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' stroke='%23000' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.link-arrow:hover { gap: 14px; color: var(--ink-700); }
.section--dark .link-arrow { color: var(--accent); }

/* ---------- 6. Бейджи и чипы ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
}
.badge--accent { background: var(--accent); color: var(--ink); }
.badge--pine   { background: var(--pine); color: var(--white); }
/* Раньше здесь был backdrop-filter. На карточках объектов бейдж
   всегда лежит на тёмной части сцены — размытие не читалось,
   но стоило отдельного слоя композитинга на каждую карточку. */
.badge--glass  { background: rgba(22, 33, 51, .72); color: #fff; }
.badge--soft   { background: var(--line-soft); color: var(--ink-700); }
.badge--live::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 158, 91, .6); }
  70%  { box-shadow: 0 0 0 7px rgba(46, 158, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 158, 91, 0); }
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--ink-700);
  border: 1px solid var(--line);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { border-color: var(--ink-500); }
.chip.is-active, .chip[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- 7. Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(22, 33, 51, .06); }

/* тёмный вариант шапки поверх тёмного героя */
.header--over {
  position: fixed;
  left: 0; right: 0; top: 0;
  background: transparent;
  backdrop-filter: none;
  color: var(--white);
}
.header--over .logo__mark { color: var(--white); }
.header--over .nav__link { color: rgba(255, 255, 255, .85); }
.header--over .nav__link:hover { color: var(--white); }
.header--over .header__phone { color: var(--white); }
.header--over .header__hours { color: var(--on-dark-3); }
.header--over .burger span { background: var(--white); }
.header--over.is-stuck {
  background: rgba(22, 33, 51, .94);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo { display: flex; align-items: center; gap: 11px; flex: none; }
.logo__glyph { width: 34px; height: 34px; flex: none; }
.logo__mark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .17em;
  line-height: 1;
  color: var(--ink);
}
.logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.header--over .logo__sub { color: var(--on-dark-3); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-700);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { background: rgba(22, 33, 51, .05); color: var(--ink); }
.header--over .nav__link:hover { background: rgba(255, 255, 255, .1); }
.nav__link.is-current { color: var(--ink); font-weight: 600; }
.header--over .nav__link.is-current { color: var(--white); }
.nav__link.is-current::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.header__side { display: flex; align-items: center; gap: 18px; flex: none; }
.header__contact { text-align: right; line-height: 1.2; }
.header__phone { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.header__hours {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted); margin-top: 3px; white-space: nowrap;
}
.header__hours::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
}

.burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); position: relative; }
.burger span {
  position: absolute; left: 11px;
  width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 89;
  background: var(--ink);
  color: var(--white);
  padding: 28px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s;
}
.mobile-menu a.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu__foot { margin-top: 32px; display: grid; gap: 14px; }
.mobile-menu__phone { font-size: 22px; font-weight: 700; font-family: var(--font-head); }
.mobile-menu__hours { font-size: 13px; color: var(--on-dark-3); }

/* ---------- 8. Герой ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 80px) 0 64px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
}
.hero__scene { position: absolute; inset: 0; }
.hero__scene svg { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11, 18, 30, .92) 0%, rgba(11, 18, 30, .72) 42%, rgba(11, 18, 30, .15) 78%),
    linear-gradient(to top, rgba(11, 18, 30, .85), rgba(11, 18, 30, 0) 55%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__badge { margin-bottom: 26px; }
.hero__title { max-width: 15ch; }
.hero__text { max-width: 46ch; margin-top: 24px; color: var(--on-dark-1); font-size: 17px; }
.hero__cta { margin-top: 38px; }

.hero__facts {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 26px;
}
.hero__fact-num {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__fact-label {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--on-dark-3);
  max-width: 22ch;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter); bottom: 40px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-dark-3);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
}

/* компактный герой внутренних страниц */
.pagehero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--header-h) + 72px) 0 72px;
  overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.pagehero--short { padding-bottom: 56px; }
.pagehero__scene { position: absolute; inset: 0; opacity: .85; }
.pagehero__scene svg { width: 100%; height: 100%; object-fit: cover; }
.pagehero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11, 18, 30, .94) 12%, rgba(11, 18, 30, .58) 70%, rgba(11, 18, 30, .32));
}
.pagehero__inner { position: relative; z-index: 2; }
.pagehero .lead { max-width: 58ch; margin-top: 20px; }

.crumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark-3);
  margin-bottom: 22px;
}
.crumbs a { color: var(--on-dark-1); }
.crumbs a:hover { color: var(--white); }
.crumbs span[aria-hidden] { opacity: .5; }

/* ---------- 8.1 Гашение до загрузки основного файла ----------
   Эти правила обязаны быть в критическом CSS: иначе скрытые
   по умолчанию блоки мигнут развёрнутыми до прихода style.css. */
.form-success, .empty-state, .field-error, .modal { display: none; }
[data-reveal] { opacity: 0; }
.acc__body { display: grid; grid-template-rows: 0fr; }
.acc__body > div { overflow: hidden; }

/* @critical:end */

/* ---------- 9. Карточки-развилки ---------- */
.paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.path {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 36px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.path:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.path--flat { min-height: 0; }
.path--dark { background: var(--ink); color: var(--white); border-color: transparent; }
.path--dark .path__text { color: var(--on-dark-2); }
.path__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--ink);
  margin-bottom: 26px;
}
.path__icon--yes { background: rgba(46, 158, 91, .12); }
.path__icon--no { background: rgba(229, 56, 56, .1); }
.path--dark .path__icon { background: rgba(255, 255, 255, .1); color: var(--accent); }
.path__title { font-size: 26px; margin-bottom: 14px; }
.path__title--sm { font-size: 20px; }
.path__text { color: var(--muted); font-size: 15px; max-width: 40ch; }
.path__list { margin-top: 22px; display: grid; gap: 9px; }
.path__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-700);
}
.path--dark .path__list li { color: var(--on-dark-1); }
.path__list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
/* перечисление отказов — прочерк вместо галочки */
.path__list--no li::before {
  width: 12px;
  height: 0;
  border-left: 0;
  border-bottom: 2px solid var(--red);
  transform: none;
  top: 12px;
}

.path__foot { margin-top: auto; padding-top: 30px; }
.path__deco {
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 206, 0, .13), transparent 70%);
  pointer-events: none;
}
.path--dark .path__deco { background: radial-gradient(circle at 40% 40%, rgba(255, 206, 0, .22), transparent 70%); }

/* ---------- 10. Статистика ---------- */
.stats-band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 54px 48px;
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 300px at 88% -10%, rgba(255, 206, 0, .16), transparent 65%),
    radial-gradient(600px 320px at 8% 110%, rgba(44, 101, 82, .32), transparent 62%);
  pointer-events: none;
}
.stats-band__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.stats-band__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__num small { font-size: .52em; font-weight: 700; letter-spacing: 0; margin-left: 4px; }
.stat__label {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--on-dark-3);
  max-width: 24ch;
}

/* ---------- 11. Шаги ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  padding: 32px 26px 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.step:hover { border-color: var(--ink-500); transform: translateY(-3px); }
.step__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--ink);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.step__title { font-size: 17px; font-weight: 700; font-family: var(--font-head); margin-bottom: 10px; }
.step__text { font-size: 14px; color: var(--muted); line-height: 1.55; }
.step__meta {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}

/* ---------- 12. Карточка объекта (табличный стиль) ---------- */
.object-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.object-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.object-card:hover { box-shadow: var(--sh-2); transform: translateY(-4px); border-color: transparent; }

.object-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
}
.object-card__media svg { width: 100%; height: 100%; }
.object-card__tags {
  position: absolute; left: 16px; top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
  z-index: 2;
}
.object-card__yield {
  position: absolute; right: 16px; bottom: 16px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 14px;
  text-align: right;
  box-shadow: var(--sh-1);
}
.object-card__yield b {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.object-card__yield span {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.object-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.object-card__name { font-size: 19px; font-family: var(--font-head); font-weight: 800; line-height: 1.22; }
.object-card__name a:hover { color: var(--ink-700); text-decoration: underline; text-underline-offset: 3px; }
.object-card__addr {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 7px;
}
.object-card__addr svg { flex: none; margin-top: 2px; opacity: .7; }

.params { margin-top: 20px; border-top: 1px solid var(--line-soft); }
.params tr { border-bottom: 1px solid var(--line-soft); }
.params th, .params td { padding: 10px 0; font-size: 13px; vertical-align: top; }
.params th {
  color: var(--muted);
  width: 58%;
  padding-right: 12px;
  font-weight: 400;
  text-align: left;
}
.params td { text-align: right; font-weight: 600; color: var(--ink); }
.params tr:last-child { border-bottom: 0; }
.params__caption {
  caption-side: top;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
}
.params--dark { border-top-color: rgba(255, 255, 255, .16); }
.params--dark tr { border-bottom-color: rgba(255, 255, 255, .1); }
.params--dark th { color: var(--on-dark-3); }
.params--dark td { color: var(--white); }
.params--dark .params__caption { color: var(--on-dark-3); }

.object-card__foot { margin-top: auto; padding-top: 22px; display: flex; gap: 10px; }
.object-card__foot .btn { flex: 1; }

/* фильтры каталога */
.filters { display: grid; gap: 14px; margin-bottom: 36px; }
.filters__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filters__label {
  width: 92px; flex: none;
  font-size: 11px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}
.filters__meta {
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--muted);
}
.filters__meta b { color: var(--ink); font-family: var(--font-head); }

.empty-state {
  padding: 64px 24px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  color: var(--muted);
}
.empty-state.is-visible { display: block; }
.empty-state b { display: block; font-family: var(--font-head); font-size: 20px; color: var(--ink); margin-bottom: 8px; }

/* ---------- 13. Инвест-карточка ---------- */
.invest-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.invest-card + .invest-card { margin-top: 24px; }
.invest-card__media { position: relative; min-height: 380px; background: var(--ink); }
.invest-card__media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.invest-card__tags { position: absolute; left: 20px; top: 20px; display: flex; gap: 8px; z-index: 2; }
.invest-card__body { padding: 40px; display: flex; flex-direction: column; }
.invest-card__name { font-size: clamp(22px, 2.2vw, 28px); }
.invest-card__addr { margin-top: 10px; font-size: 14px; color: var(--muted); }
.invest-card__text { margin-top: 16px; font-size: 14px; color: var(--muted); line-height: 1.6; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 26px;
  background: var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.metric { background: var(--white); padding: 16px 18px; }
.metric__val {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.metric__key {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}
.metrics--dark { background: rgba(255, 255, 255, .14); }
.metrics--dark .metric { background: var(--ink); }
.metrics--dark .metric__val { color: var(--white); }
.metrics--dark .metric__key { color: var(--on-dark-3); }

.progress { margin-top: 26px; }
.progress__top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; margin-bottom: 10px; gap: 16px;
}
.progress__top b { font-family: var(--font-head); font-size: 16px; }
.progress__bar {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-2);
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0;
  transition: width 1.4s var(--ease);
}
.progress__fill--done { background: linear-gradient(90deg, var(--pine), var(--pine-2)); }
.progress__note { margin-top: 10px; font-size: 12px; color: var(--muted); }

/* ---------- 14. Надёжность ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; background: rgba(255, 255, 255, .12); border-radius: var(--r-lg); overflow: hidden; }
.trust {
  background: var(--ink);
  padding: 34px 30px 36px;
  transition: background .3s var(--ease);
}
.trust:hover { background: #1B283D; }
.trust__ord {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 20px;
}
.trust__title { font-size: 17px; font-weight: 700; font-family: var(--font-head); line-height: 1.25; margin-bottom: 12px; }
.trust__text { font-size: 14px; line-height: 1.6; color: var(--on-dark-2); }

.doc-row { display: flex; flex-wrap: wrap; gap: 12px; }
.doc {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.doc:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); }
.doc svg { flex: none; color: var(--accent); }
.doc b { display: block; font-size: 14px; font-weight: 600; }
.doc span { display: block; font-size: 11px; color: var(--on-dark-3); margin-top: 2px; }

/* ---------- 15. Калькулятор ---------- */
.calc {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-2);
}
.calc__form { padding: 44px; }
.calc__result {
  padding: 44px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.calc__result::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(520px 260px at 80% 0%, rgba(255, 206, 0, .18), transparent 68%);
  pointer-events: none;
}
.calc__result > * { position: relative; z-index: 1; }

.field { margin-bottom: 22px; }
.field--flush { margin-bottom: 0; }
.field--last { margin-bottom: 0; }
.field__label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: 13px; font-weight: 600; margin-bottom: 10px;
}
.field__label span { color: var(--muted); font-weight: 500; }
.field__label b { font-family: var(--font-head); font-size: 15px; font-variant-numeric: tabular-nums; }

.input, .select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(22, 33, 51, .08);
}
.input:focus-visible, .select:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.input.is-error, .input[aria-invalid="true"] { border-color: var(--red); }
textarea.input { height: auto; padding: 14px 16px; min-height: 110px; resize: vertical; line-height: 1.5; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2363707D' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  outline: none;
  margin: 8px 0 4px;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--accent);
  cursor: pointer;
  transition: transform .15s var(--ease);
}
.range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--accent);
  cursor: pointer;
}
.range:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.range-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }

.toggles { display: grid; gap: 10px; }
.toggle {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  font-size: 14px;
}
.toggle:hover { border-color: var(--ink-500); }
.toggle input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; }
.toggle__box {
  width: 22px; height: 22px; flex: none;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.toggle__box::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) scale(.4);
  opacity: 0;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.toggle input:checked + .toggle__box { background: var(--accent); border-color: var(--accent); }
.toggle input:checked + .toggle__box::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.toggle input:checked ~ .toggle__text { font-weight: 600; }
.toggle input:focus-visible + .toggle__box { outline: 3px solid var(--accent); outline-offset: 3px; }

.calc__figure { margin-top: 8px; }
.calc__figure-label { font-size: 12px; color: var(--on-dark-3); letter-spacing: .06em; text-transform: uppercase; }
.calc__figure-value {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.calc__figure-value--sm { font-size: 38px; }
.calc__figure-sub { font-size: 14px; color: var(--on-dark-2); margin-top: 8px; }

.calc__breakdown {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 14px;
}
.calc__breakdown--flush { margin-top: 0; padding-top: 0; border-top: 0; }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 14px; }
.calc__row span { color: var(--on-dark-3); }
.calc__row b { font-family: var(--font-head); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.calc__row--accent b { color: var(--accent); }
.calc__row--total { padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .16); }
.calc__disclaimer { margin-top: auto; padding-top: 26px; font-size: 11px; line-height: 1.5; color: var(--on-dark-3); }

/* ---------- 16. Отзывы ---------- */
.review {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.review__quote { font-size: 15px; line-height: 1.65; color: var(--ink-700); }
.review__quote::before { content: '«'; }
.review__quote::after { content: '»'; }
.review__stat {
  margin: 26px 0;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  font-size: 13px;
  color: var(--ink);
}
.review__stat b { font-family: var(--font-head); font-size: 18px; display: block; margin-bottom: 2px; }
.review__author { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.review__ava {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--accent);
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
  flex: none;
}
.review__name { font-size: 14px; font-weight: 600; }
.review__role { font-size: 12px; color: var(--muted); }

/* ---------- 17. Аккордеон ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__h { margin: 0; font: inherit; letter-spacing: normal; }
.acc__head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: normal;
  transition: color .2s var(--ease);
}
.acc__head:hover { color: var(--ink-700); }
.acc__sign {
  position: relative;
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease);
}
.acc__sign::before, .acc__sign::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .25s var(--ease), transform .3s var(--ease);
}
.acc__sign::before { width: 13px; height: 1.8px; }
.acc__sign::after { width: 1.8px; height: 13px; }
.acc__item.is-open .acc__sign { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.acc__item.is-open .acc__sign::after { opacity: 0; }
.acc__body { transition: grid-template-rows .35s var(--ease); }
.acc__item.is-open .acc__body { grid-template-rows: 1fr; }
.acc__body p { padding-bottom: 28px; max-width: 82ch; color: var(--muted); font-size: 15px; line-height: 1.65; }
.acc__body p + p { padding-top: 0; }
.section--dark .acc { border-top-color: rgba(255, 255, 255, .16); }
.section--dark .acc__item { border-bottom-color: rgba(255, 255, 255, .16); }
.section--dark .acc__body p { color: var(--on-dark-2); }
.section--dark .acc__sign { border-color: rgba(255, 255, 255, .3); }
.section--dark .acc__sign::before, .section--dark .acc__sign::after { background: var(--white); }
.section--dark .acc__item.is-open .acc__sign::before { background: var(--ink); }

/* ---------- 18. CTA-блок и формы ---------- */
.cta {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 56px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: start;
}
.cta--single { grid-template-columns: 1fr; padding: 44px 40px; }
.cta::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 340px at 100% 0%, rgba(255, 206, 0, .16), transparent 62%),
    radial-gradient(520px 300px at 0% 100%, rgba(44, 101, 82, .3), transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta__title { margin: 14px 0 18px; }
.cta__list { margin-top: 30px; display: grid; gap: 14px; }
.cta__list li { display: flex; gap: 12px; font-size: 14px; color: var(--on-dark-1); }
.cta__list svg { flex: none; color: var(--accent); margin-top: 2px; }

.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .input, .form .select {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
}
.form .input::placeholder { color: rgba(255, 255, 255, .58); }
.form .input:focus, .form .select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 206, 0, .18);
}
.form .select { color: var(--white); }
.form .select option { color: var(--ink); }
.form__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; line-height: 1.5; color: var(--on-dark-3);
  cursor: pointer;
}
.form__consent input { margin-top: 2px; accent-color: var(--accent); flex: none; width: 15px; height: 15px; }
.form__consent.is-error { color: #FF9B9B; }
.form__consent a { text-decoration: underline; }
.form__note { font-size: 12px; color: var(--on-dark-3); }

.form--light .input, .form--light .select {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.form--light .input::placeholder { color: var(--muted); }
.form--light .form__consent, .form--light .form__note { color: var(--muted); }

.form-success {
  padding: 34px;
  border-radius: var(--r-md);
  background: rgba(46, 158, 91, .12);
  border: 1px solid rgba(46, 158, 91, .4);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: #fff;
}
.form-success b { display: block; font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--on-dark-1); }
.form-success--light p { color: var(--muted); }

.field-error { font-size: 11.5px; color: #FF9B9B; margin-top: 6px; }
.form--light .field-error, .calc__form .field-error { color: var(--red); }
.field-error.is-visible { display: block; }

/* ---------- 19. Карта / география ---------- */
.geo {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.geo--wide { grid-template-columns: 1.15fr .85fr; }
.geo__map {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--ink);
  padding: 28px;
  overflow: hidden;
}
.geo__note { margin-top: 16px; font-size: 11px; color: var(--on-dark-3); line-height: 1.5; }
.geo__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; background: var(--line); border-radius: var(--r-md); overflow: hidden; }
.geo__item { background: var(--white); padding: 18px 20px; transition: background .2s var(--ease); }
a.geo__item:hover { background: var(--accent-soft); }
.geo__item b { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.geo__item span { font-size: 12px; color: var(--muted); }

/* ---------- 20. Медиа / логотипы ---------- */
.partners { display: flex; flex-wrap: wrap; gap: 12px; }
.partner {
  display: flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 22px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink-700);
}
.partner svg { color: var(--muted); }
.partner--doc {
  justify-content: space-between;
  height: auto;
  padding: 20px 24px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.partner--doc:hover { border-color: var(--ink-500); }
.partner--doc b { display: block; font-size: 15px; }
.partner--doc span span { font-size: 12px; color: var(--muted); font-weight: 400; }

/* ---------- 21. Табличный список услуг ---------- */
.service-table { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 60px 1.1fr 1.4fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .25s var(--ease);
}
.service-row:hover { background: rgba(22, 33, 51, .02); }
.service-row__ord { font-family: var(--font-head); font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: .1em; padding-top: 4px; }
.service-row__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; line-height: 1.3; }
.service-row__text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- 22. Тарифы ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  padding: 36px 32px 34px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}
.plan--featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--sh-3);
}
.plan--featured .plan__desc { color: var(--on-dark-2); }
.plan--featured .plan__list li { color: var(--on-dark-1); }
.plan--featured .plan__value-note { color: var(--on-dark-3); }
.plan__flag {
  position: absolute; top: 22px; right: 24px;
}
.plan__name { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.plan__desc { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.55; min-height: 66px; }
.plan__value {
  margin: 24px 0 6px;
  font-family: var(--font-head);
  font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.plan__value small { font-size: .42em; font-weight: 600; letter-spacing: 0; }
.plan__value-note { font-size: 12px; color: var(--muted); }
.plan__list { margin: 26px 0 0; display: grid; gap: 11px; }
.plan__list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.plan__list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 15px; height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.plan__foot { margin-top: auto; padding-top: 30px; }

/* ---------- 23. Команда ---------- */
.person {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.person__photo { aspect-ratio: 4 / 5; background: var(--bg-2); position: relative; overflow: hidden; }
.person__photo svg { width: 100%; height: 100%; }
.person__body { padding: 22px 24px 26px; }
.person__name { font-family: var(--font-head); font-size: 17px; font-weight: 800; }
.person__role { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.person__note { font-size: 12.5px; color: var(--ink-500); margin-top: 14px; line-height: 1.5; padding-top: 14px; border-top: 1px solid var(--line-soft); }

/* ---------- 24. Таймлайн ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--line) 22%, var(--line));
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute; left: -34px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--ink);
}
.tl-item--accent::before { border-color: var(--accent); }
.tl-item__year { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.tl-item__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin: 8px 0 8px; }
.tl-item__text { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 60ch; }

/* ---------- 25. Модальное окно ----------
   backdrop-filter снят: он давал заметный кадр подтормаживания
   при открытии на мобильных, а фон и так уводится в темноту. */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(11, 18, 30, .82);
  opacity: 0; visibility: hidden;
  /* visibility переключается мгновенно при открытии и с задержкой
     при закрытии. Если её анимировать, на нулевом кадре элемент ещё
     hidden — и перенос фокуса внутрь окна молча не срабатывает. */
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.modal.is-open {
  opacity: 1; visibility: visible;
  transition: opacity .3s var(--ease), visibility 0s;
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-lg);
  transform: translateY(16px) scale(.98);
  transition: transform .35s var(--ease);
}
.modal.is-open .modal__box { transform: none; }
.modal__close {
  position: absolute; right: 26px; top: 26px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(22, 33, 51, .55);
  color: #fff;
  display: grid; place-items: center;
  transition: background .2s var(--ease);
  z-index: 3;
}
.modal__close:hover { background: rgba(22, 33, 51, .8); }
.modal__media { position: relative; aspect-ratio: 2 / 1; background: var(--ink); }
.modal__media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal__body { padding: 34px 38px 38px; }
.modal__loading { padding: 60px 24px; text-align: center; color: var(--muted); font-size: 14px; }

/* ---------- 26. Подвал ---------- */
.footer { background: var(--ink); color: var(--white); padding: 72px 0 34px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer .logo__mark { color: var(--white); }
.footer .logo__sub { color: var(--on-dark-3); }
.footer__about { margin-top: 22px; font-size: 13px; line-height: 1.6; color: var(--on-dark-2); max-width: 34ch; }
.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  line-height: 1.4;
  color: var(--on-dark-3);
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: 14px; color: var(--on-dark-1); transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__phone { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.footer__addr, .footer__hours { font-size: 13px; color: var(--on-dark-3); line-height: 1.55; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__social:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }

.footer__legal {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--on-dark-3);
}
.footer__legal a { text-decoration: underline; }
.footer__legal a:hover { color: var(--white); }
.footer__disclaimer {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

/* ---------- 27. Блок быстрого ответа ----------
   Абзац, из которого поисковик или ИИ-ответ берёт цитату:
   один вопрос — один самодостаточный ответ с числами. */
.answer {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 26px;
  margin-bottom: 32px;
}
.answer__text { font-size: 16px; line-height: 1.65; color: var(--ink); }
.answer__meta { margin-top: 12px; font-size: 12px; color: var(--muted); }
.answer--dark { background: rgba(255, 255, 255, .07); }
.answer--dark .answer__text { color: var(--white); }
.answer--dark .answer__meta { color: var(--on-dark-3); }

.updated-stamp { font-size: 12.5px; color: var(--muted); margin-top: 18px; }
.section--dark .updated-stamp { color: var(--on-dark-3); }

/* Ссылка внутри абзаца: подчёркивание акцентом, чтобы перелинковка
   была видна и не превращалась в «нажмите здесь». */
.link-inline {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}
.link-inline:hover { color: var(--ink); background: var(--accent-soft); }
.section--dark .link-inline:hover, .cta .link-inline:hover { color: var(--accent); background: none; }

/* ---------- 28. Журнал ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.post-card:hover { box-shadow: var(--sh-2); transform: translateY(-4px); border-color: transparent; }
.post-card__media { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.post-card__title { font-family: var(--font-head); font-size: 19px; font-weight: 800; line-height: 1.25; }
.post-card__title a:hover { color: var(--ink-700); text-decoration: underline; text-underline-offset: 3px; }
.post-card__excerpt { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.post-card__foot { margin-top: auto; padding-top: 22px; }

.article { max-width: 74ch; }
.article h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  margin: 48px 0 18px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.article h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  margin: 32px 0 14px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.article p { font-size: 16px; line-height: 1.75; margin-bottom: 18px; color: var(--ink-700); }
.article ul, .article ol { margin: 0 0 22px; display: grid; gap: 10px; }
.article ul li { position: relative; padding-left: 24px; font-size: 16px; line-height: 1.65; color: var(--ink-700); }
.article ul li::before {
  content: ''; position: absolute; left: 2px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.article ol { counter-reset: art; }
.article ol li { position: relative; padding-left: 34px; font-size: 16px; line-height: 1.65; color: var(--ink-700); counter-increment: art; }
.article ol li::before {
  content: counter(art);
  position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
}
.article table { margin: 0 0 26px; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.article th, .article td { padding: 12px 16px; font-size: 14px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.article thead th { background: var(--bg); font-weight: 700; font-family: var(--font-head); }
.article tbody tr:last-child th, .article tbody tr:last-child td { border-bottom: 0; }
.article td + td, .article th + th { text-align: right; }
.article figcaption, .article .article__note { font-size: 13px; color: var(--muted); margin: -8px 0 26px; }
.article a:not(.btn) { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); text-decoration-thickness: 2px; }
.article a:not(.btn):hover { color: var(--ink-700); background: var(--accent-soft); }
.article blockquote {
  margin: 0 0 26px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
}

.toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin-bottom: 40px;
}
.toc__title { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.toc ol { display: grid; gap: 10px; counter-reset: toc; }
.toc li { counter-increment: toc; font-size: 14.5px; line-height: 1.5; }
.toc a { display: flex; gap: 10px; color: var(--ink-700); }
.toc a::before { content: counter(toc) '.'; color: var(--muted); font-family: var(--font-head); font-weight: 800; flex: none; }
.toc a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; font-size: 13px; color: var(--on-dark-2); }
.article-meta__author { display: flex; align-items: center; gap: 10px; }
.article-meta__ava { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex: none; background: var(--ink-700); }
.article-meta a { color: var(--white); text-decoration: underline; }

/* ---------- 29. Направления и теги ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list a {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  color: var(--ink-700);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.tag-list a:hover { border-color: var(--ink); background: var(--accent-soft); }

.district-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.district-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.district-card:hover { box-shadow: var(--sh-2); transform: translateY(-3px); border-color: transparent; }
.district-card__name { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.district-card__places { margin-top: 10px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.district-card__foot { margin-top: auto; padding-top: 20px; }

/* ---------- 30. Поиск и 404 ---------- */
.search-box { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.search-box .input { flex: 1; min-width: 240px; }
.search-results { display: grid; gap: 2px; background: var(--line); border-radius: var(--r-md); overflow: hidden; }
.search-result { background: var(--white); padding: 20px 24px; }
.search-result b { display: block; font-family: var(--font-head); font-size: 16px; }
.search-result span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.search-result em { font-style: normal; background: var(--accent-soft); }
.search-empty { padding: 40px 24px; text-align: center; color: var(--muted); }

.error-code {
  font-family: var(--font-head);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--accent);
}

/* ---------- 31. Юридические документы ---------- */
.legal { max-width: 80ch; }
.legal h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 40px 0 16px; scroll-margin-top: calc(var(--header-h) + 24px); }
.legal h3 { font-size: 18px; margin: 26px 0 12px; }
.legal p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; color: var(--ink-700); }
.legal ul, .legal ol { margin: 0 0 20px; display: grid; gap: 8px; }
.legal li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.65; color: var(--ink-700); }
.legal li::before { content: ''; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 32. Анимации появления ---------- */
[data-reveal] {
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

/* Секции ниже первого экрана не рендерятся, пока не приблизятся
   к вьюпорту. Резервируем высоту, чтобы полоса прокрутки не прыгала. */
main > section:nth-of-type(n+4) {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 33. Адаптив ---------- */
@media (max-width: 1240px) {
  .nav__link { padding: 0 9px; font-size: 13.5px; }
  .nav__link.is-current::after { left: 9px; right: 9px; }
}

@media (max-width: 1180px) {
  .header__contact { display: none; }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .section { padding: 64px 0; }
  .nav { display: none; }
  .burger { display: block; margin-left: auto; }
  .header__side { display: none; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero { min-height: 620px; }
  .hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .hero__scroll { display: none; }

  .paths { grid-template-columns: 1fr; }
  .stats-band { padding: 40px 32px; }
  .stats-band__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .object-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .district-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .invest-card { grid-template-columns: 1fr; }
  .invest-card__media { min-height: 260px; }
  .invest-card__body { padding: 32px 28px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calc { grid-template-columns: 1fr; }
  .calc__form, .calc__result { padding: 34px 28px; }
  .cta { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
  .geo, .geo--wide { grid-template-columns: 1fr; gap: 32px; }
  .plans { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  .footer__legal { grid-template-columns: 1fr; gap: 20px; }
  .service-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .service-row__text { grid-column: 2; }
  /* две таблицы объекта во вложенной сетке становятся слишком узкими */
  .object-tables { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --gutter: 16px; }
  .section { padding: 52px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
  .section-head .link-arrow { order: 3; }

  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 560px; padding-bottom: 48px; border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .hero__facts { margin-top: 44px; }
  .pagehero { border-radius: 0 0 var(--r-lg) var(--r-lg); padding-bottom: 52px; }
  .stats-band { padding: 32px 22px; border-radius: var(--r-lg); }
  .stats-band__grid, .stats-band__grid--2 { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .object-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .path { padding: 28px 24px; min-height: 0; }
  .cta, .cta--single { padding: 32px 22px; border-radius: var(--r-lg); }
  .calc { border-radius: var(--r-lg); }
  .calc__form, .calc__result { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .geo__list { grid-template-columns: 1fr; }
  .modal__body { padding: 26px 22px 30px; }
  .btn-row .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .footer { padding-top: 52px; }
  .article table { display: block; overflow-x: auto; }
}

/* ---------- 34. Печать ---------- */
@media print {
  .header, .footer, .hero__scroll, .burger, .mobile-menu, .skip-link { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1; transform: none; }
  main > section { content-visibility: visible; }
}
