/* ══════════════════════════════════════════════════════════════════
   trushnikov.com — главная страница

   Реализация макетов Claude Design «Главная - v2» (десктоп)
   и «Главная - мобильная» (телефон), сведённых в один адаптив.

   Порядок правил: сначала мобильная база, затем @media (min-width:901px)
   с десктопными переопределениями. Разный порядок блоков в макетах
   разведён через CSS Grid — DOM при этом один.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #080c10;
  --bg2: #0d1520;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --text: #f0ece4;
  --text2: #9aa0a8;
  --text3: #7c8590;
  --line: rgba(201, 168, 76, 0.15);
  --line2: rgba(255, 255, 255, 0.07);
  --pad: 16px;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

/* ── База ── */
html, body { margin: 0; padding: 0; background: var(--bg); }
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, p, blockquote, figure, ul, li { margin: 0; }
ul { list-style: none; padding: 0; }
a { color: var(--gold); text-decoration: none; }

body {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* Стрелка ↗ (U+2197) имеет эмодзи-представление — iOS рисует её цветной картинкой.
   В разметке стоит вариационный селектор U+FE0E, здесь — подстраховка для тех
   браузеров, которые его игнорируют. */
.t-pub__link,
.t-award__ext,
.t-404__arrow,
.t-arrow,
.t-pubs__all {
  font-variant-emoji: text;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Каркас ── */
.t-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

.t-goldline {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  z-index: 100;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.t-section {
  position: relative;
  z-index: 1;
  padding: 48px var(--pad);
  max-width: 1200px;
  margin: 0 auto;
}
.t-section--flush { padding-top: 0; }
.t-section--band {
  max-width: none;
  background: var(--bg2);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

/* ── Типографика ── */
.t-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-eyebrow::before {
  content: '';
  display: block;
  flex: none;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.t-h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  text-wrap: pretty;
}
.t-h2 em { font-style: normal; color: var(--gold); }
.t-h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  text-wrap: pretty;
}
.t-body { font-size: 13px; color: var(--text2); line-height: 1.85; }

/* ── Кнопки ── */
.t-btn {
  display: block;
  padding: 16px;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, opacity 0.2s;
}
.t-btn:hover { background: var(--gold2); color: var(--bg); }
.t-btn[disabled] { opacity: 0.6; cursor: default; }

.t-btn-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line2);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.3s, border-color 0.3s;
}
.t-btn-ghost:hover { color: var(--gold); border-color: var(--line); }

.t-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s, color 0.3s;
}
.t-arrow:hover { gap: 16px; color: var(--gold2); }

/* ── Навигация ── */
.t-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px var(--pad);
  background: rgba(8, 12, 16, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line2);
}

/* Cormorant — светлая антиква с тонкими штрихами: в мелком кегле на тёмном
   фоне она оптически «худеет» и мылится. Плотность 600 возвращает чёткость. */
.t-logo {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-rendering: optimizeLegibility;
}
.t-logo:hover { color: var(--text); }

.t-burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.t-burger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.t-burger span:nth-child(1),
.t-burger span:nth-child(3) { width: 22px; }
.t-burger span:nth-child(2) { width: 16px; }
.t-burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.t-burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.t-burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.t-menu {
  position: sticky;
  top: 57px;
  z-index: 98;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: rgba(8, 12, 16, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.t-menu[data-open='true'] {
  max-height: 280px;
  opacity: 1;
  border-bottom-color: var(--line2);
}
.t-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 var(--pad);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line2);
  transition: color 0.3s;
}
.t-menu a:last-child { color: var(--gold); border-bottom: none; }
.t-menu a:hover { color: var(--gold); }

.t-navlinks { display: none; }

