@import url('fonts.css?v=77d76acf1c');

/* ============================================================
   Офлайн-выезд «Мастер CFO» — 17 октября 2026
   ------------------------------------------------------------
   Референс-лок:
   Основа  — The Pop Manifesto: секции залиты цветом целиком,
             фото лежат на цвете острыми прямоугольниками,
             radius 0, теней нет, цвет и есть носитель.
   Взято у Charlie — монументальный дисплей на залитом экране,
             кнопки-таблетки с обводкой 2px, ритм «цвет / тьма».
   Взято у Empower — фотоплитки вокруг заголовка в первом экране.
   Отклонение — у Pop Manifesto текст чёрный на цвете. У нас
             белый: чёрный на электрическом синем не проходит
             по контрасту, а аудитории 40+ читать это на телефоне.
   Синий взят пипеткой с костюмов участников 2025 (тон 212°).
   ============================================================ */

:root {
  --blue: #17458f;
  --blue-lift: #3f74c8;
  --blue-ink: #0d2c5e;
  --navy: #071a3d;
  --navy-2: #050f26;

  --ink: #06101f;
  --ink-2: #44546e;
  --ink-3: #7b8aa1;
  --paper: #ffffff;
  --canvas: #edf0f6;

  --dusk-1: #dbe2ee;
  --dusk-2: #94a8c6;
  --dusk-3: #40608f;
  --dusk-4: #14386e;
  --dusk-5: #0a2148;
  --dusk-6: #050f26;

  --rule: rgba(6, 16, 31, 0.14);
  --rule-light: rgba(255, 255, 255, 0.22);

  --display: 'Unbounded', 'Onest', system-ui, sans-serif;
  --ui: 'Onest', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1400px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
section[id] { scroll-margin-top: 78px; }

.band { padding-block: clamp(4rem, 9vw, 8.5rem); }
.band--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ---------- Заливки ---------- */

.flood { background: var(--blue); color: #fff; }
.flood .lede, .flood .prose p { color: rgba(255, 255, 255, .82); }
.flood .prose strong { color: #fff; }

.dark { background: var(--navy-2); color: #fff; position: relative; overflow: hidden; }
.dark::before {
  content: ''; position: absolute; z-index: 0;
  width: 90vw; height: 90vw; max-width: 1100px; max-height: 1100px;
  left: -20vw; top: -30vw;
  background: radial-gradient(circle, rgba(23,69,143,.55) 0%, rgba(23,69,143,0) 68%);
  animation: drift 26s ease-in-out infinite alternate;
  pointer-events: none;
}
.dark > * { position: relative; z-index: 1; }
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(28vw, 22vw, 0) scale(1.25); }
}
@media (prefers-reduced-motion: reduce) { .dark::before { animation: none; } }
.dark .lede, .dark .prose p { color: rgba(255, 255, 255, .74); }
.dark .prose strong { color: #fff; }

.paper { background: var(--paper); }
.canvas { background: var(--canvas); }

/* ---------- Типографика ---------- */

.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
  margin: 0;
}

.display--hero { font-size: clamp(1.75rem, 3.3vw, 3.15rem); line-height: 1; letter-spacing: -0.042em; }
.display--xl   { font-size: clamp(1.6rem, 2.9vw, 2.75rem); line-height: 1.02; }
.display--lg   { font-size: clamp(1.3rem, 2.1vw, 1.95rem); letter-spacing: -0.04em; }
.display--md   { font-size: clamp(1.15rem, 1.9vw, 1.7rem); line-height: 1.08; letter-spacing: -0.035em; font-weight: 600; }

.label {
  font-family: var(--ui);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.label--muted { color: var(--ink-3); }
.label--onDark { color: rgba(255, 255, 255, .6); }
.label--onFlood { color: rgba(255, 255, 255, .78); }

.lede {
  font-size: clamp(1.125rem, 1rem + .7vw, 1.5rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 48ch;
  margin: 0;
}

p { text-wrap: pretty; }
.hr { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ---------- Кнопки ---------- */

.btn {
  --bc: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1;
  padding: 1.2em 2.6em;
  border: 2px solid var(--bc);
  border-radius: 999px;
  color: var(--bc);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--bc); color: #fff; }

.btn--solid { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--solid:hover { background: var(--blue-ink); border-color: var(--blue-ink); }

.btn--white { --bc: #fff; }
.btn--white:hover { background: #fff; color: var(--blue); }

.btn--fill-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn--fill-white:hover { background: transparent; color: #fff; }

.btn--lg { font-size: 1.0625rem; padding: 1.35em 3.2em; }
.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }

/* ---------- Шапка ---------- */

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
.topbar.is-stuck {
  background: var(--blue);
  border-bottom-color: rgba(255, 255, 255, .18);
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 64px; }
.brand {
  font-family: var(--display);
  font-size: .8125rem; font-weight: 600; letter-spacing: -0.02em;
  color: #fff; text-decoration: none; white-space: nowrap;
}
.brand span { opacity: .6; }
.topnav { display: flex; align-items: center; gap: 1.75rem; }
.topnav a { font-size: .875rem; color: rgba(255,255,255,.78); text-decoration: none; transition: color .18s ease; }
.topnav a:hover { color: #fff; }
.topbar .btn { padding: .75em 1.6em; font-size: .875rem; border-width: 2px; }
@media (max-width: 940px) { .topnav { display: none; } }

/* ---------- Первый экран: синяя заливка ---------- */

.hero { background: var(--blue); color: #fff; padding-block: clamp(6rem, 9vw, 8rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }

.hero__kicker { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: baseline; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__title { color: #fff; }
.hero__title em { font-style: normal; color: #fff; }

.hero__lede {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  max-width: 46ch;
  font-size: clamp(1.0625rem, 1rem + .55vw, 1.35rem);
  line-height: 1.42;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
}

/* фотоплитки, острые углы, лежат прямо на синем */
.hero__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.5rem, 1vw, .875rem); }
.hero__tiles figure { margin: 0; overflow: hidden; background: var(--blue-ink); }
.hero__tiles img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero__tiles figure:nth-child(1) { grid-column: span 2; aspect-ratio: 16 / 8; }
.hero__tiles figure:nth-child(2),
.hero__tiles figure:nth-child(3) { aspect-ratio: 1 / 1; }
@media (max-width: 980px) { .hero__tiles figure:nth-child(1) { aspect-ratio: 16 / 7; } }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(2.25rem, 4.5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .28);
}
.meta__label { font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0 0 .5rem; }
.meta__value {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.05; letter-spacing: -0.04em; color: #fff; margin: 0;
}
.meta__note { font-size: .875rem; color: rgba(255,255,255,.66); margin: .45rem 0 0; }

.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem; margin-top: clamp(2rem, 4vw, 2.75rem); }
.hero__cta .seats { flex: 1 1 240px; max-width: 380px; }

/* счётчик мест */
.seats { flex: 1 1 300px; min-width: 240px; max-width: 440px; font-variant-numeric: lining-nums tabular-nums; }
.seats__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .8125rem; margin-bottom: .625rem; color: rgba(255,255,255,.7); }
.seats__count { color: #fff; font-weight: 500; }
.seats__track { height: 4px; background: rgba(255,255,255,.28); position: relative; overflow: hidden; }
.seats__fill { position: absolute; inset: 0 auto 0 0; width: 0; background: #fff; transition: width 1.2s cubic-bezier(.16,1,.3,1); }

.seats--onLight .seats__top, #price .seats__top { color: var(--ink-2); }
.seats--onLight .seats__count, #price .seats__count { color: var(--ink); }
.seats--onLight .seats__track, #price .seats__track { background: var(--rule); }
.seats--onLight .seats__fill, #price .seats__fill { background: var(--blue); }

/* ---------- Бегущая строка городов ---------- */

.ticker { background: var(--navy-2); color: #fff; padding-block: clamp(1.1rem, 2vw, 1.6rem); overflow: hidden; }
.ticker__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker__group { display: flex; align-items: center; flex: none; }
.ticker__item {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.1rem, 2.1vw, 1.9rem);
  letter-spacing: -0.04em;
  padding-inline: clamp(.75rem, 1.6vw, 1.5rem);
  white-space: nowrap;
}
.ticker__dot { width: 6px; height: 6px; background: var(--blue-lift); flex: none; }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; width: 100%; overflow-x: auto; }
}

/* ---------- Факты ---------- */

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.fact { padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1rem, 2vw, 2rem) clamp(1.75rem, 3.5vw, 2.75rem) 0; }
.fact + .fact { border-left: 1px solid var(--rule); padding-left: clamp(1rem, 2vw, 2rem); }
.fact__n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: .95; letter-spacing: -0.055em; color: var(--blue); margin: 0 0 .625rem;
  font-variant-numeric: lining-nums;
}
.fact__t { font-size: .9375rem; color: var(--ink-2); margin: 0; max-width: 26ch; }
@media (max-width: 720px) {
  .fact + .fact { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; }
  .fact { padding-right: 0; }
}

/* ---------- Разворот ---------- */

.spread { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: start; }
@media (max-width: 940px) { .spread { grid-template-columns: 1fr; } }
.spread__aside { position: sticky; top: 96px; }
@media (max-width: 940px) { .spread__aside { position: static; } }

.prose > * + * { margin-top: 1.15em; }
.prose p { color: var(--ink-2); font-size: clamp(1.0625rem, 1rem + .35vw, 1.2rem); line-height: 1.52; }
.prose strong { font-weight: 500; color: var(--ink); }

/* ---------- Программа: свет уходит в вечер ---------- */

.day__head { padding-block: clamp(3rem, 6vw, 5rem); }
.slot { border-top: 1px solid var(--rule); }
.slot__in {
  display: grid;
  grid-template-columns: minmax(96px, .5fr) minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding-block: clamp(1.75rem, 3.6vw, 3rem);
  align-items: start;
}
.slot__time { font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin: .4rem 0 0; white-space: nowrap; }
.slot__title { margin: 0; color: inherit; }
.slot__who { font-size: .9375rem; color: var(--ink-3); margin: .5rem 0 0; }
.slot__text { margin: 0; color: var(--ink-2); font-size: 1.0625rem; }
@media (max-width: 860px) {
  .slot__in { grid-template-columns: 1fr; gap: .75rem; }
  .slot__time { margin-top: 0; }
}

.slot--s1 { background: var(--canvas); }
.slot--s2 { background: var(--dusk-1); }
.slot--s3 { background: var(--dusk-2); }
.slot--s4 { background: var(--dusk-3); border-top-color: rgba(255,255,255,.18); }
.slot--s5 { background: var(--dusk-4); border-top-color: rgba(255,255,255,.18); }
.slot--s6 { background: var(--dusk-5); border-top-color: rgba(255,255,255,.18); }

.slot--s3 .slot__text { color: #10233d; }
.slot--s3 .slot__time, .slot--s3 .slot__who { color: #223b5c; }

.slot--s4, .slot--s5, .slot--s6 { color: #fff; }
.slot--s4 .slot__text, .slot--s5 .slot__text, .slot--s6 .slot__text { color: rgba(255,255,255,.82); }
.slot--s4 .slot__time, .slot--s5 .slot__time, .slot--s6 .slot__time,
.slot--s4 .slot__who,  .slot--s5 .slot__who,  .slot--s6 .slot__who { color: rgba(255,255,255,.6); }

.day__foot { background: var(--navy-2); color: rgba(255,255,255,.62); font-size: .9375rem; padding-block: 1.6rem; }
.day__foot .wrap { display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between; }

/* ---------- Спикеры ---------- */

.speakers { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); }

.hosts { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.hosts__photo { margin: 0; }
.hosts__photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: center 34%; }
.hosts__photo figcaption { margin-top: .875rem; font-size: .8125rem; color: rgba(255,255,255,.5); }
.hosts__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(2rem, 4vw, 4rem); }
@media (max-width: 760px) { .hosts__photo img { aspect-ratio: 16 / 10; } }

.speaker {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: start;
  padding-top: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--rule-light);
}
@media (max-width: 860px) { .speaker { grid-template-columns: 1fr; } }
.speaker__photo { margin: 0; overflow: hidden; background: var(--dusk-4); }
.speaker__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }

.speaker__role { margin: 0 0 .875rem; }
.speaker__name { margin: 0 0 1rem; color: #fff; }
.speaker__topic {
  font-family: var(--ui); font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.28; letter-spacing: -0.02em; color: #fff; margin: 0 0 1.25rem; text-wrap: balance;
}
.speaker__bio { margin: 0 0 1.5rem; color: rgba(255,255,255,.74); }

.creds { list-style: none; margin: 0; padding: 0; display: grid; gap: .625rem; }
.creds li { position: relative; padding-left: 1.5rem; font-size: .9375rem; color: rgba(255,255,255,.66); }
.creds li::before { content: ''; position: absolute; left: 0; top: .7em; width: .5rem; height: 1px; background: rgba(255,255,255,.45); }

/* ---------- Галерея ---------- */

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.5rem, 1vw, .875rem); }
.gallery figure { margin: 0; overflow: hidden; background: var(--dusk-1); }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.g-a { grid-column: span 7; aspect-ratio: 3 / 2; }
.g-b { grid-column: span 5; aspect-ratio: 3 / 2.6; }
.g-c, .g-d, .g-e { grid-column: span 4; aspect-ratio: 1 / 1; }
@media (max-width: 760px) {
  .g-a, .g-b { grid-column: span 12; }
  .g-c, .g-d { grid-column: span 6; }
  .g-e { display: none; }
}

/* ---------- Отзывы: текст и фото в одной сетке ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 1000px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .quotes { grid-template-columns: 1fr; } }

.quote {
  margin: 0;
  background: var(--canvas);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.quote p {
  font-family: var(--ui);
  font-weight: 300;
  font-size: clamp(1rem, .95rem + .3vw, 1.1875rem);
  line-height: 1.42;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.quote footer { font-size: .8125rem; color: var(--ink-3); }

.quote-photo {
  margin: 0; background: var(--dusk-1); overflow: hidden;
  position: relative; min-height: 260px;   /* фото не задаёт высоту ряда */
}
.quote-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }

/* ---------- Видео ---------- */

.film { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Место ---------- */

.venue { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(.5rem, 1vw, .875rem); }
.venue figure { margin: 0; overflow: hidden; }
.venue img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.6) contrast(1.06) brightness(.95) hue-rotate(-8deg); }

/* ---------- Цена: вторая синяя заливка ---------- */

.price__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 940px) { .price__grid { grid-template-columns: 1fr; } }

