/* МААГЭ — стили сайта. Один акцент (бирюза логотипа), нейтральные тона с бирюзовым оттенком. */

:root {
  --font-sans: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Literata", Georgia, "Times New Roman", serif;

  --bg: #f6f9f8;
  --bg-2: #ecf3f1;
  --surface: #ffffff;
  --line: #dce7e5;
  --line-strong: #c2d4d1;
  --ink: #10292b;
  --ink-2: #3a5153;
  --muted: #5c7274;

  --brand: #00aba5;
  --brand-600: #009690;
  --brand-700: #007a76;
  --brand-800: #00605c;
  --brand-900: #0b3f3e;
  --brand-50: #e7f5f3;
  --brand-100: #cdebe7;
  --brand-200: #a6dcd6;
  --brand-300: #72d2c9;

  --warn-bg: #fff7e8;
  --warn-line: #f3dcae;
  --warn-ink: #6f4600;
  --warn-icon: #c47f00;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --shadow-s: 0 1px 2px rgb(16 41 43 / .05), 0 4px 14px -6px rgb(16 41 43 / .12);
  --shadow-m: 0 2px 6px rgb(16 41 43 / .05), 0 18px 40px -18px rgb(16 41 43 / .28);
  --shadow-l: 0 4px 10px rgb(16 41 43 / .06), 0 32px 64px -28px rgb(11 63 62 / .42);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .06 0 0 0 0 .16 0 0 0 0 .17 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ основа */

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font: 400 1.0625rem/1.6 var(--font-sans);
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--brand-800); }
h1, h2, h3, h4 { margin: 0; color: var(--ink); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
strong { font-weight: 650; color: var(--ink); }
button { font: inherit; }
table { font-variant-numeric: tabular-nums; }
::selection { background: #bfe8e3; color: var(--ink); }
:focus-visible { outline: 3px solid rgb(0 150 144 / .55); outline-offset: 3px; border-radius: 6px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.visually-hidden, .skip-link:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  padding: 10px 16px; border-radius: 10px;
  background: var(--ink); color: #fff; font-weight: 600;
}
.u-cap { display: inline-block; }
.u-cap::first-letter { text-transform: uppercase; }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(56px, 7vw, 104px) clamp(64px, 8vw, 120px); }
.section--white { background: var(--surface); }
.section--tint { background: var(--bg-2); }
.section--flush { padding-top: 0; }
.section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.section-head--split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 32px; }

.h2 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.85rem, 1.35rem + 1.7vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -.018em;
}

/* ------------------------------------------------------------------ кнопки, метки, ссылки */

.btn {
  --btn-bg: var(--brand-700);
  --btn-fg: #fff;
  --btn-line: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 44px;
  padding: .7em 1.25em;
  border: 1px solid var(--btn-line);
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 600 1rem/1.2 var(--font-sans);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease),
    box-shadow .2s var(--ease), transform .15s var(--ease);
}
.btn:hover { --btn-bg: var(--brand-800); color: var(--btn-fg); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn .icon { width: 1.1em; height: 1.1em; transition: transform .2s var(--ease); }
.btn:hover .icon { transform: translateX(2px); }
.btn--primary { box-shadow: 0 6px 16px -8px rgb(0 96 92 / .6); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-line: var(--line-strong); }
.btn--outline:hover { --btn-bg: var(--surface); --btn-line: var(--ink); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--brand-800); }
.btn--light:hover { --btn-bg: var(--brand-50); --btn-fg: var(--brand-900); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-line: rgb(255 255 255 / .3); }
.btn--ghost-light:hover { --btn-bg: rgb(255 255 255 / .08); --btn-line: rgb(255 255 255 / .55); }
.btn--disabled, .btn--disabled:hover {
  --btn-bg: var(--bg-2); --btn-fg: var(--muted); --btn-line: transparent;
  box-shadow: none; cursor: not-allowed; transform: none;
}
.btn--sm { min-height: 38px; padding: .5em .95em; font-size: .9rem; border-radius: 10px; }
.btn--xs { min-height: 32px; padding: .4em .8em; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; border-radius: 8px; }
.btn--lg { min-height: 52px; padding: .85em 1.6em; font-size: 1.05rem; border-radius: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; color: var(--brand-700); text-decoration: none;
}
.link-arrow .icon { width: 1.1em; height: 1.1em; transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateY(2px); }
.link-arrow:hover { color: var(--brand-800); }

