/* Александр Резников — лендинг, версия 2 (адаптивная) */
:root {
  --ink: #151617;
  --ink-2: #1F2022;
  --ink-3: #2A2B2E;
  --stone: #F2EFEA;
  --greige: #E4DFD8;
  --line-l: #D5CEC5;
  --line-l2: #C9C1B7;
  --line-d: rgba(242, 239, 234, 0.14);
  --muted-l: #5F564E;
  --muted-d: #A8A09A;
  --soft-d: #CFC8C1;
  --accent: #8E2A23;
  --accent-hover: #A5332B;
  --accent-on-dark: #E06A5E;
  --rec: #E0453A;
  --pad: clamp(20px, 5.6vw, 80px);
  --sec: clamp(72px, 9vw, 120px);
  --max: 1280px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--ink); color: var(--stone); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--pad)); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.sec { padding-top: var(--sec); padding-bottom: var(--sec); position: relative; }
.dark { background: var(--ink); color: var(--stone); }
.dark-2 { background: var(--ink-2); color: var(--stone); }
.light { background: var(--stone); color: var(--ink-2); }
.greige { background: var(--greige); color: var(--ink-2); }

.mono { font-family: var(--mono); font-weight: 500; }
.si { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -0.02em; }
.nw { white-space: nowrap; }
.acc { color: var(--accent); }
.dark .acc, .dark-2 .acc { color: var(--accent-on-dark); }

.eyebrow { font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.dark .eyebrow, .dark-2 .eyebrow { color: var(--muted-d); }
.dark .eyebrow.hot, .dark-2 .eyebrow.hot { color: var(--accent-on-dark); }

.h2 { font-size: clamp(40px, 5.6vw, 80px); line-height: 0.98; font-weight: 800; letter-spacing: -0.045em; }
.h2 .si { font-weight: 500; }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.65; color: var(--muted-l); }
.dark .lead, .dark-2 .lead { color: var(--muted-d); }

.sh { display: flex; gap: 80px; align-items: flex-end; margin-bottom: clamp(40px, 5vw, 72px); }
.sh > :first-child { flex: 0 1 auto; }
.sh .lead { flex: 1 1 360px; max-width: 560px; padding-bottom: 8px; }