/* ── Hero ── */
.t-hero {
  position: relative;
  z-index: 1;
  padding: 28px var(--pad) 40px;
  display: grid;
  grid-template-areas:
    'eyebrow'
    'title'
    'role'
    'photo'
    'lead'
    'stats'
    'cta';
}
.t-hero__glow { display: none; }
.t-hero__eyebrow { grid-area: eyebrow; }
.t-hero__title { grid-area: title; }
.t-hero__role { grid-area: role; }
.t-hero__photo { grid-area: photo; }
.t-hero__lead { grid-area: lead; }
.t-hero__stats { grid-area: stats; }
.t-hero__cta { grid-area: cta; }

.t-hero__title {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.t-hero__role {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--text2);
  margin-bottom: 28px;
  text-wrap: pretty;
}

.t-hero__photo { position: relative; margin: 0 calc(var(--pad) * -1) 28px; }
.t-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(1.02);
}
.t-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 88% 82% at 50% 36%, rgba(8, 12, 16, 0) 44%, rgba(8, 12, 16, 0.5) 76%, var(--bg) 100%);
}
.t-hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 12, 16, 0) 0%, rgba(8, 12, 16, 0.85) 60%, var(--bg) 100%);
}

.t-hero__lead {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  margin-bottom: 28px;
}
.t-hero__lead strong { color: var(--text); font-weight: 500; }

.t-hero__stats {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line2);
  margin-bottom: 28px;
}
.t-stat {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line2);
}
.t-stat__num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  text-align: right;
}
.t-stat__label { font-size: 12px; letter-spacing: 0.04em; color: var(--text2); }
.t-stat__label br { display: none; }

.t-hero__cta { display: flex; flex-direction: column; gap: 12px; }

/* ── Логотипы ── */
.t-logos {
  position: relative;
  z-index: 1;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}
.t-logos__label {
  margin-bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text2);
  text-align: center;
}
.t-logos__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.t-logos__row span {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ── Рынки ── */
.t-markets__count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.t-markets__count b {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.t-markets__count span { font-size: 12px; letter-spacing: 0.04em; color: var(--text2); line-height: 1.45; }
.t-markets__chips-label { display: none; }

.t-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.t-chips li {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(201, 168, 76, 0.05);
  padding: 8px 14px;
}

/* ── Продукт ── */
.t-product {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 24px 20px;
  display: grid;
  grid-template-areas: 'tag' 'title' 'text' 'metrics' 'link';
}
.t-product::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.t-product__tag {
  grid-area: tag;
  justify-self: start;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.t-product__title {
  grid-area: title;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
}
.t-product__text { grid-area: text; margin-bottom: 24px; }
.t-product__metrics { grid-area: metrics; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.t-product__link { grid-area: link; justify-self: start; }

.t-metric {
  padding: 16px 18px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.02);
}
.t-metric b {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
}
.t-metric span { font-size: 12px; letter-spacing: 0.04em; color: var(--text2); }

/* ── Карточки: кейсы и награды ── */
.t-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line2);
  margin-top: 24px;
}
.t-card { background: var(--bg); padding: 24px 20px; transition: background 0.3s; }
.t-card__meta {
  margin-bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-card__title { margin-bottom: 12px; }
.t-card__text { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.t-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text3);
}
.t-card__status::before {
  content: '';
  display: block;
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Экспертиза ── */
.t-expert {
  display: grid;
  grid-template-areas: 'eyebrow' 'title' 'quote' 'text' 'timeline' 'edu';
}
.t-expert__eyebrow { grid-area: eyebrow; }
.t-expert__title { grid-area: title; }
.t-expert__quote { grid-area: quote; }
.t-expert__text { grid-area: text; }
.t-expert__timeline { grid-area: timeline; }
.t-expert__edu { grid-area: edu; }

.t-expert__title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.t-expert__title em { font-style: normal; color: var(--gold); }
.t-expert__quote {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text2);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 32px;
}
.t-expert__text p { margin-bottom: 20px; }
.t-expert__text p:last-child { margin-bottom: 32px; }
.t-expert__timeline { display: flex; flex-direction: column; margin-bottom: 32px; }
.t-expert__edu { display: flex; flex-direction: column; }
.t-expert__edu-label {
  margin-bottom: 6px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
}

.t-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line2);
}
.t-row--edu { grid-template-columns: 64px 1fr; padding: 14px 0; align-items: baseline; }
.t-row__key { font-family: var(--serif); font-size: 14px; color: var(--text3); padding-top: 2px; }
.t-row--edu .t-row__key { font-size: 20px; color: var(--gold); line-height: 1; padding-top: 0; }
.t-row--edu .t-row__key--sm { font-size: 14px; color: var(--text3); }
.t-row__val { font-size: 12px; color: var(--text2); letter-spacing: 0.03em; }
.t-row__val strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.t-row__val--plain { font-size: 13px; font-weight: 500; color: var(--text); letter-spacing: 0.03em; }