.price__now { margin: 0 0 .75rem; }
.price__value {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: .9; letter-spacing: -0.06em; color: var(--blue);
  font-variant-numeric: lining-nums tabular-nums;
}
.price__until { font-size: .9375rem; color: var(--ink-2); margin: 0 0 2rem; }

.ladder { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--rule); font-variant-numeric: lining-nums tabular-nums; }
.ladder li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--rule); font-size: 1rem; color: var(--ink-2); }
.ladder li[data-state="now"] { color: var(--blue); font-weight: 500; }
.ladder li[data-state="past"] { color: var(--ink-3); text-decoration: line-through; }

.timer { display: flex; gap: clamp(1rem, 3vw, 2.5rem); margin: 2rem 0 0; }
.timer__n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: .9; letter-spacing: -0.055em; color: var(--ink); display: block;
  font-variant-numeric: lining-nums tabular-nums;
}
.timer__l { font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

.includes { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.includes li { padding: .875rem 0 .875rem 1.75rem; border-bottom: 1px solid var(--rule); position: relative; font-size: 1rem; color: var(--ink-2); }
.includes li::before { content: ''; position: absolute; left: 0; top: 1.45em; width: .625rem; height: 1px; background: var(--blue); }

.bonus { margin-top: 2rem; border: 2px solid var(--blue); padding: clamp(1.5rem, 3vw, 2rem); }
.bonus__tag { display: inline-block; font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin: 0 0 .75rem; }
.bonus h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.08; letter-spacing: -0.04em; margin: 0 0 .625rem; color: var(--ink); }
.bonus p { margin: 0; font-size: .9375rem; color: var(--ink-2); }

.fineprint { font-size: .875rem; color: var(--ink-3); margin: 1.5rem 0 0; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: clamp(1.15rem, 2.2vw, 1.6rem) 3rem clamp(1.15rem, 2.2vw, 1.6rem) 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.04em; line-height: 1.18; position: relative; transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary::after, .faq summary::before {
  content: ''; position: absolute; right: .5rem; top: 50%;
  width: 14px; height: 2px; background: var(--blue); transition: transform .25s ease, opacity .25s ease;
}
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0deg); opacity: 0; }
.faq__body { padding: 0 0 clamp(1.15rem, 2.2vw, 1.6rem); max-width: 64ch; }
.faq__body p { margin: 0 0 .875rem; color: var(--ink-2); }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--blue); }