/* ---------- Кнопки ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 58px; padding: 0 30px; border-radius: 999px; font-size: 17px; font-weight: 600; text-decoration: none; border: 1px solid transparent; transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease; cursor: pointer; }
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); flex-shrink: 0; }
.btn-p { background: var(--accent); color: #fff; }
.btn-ol { border-color: rgba(242, 239, 234, 0.5); color: var(--stone); }
.btn-od { border-color: var(--ink-2); color: var(--ink-2); }
.btn:active { transform: scale(0.98); }
.btns { display: flex; flex-wrap: wrap; gap: 14px; }
@media (hover: hover) {
  .btn:hover svg { transform: translateX(6px); }
  .btn-p:hover { background: var(--accent-hover); color: #fff; }
  .btn-ol:hover { background: var(--stone); color: var(--ink); border-color: var(--stone); }
  .btn-od:hover { background: var(--ink); color: var(--stone); }
}

/* ---------- Шапка ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(21, 22, 23, 0.82); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(242, 239, 234, 0.08); }
.hdr .wrap { height: 76px; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--stone); }
.logo .mark { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(242, 239, 234, 0.4); font-family: var(--serif); font-style: italic; font-size: 17px; }
.logo .name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a.nl { position: relative; font-size: 15px; font-weight: 500; color: var(--muted-d); text-decoration: none; transition: color .25s ease; }
.nav a.nl::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
@media (hover: hover) { .nav a.nl:hover { color: var(--stone); } .nav a.nl:hover::after { transform: scaleX(1); transform-origin: left; } }
.nav .btn { min-height: 46px; padding: 0 22px; font-size: 15px; margin-left: 6px; }
.burger { display: none; margin-left: auto; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(242, 239, 234, 0.3); background: none; color: var(--stone); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.menu-open .burger span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------- Первый экран ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(28px, 5vw, 64px); padding-bottom: clamp(56px, 7vw, 104px); }
.grain { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.07; mix-blend-mode: screen; }
.hero .bg-year { position: absolute; right: 0; bottom: -70px; font-size: clamp(160px, 26vw, 380px); line-height: 1; font-weight: 800; letter-spacing: -0.06em; color: transparent; -webkit-text-stroke: 1px rgba(242, 239, 234, 0.07); pointer-events: none; user-select: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 528px) minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: start; }
.photo-frame { position: relative; margin-right: 28px; margin-bottom: 28px; }
.photo-frame::before { content: ""; position: absolute; left: 28px; top: 28px; right: -28px; bottom: -28px; border: 1px solid var(--accent); pointer-events: none; }
.photo-frame .ph { position: relative; overflow: hidden; background: var(--ink-2); aspect-ratio: 4 / 5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.hero-text { padding-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.kicker { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-d); }
.kicker .ln { display: block; width: 56px; height: 1px; background: var(--accent-on-dark); }
.h1 { font-size: clamp(56px, 8vw, 116px); line-height: 0.94; font-weight: 800; letter-spacing: -0.05em; }
.h1 span { display: block; }
.h1 .si { color: var(--accent-on-dark); padding-left: 0.55em; letter-spacing: -0.03em; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 18px; border: 1px solid rgba(242, 239, 234, 0.22); border-radius: 999px; font-size: 15px; font-weight: 600; }
.hero p.lead { max-width: 540px; }
.cue { margin-top: 18px; display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #8A8580; }
.cue .bar { position: relative; width: 1px; height: 44px; background: rgba(242, 239, 234, 0.12); overflow: hidden; }
.cue .bar i { position: absolute; inset: 0; background: var(--stone); }

/* ---------- Бегущая строка ---------- */
.marquee { overflow: hidden; padding: clamp(16px, 2vw, 26px) 0; border-top: 1px solid rgba(242, 239, 234, 0.1); border-bottom: 1px solid rgba(242, 239, 234, 0.1); background: var(--ink); }
.mq { display: flex; width: max-content; }
.mq-g { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 36px); padding-right: clamp(20px, 2.5vw, 36px); font-size: clamp(28px, 3.9vw, 56px); line-height: 1; font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; white-space: nowrap; }
.mq-g .o { color: transparent; -webkit-text-stroke: 1px rgba(242, 239, 234, 0.5); }
.mq-g .d { display: block; width: 0.25em; height: 0.25em; background: var(--accent); transform: rotate(45deg); flex-shrink: 0; }

/* ---------- Цифры ---------- */
.stats { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, .92fr) minmax(0, 1fr) minmax(0, 1.16fr); }
.stat { padding: 4px 28px; border-left: 1px solid var(--line-l); display: flex; flex-direction: column; gap: 18px; }
.stat:first-child { padding-left: 0; border-left: 0; }
.stat .n { font-size: clamp(52px, 5.6vw, 80px); line-height: 0.9; font-weight: 800; letter-spacing: -0.05em; white-space: nowrap; }
.stat .n b { font-weight: 800; color: var(--accent); }
.stat .n .si { font-size: 0.38em; letter-spacing: 0; color: var(--accent); margin-left: 8px; }
.stat .t { font-size: 16px; line-height: 1.5; color: var(--muted-l); }
.stat .ix { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted-l); }