.tag {
  display: inline-flex; align-items: center;
  padding: .32em .7em;
  border-radius: 8px;
  font-size: .72rem; font-weight: 700; line-height: 1.2; letter-spacing: .07em; text-transform: uppercase;
  white-space: nowrap;
}
.tag--seminar { background: var(--brand-50); color: var(--brand-800); }
.tag--webinar { background: #edf1f1; color: #3c5153; }
.badge {
  display: inline-flex; align-items: center;
  padding: .45em .9em; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-800);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; font-size: .9rem; color: var(--muted); }
.breadcrumbs a { color: var(--ink-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-700); text-decoration: underline; }

/* ------------------------------------------------------------------ шапка */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(246 249 248 / .82);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  backdrop-filter: saturate(1.6) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / .9);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgb(16 41 43 / .5);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; text-decoration: none; }
.brand__logo { width: auto; height: 30px; }
.brand__name {
  max-width: 250px; padding-left: 14px; border-left: 1px solid var(--line-strong);
  color: var(--ink-2); font-size: .78rem; font-weight: 600; line-height: 1.3;
}
.brand:hover .brand__name { color: var(--ink); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 9px 14px; border-radius: 999px;
  color: var(--ink-2); font-size: .95rem; font-weight: 500; text-decoration: none; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav__link:hover { background: rgb(16 41 43 / .05); color: var(--ink); }
.nav__link[aria-current="page"] { background: var(--brand-50); color: var(--brand-800); font-weight: 600; }

.menu-toggle {
  display: none; position: relative; flex: none;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.mobile-menu { border-top: 1px solid var(--line); background: var(--surface); }
.mobile-menu:not([hidden]) { animation: drop .22s var(--ease) both; }
.mobile-nav { display: flex; flex-direction: column; padding-block: 8px 20px; }
.mobile-nav__link {
  padding: 16px 4px; border-bottom: 1px solid var(--line);
  color: var(--ink); font-size: 1.15rem; font-weight: 600; text-decoration: none;
}
.mobile-nav__link:last-child { border-bottom: 0; }
.mobile-nav__link[aria-current="page"] { color: var(--brand-700); }
@keyframes drop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------------ главная: первый экран */

.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(48px, 7vw, 104px) clamp(64px, 8vw, 120px);
  background:
    radial-gradient(900px 520px at 88% -8%, rgb(0 171 165 / .16), transparent 62%),
    radial-gradient(700px 480px at -12% 108%, rgb(0 171 165 / .08), transparent 60%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--noise); opacity: .09; mix-blend-mode: multiply;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
.hero__title {
  font-family: var(--font-serif); font-optical-sizing: auto;
  font-weight: 600; font-size: clamp(2.3rem, 1.1rem + 3.7vw, 4.3rem);
  line-height: 1.04; letter-spacing: -.026em;
}
@media (min-width: 600px) { .nowrap-md { white-space: nowrap; } }
.hero__title { color: var(--ink); }
.hero__lead { max-width: 58ch; margin-top: clamp(20px, 2.5vw, 28px); font-size: clamp(1.06rem, 1rem + .3vw, 1.25rem); line-height: 1.62; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; margin-top: clamp(28px, 3.5vw, 40px); }
.hero__visual { position: relative; min-height: 440px; }
.hero__facets {
  position: absolute; inset: 0 -6% 8% 4%; width: 102%; height: 100%;
  filter: drop-shadow(0 30px 40px rgb(0 96 92 / .18));
  animation: float 14s ease-in-out infinite alternate;
}
@keyframes float { from { transform: translateY(-6px) rotate(-1deg); } to { transform: translateY(8px) rotate(1.5deg); } }

.next-card {
  position: absolute; left: -10%; bottom: 0; width: min(380px, 100%);
  padding: 22px 24px 20px;
  border: 1px solid rgb(255 255 255 / .7); border-radius: var(--radius-l);
  background: rgb(255 255 255 / .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-l), inset 0 1px 0 rgb(255 255 255 / .9);
}
.next-card__label {
  display: flex; align-items: center; gap: 8px;
  color: var(--brand-800); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--brand);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { from { opacity: .7; transform: scale(.6); } to { opacity: 0; transform: scale(1.6); } }
.next-card__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.next-card__date {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; line-height: 1.1;
  color: var(--ink); font-variant-numeric: lining-nums;
}
.next-card__title { margin-top: 10px; color: var(--ink); font-weight: 600; line-height: 1.4; }
.next-card__place { margin-top: 6px; color: var(--muted); font-size: .92rem; }
.next-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: .9rem; font-weight: 600; text-decoration: none;
}
.next-card__link .icon { width: 1em; height: 1em; }

/* ------------------------------------------------------------------ руководство */

.leaders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.person { display: grid; grid-template-columns: clamp(96px, 12vw, 148px) minmax(0, 1fr); gap: clamp(18px, 2.4vw, 28px); align-items: start; }
.person + .person { padding-left: clamp(32px, 5vw, 72px); border-left: 1px solid var(--line); }
.person__photo {
  overflow: hidden; aspect-ratio: 1; border-radius: 28px;
  background: var(--brand-50); box-shadow: var(--shadow-m);
}
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__name { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.3rem, 1.1rem + .6vw, 1.6rem); line-height: 1.2; letter-spacing: -.01em; }
.person__degree { margin-top: 6px; color: var(--ink); font-weight: 500; }
.person__role { margin-top: 12px; color: var(--ink-2); font-size: .98rem; }
.person__role--accent { display: inline-block; padding: .3em .75em; border-radius: 8px; background: var(--brand-50); color: var(--brand-800); font-weight: 600; }
.person__list { margin-top: 14px; list-style: none; display: grid; gap: 8px; font-size: .95rem; line-height: 1.55; }
.person__list li { position: relative; padding-left: 18px; }
.person__list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--brand-200); transform: rotate(45deg); }