/* ---------- Финал ---------- */

.final { text-align: center; }
.final .display { color: #fff; }
.final__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2rem; margin: 2rem 0 0; color: rgba(255,255,255,.68); font-size: .9375rem; }
.final .btn-row { justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

.contacts { border-top: 1px solid rgba(255,255,255,.24); margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2rem, 4vw, 3rem); }
.contacts__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.contacts .btn { padding: .95em 2rem; font-size: .9375rem; }

.footer { background: var(--navy-2); color: rgba(255,255,255,.42); font-size: .8125rem; padding-block: 2rem 3rem; border-top: 1px solid rgba(255,255,255,.14); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; }
.footer a { color: rgba(255,255,255,.6); }

/* ---------- Липкая полоса покупки ---------- */

.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
  background: var(--blue); border-top: 1px solid rgba(255,255,255,.24);
}
.buybar__price { color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.04em; white-space: nowrap; font-variant-numeric: lining-nums; }
.buybar__note { display: block; font-family: var(--ui); font-size: .75rem; color: rgba(255,255,255,.7); font-weight: 300; letter-spacing: 0; }
.buybar .btn { padding: .9em 1.6rem; font-size: .9375rem; flex-shrink: 0; }
@media (max-width: 760px) { .buybar { display: flex; } body { padding-bottom: 4.6rem; } }