/* ---------- Видео ---------- */
.recbar { display: flex; align-items: center; gap: 22px; margin-bottom: 36px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-d); }
.recbar .r { display: flex; align-items: center; gap: 10px; color: var(--stone); }
.dotrec { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--rec); }
.recbar .sp { flex: 1; }
.vf { position: relative; margin-bottom: 40px; }
.vf i { position: absolute; width: 34px; height: 34px; border: 0 solid rgba(242, 239, 234, 0.5); pointer-events: none; }
.vf i:nth-of-type(1) { left: -14px; top: -14px; border-left-width: 1px; border-top-width: 1px; }
.vf i:nth-of-type(2) { right: -14px; top: -14px; border-right-width: 1px; border-top-width: 1px; }
.vf i:nth-of-type(3) { left: -14px; bottom: -14px; border-left-width: 1px; border-bottom-width: 1px; }
.vf i:nth-of-type(4) { right: -14px; bottom: -14px; border-right-width: 1px; border-bottom-width: 1px; }
.vf video { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; background: var(--ink-2); }
.full { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 20px; }
.full b { font-size: 21px; }
.full span { font-size: 16px; color: var(--muted-d); }
.plats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.plat { display: flex; align-items: center; gap: 24px; min-height: 148px; padding: 24px 36px; border: 1px solid rgba(242, 239, 234, 0.16); border-radius: 4px; text-decoration: none; color: var(--stone); transition: background-color .35s ease, color .35s ease, transform .45s var(--ease); }
.plat .tx { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.plat .sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-d); transition: color .35s ease; }
.plat .nm { font-size: clamp(30px, 3vw, 44px); line-height: 1; font-weight: 800; letter-spacing: -0.04em; }
.plat .circ { width: 64px; height: 64px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(242, 239, 234, 0.4); border-radius: 50%; transition: transform .45s var(--ease), background-color .35s ease, border-color .35s ease, color .35s ease; }
.plat .circ svg { width: 22px; height: 22px; }
@media (hover: hover) {
  .plat:hover { background: var(--stone); color: var(--ink); transform: translateY(-6px); }
  .plat:hover .sub { color: var(--muted-l); }
  .plat:hover .circ { transform: rotate(-45deg); background: var(--accent); border-color: var(--accent); color: #fff; }
}

/* ---------- Путь ---------- */
.tl { position: relative; }
.tl .rail, .tl .fill { position: absolute; top: 0; bottom: 0; left: 289px; width: 1px; background: var(--line-l); }
.tl .fill { left: 288px; width: 3px; background: var(--accent); transform-origin: top; }
.tl-row { position: relative; display: flex; padding: 30px 0; }
.tl-row .yr { width: 250px; flex-shrink: 0; font-size: 52px; line-height: 1; font-weight: 800; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px var(--ink-2); transition: color .35s ease, -webkit-text-stroke-color .35s ease; }
.tl-row .dt { position: absolute; left: 284px; top: 50px; width: 11px; height: 11px; border-radius: 50%; background: var(--stone); border: 2px solid var(--accent); transition: transform .3s ease, background-color .3s ease; }
.tl-row.now .dt { background: var(--accent); }
.tl-row .tx { margin-left: 80px; max-width: 820px; font-size: 19px; line-height: 1.65; }
@media (hover: hover) {
  .tl-row:hover .yr { color: var(--accent); -webkit-text-stroke-color: var(--accent); }
  .tl-row:hover .dt { background: var(--accent); transform: scale(1.4); }
}

/* ---------- Истории ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { position: relative; overflow: hidden; padding: 44px 36px 40px; background: var(--ink-2); border: 1px solid rgba(242, 239, 234, 0.08); border-radius: 4px; display: flex; flex-direction: column; gap: 22px; transition: transform .45s var(--ease), border-color .35s ease; }
.card .big { position: absolute; right: 20px; top: 8px; font-size: 128px; line-height: 1; font-weight: 800; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1px rgba(242, 239, 234, 0.32); transition: color .35s ease, -webkit-text-stroke-color .35s ease; pointer-events: none; }
.card .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-on-dark); }
.card h3 { margin-top: 64px; font-size: 32px; line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; }
.card p { font-size: 17px; line-height: 1.7; color: var(--soft-d); }
.quote { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(242, 239, 234, 0.12); display: flex; gap: 14px; }
.quote .qm { font-family: var(--serif); font-style: italic; font-size: 56px; line-height: 0.8; color: var(--accent-on-dark); }
.quote .qt { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; }
@media (hover: hover) {
  .card:hover { transform: translateY(-8px); border-color: rgba(224, 106, 94, 0.7); }
  .card:hover .big { color: var(--accent-on-dark); -webkit-text-stroke-color: var(--accent-on-dark); }
}

/* ---------- Принципы ---------- */
.pr { display: flex; gap: 96px; align-items: flex-start; }
.pr-side { position: sticky; top: 124px; width: 470px; flex-shrink: 0; }
.pr-side .h2 { font-size: clamp(40px, 4.5vw, 64px); line-height: 1; margin-bottom: 40px; }
.tlink { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: var(--ink-2); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 6px; }
.tlink svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
@media (hover: hover) { .tlink:hover svg { transform: translateX(6px); } }
.pr-list { flex: 1; }
.pr-row { display: flex; gap: 36px; align-items: flex-start; padding: 36px 0; border-top: 1px solid var(--line-l); transition: padding-left .4s var(--ease), background-color .35s ease; }
.pr-row:last-child { border-bottom: 1px solid var(--line-l); }
.pr-row .no { width: 96px; flex-shrink: 0; font-size: 80px; line-height: 0.85; font-weight: 800; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1.5px var(--ink-2); transition: color .35s ease, -webkit-text-stroke-color .35s ease; }
.pr-row h3 { font-size: 28px; line-height: 1.2; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 10px; }
.pr-row p { font-size: 18px; line-height: 1.65; color: var(--muted-l); }
@media (hover: hover) {
  .pr-row:hover { padding-left: 20px; background: var(--greige); }
  .pr-row:hover .no { color: var(--accent); -webkit-text-stroke-color: var(--accent); }
}

/* ---------- Клуб ---------- */
.club { border-top: 3px solid var(--accent); }
.club-head { display: grid; grid-template-columns: minmax(0, 760px) minmax(0, 1fr); gap: 80px; align-items: start; margin-bottom: 64px; }
.club-head .h2 { font-size: clamp(40px, 5vw, 72px); }
.club-head .txt { display: flex; flex-direction: column; gap: 22px; padding-top: 10px; font-size: 19px; line-height: 1.7; }
.club-head .txt p + p { color: var(--muted-d); }
.photo-wide { position: relative; overflow: hidden; border-radius: 4px; margin-bottom: 56px; aspect-ratio: 1280 / 540; }
.photo-wide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform 1.4s var(--ease); }
@media (hover: hover) { .photo-wide:hover img { transform: scale(1.045); } }
.glass { position: absolute; left: 28px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 12px 20px; background: rgba(21, 22, 23, 0.72); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(242, 239, 234, 0.14); border-radius: 999px; font-size: 15px; font-weight: 600; }
.glass::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-on-dark); }
.res { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 64px; }
.re { padding: 36px 30px; background: var(--ink-2); border: 1px solid rgba(242, 239, 234, 0.08); border-radius: 4px; display: flex; flex-direction: column; gap: 14px; transition: background-color .35s ease, color .35s ease, transform .45s var(--ease); }
.re svg { width: 34px; height: 34px; stroke: var(--accent-on-dark); transition: stroke .35s ease; }
.re h3 { margin-top: 26px; font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.re p { font-size: 16px; line-height: 1.6; color: var(--muted-d); transition: color .35s ease; }
@media (hover: hover) {
  .re:hover { background: var(--stone); color: var(--ink); transform: translateY(-8px); }
  .re:hover p { color: var(--muted-l); }
  .re:hover svg { stroke: var(--accent); }
}
.sublbl { font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 24px; }
.light .sublbl, .greige .sublbl { color: var(--muted-l); margin-bottom: 18px; }
.cards2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 64px; }
.cards2 .card { padding: 40px 38px; gap: 20px; }
.cards2 h3 { margin-top: 0; font-size: 30px; line-height: 1.15; }
.who { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(242, 239, 234, 0.12); display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--muted-d); }
.av { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--stone); color: var(--ink); font-family: var(--serif); font-style: italic; font-size: 17px; }
.close { display: flex; align-items: flex-end; gap: 48px; padding-top: 56px; border-top: 1px solid rgba(242, 239, 234, 0.12); }
.close .qt { flex: 1; max-width: 820px; font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3.1vw, 44px); line-height: 1.2; letter-spacing: -0.01em; }
.close .act { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }
.close .act span { font-size: 16px; color: var(--muted-d); }