/* ── Награды ── */
.t-award { background: var(--bg2); padding: 24px 20px; position: relative; overflow: hidden; }
.t-award::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.t-award__count { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.t-award__count b {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.t-award__count span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  line-height: 1.45;
}
.t-award__title { margin-bottom: 10px; font-size: 23px; }
.t-award__text { font-size: 13px; color: var(--text2); line-height: 1.75; margin-bottom: 20px; }
.t-award__list { display: flex; flex-direction: column; }
.t-award__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line2);
  transition: background 0.3s;
}
.t-award__item:last-child { border-bottom: 1px solid var(--line2); }
.t-award__item:hover { background: rgba(201, 168, 76, 0.05); }
.t-award__year { font-family: var(--serif); font-size: 14px; color: var(--text3); }
.t-award__name { font-size: 12px; color: var(--text2); line-height: 1.5; }
.t-award__name strong { display: block; font-size: 13px; font-weight: 500; color: var(--text); }
.t-award__ext { font-size: 11px; color: var(--gold); }
.t-award__note { font-size: 12px; color: var(--text2); line-height: 1.7; margin-top: 20px; }

/* ── Публикации ── */
.t-pubs {
  display: grid;
  grid-template-areas: 'head' 'list' 'all' 'outlets';
}
.t-pubs__head { grid-area: head; }
.t-pubs__list { grid-area: list; }
.t-pubs__all { grid-area: all; }
.t-outlets { grid-area: outlets; }

.t-pubs__list { display: flex; flex-direction: column; border-top: 1px solid var(--line2); }
.t-pub { padding: 18px 0; border-bottom: 1px solid var(--line2); }
.t-pub__meta { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.t-pub__date { font-family: var(--serif); font-size: 14px; color: var(--text2); }
.t-pub__kind {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
}
.t-pub__title { font-size: 19px; }
.t-pub__event {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.t-pub__event::before {
  content: '';
  display: block;
  flex: none;
  width: 5px;
  height: 5px;
  background: var(--gold);
  opacity: 0.7;
}
.t-pub__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition: gap 0.3s, border-color 0.3s;
}
.t-pub__link:hover { gap: 12px; border-color: var(--gold); }

.t-pubs__all {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 20px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.3s, color 0.3s, gap 0.3s;
}
.t-pubs__all:hover { background: rgba(201, 168, 76, 0.05); color: var(--gold2); }

.t-outlets { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.t-outlets__label {
  margin-bottom: 14px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text3);
}
.t-outlets__row { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.t-outlets__row span {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--text2);
}

/* ── Форма ── */
.t-cta__title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}
.t-cta__sub { font-size: 13px; color: var(--text2); text-align: center; margin-bottom: 32px; }

.t-form { display: flex; flex-direction: column; gap: 14px; position: relative; }
.t-form__row { display: flex; flex-direction: column; gap: 14px; }
.t-field { display: flex; flex-direction: column; gap: 6px; }
.t-field label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
}
.t-field input,
.t-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line2);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.t-field select { color: var(--text2); appearance: none; cursor: pointer; }
.t-field input:focus,
.t-field select:focus { border-color: rgba(201, 168, 76, 0.4); outline: none; }
.t-form__note { font-size: 11px; color: var(--text3); text-align: center; }
.t-form__ok { text-align: center; padding: 2rem 0; }
.t-form__ok b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.t-form__ok span { color: var(--text2); font-size: 0.95rem; }
.t-hp { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }

/* ── Подвал ── */
.t-footer {
  position: relative;
  z-index: 1;
  padding: 28px var(--pad) 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.t-footer__name {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text3);
  transition: color 0.3s;
}
.t-footer__name:hover { color: var(--gold); }
.t-footer__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.t-footer__links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text3);
  transition: color 0.3s;
}
.t-footer__links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════
   РАЗДЕЛ /public/ — публикации и выступления
   ══════════════════════════════════════════════════════════════════ */

.t-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}
.t-crumbs a { color: var(--text3); transition: color 0.3s; }
.t-crumbs a:hover { color: var(--gold); }
.t-crumbs span:last-child { color: var(--text); }

.t-pubhead { padding-top: 32px; }
.t-pubhead__title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-pubhead__title span { font-weight: 300; }
.t-pubhead__intro {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.t-outlets--band {
  margin-top: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.t-tabs { display: flex; gap: 8px; flex-wrap: wrap; padding: 24px 0 0; }
.t-tab {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--line2);
  transition: all 0.3s;
}
.t-tab:hover { color: var(--gold); border-color: var(--line); }
.t-tab.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 600;
}

.t-feed { padding-top: 24px; }
.t-year { margin-bottom: 48px; }
.t-year__head { display: flex; align-items: center; gap: 16px; margin-bottom: 4px; }
.t-year__num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.t-year__rule { flex: 1; height: 1px; background: var(--line); }
.t-year__count {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text3);
}

.t-pub__note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 680px;
  text-wrap: pretty;
}
.t-pub__foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.t-pub__extra { font-size: 11px; letter-spacing: 0.08em; color: var(--text3); }

.t-tg {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.t-tg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.t-tg__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
}
.t-tg__title span { font-weight: 600; }
.t-tg__cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.t-tg__handle {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
}

