/* ───────────────────────────────────────────────────────────────
   СВОЯ ОПОРА · ПРОГРАММА 01 · АЛТАЙ
   styles.css — editorial wilderness aesthetic
   Mobile-first, гибридная палитра (кремовая основа + тёмные якоря)
   ─────────────────────────────────────────────────────────────── */

/* ━━━ TOKENS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Светлая основа */
  --bg-base:        #F2EAD6;          /* кремовый */
  --bg-paper:       #E8DDC4;          /* более насыщенный для альтернативных секций */
  --bg-stone:       #D9CDB2;          /* плашки */

  /* Тёмная зона */
  --bg-night:       #14110E;          /* почти чёрный, тёплый */
  --bg-graphite:    #1F1B16;          /* графит */

  /* Текст */
  --ink:            #1A1612;
  --ink-2:          #4A4239;
  --ink-3:          #7A6F5F;
  --ink-4:          #A19581;

  --paper:          #E8DDC4;
  --paper-2:        #B6A98E;
  --paper-3:        #847658;

  /* Акценты */
  --rust:           #B25738;          /* активные точки карты, выделения */
  --rust-deep:      #8B4023;
  --pine:           #2E3F2E;          /* линии, иконки */
  --water:          #4A5C68;          /* цитаты */

  /* Линии */
  --line:           rgba(26, 22, 18, 0.16);
  --line-soft:      rgba(26, 22, 18, 0.08);
  --line-dark:      rgba(232, 221, 196, 0.20);
  --line-dark-soft: rgba(232, 221, 196, 0.10);

  /* Шрифты */
  --font-display:   'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:      'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;
  --s-4: 16px; --s-5: 24px; --s-6: 32px;
  --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px; --s-11: 160px;

  /* Контейнеры */
  --container-max: 1280px;
  --container-pad: 20px;

  /* Прочее */
  --focus:          var(--rust);
  --radius:         2px;
  --ease:           cubic-bezier(.2, .65, .25, 1);
  --duration:       .6s;
}

@media (min-width: 768px) {
  :root { --container-pad: 32px; }
}
@media (min-width: 1024px) {
  :root { --container-pad: 48px; }
}