/* ------------------------------------------------------------------ приглашение */

.invite__panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 64px); align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--brand-100); border-radius: var(--radius-xl);
  background: radial-gradient(600px 300px at 100% 0%, rgb(0 171 165 / .12), transparent 70%), linear-gradient(135deg, #eaf6f4, #f8fbfa);
}
.invite__lead { margin-top: 20px; max-width: 60ch; font-size: 1.1rem; line-height: 1.65; }
.invite__label { margin-top: 22px; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.invite__program {
  margin-top: 6px; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem); line-height: 1.15; letter-spacing: -.012em; color: var(--brand-800);
}
.invite__with { margin-top: 18px; font-size: .98rem; }
.invite__logos { display: grid; grid-template-columns: minmax(0, 1fr); justify-items: center; gap: 8px; width: 100%; max-width: 320px; justify-self: end; }
.logo-tile {
  display: grid; place-items: center; width: 100%; height: 124px; padding: 18px 26px;
  border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-m);
}
.logo-tile img { width: auto; max-width: 100%; max-height: 80px; object-fit: contain; }
.invite__x { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; color: var(--brand-600); }

/* ------------------------------------------------------------------ мероприятия (повестка) */

.segmented {
  display: none; padding: 4px; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-s);
}
.js .segmented { display: inline-flex; }
.segmented__btn {
  padding: 9px 18px; border: 0; border-radius: 999px; background: transparent;
  color: var(--ink-2); font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.segmented__btn:hover { color: var(--ink); background: rgb(16 41 43 / .05); }
.segmented__btn[aria-pressed="true"] { background: var(--ink); color: #fff; }

.agenda { list-style: none; display: grid; gap: 12px; }
.event {
  display: grid; grid-template-columns: 120px minmax(0, 1fr) auto; gap: 10px clamp(20px, 3vw, 36px); align-items: center;
  padding: 22px clamp(18px, 2.4vw, 30px);
  border: 1px solid transparent; border-radius: 20px;
  background: var(--surface); box-shadow: var(--shadow-s);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
}
.event:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.event__date { display: flex; flex-direction: column; line-height: 1; }
.event__day {
  font-family: var(--font-serif); font-weight: 600; font-size: 2.7rem; letter-spacing: -.03em;
  color: var(--brand-700); font-variant-numeric: lining-nums tabular-nums;
}
.event__month { margin-top: 8px; color: var(--ink-2); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.event__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 8px; }
.event__title { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
.event__place { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--muted); font-size: .95rem; }
.event__place .icon { width: 1.05em; height: 1.05em; color: var(--brand-600); }
.event__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.event__status {
  padding: .32em .65em; border-radius: 8px; background: var(--bg-2); color: var(--muted);
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.event.is-next { border-color: var(--brand-600); box-shadow: 0 0 0 4px rgb(0 171 165 / .12), var(--shadow-m); }
.event.is-next .event__status { background: var(--brand-700); color: #fff; }
.event.is-past { padding-block: 14px; background: rgb(255 255 255 / .55); box-shadow: none; border-color: var(--line); }
.event.is-past:hover { transform: none; background: var(--surface); }
.event.is-past .event__day { font-size: 1.9rem; color: var(--muted); }
.event.is-past .event__title { color: var(--ink-2); font-size: 1rem; font-weight: 500; }
.event.is-past .event__place { margin-top: 4px; font-size: .88rem; }
.event.is-hidden { display: none; }
.agenda__more { margin-top: 22px; text-align: center; }
.agenda__empty {
  display: grid; justify-items: center; gap: 10px; padding: 40px 24px; text-align: center;
  border: 1px dashed var(--line-strong); border-radius: 20px; color: var(--ink-2);
}
.agenda__empty p { font-size: 1.05rem; }
.event.is-appearing { animation: rise .4s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------------ участвуйте */

.participate__title { max-width: 26ch; margin-bottom: clamp(28px, 4vw, 48px); }
.participate__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: 20px; }
.panel { position: relative; overflow: hidden; padding: clamp(26px, 3.6vw, 44px); border-radius: var(--radius-xl); }
.panel--doctors { border: 1px solid var(--line); background: var(--surface); }
.panel--partners {
  display: flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(155deg, #0b4d4a 0%, var(--brand-800) 45%, #00807b 100%); color: rgb(255 255 255 / .86);
  box-shadow: var(--shadow-l);
}
.panel--partners .panel__title { color: #fff; }
.panel--partners .panel__lead { color: rgb(255 255 255 / .86); }
.panel--partners .btn { margin-top: auto; }
.panel--partners .panel__lead { margin-bottom: 28px; }
.panel__facets { position: absolute; right: -60px; bottom: -70px; width: 300px; opacity: .35; mix-blend-mode: screen; pointer-events: none; }
.panel__title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.4rem, 1.15rem + .8vw, 1.8rem); line-height: 1.2; }
.panel__lead { margin-top: 14px; font-size: 1.02rem; line-height: 1.65; }
.features { list-style: none; display: grid; gap: 18px; margin-top: 26px; }
.feature { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: start; }
.feature__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand-700);
}
.feature__title { color: var(--ink); font-weight: 650; }
.feature p + p { margin-top: 4px; font-size: .98rem; }
.materials {
  margin-top: 20px; padding: clamp(26px, 3.6vw, 44px);
  border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface);
}
.materials__head { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: start; }
.materials__head p { margin-top: 8px; }
.materials__list {
  list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 28px;
}
.materials__list li {
  position: relative; padding: 52px 18px 20px; border-radius: 18px; background: var(--bg); color: var(--ink); font-weight: 500; line-height: 1.5;
}
.materials__list li::before {
  content: ""; position: absolute; left: 18px; top: 18px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4L18 8.5'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ------------------------------------------------------------------ география */

.geo__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.geo__stat { margin-top: 18px; font-size: 1.2rem; line-height: 1.4; color: var(--ink-2); }
.geo__num {
  display: block; margin-bottom: 6px;
  font-family: var(--font-serif); font-weight: 600; font-size: clamp(3.2rem, 2rem + 4.5vw, 5.8rem); line-height: .95; letter-spacing: -.035em;
  color: var(--brand-700);
}
.geo__map { position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-m); border: 1px solid var(--line); }
.geo__canvas {
  height: clamp(320px, 36vw, 480px);
  background: linear-gradient(100deg, var(--bg-2) 30%, #f4f9f8 50%, var(--bg-2) 70%) 0 0 / 300% 100%;
  animation: shimmer 1.6s linear infinite;
}
.geo__canvas.is-ready { animation: none; background: var(--bg-2); }
.geo__canvas [class*="ground-pane"] { filter: grayscale(1) contrast(.92) brightness(1.05); }
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: -50% 0; } }