/* ---------- Появление ---------- */

.rise { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.rise.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Портрет в левой колонке разворота */
.aside-photo { margin: clamp(1.75rem, 3vw, 2.5rem) 0 0; max-width: 380px; }
.aside-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; }
.aside-photo figcaption { margin-top: .75rem; font-size: .8125rem; color: rgba(255,255,255,.6); }
@media (max-width: 940px) { .aside-photo { max-width: 100%; } }

/* ============================================================
   Слайдер: галерея 2025 года. Тянется мышью и пальцем.
   ============================================================ */

.slider { position: relative; }
.slider__viewport {
  display: flex;
  gap: clamp(.5rem, 1vw, .875rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: .25rem;
}
.slider__viewport::-webkit-scrollbar { display: none; }
.slider__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider__viewport.is-dragging * { pointer-events: none; }

.slide { flex: 0 0 auto; scroll-snap-align: start; margin: 0; width: clamp(260px, 42vw, 620px); }
.slide img { width: 100%; height: clamp(260px, 33vw, 450px); object-fit: cover; object-position: center 62%; background: var(--dusk-1); }
.slide--tall { width: clamp(200px, 25vw, 340px); }


.slider__bar { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.5rem; }
.slider__track { flex: 1; height: 2px; background: var(--rule); position: relative; }
.slider__thumb { position: absolute; inset: 0 auto 0 0; width: 25%; background: var(--blue); transition: transform .1s linear; }
.slider__nav { display: flex; gap: .5rem; }
.slider__btn {
  width: 46px; height: 46px; border-radius: 999px;
  border: 2px solid var(--blue); background: transparent; color: var(--blue);
  cursor: pointer; display: grid; place-items: center;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}
.slider__btn:hover { background: var(--blue); color: #fff; }
.slider__btn[disabled] { opacity: .3; cursor: default; }
.slider__btn svg { width: 18px; height: 18px; }

/* ============================================================
   Мерч: картинки вперёд, текст минимальный
   ============================================================ */

.merch {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(.75rem, 1.4vw, 1.25rem);
}
@media (max-width: 1100px) { .merch { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .merch { grid-template-columns: repeat(2, 1fr); } }

.merch__card { margin: 0; }
.merch__img {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--paper);
  overflow: hidden;
}
.merch__img img { width: 100%; height: 100%; object-fit: contain; }
.merch__more {
  border: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  aspect-ratio: 1 / 1;
}
.merch__more p { margin: 0; font-size: .9375rem; line-height: 1.35; color: var(--ink-2); }
@media (max-width: 620px) { .merch__more { aspect-ratio: auto; min-height: 140px; } }
.merch__cap {
  margin-top: .875rem;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.merch__cap span { display: block; margin-top: .25rem; font-size: .8125rem; font-weight: 300; color: var(--ink-3); }

.dress { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .dress { grid-template-columns: 1fr; } }
.dress__swatches { display: flex; gap: .5rem; margin: 1.75rem 0 0; }
.dress__sw { width: 56px; height: 56px; flex: none; }
.dress__photo { margin: 0; }
.dress__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 64%; }

/* ============================================================
   Цифры, которые досчитываются при прокрутке
   ============================================================ */

.fact__n[data-count] { font-variant-numeric: lining-nums tabular-nums; }

.cap-light { color: var(--ink-3) !important; }
.aside-photo figcaption.cap-light { color: var(--ink-3); }

.ticker__lead { padding-bottom: 1rem; }
.ticker__lead .label { text-transform: none; letter-spacing: .01em; font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.72); max-width: 62ch; }

/* Портрет в боковой колонке разворота: высота под текст, без перекосов */
.aside-photo { margin: clamp(1.75rem, 3vw, 2.5rem) 0 0; max-width: 420px; }
.aside-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 22%; }
.aside-photo--wide img { aspect-ratio: 4 / 3; }
.aside-photo figcaption { margin-top: .75rem; font-size: .8125rem; color: var(--ink-3); }
@media (max-width: 940px) { .aside-photo { max-width: 100%; } }

/* Блок спикера: фото тянется по высоте текста, а не наоборот */
.speaker { align-items: stretch; }
.speaker__photo { height: 100%; }
.speaker__photo img { height: 100%; aspect-ratio: auto; min-height: 320px; }