/* ---------- Списки со строками ---------- */
.rows { display: flex; flex-direction: column; }
.rw { display: flex; gap: 22px; align-items: baseline; padding: 24px 0; border-top: 1px solid var(--line-l); transition: padding-left .4s var(--ease), background-color .35s ease; }
.rw:last-child { border-bottom: 1px solid var(--line-l); }
.rw .ix { width: 34px; flex-shrink: 0; font-family: var(--mono); font-size: 13px; color: var(--accent); }
.rw .tx { flex: 1; }
.rw .ar { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--accent); opacity: 0; transform: translateX(-10px); transition: opacity .35s ease, transform .35s ease; align-self: center; }
.dark .rw, .dark-2 .rw { border-color: var(--line-d); }
.dark .rw .ix, .dark-2 .rw .ix { color: var(--accent-on-dark); }
.dark .rw .ar, .dark-2 .rw .ar { stroke: var(--accent-on-dark); }
@media (hover: hover) {
  .rw:hover { padding-left: 20px; background: var(--greige); }
  .greige .rw:hover { background: var(--stone); }
  .dark .rw:hover, .dark-2 .rw:hover { background: var(--ink-3); }
  .rw:hover .ar { opacity: 1; transform: none; }
}

/* ---------- Выступления ---------- */
.talks { display: flex; gap: 64px; align-items: flex-start; }
.talks .rows { flex: 1; }
.talks .rw .tx { font-size: 21px; line-height: 1.45; font-weight: 600; letter-spacing: -0.01em; }
.talks aside { width: 520px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }
.stub { position: relative; aspect-ratio: 16 / 9; background: var(--ink-2); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--stone); }
.stub i { position: absolute; width: 24px; height: 24px; border: 0 solid rgba(242, 239, 234, 0.5); }
.stub i:nth-of-type(1) { left: 18px; top: 18px; border-left-width: 1px; border-top-width: 1px; }
.stub i:nth-of-type(2) { right: 18px; top: 18px; border-right-width: 1px; border-top-width: 1px; }
.stub i:nth-of-type(3) { left: 18px; bottom: 18px; border-left-width: 1px; border-bottom-width: 1px; }
.stub i:nth-of-type(4) { right: 18px; bottom: 18px; border-right-width: 1px; border-bottom-width: 1px; }
.stub .r { position: absolute; left: 50px; top: 21px; display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; }
.stub .r .dotrec { width: 8px; height: 8px; }
.stub .cap { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--muted-d); text-align: center; padding: 0 20px; }
.invite { padding: 36px 34px; background: var(--ink); color: var(--stone); border-radius: 4px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.invite h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.invite p { font-size: 16px; line-height: 1.7; color: var(--muted-d); }

/* ---------- Личная встреча ---------- */
.meet { display: flex; gap: 96px; align-items: center; }
.meet .txt { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
.meet .h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.meet .txt > p { max-width: 620px; font-size: 19px; line-height: 1.7; color: var(--soft-d); }
.meet .rows { width: 100%; max-width: 640px; }
.meet .rw { font-size: 18px; line-height: 1.55; padding: 20px 0; }
.meet .price { max-width: 640px; font-size: 17px; line-height: 1.7; color: var(--muted-d); }
.meet .price b { color: var(--stone); font-weight: 800; }
.meet .pic { position: relative; width: 480px; flex-shrink: 0; margin-left: 28px; margin-bottom: 28px; }
.meet .pic::before { content: ""; position: absolute; left: -28px; top: 28px; right: 28px; bottom: -28px; border: 1px solid var(--accent); pointer-events: none; }
.meet .pic .ph { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 2px; }
.meet .pic img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; transition: transform 1.4s var(--ease); }
@media (hover: hover) { .meet .pic:hover img { transform: scale(1.045); } }

/* ---------- Фонд ---------- */
.fund { display: flex; gap: 96px; align-items: flex-start; }
.fund .side { width: 540px; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.fund .side .h2 { font-size: clamp(56px, 6.7vw, 96px); line-height: 0.94; }
.fund .side .h2 .si { display: block; }
.fund .main { flex: 1; padding-top: 8px; }
.fund .rw { font-size: 20px; line-height: 1.5; font-weight: 600; }
.fund-stat { margin-top: 36px; padding: 36px 40px; background: var(--ink); color: var(--stone); border-radius: 4px; display: flex; align-items: center; gap: 32px; }
.fund-stat .n { font-size: clamp(52px, 5vw, 72px); line-height: 0.9; font-weight: 800; letter-spacing: -0.05em; white-space: nowrap; }
.fund-stat .n b { color: var(--accent-on-dark); }
.fund-stat .n .si { margin-left: 10px; font-size: 0.47em; letter-spacing: 0; color: var(--accent-on-dark); }
.fund-stat p { font-size: 17px; line-height: 1.5; color: var(--muted-d); }

/* ---------- Общественная деятельность ---------- */
.roles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.role { min-height: 200px; padding: 30px 28px; background: var(--stone); border-radius: 4px; display: flex; flex-direction: column; gap: 10px; transition: transform .45s var(--ease); }
.role .ix { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.role h3 { margin-top: auto; font-size: 23px; font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; }
.role p { font-size: 16px; line-height: 1.55; color: var(--muted-l); }
.role.dk { background: var(--ink-2); color: var(--stone); }
.role.dk .ix { color: var(--accent-on-dark); }
.role .cnt { margin-top: auto; display: flex; align-items: baseline; gap: 12px; }
.role .cnt b { font-size: 72px; line-height: 0.9; font-weight: 800; letter-spacing: -0.05em; }
.role .cnt .si { font-size: 24px; color: var(--accent-on-dark); }
@media (hover: hover) { .role:not(.dk):hover { transform: translateY(-8px); } }
.awards { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 12px; }
.award { display: flex; align-items: center; gap: 12px; padding: 14px 22px; border: 1px solid var(--line-l2); border-radius: 999px; font-size: 16px; line-height: 1.4; transition: background-color .3s ease, color .3s ease, border-color .3s ease; }
.award svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (hover: hover) { .award:hover { background: var(--ink-2); color: var(--stone); border-color: var(--ink-2); } }

/* ---------- Финал ---------- */
.final { overflow: hidden; }
.final .h-final { position: relative; margin-bottom: clamp(40px, 5vw, 72px); font-size: clamp(56px, 10.5vw, 152px); line-height: 0.9; font-weight: 800; letter-spacing: -0.055em; }
.final .h-final .si { display: block; color: var(--accent-on-dark); padding-left: 1.2em; letter-spacing: -0.03em; }
.final .row { position: relative; display: flex; gap: 96px; align-items: flex-start; }
.final .row > p { width: 520px; flex-shrink: 0; font-size: 21px; line-height: 1.7; color: var(--soft-d); }
.final .rows { flex: 1; }
.contact .k { width: 130px; flex-shrink: 0; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-d); }
.contact .tx { font-size: 19px; font-weight: 600; color: var(--stone); text-decoration: none; }
a.contact { text-decoration: none; color: inherit; }
.final .btns { position: relative; margin-top: 64px; }
.foot { position: relative; margin-top: 88px; padding-top: 28px; border-top: 1px solid var(--line-d); display: flex; align-items: center; flex-wrap: wrap; gap: 16px 32px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--muted-d); }
.foot .sp { flex: 1; }
.foot a { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--stone); text-decoration: none; letter-spacing: 0; }