/* ------------------------------------------------------------------ партнёры */

.partners-strip .h2 { margin-bottom: clamp(24px, 3.5vw, 40px); }
.logo-grid { list-style: none; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.logo-grid li {
  display: grid; place-items: center; height: 108px; padding: 18px 22px;
  border: 1px solid var(--line); border-radius: 18px; background: var(--surface);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.logo-grid img { width: auto; max-width: 100%; max-height: 56px; object-fit: contain; transition: filter .25s var(--ease), opacity .25s var(--ease); }
.logo-grid .is-tall img { max-height: 78px; }
@media (hover: hover) {
  .logo-grid img { filter: grayscale(1); opacity: .72; }
  .logo-grid li:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); border-color: transparent; }
  .logo-grid li:hover img { filter: none; opacity: 1; }
}

/* ------------------------------------------------------------------ шапка внутренних страниц */

.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(36px, 5vw, 64px) clamp(44px, 6vw, 80px);
  background: radial-gradient(800px 420px at 92% -20%, rgb(0 171 165 / .14), transparent 65%), var(--bg);
}
.page-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: var(--noise); opacity: .08; mix-blend-mode: multiply; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__facets { position: absolute; right: -80px; top: -60px; width: min(520px, 60vw); opacity: .5; pointer-events: none; }
.page-hero__title {
  font-family: var(--font-serif); font-optical-sizing: auto; font-weight: 600;
  font-size: clamp(2.4rem, 1.5rem + 3vw, 4rem); line-height: 1.05; letter-spacing: -.025em;
}
.page-hero__lead { margin-top: 14px; font-size: 1.25rem; color: var(--ink-2); }