/* ━━━ RESET ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-base);
  font-weight: 400;
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

input, textarea, select, button { font: inherit; color: inherit; }

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

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

/* ━━━ BASE TYPOGRAPHY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144, 'SOFT' 25;
}

p { line-height: 1.6; }

em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--rust);
}

.section--night em { color: #D49B6E; }

/* ━━━ CONTAINER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ━━━ SECTIONS BASE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section {
  position: relative;
  padding: var(--s-9) 0;
}

@media (min-width: 1024px) {
  .section { padding: var(--s-10) 0; }
}

.section--cream    { background: var(--bg-base); color: var(--ink); }
.section--sand     { background: var(--bg-paper); color: var(--ink); }
.section--night    { background: var(--bg-night); color: var(--paper); }
.section--graphite { background: var(--bg-graphite); color: var(--paper); }

/* ━━━ SECTION HEADER (eyebrow) ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.sec-head--dark { color: var(--paper-2); }

.sec-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 1;
}

.sec-head--dark .sec-num { color: var(--paper-2); }

.sec-label {
  position: relative;
  top: -2px;
}

.sec-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: var(--s-3);
  opacity: .6;
}

.sec-title {
  font-size: clamp(28px, 5.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 22ch;
  margin-bottom: var(--s-6);
  font-variation-settings: 'opsz' 144, 'SOFT' 35;
}

.sec-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 55ch;
  color: var(--ink-2);
  margin-bottom: var(--s-7);
}

/* ━━━ BUTTONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn svg { transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--rust-deep); }

.btn--primary-on-dark {
  background: var(--paper);
  color: var(--ink);
}
.btn--primary-on-dark:hover { background: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  padding: 14px 22px;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--ghost-dark {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn--mini {
  padding: 10px 18px;
  font-size: 13px;
  background: var(--ink);
  color: var(--paper);
}
.btn--mini:hover { background: var(--rust-deep); }

.cta-row {
  margin-top: var(--s-8);
  display: flex;
  justify-content: flex-start;
}

/* ━━━ HEADER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), color .3s var(--ease);
  color: var(--paper);
}

.site-header[data-state="top"] {
  background: transparent;
}

.site-header[data-state="scrolled"] {
  background: rgba(242, 234, 214, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-3);
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.022em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.brand-dot {
  color: var(--rust);
  font-style: italic;
  margin-left: 1px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.site-header[data-state="top"] .brand-dot { color: #D49B6E; }
.brand-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 5px;
}

.nav {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
    gap: var(--s-6);
    margin-left: auto;
    margin-right: var(--s-5);
  }
  .nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: opacity .2s;
  }
  .nav a:hover { opacity: .6; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  width: 18px;
  background: currentColor;
  margin: 0 auto;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

@media (max-width: 899px) {
  .btn--mini { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--bg-night);
  color: var(--paper);
  padding: var(--s-7) var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  z-index: 99;
}
.mobile-menu .btn { margin-top: var(--s-5); align-self: flex-start; font-family: var(--font-body); font-size: 14px; }
.mobile-menu[hidden] { display: none; }

/* ━━━ HERO ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.55) contrast(1.05) saturate(.85);
  animation: kenBurns 28s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08) translateY(-1%); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.55) 0%, rgba(20, 17, 14, 0.20) 30%, rgba(20, 17, 14, 0.75) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px;
}

.hero-inner {
  padding-top: 140px;
  padding-bottom: 60px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
  color: rgba(232, 221, 196, .85);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(178, 87, 56, .4); }
  50% { opacity: .5; box-shadow: 0 0 0 8px rgba(178, 87, 56, 0); }
}

.hero-title {
  font-size: clamp(48px, 11vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: var(--s-6);
  font-variation-settings: 'opsz' 144, 'SOFT' 20;
  max-width: 14ch;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroWordIn .9s var(--ease) forwards;
}
.hero-title span:nth-child(1) { animation-delay: .15s; }
.hero-title span:nth-child(2) { animation-delay: .25s; }
.hero-title span:nth-child(3) { animation-delay: .35s; }
.hero-title span:nth-child(4) { animation-delay: .50s; }
.hero-title span:nth-child(5) { animation-delay: .60s; }
.hero-title span:nth-child(6) { animation-delay: .70s; }
.hero-title span:nth-child(7) { animation-delay: .80s; }

.hero-title-line2 { display: inline-block; }
.hero-title .accent { color: #D49B6E; font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 100; }

@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lead {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  max-width: 52ch;
  margin-bottom: var(--s-4);
  color: rgba(232, 221, 196, .92);
  line-height: 1.5;
  opacity: 0;
  animation: heroFadeIn .9s var(--ease) .95s forwards;
}

.hero-support {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 48ch;
  margin-bottom: var(--s-7);
  color: rgba(212, 155, 110, .9);
  line-height: 1.5;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  opacity: 0;
  animation: heroFadeIn .9s var(--ease) 1.1s forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-7);
  max-width: 480px;
  opacity: 0;
  animation: heroFadeIn .9s var(--ease) 1.3s forwards;
}

@media (min-width: 768px) {
  .hero-meta { grid-template-columns: repeat(4, auto); }
}

.hero-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  padding: 8px 0;
  border-top: 1px solid var(--line-dark-soft);
  color: rgba(232, 221, 196, .85);
}
.hero-meta em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: #D49B6E;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-cta {
  opacity: 0;
  animation: heroFadeIn .9s var(--ease) 1.5s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: var(--container-pad);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 221, 196, .6);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  opacity: 0;
  animation: heroFadeIn .9s var(--ease) 1.7s forwards;
}
.hero-scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #D49B6E;
  transform-origin: left;
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ━━━ ДЛЯ КОГО ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  max-width: 920px;
}

@media (min-width: 768px) {
  .audience { grid-template-columns: 1fr 1fr; column-gap: var(--s-8); }
}

.audience li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: baseline;
  gap: var(--s-3);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-2);
}

.audience li:last-child {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .audience li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

.audience li span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-3);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* ━━━ 4 ОПОРЫ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
    border-top: none;
  }
}

.pillar {
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

@media (min-width: 768px) {
  .pillar {
    padding: var(--s-7) var(--s-7) var(--s-7) 0;
    border-top: 1px solid var(--line);
  }
  .pillar:nth-child(odd) {
    padding-right: var(--s-7);
    border-right: 1px solid var(--line);
  }
  .pillar:nth-child(even) {
    padding-left: var(--s-7);
  }
  .pillar:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rust);
  margin-bottom: var(--s-4);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pillar h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.pillar p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 38ch;
}

/* ━━━ 06 · МАРШРУТ — поэтичная строка-поток над программой ━━━━━ */
.route-flow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--ink-2);
  margin: var(--s-5) 0 var(--s-6);
  max-width: 900px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.route-flow .arrow {
  color: var(--rust);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 14px;
  opacity: .7;
}