/* ---------- Анимации ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }
@keyframes wipe { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes settle { from { transform: scale(1.14); } to { transform: scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes filly { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 1s var(--ease) both; }
  .d1 { animation-delay: .08s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .34s; } .d4 { animation-delay: .48s; } .d5 { animation-delay: .62s; } .d6 { animation-delay: .76s; }
  .wipe { animation: wipe 1.3s cubic-bezier(.75, 0, .2, 1) .1s both; }
  .settle { animation: settle 2.2s var(--ease) .1s both; }
  .grow { transform-origin: left; animation: grow 1.1s cubic-bezier(.75, 0, .2, 1) .6s both; }
  .mq { animation: marquee 42s linear infinite; }
  .dotrec { animation: pulse 1.4s ease-in-out infinite; }
  .cue .bar i { animation: cue 2.2s cubic-bezier(.7, 0, .3, 1) infinite; }
  .js .rv { opacity: 0; transform: translateY(44px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .js .rv.in { opacity: 1; transform: none; }
  @supports (animation-timeline: view()) {
    .tl .fill { animation: filly linear both; animation-timeline: view(); animation-range: cover 22% cover 78%; }
  }
}

/* ---------- Планшет ---------- */
@media (max-width: 1199px) {
  .nav { gap: 22px; }
  .sh { gap: 48px; }
  .talks aside { width: 420px; }
  .meet { gap: 64px; }
  .meet .pic { width: 360px; }
  .meet .h2 .nw { white-space: normal; }
  .txt, .meet .txt { min-width: 0; }
  .fund { gap: 64px; }
  .fund .side { width: 440px; }
  .final .row { gap: 64px; }
  .final .row > p { width: 420px; }
  .pr { gap: 64px; }
  .pr-side { width: 400px; }
  .club-head { gap: 48px; }
  .card { padding: 36px 28px 32px; }
  .hero-grid { grid-template-columns: minmax(0, 400px) minmax(0, 1fr); }
  .h1 { font-size: clamp(56px, 6.4vw, 116px); }
}