.t-navlinks .is-current {
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.t-form__err { color: #ef4444; }

/* ══════════════════════════════════════════════════════════════════
   СТРАНИЦА 404
   ══════════════════════════════════════════════════════════════════ */

.t-404 {
  position: relative;
  z-index: 1;
  padding: 40px var(--pad) 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.t-404__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 65% 45%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 85%, rgba(13, 21, 32, 0.8) 0%, transparent 60%);
}
.t-404__grid { display: grid; gap: 40px; align-items: center; }
.t-404__num {
  font-family: var(--serif);
  font-size: clamp(96px, 30vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 20px;
}
.t-404__text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.8;
  max-width: 440px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.t-404__links { display: flex; flex-direction: column; }
.t-404__links > a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line2);
  transition: background 0.3s;
}
.t-404__links > a:hover { background: rgba(201, 168, 76, 0.05); }
.t-404__links > a:last-of-type { border-bottom: 1px solid var(--line2); }
.t-404__links strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 4px;
}
.t-404__links strong + span { font-size: 12px; color: var(--text2); letter-spacing: 0.04em; }
.t-404__arrow { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.t-404__btn { margin-top: 28px; border-bottom: none !important; }
.t-404__links > a.t-404__btn { display: block; border-top: none; }
.t-404__links > a.t-404__btn:hover { background: var(--gold2); }

/* ══════════════════════════════════════════════════════════════════
   ДЕСКТОП — от 901px
   ══════════════════════════════════════════════════════════════════ */
@media (min-width: 901px) {
  :root { --pad: clamp(24px, 4vw, 60px); }

  .t-section { padding: clamp(72px, 9vw, 110px) var(--pad); }
  .t-section--flush { padding-top: 0; }
  .t-section--band { padding: clamp(64px, 9vw, 110px) var(--pad); }
  .t-section--band > .t-expert { max-width: 1200px; margin: 0 auto; }

  .t-eyebrow { gap: 16px; margin-bottom: 24px; font-size: 10px; letter-spacing: 0.35em; }
  .t-eyebrow::before { width: 32px; }

  .t-h2 { font-size: clamp(28px, 3vw, 36px); }
  .t-h3 { font-size: 22px; }
  .t-body { font-size: 14px; line-height: 1.9; }

  /* Навигация */
  .t-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 24px var(--pad);
    background: linear-gradient(180deg, rgba(8, 12, 16, 0.95) 0%, transparent 100%);
    border-bottom: none;
  }
  .t-logo { font-size: 18px; letter-spacing: 0.15em; }
  .t-burger, .t-menu { display: none; }
  .t-navlinks {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 32px);
    flex-wrap: wrap;
  }
  .t-navlinks a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text2);
    transition: color 0.3s;
  }
  .t-navlinks a:hover { color: var(--gold); }
  .t-navlinks .t-navcta {
    min-height: 0;
    padding: 10px 24px;
    border: 1px solid var(--line);
    color: var(--gold);
    transition: all 0.3s;
  }
  .t-navlinks .t-navcta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

  /* Hero: портрет во второй колонке */
  .t-hero {
    min-height: 100vh;
    align-content: center;
    padding: clamp(100px, 10vw, 130px) var(--pad) clamp(48px, 7vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(36px, 5vw, 72px);
    grid-template-areas:
      'eyebrow photo'
      'title   photo'
      'role    photo'
      'lead    photo'
      'stats   photo'
      'cta     photo';
    align-items: start;
  }
  .t-hero__glow {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(13, 21, 32, 0.8) 0%, transparent 60%);
  }
  .t-hero__photo {
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 540px;
    margin: 0;
  }
  .t-hero__photo::after {
    background: radial-gradient(ellipse 82% 78% at 50% 38%, rgba(8, 12, 16, 0) 42%, rgba(8, 12, 16, 0.55) 74%, var(--bg) 100%);
  }
  .t-hero__fade { height: 34%; }
  .t-hero__title { font-size: clamp(52px, 7vw, 88px); margin-bottom: 12px; }
  .t-hero__role { font-size: clamp(18px, 2vw, 21px); margin-bottom: 40px; }
  .t-hero__lead { font-size: 15px; max-width: 480px; padding-left: 24px; margin-bottom: 40px; }

  .t-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
    max-width: 520px;
    padding: 22px 0;
    border-top: 1px solid var(--line2);
    border-bottom: 1px solid var(--line2);
    margin-bottom: 40px;
  }
  .t-stat { display: block; padding: 0; border-bottom: none; }
  .t-stat__num { font-size: clamp(34px, 4vw, 42px); text-align: left; }
  .t-stat__label { font-size: 11px; letter-spacing: 0.05em; line-height: 1.45; margin-top: 8px; }
  .t-stat__label br { display: inline; }

  .t-hero__cta { flex-direction: row; align-items: center; gap: 20px; flex-wrap: wrap; }
  .t-btn { display: inline-block; padding: 16px 36px; }
  .t-btn:hover { transform: translateY(-1px); }
  .t-btn-ghost { border: none; min-height: 44px; }

  /* Логотипы */
  .t-logos { padding: clamp(36px, 5vw, 56px) var(--pad); }
  .t-logos__label { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 32px; }
  .t-logos__row { gap: clamp(20px, 5vw, 60px); max-width: 900px; margin: 0 auto; }
  .t-logos__row span { font-size: 26px; letter-spacing: 0.05em; }

  /* Рынки */
  .t-markets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: clamp(40px, 5vw, 88px);
    align-items: start;
  }
  .t-markets__intro .t-h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 24px; }
  .t-markets__intro .t-body { max-width: 460px; }
  .t-markets__count {
    margin-top: 36px;
    margin-bottom: 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: none;
  }
  .t-markets__count b { font-size: 42px; }
  .t-markets__chips-label {
    display: block;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text3);
  }
  .t-chips { gap: 10px; }
  .t-chips li { font-size: 19px; padding: 10px 20px; }

  /* Продукт */
  .t-product {
    padding: clamp(28px, 5vw, 64px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    column-gap: clamp(36px, 6vw, 80px);
    align-items: center;
    grid-template-areas:
      'tag     metrics'
      'title   metrics'
      'text    metrics'
      'link    metrics';
  }
  .t-product__tag { font-size: 10px; letter-spacing: 0.3em; padding: 6px 16px; margin-bottom: 24px; }
  .t-product__title { font-size: clamp(32px, 4vw, 42px); margin-bottom: 20px; }
  .t-product__text { font-size: 14px; line-height: 1.8; margin-bottom: 36px; }
  .t-product__metrics { gap: 24px; margin-bottom: 0; align-self: center; }
  .t-metric { padding: 20px 24px; }
  .t-metric b { font-size: 32px; }

  /* Кейсы и награды */
  .t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    margin-top: 48px;
  }
  .t-grid--awards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); }
  .t-card { padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 36px); }
  .t-card:hover { background: var(--bg2); }
  .t-card__meta { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 16px; }
  .t-card__title { margin-bottom: 16px; }
  .t-card__text { margin-bottom: 24px; }
  .t-card__status { font-size: 11px; letter-spacing: 0.1em; }

  /* Экспертиза: образование под цитатой слева */
  .t-expert {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    column-gap: clamp(40px, 6vw, 96px);
    align-items: start;
    grid-template-areas:
      'eyebrow text'
      'title   text'
      'quote   timeline'
      'edu     timeline';
  }
  .t-expert__title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 32px; }
  .t-expert__quote { font-size: 20px; line-height: 1.7; padding-left: 24px; margin-bottom: 48px; }
  .t-expert__text p:last-child { margin-bottom: 44px; }
  .t-expert__timeline { margin-bottom: 0; }
  .t-expert__edu-label { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 8px; }
  .t-row { grid-template-columns: clamp(80px, 10vw, 100px) 1fr; gap: 24px; padding: 20px 0; }
  .t-row--edu { grid-template-columns: clamp(72px, 10vw, 104px) 1fr; gap: 20px; padding: 18px 0; }
  .t-row--edu .t-row__key { font-size: 22px; }
  .t-row--edu .t-row__key--sm { font-size: 15px; }
  .t-row__key { font-size: 15px; }
  .t-row__val { font-size: 13px; letter-spacing: 0.04em; }

  /* Награды */
  .t-award { padding: clamp(28px, 3.5vw, 44px); }
  .t-award__count { gap: 14px; margin-bottom: 20px; }
  .t-award__count b { font-size: 42px; }
  .t-award__count span { font-size: 11px; letter-spacing: 0.14em; line-height: 1.5; }
  .t-award__title { font-size: 26px; margin-bottom: 12px; }
  .t-award__text { margin-bottom: 28px; }
  .t-award__item { grid-template-columns: clamp(56px, 8vw, 72px) 1fr auto; gap: 16px; padding: 16px 0; }
  .t-award__year { font-size: 15px; }
  .t-award__note { margin-top: 28px; }

  /* Публикации: кнопка «все материалы» уезжает в шапку справа */
  .t-pubs {
    grid-template-columns: 1fr auto;
    column-gap: 24px;
    grid-template-areas:
      'head    all'
      'list    list'
      'outlets outlets';
    align-items: end;
  }
  .t-pubs__head { margin-bottom: 40px; }
  .t-pubs__all { margin-bottom: 40px; }
  .t-pub {
    display: grid;
    grid-template-columns: clamp(96px, 13vw, 150px) 1fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: start;
    padding: 24px 0;
  }
  .t-pub__meta { display: block; margin-bottom: 0; }
  .t-pub__date { display: block; font-size: 16px; line-height: 1.35; }
  .t-pub__kind { display: block; margin-top: 10px; }
  .t-pub__title { font-size: clamp(19px, 2vw, 22px); }
  .t-pub__event { gap: 10px; margin-top: 14px; font-size: 11px; letter-spacing: 0.14em; }
  .t-pub__link { margin-top: 14px; letter-spacing: 0.14em; padding-bottom: 3px; }
  .t-pubs__all {
    min-height: 44px;
    margin-top: 0;
    border: none;
    justify-content: flex-start;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .t-pubs__all:hover { background: none; gap: 20px; }
  .t-outlets { margin-top: 40px; padding-top: 32px; }
  .t-outlets__label { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 18px; }
  .t-outlets__row { gap: clamp(12px, 2vw, 32px); }
  .t-outlets__row span { font-size: clamp(15px, 1.5vw, 20px); letter-spacing: 0.04em; }

  /* Форма */
  .t-cta__inner { max-width: 800px; margin: 0 auto; }
  .t-cta__title { font-size: clamp(36px, 6vw, 72px); margin-bottom: 24px; }
  .t-cta__sub { font-size: 14px; max-width: 520px; margin: 0 auto 48px; }
  .t-form { gap: 16px; max-width: 480px; margin: 0 auto; text-align: left; }
  .t-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 16px;
  }
  .t-field input, .t-field select { padding: 12px 16px; font-size: 14px; }
  .t-form__note { margin-top: 13px; }
  .t-btn--submit {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    border-radius: 2px;
  }
  .t-btn--submit:hover { opacity: 0.88; transform: none; }

  /* Подвал */
  .t-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: left;
    padding: clamp(28px, 4vw, 40px) var(--pad);
  }
  .t-footer__links { gap: 32px; justify-content: flex-start; }

  /* ── Раздел /public/ ── */
  .t-crumbs { margin-bottom: 40px; }
  .t-pubhead { padding-top: clamp(120px, 14vw, 180px); padding-bottom: clamp(48px, 6vw, 72px); }
  .t-pubhead__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
  }
  .t-pubhead__title { font-size: clamp(40px, 6vw, 72px); }
  .t-pubhead__intro { margin-top: 0; font-size: 15px; max-width: 440px; padding-left: 24px; }

  .t-outlets--band { padding: 28px 0; }
  .t-tabs { gap: 10px; padding: 32px 0 8px; }
  .t-tab { padding: 11px 22px; }

  .t-feed { padding-top: clamp(24px, 4vw, 40px); padding-bottom: clamp(60px, 8vw, 100px); }
  .t-year { margin-bottom: 72px; }
  .t-year__head { gap: 20px; margin-bottom: 8px; }
  .t-year__num { font-size: 28px; }
  .t-feed .t-pub { padding: 28px 0; }
  .t-pub__title { font-size: clamp(20px, 2.2vw, 24px); }
  .t-pub__note { margin-top: 12px; }
  .t-pub__foot { margin-top: 16px; }

  .t-tg {
    margin-top: 16px;
    padding: clamp(28px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  .t-tg__title { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
  .t-tg .t-body { max-width: 460px; }
  .t-tg__cta { gap: 20px; }

  /* ── 404 ── */
  .t-404 { padding: clamp(48px, 8vw, 96px) var(--pad); min-height: 70vh; display: flex; align-items: center; }
  .t-404__grid {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: clamp(40px, 6vw, 88px);
  }
  .t-404__num { font-size: clamp(120px, 14vw, 200px); margin-bottom: 24px; }
  .t-404__text { font-size: 15px; padding-left: 24px; }
  .t-404__links > a { gap: 20px; padding: 24px 0; }
  .t-404__links strong { font-size: 24px; }
  .t-404__btn { margin-top: 32px; }
  .t-404__links > a.t-404__btn { display: inline-block; text-align: center; }
}