/* ━━━ ПРОГРАММА (АККОРДЕОН) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.program {
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
}

.day {
  border-bottom: 1px solid var(--line);
}

.day-head {
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr 24px;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-6) 0;
  text-align: left;
  transition: padding .25s var(--ease);
  position: relative;
}

@media (min-width: 768px) {
  .day-head {
    grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1.2fr) 32px;
    padding: var(--s-7) 0;
  }
}

.day-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink-3);
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  transition: color .25s var(--ease), transform .35s var(--ease);
  line-height: 1;
  align-self: start;
  margin-top: 4px;
}

.day-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.day-fact {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  grid-column: 2 / span 1;
}

@media (min-width: 768px) {
  .day-fact {
    grid-column: 3 / span 1;
    text-align: left;
    align-self: start;
    padding-top: 12px;
  }
}

.day-chev {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-3);
  align-self: start;
  transition: transform .35s var(--ease), color .25s;
  line-height: 1;
  margin-top: 8px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 400;
}

.day-head:hover .day-num,
.day-head[aria-expanded="true"] .day-num {
  color: var(--rust);
}
.day-head:hover .day-chev,
.day-head[aria-expanded="true"] .day-chev {
  color: var(--rust);
}
.day-head[aria-expanded="true"] .day-chev {
  transform: rotate(45deg);
}

.day.is-target {
  background: rgba(178, 87, 56, .04);
}

.day-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding: 0 0 var(--s-7) calc(64px + var(--s-4));
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .55s var(--ease), opacity .35s var(--ease), padding .35s var(--ease);
}

@media (min-width: 768px) {
  .day-body {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    padding-left: calc(80px + var(--s-4));
    padding-bottom: var(--s-8);
  }
}

.day[data-open="true"] .day-body {
  max-height: 1600px;
  opacity: 1;
}

.day-body[hidden] { display: grid; }

.day-text h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
  margin: var(--s-5) 0 var(--s-2);
}

.day-text h4:first-child { margin-top: 0; }

.day-text p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 56ch;
}

.day-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.day-photo img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.day[data-open="true"] .day-photo img {
  transform: scale(1.04);
}

.day--closing .day-name { color: var(--ink-3); }

/* ━━━ ПСИХОЛОГ (тёмная) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.psy-quote {
  margin-top: var(--s-6);
}

.psy-quote h2 {
  font-size: clamp(28px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: 22ch;
  font-variation-settings: 'opsz' 144, 'SOFT' 35;
  color: var(--paper);
}

.psy-quote em { color: #D49B6E; }

.psy-grid {
  margin-top: var(--s-9);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  max-width: 920px;
}

@media (min-width: 768px) {
  .psy-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
}

.psy-grid p {
  font-size: 15px;
  color: var(--paper-2);
  line-height: 1.65;
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-dark);
}

/* ━━━ ЦЕНА И ДАТЫ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--s-6);
  align-items: end;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--s-9);
  }
}

.pricing-card {
  border: 1px solid var(--line);
  padding: var(--s-7) var(--s-6);
  background: rgba(216, 205, 178, .35);
}

@media (min-width: 768px) {
  .pricing-card { padding: var(--s-8); }
}

.pricing-h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: var(--s-7);
  font-variation-settings: 'opsz' 144, 'SOFT' 35;
}

.pricing-list { display: grid; gap: 0; }

.pricing-list > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 600px) {
  .pricing-list > div {
    grid-template-columns: 180px 1fr;
    gap: var(--s-5);
    align-items: baseline;
  }
}

.pricing-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.pricing-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.pricing-list dd {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400;
}

.pricing-list .num {
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: var(--ink);
}

.pricing-list .muted { color: var(--ink-3); font-size: .7em; letter-spacing: 0.04em; }

.pricing-list .dd-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-3);
  margin-top: var(--s-2);
  line-height: 1.5;
  font-variation-settings: normal;
  letter-spacing: 0;
}

.pricing-side p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: var(--s-5);
}

/* ━━━ ФОРМА ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form-section { padding-top: var(--s-9); padding-bottom: var(--s-9); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}

@media (min-width: 900px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: var(--s-10);
    align-items: start;
  }
}

.form-intro p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 42ch;
  margin: var(--s-5) 0 var(--s-7);
}

.form-contacts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 360px;
}

.form-contacts li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}

.form-contacts span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.form-contacts a {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 70;
  color: var(--ink);
  transition: color .2s;
}
.form-contacts a:hover { color: var(--rust); }

.lead-form {
  display: grid;
  gap: var(--s-5);
  background: rgba(20, 17, 14, .03);
  padding: var(--s-7) var(--s-5);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .lead-form { padding: var(--s-8); }
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field { display: grid; gap: var(--s-2); }
.field > label, .field > legend {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.field .req { color: var(--rust); }

.field input[type="text"],
.field input[type="number"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  color: var(--ink);
  transition: border-color .2s;
}

.field input::placeholder {
  color: var(--ink-4);
  font-style: italic;
}

.field input:focus {
  outline: 0;
  border-bottom-color: var(--ink);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

@media (min-width: 480px) {
  .row-2 { grid-template-columns: 1fr 1fr; }
}

.radio-row,
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  margin-top: var(--s-2);
}

.radio-row label,
.check-grid label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s, border-color .2s, color .2s;
  user-select: none;
}

.radio-row input,
.check-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-row label:hover,
.check-grid label:hover {
  border-color: var(--ink-3);
}

.radio-row label:has(input:checked),
.check-grid label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  margin-top: var(--s-3);
}

.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
  margin-top: 2px;
}
.consent input:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.consent input:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='%23E8DDC4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 12px no-repeat;
}

.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.form-submit { margin-top: var(--s-3); justify-self: start; }

.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-top: var(--s-2);
}

.form-success {
  margin-top: var(--s-5);
  padding: var(--s-6);
  background: var(--bg-night);
  color: var(--paper);
  border-radius: var(--radius);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 35;
  margin-bottom: var(--s-3);
  color: var(--paper);
}

.form-success p {
  color: var(--paper-2);
  font-size: 15px;
}

/* ━━━ ФИНАЛ (тёмный) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.final {
  text-align: center;
  padding: var(--s-10) 0;
}

.final-title {
  font-size: clamp(36px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0 auto var(--s-9);
  font-variation-settings: 'opsz' 144, 'SOFT' 25;
}

.final-title em {
  color: #D49B6E;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.final-cta {
  margin: 0 auto;
}

/* ━━━ FOOTER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--bg-night);
  color: var(--paper-2);
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  color: var(--paper);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.022em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 1;
}

.footer-brand-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-3);
}

.footer-brand-meta a {
  color: var(--paper-2);
  border-bottom: 1px solid var(--line-dark);
  transition: color .2s, border-color .2s;
}
.footer-brand-meta a:hover { color: var(--paper); border-color: var(--paper); }

.dot-sep { color: var(--paper-3); margin: 0 4px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-3);
  font-weight: 500;
  margin-bottom: var(--s-4);
}

.footer-col ul { display: grid; gap: var(--s-3); }

.footer-col a {
  font-size: 14px;
  color: var(--paper-2);
  transition: color .2s;
}
.footer-col a:hover { color: var(--paper); }

.footer-col li { font-size: 14px; color: var(--paper-2); }

.footer-legal {
  margin-top: var(--s-5);
  font-size: 12px;
  color: var(--paper-3);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-3);
}

@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}

/* ━━━ SCROLL REVEAL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ━━━ 03 · COMPARE (обычный отпуск vs эта экспедиция) ━━━━ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--s-8);
  align-items: stretch;
}

@media (min-width: 900px) {
  .compare-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--s-6);
  }
}

.compare-col {
  padding: var(--s-6);
  border: 1px solid var(--line);
  background: rgba(20, 17, 14, 0.02);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .compare-col { padding: var(--s-7); }
}

.compare-col--here {
  background: rgba(178, 87, 56, 0.06);
  border-color: rgba(178, 87, 56, 0.35);
}

.compare-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.compare-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ink-3);
  border-radius: 50%;
}
.compare-tag--accent { color: var(--rust); }
.compare-tag--accent::before { background: var(--rust); }

.compare-col h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-4);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: var(--ink);
}

.compare-col p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: var(--s-3);
}

.compare-quote {
  margin-top: auto;
  padding-top: var(--s-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-3);
  border-top: 1px solid var(--line-soft);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.compare-quote--accent { color: var(--rust); border-color: rgba(178, 87, 56, 0.25); }

.compare-divider {
  display: none;
}

@media (min-width: 900px) {
  .compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    position: relative;
  }
  .compare-divider::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--line);
  }
  .compare-divider span {
    background: var(--bg-base);
    padding: var(--s-3) 0;
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--ink-3);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.04em;
  }
}

/* ━━━ 05 · DIFFERENCE TABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.table-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s-4);
}

@media (min-width: 900px) {
  .table-hint { display: none; }
}

.diff-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(-1 * var(--container-pad));
  padding: 0 var(--container-pad) var(--s-4);
}

.diff-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

.diff-table th,
.diff-table td {
  padding: var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  color: var(--ink-2);
}

.diff-table thead th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding-bottom: var(--s-4);
  padding-top: var(--s-5);
  border-bottom: 1px solid var(--ink-2);
}

.diff-table tbody th {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  width: 180px;
}

.diff-th--accent,
.diff-td--accent {
  background: rgba(178, 87, 56, 0.05);
  color: var(--ink);
  font-weight: 500;
}

.diff-th--accent { color: var(--rust); }

.diff-table tbody tr:hover td:not(.diff-td--accent) {
  background: rgba(20, 17, 14, 0.02);
}

/* ━━━ 06 · HIGHLIGHTS (ключевые элементы маршрута) ━━━━━ */
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--s-7);
}