@media (max-width: 1179px) {
  .nav { position: fixed; left: 0; right: 0; top: 76px; margin: 0; padding: 12px var(--pad) 28px; flex-direction: column; align-items: stretch; gap: 0; background: rgba(21, 22, 23, 0.97); border-bottom: 1px solid rgba(242, 239, 234, 0.08); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .nav a.nl { padding: 16px 0; font-size: 20px; font-weight: 600; color: var(--stone); border-bottom: 1px solid rgba(242, 239, 234, 0.08); }
  .nav a.nl::after { display: none; }
  .nav .btn { margin: 20px 0 0; min-height: 56px; font-size: 17px; }
  .menu-open .nav { opacity: 1; transform: none; visibility: visible; }
  .burger { display: flex; }
}

@media (max-width: 1023px) {

  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .photo-frame { max-width: 520px; }
  .hero-text { padding-top: 0; gap: 26px; }

  .sh { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sh .lead { flex: none; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: 28px 24px; border-left: 0; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line-l); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-l); padding-top: 0; }
  .stat:nth-child(n+3) { padding-bottom: 0; }

  .cards3 { grid-template-columns: minmax(0, 1fr); }
  .card h3 { margin-top: 48px; }

  .pr { flex-direction: column; gap: 40px; }
  .pr-side { position: static; width: auto; }

  .club-head { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .res { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .close { flex-direction: column; align-items: flex-start; gap: 28px; }

  .talks { flex-direction: column; gap: 40px; }
  .talks aside { width: 100%; max-width: 620px; }

  .meet { flex-direction: column; align-items: flex-start; gap: 56px; }
  .meet .pic { width: min(420px, calc(100% - 28px)); }

  .fund { flex-direction: column; gap: 48px; }
  .fund .side { width: auto; }
  .fund .main { width: 100%; }

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

  .final .row { flex-direction: column; gap: 32px; }
  .final .row > p { width: auto; max-width: 620px; }
  .final .rows { width: 100%; }
}

/* ---------- Телефон ---------- */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .h2 .nw, .h-final .nw { white-space: normal; }
  .h2 { font-size: clamp(34px, 10vw, 44px) !important; }
  .hdr .wrap { height: 64px; }
  .nav { top: 64px; }
  html { scroll-padding-top: 64px; }
  .logo .mark { width: 36px; height: 36px; font-size: 15px; }
  .logo .name { font-size: 16px; }
  .eyebrow { font-size: 11px; margin-bottom: 16px; }

  .photo-frame { margin-right: 14px; margin-bottom: 14px; }
  .photo-frame::before { left: 14px; top: 14px; right: -14px; bottom: -14px; }
  .photo-frame .ph { aspect-ratio: 5 / 6; }
  .kicker { font-size: 11px; }
  .kicker .ln { width: 36px; }
  .chip { font-size: 13px; padding: 8px 14px; }
  .btns { flex-direction: column; align-items: stretch; width: 100%; }
  .btn { min-height: 56px; width: 100%; }
  .cue { display: none; }
  .hero .bg-year { display: none; }

  .stat { padding: 24px 14px; gap: 10px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { padding-right: 0; padding-left: 16px; }
  .stat .ix { display: none; }
  .stat .t { font-size: 14px; }
  .stat .n .si { display: block; margin: 8px 0 0; font-size: 20px; }

  .recbar { gap: 14px; font-size: 11px; margin-bottom: 12px; }
  .recbar .hide-s { display: none; }
  .vf { margin-bottom: 28px; }
  .vf i { display: none; }
  .full b { font-size: 17px; }
  .full span { display: none; }
  .plats { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .plat { min-height: 84px; padding: 16px 20px 16px 24px; gap: 16px; }
  .plat .sub { font-size: 10px; }
  .plat .nm { font-size: 26px; }
  .plat .circ { width: 44px; height: 44px; }
  .plat .circ svg { width: 18px; height: 18px; }

  .tl { padding-left: 28px; }
  .tl .rail { left: 4px; top: 8px; bottom: 8px; }
  .tl .fill { left: 3px; top: 8px; bottom: 8px; }
  .tl-row { flex-direction: column; padding: 0 0 28px; }
  .tl-row:last-child { padding-bottom: 0; }
  .tl-row .yr { width: auto; font-size: 34px; -webkit-text-stroke-width: 1.2px; margin-bottom: 8px; }
  .tl-row .dt { left: -28px; top: 10px; }
  .tl-row .tx { margin-left: 0; font-size: 16px; line-height: 1.6; }

  .card { padding: 32px 24px 28px; }
  .card .big { font-size: 88px; right: 12px; top: 4px; }
  .card h3 { margin-top: 44px; font-size: 28px; }
  .card p { font-size: 16px; }
  .quote .qm { font-size: 46px; }
  .quote .qt { font-size: 18px; }
  .cards2 { grid-template-columns: minmax(0, 1fr); gap: 12px; margin-bottom: 40px; }
  .cards2 .card { padding: 26px 22px; }
  .cards2 h3 { font-size: 23px; }
  .who { font-size: 13px; }
  .av { width: 40px; height: 40px; font-size: 15px; }

  .pr-row { gap: 20px; padding: 26px 0; }
  .pr-row .no { width: 48px; font-size: 52px; -webkit-text-stroke-width: 1.2px; }
  .pr-row h3 { font-size: 21px; }
  .pr-row p { font-size: 16px; }

  .club-head .txt { font-size: 16px; }
  .photo-wide { aspect-ratio: 342 / 210; margin-bottom: 20px; }
  .glass { left: 12px; bottom: 12px; padding: 8px 14px; font-size: 12px; gap: 8px; }
  .glass::before { width: 6px; height: 6px; }
  .res { gap: 10px; margin-bottom: 40px; }
  .re { padding: 18px 16px; gap: 8px; }
  .re svg { width: 26px; height: 26px; }
  .re h3 { margin-top: 12px; font-size: 20px; }
  .re p { font-size: 13px; line-height: 1.5; }
  .close { padding-top: 32px; }
  .close .act { width: 100%; }

  .talks .rw .tx { font-size: 17px; }
  .rw { padding: 20px 0; gap: 16px; }
  .rw .ix { width: 26px; }
  .invite { padding: 28px 22px; }
  .invite h3 { font-size: 22px; }

  .meet .txt > p { font-size: 16px; }
  .meet .rw { font-size: 16px; }
  .meet .pic { margin-left: 14px; margin-bottom: 14px; width: calc(100% - 14px); }
  .meet .pic::before { left: -14px; top: 14px; right: 14px; bottom: -14px; }

  .fund .rw { font-size: 17px; }
  .fund-stat { flex-direction: column; align-items: flex-start; gap: 14px; padding: 28px 24px; }

  .roles { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .role { min-height: 0; padding: 22px 22px 24px; gap: 8px; }
  .role h3 { margin-top: 14px; font-size: 19px; }
  .role .cnt { margin-top: 14px; }
  .role .cnt b { font-size: 52px; }
  .role .cnt .si { font-size: 20px; }
  .awards { margin-top: 28px; gap: 8px; }
  .award { border-radius: 14px; padding: 12px 16px; font-size: 14px; align-items: flex-start; }
  .award svg { margin-top: 1px; }

  .final .h-final .si { padding-left: 0.6em; }
  .final .row > p { font-size: 17px; }
  .contact { flex-wrap: wrap; gap: 4px 16px; }
  .contact .k { width: 84px; font-size: 11px; }
  .contact .tx { font-size: 16px; }
  .contact .ar { display: none; }
  .final .btns { margin-top: 36px; }
  .foot { margin-top: 48px; font-size: 12px; }
}