/* ------------------------------------------------------------------ о нас */

.profile { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.profile__photo { position: relative; }
.profile__photo::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
}
.profile__photo img { position: relative; width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-l); }
.profile__name { margin-top: 18px; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem); line-height: 1.1; letter-spacing: -.02em; }
.profile__degree { margin-top: 10px; color: var(--ink); font-size: 1.08rem; font-weight: 500; }
.profile__bio { margin-top: 22px; max-width: 62ch; font-size: 1.1rem; line-height: 1.72; }
.directions__title { max-width: 22ch; margin-bottom: clamp(28px, 4vw, 44px); }
.directions { list-style: none; counter-reset: dir; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.directions li {
  counter-increment: dir; position: relative;
  padding: 26px 28px 26px 92px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); line-height: 1.6;
}
.directions li::before {
  content: counter(dir, decimal-leading-zero);
  position: absolute; left: 26px; top: 22px;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.9rem; line-height: 1; color: var(--brand-600);
  font-variant-numeric: lining-nums tabular-nums;
}
.directions li:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ------------------------------------------------------------------ страница мероприятий */

.project { max-width: 880px; margin-top: 22px; }
.project__lead { font-size: clamp(1.05rem, 1rem + .25vw, 1.2rem); line-height: 1.65; }
.project__facts { list-style: none; display: grid; gap: 10px; margin-top: 24px; }
.fact {
  display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; align-items: center;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgb(255 255 255 / .8);
}
.fact__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--bg-2); color: var(--brand-700); }
.fact--accent { border-color: var(--brand-100); background: var(--brand-50); }
.fact--accent strong { color: var(--brand-900); }
.fact--accent .fact__icon { background: var(--brand-700); color: #fff; }
.themes { margin-top: 24px; }
.themes summary { list-style: none; }
.themes summary::-webkit-details-marker { display: none; }
.themes__chevron { transition: transform .25s var(--ease); }
.themes[open] .themes__chevron { transform: rotate(90deg); }
.themes[open] summary .icon { transform: rotate(90deg); }
.themes__panel {
  margin-top: 16px; padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--surface); box-shadow: var(--shadow-m);
  animation: drop .25s var(--ease) both;
}
.themes__title { font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; }
.themes__list { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.themes__list li { position: relative; padding-left: 26px; line-height: 1.6; }
.themes__list li::before {
  content: ""; position: absolute; left: 2px; top: .55em; width: 10px; height: 10px; border-radius: 3px;
  border: 2px solid var(--brand-600); transform: rotate(45deg);
}
.project__upcoming { margin-top: 22px; }

.year-tabs { display: none; flex-wrap: wrap; gap: 6px; }
.js .year-tabs { display: flex; }
.year-tabs__btn {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  color: var(--ink-2); font-weight: 600; font-variant-numeric: tabular-nums; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.year-tabs__btn:hover { border-color: var(--ink-2); color: var(--ink); }
.year-tabs__btn[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.archive__panel + .archive__panel { margin-top: 48px; }
.js .archive__panel + .archive__panel { margin-top: 0; }
.archive__panel[hidden] { display: none; }
.archive__panel:focus-visible { outline-offset: 8px; }
.archive__year { margin-bottom: 18px; font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; }
.js .archive__year { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.archive__panel:not([hidden]) { animation: rise .35s var(--ease) both; }

.archive-cards { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.archive-card { display: flex; flex-direction: column; padding: 24px 26px; border-radius: 20px; background: var(--bg); border: 1px solid var(--line); }
.archive-card__tag { margin-bottom: 10px; }
.archive-card__title { font-family: var(--font-serif); font-weight: 600; font-size: 1.22rem; line-height: 1.3; }
.archive-card__title a { color: var(--ink); text-decoration: none; }
.archive-card__title a:hover { color: var(--brand-700); text-decoration: underline; }
.archive-card__facts { list-style: none; display: grid; gap: 4px; margin-top: 12px; font-size: .95rem; }
.archive-card__facts .k { color: var(--muted); font-weight: 600; }
.archive-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 18px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.table th {
  padding: 14px 18px; background: var(--bg); color: var(--muted); text-align: left;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.table td { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: top; color: var(--ink); }
.table tbody tr { transition: background-color .15s var(--ease); }
.table tbody tr:hover { background: #fafcfc; }
.table td:first-child { width: 64px; color: var(--muted); }
.table--archive td:nth-child(2) { white-space: nowrap; }
.table--archive td:last-child { color: var(--ink-2); }
.table--schedule td:nth-child(2) { white-space: nowrap; font-weight: 600; }

/* ------------------------------------------------------------------ литература */

.books { list-style: none; }
.book { display: grid; grid-template-columns: clamp(140px, 20vw, 230px) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; padding-block: clamp(28px, 4vw, 48px); }
.book + .book { border-top: 1px solid var(--line); }
.book__cover { display: block; perspective: 800px; }
.book__cover img {
  width: 100%; border-radius: 4px 10px 10px 4px;
  box-shadow: 0 30px 50px -22px rgb(11 63 62 / .55), 0 2px 6px rgb(16 41 43 / .18), inset 4px 0 0 rgb(0 0 0 / .08);
  transform: rotate(-2deg); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.book:hover .book__cover img { transform: rotate(0) translateY(-4px); }
.book__text { max-width: 68ch; font-size: 1.08rem; line-height: 1.72; }
.book__body .btn { margin-top: 22px; }

/* ------------------------------------------------------------------ партнёрам */

.letter { max-width: 900px; margin-top: 20px; }
.letter__lead { font-size: 1.15rem; }
.letter__project {
  margin-top: 14px; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.45rem, 1.05rem + 1.5vw, 2.3rem); line-height: 1.2; letter-spacing: -.005em; color: var(--brand-800);
}
.letter__text { margin-top: 14px; font-size: 1.1rem; }
.letter__program {
  display: inline-flex; margin-top: 18px; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--brand-100); background: var(--surface);
  color: var(--ink); font-weight: 700; letter-spacing: .05em; box-shadow: var(--shadow-s);
}
.notice {
  display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; align-items: center;
  margin-bottom: 20px; padding: 16px 20px; border: 1px solid var(--warn-line); border-radius: 16px;
  background: var(--warn-bg); color: var(--warn-ink);
}
.notice strong { color: var(--warn-ink); }
.notice__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: #fff; color: var(--warn-icon); }

.pricing__title { margin-bottom: 26px; }
.plans + .pricing__title { margin-top: clamp(48px, 6vw, 80px); }
.plans { display: grid; gap: 20px; align-items: stretch; }
.plans--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plans--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--surface);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.plan--featured {
  border: 2px solid var(--brand-600);
  background: linear-gradient(180deg, #eef9f7, var(--surface) 45%);
  box-shadow: 0 0 0 6px rgb(0 171 165 / .08), var(--shadow-m);
}
.plan__badge {
  position: absolute; top: -13px; left: clamp(24px, 3vw, 32px);
  padding: 5px 12px; border-radius: 999px; background: var(--brand-700); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.plan__name { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--ink-2); }
.plan__price {
  margin-top: 8px; font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 1.6rem + 1.2vw, 2.6rem);
  line-height: 1.1; color: var(--ink); font-variant-numeric: lining-nums tabular-nums; letter-spacing: -.02em;
}
.plan__unit { font-family: var(--font-sans); font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan__list { list-style: none; display: grid; gap: 10px; margin: 22px 0 24px; }
.plan__list li { position: relative; padding-left: 30px; line-height: 1.5; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .1em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007a76' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4L18 8.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.plan__note { margin-top: auto; padding: 10px 14px; border-radius: 12px; background: var(--bg); color: var(--muted); font-size: .88rem; }

.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(40px, 7vw, 88px) clamp(22px, 5vw, 64px);
  border-radius: 36px; color: rgb(255 255 255 / .86);
  background: radial-gradient(700px 360px at 50% -10%, rgb(114 210 201 / .28), transparent 70%), linear-gradient(160deg, #0b4d4a, var(--brand-800) 55%, #00807b);
  box-shadow: var(--shadow-l);
}
.cta-panel__facets { position: absolute; width: 420px; right: -120px; bottom: -150px; opacity: .3; mix-blend-mode: screen; pointer-events: none; }
.cta-panel__title { position: relative; color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.9rem, 1.4rem + 1.8vw, 3rem); line-height: 1.1; }
.cta-panel__text { position: relative; margin-top: 14px; font-size: 1.15rem; }
.cta-panel__chip {
  position: relative; display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  padding: 8px 16px; border-radius: 999px; background: rgb(255 255 255 / .12); color: #fff; font-size: .95rem;
}
.cta-panel__chip .icon { color: #ffd166; }
.cta-panel .btn { position: relative; margin-top: 30px; }

/* ------------------------------------------------------------------ 404 */

.not-found { position: relative; overflow: hidden; padding-block: clamp(72px, 12vw, 160px); text-align: center; }
.not-found__facets { position: absolute; left: 50%; top: 50%; width: min(620px, 90vw); transform: translate(-50%, -54%); opacity: .35; pointer-events: none; }
.not-found__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.not-found__code {
  font-family: var(--font-serif); font-weight: 700; font-size: clamp(6rem, 4rem + 8vw, 10rem); line-height: .9; letter-spacing: -.04em;
  color: var(--brand-600);
}
.not-found__title { margin-top: 18px; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.5rem); }
.not-found__text { margin: 14px 0 32px; max-width: 46ch; font-size: 1.1rem; }

/* ------------------------------------------------------------------ подвал */

.site-footer {
  position: relative; overflow: hidden; padding-block: clamp(56px, 7vw, 88px) 32px;
  background: radial-gradient(900px 400px at 100% 0%, rgb(0 171 165 / .16), transparent 60%), #0c2426;
  color: rgb(255 255 255 / .7); font-size: .95rem;
}
.site-footer a { color: rgb(255 255 255 / .88); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px 40px; }
.footer-brand__logo img { width: auto; height: 34px; }
.footer-brand__title { margin-top: 18px; max-width: 34ch; color: #fff; font-size: 1.08rem; font-weight: 600; line-height: 1.35; }
.footer-brand__note { margin-top: 6px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid rgb(255 255 255 / .22); border-radius: 999px; font-weight: 600;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.pill-link:hover { background: rgb(255 255 255 / .08); border-color: rgb(255 255 255 / .45); }
.footer-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-cta .btn--primary { --btn-bg: var(--brand-600); }
.footer-cta .btn--primary:hover { --btn-bg: var(--brand-700); }
.footer-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 40px;
  margin-top: 48px; padding-top: 40px; border-top: 1px solid rgb(255 255 255 / .1);
}
.footer-col__title { margin-bottom: 16px; color: rgb(255 255 255 / .5); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-mail { display: inline-block; color: #fff !important; font-size: 1.05rem; font-weight: 600; }
.footer-meta { margin-top: 6px; }
.footer-note {
  margin-top: 16px; padding: 18px 20px; border: 1px solid rgb(255 255 255 / .09); border-radius: 18px; background: rgb(255 255 255 / .04);
}
.footer-col .footer-note:first-child { margin-top: 0; }
.footer-note__title { color: var(--brand-300); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-note__title--plain { color: #fff; font-size: 1rem; letter-spacing: 0; text-transform: none; }
.footer-note__text { margin-top: 8px; }
.footer-note__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--brand-300) !important; font-weight: 600; }
.footer-note__link .icon { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.footer-note__link:hover .icon { transform: translateX(3px); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / .1); font-size: .875rem;
}
.footer-bottom a { text-decoration: underline; text-decoration-color: rgb(255 255 255 / .3); }

/* ------------------------------------------------------------------ появление при прокрутке */

[data-reveal] { transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal-ready [data-reveal]:not(.is-in) { opacity: 0; transform: translateY(18px); }

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

/* ------------------------------------------------------------------ адаптив */

@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: inline-block; }
  .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .materials__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { min-height: 0; padding-top: 170px; }
  .hero__facets { inset: 0 -12% auto auto; width: 72%; height: auto; }
  .next-card { position: relative; left: 0; width: 100%; max-width: 520px; }
  .leaders__grid { grid-template-columns: minmax(0, 1fr); }
  .person + .person { padding-left: 0; padding-top: 32px; border-left: 0; border-top: 1px solid var(--line); }
  .invite__panel { grid-template-columns: minmax(0, 1fr); }
  .invite__logos { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; max-width: 560px; justify-self: start; }
  .participate__grid { grid-template-columns: minmax(0, 1fr); }
  .geo__grid { grid-template-columns: minmax(0, 1fr); }
  .profile { grid-template-columns: minmax(0, 1fr); }
  .profile__photo { max-width: 420px; }
  .plans--3 { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .site-header__inner { min-height: 64px; }
  .brand__logo { height: 26px; }
  .brand__name { font-size: .7rem; max-width: 190px; padding-left: 10px; }
  .event { grid-template-columns: 76px minmax(0, 1fr); padding: 18px; }
  .event__day { font-size: 2.1rem; }
  .event__actions { grid-column: 1 / -1; justify-content: flex-start; }
  .event.is-past .event__actions { grid-column: 2; }
  .directions { grid-template-columns: minmax(0, 1fr); }
  .directions li { padding: 22px 20px 22px 76px; }
  .directions li::before { left: 20px; font-size: 1.6rem; }
  .archive-cards { grid-template-columns: minmax(0, 1fr); }
  .plans--2 { grid-template-columns: minmax(0, 1fr); }
  .book { grid-template-columns: minmax(0, 1fr); }
  .book__cover { max-width: 200px; }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logo-grid li { height: 88px; padding: 14px; }
  .materials__list { grid-template-columns: minmax(0, 1fr); }
  .segmented { width: 100%; }
  .segmented__btn { flex: 1; padding-inline: 10px; }

  /* таблицы → карточки */
  .table-wrap { border: 0; background: transparent; overflow: visible; }
  .table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .table, .table tbody, .table tr, .table td { display: block; width: auto !important; }
  .table tbody { display: grid; gap: 10px; }
  .table tr { padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
  .table td { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; padding: 4px 0; border: 0; white-space: normal !important; }
  .table td::before { content: attr(data-label); color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding-top: .2em; }
}

@media (max-width: 480px) {
  .brand__name { display: none; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .invite__logos { grid-template-columns: minmax(0, 1fr); justify-self: stretch; max-width: none; }
  .logo-tile { height: 108px; }
  .hero__actions .btn { width: 100%; }
}

@media print {
  .site-header, .site-footer, .hero__visual, .segmented, .year-tabs, .page-hero__facets { display: none !important; }
  .archive__panel[hidden] { display: block !important; }
  body { background: #fff; }
}