@media (min-width: 600px) {
  .highlights { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}

@media (min-width: 1000px) {
  .highlights { grid-template-columns: 1fr 1fr 1fr; }
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.highlight-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--bg-stone);
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.highlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 17, 14, 0.15) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.highlight-media:hover img { transform: scale(1.04); }
.highlight-media:hover::after { opacity: 1; }

.highlight-body { padding-right: var(--s-2); }

.highlight-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rust);
  margin-bottom: var(--s-2);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.highlight h3 {
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.015em;
  margin-bottom: var(--s-2);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.highlight p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ━━━ 09 · GROUP — 3 принципа в ряд ━━━━━━━━━━━━━━━━━━━ */
.group-principles {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .group-principles {
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
  }
}

.group-principle {
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
  .group-principle {
    padding: var(--s-7) var(--s-5);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .group-principle:first-child { padding-left: 0; }
  .group-principle:last-child { padding-right: 0; border-right: none; }
}

.group-principle-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rust);
  margin-bottom: var(--s-4);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  letter-spacing: -0.02em;
}

.group-principle h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.015em;
  margin-bottom: var(--s-3);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 1.15;
  color: var(--ink);
}

.group-principle p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ━━━ 11 · STATE TABLE (до / после) ━━━━━━━━━━━━━━━━━━━━ */
.state-table {
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
}

.state-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 600px) {
  .state-row {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-7);
    align-items: baseline;
  }
}

.state-row div:first-child {
  font-size: 16px;
  color: var(--ink-3);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
}

.state-row div:last-child {
  font-size: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.state-row em {
  color: var(--rust);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 14px;
  margin-right: var(--s-2);
  opacity: .7;
}

.state-row--head {
  border-bottom: 1px solid var(--ink-2);
  padding: var(--s-3) 0;
}

.state-row--head div {
  font-family: var(--font-mono) !important;
  font-style: normal !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--ink-3) !important;
  font-variation-settings: normal !important;
}

/* ━━━ 12 · INCLUDED / NOT INCLUDED ━━━━━━━━━━━━━━━━━━━━ */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--s-7);
}

@media (min-width: 768px) {
  .included-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-9);
  }
}

.included-col {
  border-top: 1px solid var(--line);
  padding-top: var(--s-5);
}

.included-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.included-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--rust);
  line-height: 1;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.included-mark--out { color: var(--ink-3); }

.included-col h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.included-col ul {
  display: grid;
  gap: 0;
}

.included-col li {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.45;
  position: relative;
  padding-left: var(--s-5);
}

.included-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--s-3) + 8px);
  width: 12px;
  height: 1px;
  background: var(--line);
}

.included-col--out li { color: var(--ink-3); }

/* ━━━ 13 · NOT FOR ME ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.notlist {
  display: grid;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
  max-width: 720px;
}

.notlist li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  align-items: baseline;
}

.notlist li span {
  font-family: var(--font-mono);
  color: var(--ink-3);
  font-size: 14px;
}

/* ━━━ 14 · SAFETY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
}

@media (min-width: 600px) {
  .safety-grid {
    grid-template-columns: 1fr 1fr;
    border-top: none;
  }
}

@media (min-width: 1000px) {
  .safety-grid { grid-template-columns: repeat(4, 1fr); }
}

.safety-card {
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 600px) {
  .safety-card {
    padding: var(--s-6) var(--s-5) var(--s-6) 0;
    border-top: 1px solid var(--line);
  }
  .safety-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: var(--s-5); }
  .safety-card:nth-child(even) { padding-left: var(--s-5); }
}

@media (min-width: 1000px) {
  .safety-card {
    border-right: 1px solid var(--line);
    padding: var(--s-6) var(--s-5);
  }
  .safety-card:first-child { padding-left: 0; }
  .safety-card:nth-child(4) { border-right: none; padding-right: 0; }
  .safety-card:nth-child(odd),
  .safety-card:nth-child(even) {
    padding-left: var(--s-5);
    padding-right: var(--s-5);
  }
  .safety-card:first-child { padding-left: 0; }
  .safety-card:nth-child(4) { padding-right: 0; border-right: none; }
}

.safety-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--rust);
  margin-bottom: var(--s-3);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.safety-card h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 1.2;
}

.safety-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ━━━ 05 · HONEST (не волшебная таблетка) ━━━━━━━━━━━━━━ */
.honest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--s-8);
}

@media (min-width: 900px) {
  .honest-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-9);
  }
}

.honest-col {
  border-top: 1px solid var(--line);
  padding-top: var(--s-5);
}

.honest-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: var(--s-5);
}
.honest-h--yes { color: var(--rust); }

.honest-list {
  display: grid;
  gap: 0;
}

.honest-list li {
  position: relative;
  padding: var(--s-4) 0 var(--s-4) var(--s-6);
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}

.honest-list--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: calc(var(--s-4) - 2px);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-3);
  font-style: italic;
  line-height: 1;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.honest-list--yes li {
  color: var(--ink);
  font-size: 17px;
}

.honest-list--yes li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: calc(var(--s-4) + 2px);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--rust);
  font-weight: 500;
}

/* ━━━ 12 · SAFETY · 5-column grid (overrides 4-col) ━━━━━━ */
.safety-grid--5 {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .safety-grid--5 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .safety-grid--5 { grid-template-columns: repeat(5, 1fr); }

  .safety-grid--5 .safety-card {
    border-right: 1px solid var(--line);
    padding: var(--s-6) var(--s-4);
  }
  .safety-grid--5 .safety-card:first-child { padding-left: 0; }
  .safety-grid--5 .safety-card:last-child { padding-right: 0; border-right: none; }
  .safety-grid--5 .safety-card:nth-child(2),
  .safety-grid--5 .safety-card:nth-child(3),
  .safety-grid--5 .safety-card:nth-child(4) {
    padding-left: var(--s-4);
    padding-right: var(--s-4);
  }
}

/* Spotlight card для "связь на маршруте" */
.safety-card--alert {
  background: rgba(178, 87, 56, 0.06);
  padding-left: var(--s-5);
  padding-right: var(--s-5);
  border: 1px solid rgba(178, 87, 56, 0.25);
  margin-top: var(--s-3);
}

@media (min-width: 600px) {
  .safety-card--alert { margin-top: 0; }
}

@media (min-width: 1100px) {
  .safety-card--alert {
    border-right: 1px solid rgba(178, 87, 56, 0.25);
    margin-top: 0;
  }
}

.safety-card--alert .safety-num { color: var(--rust); }
.safety-card--alert h3 { color: var(--ink); }
.safety-card--alert p { color: var(--ink-2); }

/* ━━━ SELECTION ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
::selection {
  background: var(--rust);
  color: var(--paper);
}
