/* ============================================================
   events.css — стили раздела событий events.skotovody.com
   Поверх токенов из styles.css
   ============================================================ */

.ev-app { background: var(--bg); min-height: 100vh; }
.ev-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.ev-kicker {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ev-kicker::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

/* ───── Header ───── */
.ev-header {
  position: sticky; top: 0; z-index: 60;
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.ev-header[data-dark="1"][data-scrolled="0"] { background: transparent; }
.ev-header[data-dark="1"][data-scrolled="1"],
.ev-header[data-dark="0"] {
  background: oklch(0.98 0.012 85 / 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.ev-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.ev-nav { display: flex; gap: 4px; }
.ev-nav-link {
  padding: 9px 14px; border-radius: 100px; font-size: 14px; font-weight: 600;
  color: var(--ink-2); transition: background .15s, color .15s; white-space: nowrap;
}
.ev-header[data-dark="1"][data-scrolled="0"] .ev-nav-link { color: oklch(0.9 0.02 85); }
.ev-nav-link:hover { background: var(--bg-sunk); color: var(--ink); }
.ev-header[data-dark="1"][data-scrolled="0"] .ev-nav-link:hover { background: oklch(1 0 0 / 0.12); color: #fff; }
.ev-nav-link[data-active="1"] { background: var(--forest-soft); color: var(--forest-ink); }
.ev-header[data-dark="1"][data-scrolled="0"] .ev-nav-link[data-active="1"] { background: oklch(1 0 0 / 0.16); color: #fff; }

@media (max-width: 900px) { .ev-nav { display: none; } .ev-hide-sm { display: none !important; } }

/* ───── Forum hero (dark «точка сборки») ───── */
.ev-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 75% 15%, oklch(0.42 0.07 70 / 0.45), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, oklch(0.35 0.06 145 / 0.5), transparent 55%),
    linear-gradient(165deg, oklch(0.24 0.02 60) 0%, oklch(0.18 0.022 40) 100%);
  color: oklch(0.96 0.02 85);
  margin-top: -72px; padding-top: 72px;
}
.ev-hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: repeating-linear-gradient(115deg, oklch(1 0 0 / 0.015) 0 2px, transparent 2px 5px);
  z-index: 1;
}
/* Full-bleed фото на весь баннер (§3.1 + image-slots). Фото — слой z0, направленный
   scrim — z1 (тёмный слева/снизу под текстом, прозрачный справа/сверху — там фото читается). */
.ev-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ev-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, oklch(0.13 0.02 45 / 0.95) 0%, oklch(0.13 0.02 45 / 0.72) 36%, oklch(0.13 0.02 45 / 0.18) 68%, transparent 100%),
    linear-gradient(0deg, oklch(0.12 0.02 40 / 0.94) 0%, oklch(0.12 0.02 40 / 0.25) 44%, transparent 72%);
}
/* Контент над фото; пустые зоны прозрачны для drop, интерактив — кликабелен. */
.ev-hero--bleed .ev-container { position: relative; z-index: 2; pointer-events: none; }
.ev-hero--bleed .ev-hero-inner a,
.ev-hero--bleed .ev-hero-inner button,
.ev-hero--bleed .ev-hero-card { pointer-events: auto; }
/* Подсказка «фото на весь экран» — вверху справа, не на десктоп-планшете ≤920px. */
.ev-hero-hint {
  position: absolute; top: 90px; right: 24px; z-index: 2; pointer-events: none;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: oklch(0.9 0.02 85);
  background: oklch(0.13 0.02 45 / 0.45); border: 1px solid oklch(1 0 0 / 0.14);
  padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(6px);
}
@media (max-width: 920px) { .ev-hero-hint { display: none; } }
.ev-hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding: 80px 0 92px; position: relative; z-index: 2; }
.ev-hero h1 {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em;
  font-size: clamp(48px, 5.6vw, 88px); line-height: 1.0; margin: 20px 0 0;
  padding-bottom: 0.04em;
}
.ev-hero h1 .ac { color: var(--ochre); font-style: italic; }
.ev-hero-sub { font-size: 19px; line-height: 1.55; color: oklch(0.86 0.02 85); margin: 22px 0 0; max-width: 560px; text-wrap: pretty; }
.ev-hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.ev-hero-meta-item { display: flex; align-items: flex-start; gap: 12px; }
.ev-hero-meta-ic { width: 42px; height: 42px; border-radius: 12px; background: oklch(1 0 0 / 0.1); display: grid; place-items: center; flex-shrink: 0; }
.ev-hero-meta-l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: oklch(0.75 0.02 85); }
.ev-hero-meta-v { font-size: 16px; font-weight: 700; margin-top: 3px; }
.ev-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; align-items: center; }
.ev-hero-card {
  background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: var(--r-xl); padding: 26px; backdrop-filter: blur(8px);
}
.ev-hero-card-stage {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
  background: var(--ochre); color: oklch(0.22 0.05 60); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.ev-btn-lg { padding: 14px 24px; font-size: 16px; border-radius: var(--r-md); }

@media (max-width: 920px) {
  .ev-hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 64px; }
}

/* ───── Generic section ───── */
.ev-section { padding: 84px 0; }
.ev-section-sm { padding: 56px 0; }
.ev-section[data-tone="sunk"] { background: var(--bg-sunk); }
.ev-section[data-tone="forest"] { background: var(--forest-soft); }
.ev-section[data-tone="dark"] { background: linear-gradient(165deg, oklch(0.24 0.02 60), oklch(0.19 0.022 40)); color: oklch(0.96 0.02 85); }

/* ───── Hub hero band ───── */
.hub-hero { padding: 56px 0 24px; }
.hub-feature {
  position: relative; overflow: hidden; border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, oklch(0.45 0.08 70 / 0.5), transparent 60%),
    linear-gradient(155deg, oklch(0.26 0.03 145) 0%, oklch(0.18 0.02 40) 100%);
  color: oklch(0.96 0.02 85);
  display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 440px;
}
.hub-feature-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.hub-feature-media { position: relative; }
.hub-feature-media .ev-ph { position: absolute; inset: 0; }
@media (max-width: 880px) { .hub-feature { grid-template-columns: 1fr; } .hub-feature-media { min-height: 220px; } .hub-feature-body { padding: 32px; } }

/* ───── Event cards ───── */
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.ev-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.ev-card[data-past="1"] { opacity: 0.86; }
.ev-card-media { position: relative; }
.ev-card-img, .ev-card-cover-fb { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ev-card-date {
  position: absolute; top: 14px; left: 14px; background: var(--surface);
  border-radius: 12px; padding: 7px 11px; text-align: center; box-shadow: var(--shadow-md); line-height: 1;
}
.ev-card-date-m { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--terracotta); }
.ev-card-date-d { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.ev-card-flag {
  position: absolute; top: 14px; right: 14px; background: var(--ochre); color: oklch(0.22 0.05 60);
  font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.ev-card-flag[data-partner="1"] { background: oklch(0.9 0.03 240); color: oklch(0.34 0.08 240); }
.ev-card-past { position: absolute; inset: 0; background: oklch(0.2 0.02 60 / 0.42); display: grid; place-items: center; color: #fff; font-weight: 700; letter-spacing: 0.04em; font-size: 14px; }
.ev-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.ev-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
.ev-card-sub { font-size: 14px; color: var(--ink-3); line-height: 1.45; margin: 8px 0 0; }
.ev-card-meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0; font-size: 13px; color: var(--ink-2); }
.ev-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.ev-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
.ev-card-price { font-weight: 700; font-size: 15px; color: var(--forest-ink); }
.ev-card-go { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--ink-2); }

/* ───── Filter chips row ───── */
.ev-filterbar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ev-chip-btn {
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-2);
  transition: all .15s;
}
.ev-chip-btn:hover { border-color: var(--line-strong); }
.ev-chip-btn[data-active="1"] { background: var(--forest); border-color: var(--forest); color: #fafaf6; }

/* ───── Pillars ───── */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; transition: transform .15s, box-shadow .15s;
}
.pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pillar-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.pillar-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.pillar-desc { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin-top: 8px; }

/* ───── Why blocks ───── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell { background: var(--surface); padding: 32px; }
.why-num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--ochre); }
.why-title { font-family: var(--font-display); font-size: 23px; font-weight: 600; margin: 10px 0; letter-spacing: -0.01em; }
.why-desc { font-size: 15px; line-height: 1.6; color: var(--ink-3); }

/* ───── Themes (7 blocks) ───── */
.theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 760px) { .theme-grid { grid-template-columns: 1fr; } }
.theme-row {
  display: flex; gap: 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 24px; align-items: flex-start;
  transition: border-color .15s, transform .15s;
}
.theme-row:hover { border-color: var(--forest); transform: translateX(3px); }
.theme-n { font-family: var(--font-display); font-size: 34px; font-weight: 500; color: var(--line-strong); line-height: 1; flex-shrink: 0; min-width: 46px; }
.theme-row:hover .theme-n { color: var(--forest); }
.theme-h { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.theme-d { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin-top: 6px; }

/* ───── Program ───── */
.prog-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.prog-tab {
  flex: 1; min-width: 200px; text-align: left; padding: 16px 20px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); transition: all .15s;
}
.prog-tab:hover { border-color: var(--line-strong); }
.prog-tab[data-active="1"] { background: oklch(0.24 0.02 60); border-color: oklch(0.24 0.02 60); color: oklch(0.96 0.02 85); }
.prog-tab-day { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.prog-tab[data-active="1"] .prog-tab-kind, .prog-tab[data-active="1"] .prog-tab-date { color: oklch(0.8 0.02 85); }
.prog-tab-date { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.prog-tab-kind { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 8px; padding: 2px 8px; border-radius: 100px; background: var(--bg-sunk); color: var(--ink-2); }
.prog-tab[data-active="1"] .prog-tab-kind { background: oklch(1 0 0 / 0.15); color: #fff; }

.prog-list { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; }
.prog-item { display: grid; grid-template-columns: 96px 1fr; gap: 18px; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.prog-item:last-child { border-bottom: 0; }
.prog-item[data-hl="1"] { background: var(--ochre-soft); }
.prog-time { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--ink); }
.prog-dur { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 3px; }
.prog-title { font-size: 15.5px; font-weight: 600; line-height: 1.4; }
.prog-tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--forest-ink); background: var(--forest-soft); padding: 2px 9px; border-radius: 100px; margin-top: 8px; }
.prog-item[data-kind="break"] .prog-title { font-weight: 500; color: var(--ink-3); }
.prog-item[data-kind="auction"] .prog-tag, .prog-item[data-kind="gala"] .prog-tag { background: var(--ochre); color: oklch(0.22 0.05 60); }

/* ───── Tickets ───── */
.tk-toggle { display: inline-flex; background: var(--bg-sunk); border-radius: 100px; padding: 4px; gap: 4px; }
.tk-toggle button { padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--ink-2); transition: all .15s; }
.tk-toggle button[data-active="1"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.tk-toggle button[data-active="1"] small { color: var(--forest); }
.tk-toggle small { display: block; font-size: 10px; font-weight: 600; color: var(--ink-mute); margin-top: 1px; }

.tk-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 720px) { .tk-cards { grid-template-columns: 1fr; } }
.tk-card { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 28px; position: relative; display: flex; flex-direction: column; }
.tk-card[data-tone="gala"] { background: linear-gradient(165deg, oklch(0.24 0.02 60), oklch(0.2 0.025 40)); color: oklch(0.96 0.02 85); border-color: transparent; }
.tk-card[data-popular="1"] { border-color: var(--forest); box-shadow: var(--shadow-md); }
.tk-pop { position: absolute; top: -12px; left: 28px; background: var(--forest); color: #fafaf6; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; white-space: nowrap; }
.tk-name { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.01em; }
.tk-blurb { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin: 8px 0 18px; min-height: 42px; }
.tk-card[data-tone="gala"] .tk-blurb { color: oklch(0.82 0.02 85); }
.tk-price { font-family: var(--font-display); font-size: 40px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.tk-price-old { font-size: 16px; color: var(--ink-mute); text-decoration: line-through; margin-left: 10px; font-family: var(--font-ui); }
.tk-price-note { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.tk-card[data-tone="gala"] .tk-price-note { color: oklch(0.8 0.02 85); }
.tk-feat { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tk-feat li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.4; align-items: flex-start; }
.tk-feat li[data-off="1"] { color: var(--ink-mute); }
.tk-feat-ic { flex-shrink: 0; margin-top: 1px; }

/* ───── Tickets comparison table ───── */
.tk-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; }
.tk-table th, .tk-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.tk-table thead th { background: var(--bg-sunk); font-weight: 700; }
.tk-table thead th.tk-col { text-align: center; width: 140px; }
.tk-table td.tk-col { text-align: center; }
.tk-table tr:last-child td { border-bottom: 0; }
.tk-yes { color: var(--forest); }
.tk-no { color: var(--ink-mute); }

/* ───── Checkout ───── */
.co-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
@media (max-width: 880px) { .co-grid { grid-template-columns: 1fr; } }
.co-steps { display: flex; gap: 8px; margin-bottom: 28px; }
.co-step { flex: 1; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-3); }
.co-step[data-active="1"] { border-color: var(--forest); color: var(--ink); }
.co-step[data-done="1"] { background: var(--forest-soft); border-color: transparent; color: var(--forest-ink); }
.co-step-n { width: 24px; height: 24px; border-radius: 100px; background: var(--bg-sunk); display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.co-step[data-active="1"] .co-step-n { background: var(--forest); color: #fafaf6; }
/* На мобайле/планшете (≤900px) подписи этапов скрывались общим .ev-hide-sm →
   оставались голые цифры 1·2·3. Возвращаем подписи компактно: цифра над подписью,
   по центру, мелким шрифтом — три этапа влезают в ряд. */
@media (max-width: 900px) {
  .co-step { flex-direction: column; gap: 6px; padding: 10px 6px; text-align: center; font-size: 11px; line-height: 1.2; }
  .co-step .ev-hide-sm { display: block !important; }
}
.co-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 26px; }
.co-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; position: sticky; top: 92px; }
.co-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; font-size: 14px; border-bottom: 1px dashed var(--line); }
.co-row span:first-child { min-width: 0; }
.co-row span:last-child { white-space: nowrap; flex-shrink: 0; }
.co-row:last-of-type { border-bottom: 0; }
.co-total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-top: 14px; margin-top: 8px; border-top: 2px solid var(--ink); }
.co-total span:last-child { white-space: nowrap; }
.co-qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line-strong); border-radius: 100px; overflow: hidden; flex-shrink: 0; background: var(--surface); }
.co-qty button { width: 36px; height: 36px; display: grid; place-items: center; background: var(--bg-sunk); color: var(--ink); transition: background .12s, color .12s; }
.co-qty button:hover { background: var(--forest); color: #fafaf6; }
.co-qty span { min-width: 38px; text-align: center; font-weight: 700; font-family: var(--font-mono); font-size: 15px; color: var(--ink); }
.co-field { margin-bottom: 16px; }
.co-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }

/* ───── Sponsors ───── */
.sp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.sp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; border-top: 4px solid; }
.sp-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.sp-price { font-size: 24px; font-weight: 700; margin: 6px 0 12px; letter-spacing: -0.01em; }
.sp-blurb { font-size: 13px; line-height: 1.5; color: var(--ink-3); }

/* ───── Speakers ───── */
.spk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; }
.spk { text-align: center; }
.spk-ph { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; margin-bottom: 12px; }
.spk-name { font-weight: 700; font-size: 15px; }
.spk-role { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; line-height: 1.35; }

/* ───── Recap stats ───── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 640px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-v { font-family: var(--font-display); font-size: 48px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.stat-l { font-size: 13px; color: var(--ink-3); margin-top: 8px; }

/* ───── Location / venue ───── */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
@media (max-width: 760px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-info { display: flex; flex-direction: column; gap: 18px; }
.venue-fact { display: flex; gap: 14px; align-items: flex-start; }
.venue-fact-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--forest-soft); display: grid; place-items: center; flex-shrink: 0; }

/* ───── Contacts ───── */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.contact-topic { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ochre-deep); }
.contact-name { font-weight: 700; font-size: 16px; margin: 10px 0 6px; }
.contact-phone { font-family: var(--font-mono); font-size: 14px; color: var(--ink-2); }

/* ───── Footer ───── */
.ev-footer { background: linear-gradient(165deg, oklch(0.2 0.018 60), oklch(0.16 0.02 40)); color: oklch(0.92 0.02 85); padding: 56px 0 28px; margin-top: 0; }
.ev-footer-top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid oklch(1 0 0 / 0.1); }
@media (max-width: 760px) { .ev-footer-top { grid-template-columns: 1fr; gap: 32px; } }
.ev-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 540px) { .ev-footer-cols { grid-template-columns: 1fr 1fr; } }
.ev-foot-h { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.7 0.02 85); margin-bottom: 14px; }
.ev-foot-link { display: block; text-align: left; font-size: 14px; line-height: 1.4; height: auto; color: oklch(0.88 0.02 85); padding: 6px 0; transition: color .15s; }
.ev-foot-link:hover { color: var(--ochre); }
.ev-foot-socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.ev-foot-social { width: 40px; height: 40px; border-radius: 100px; background: oklch(1 0 0 / 0.08); display: grid; place-items: center; color: oklch(0.9 0.02 85); transition: background .15s, transform .15s, opacity .15s; }
.ev-foot-social:hover { background: oklch(1 0 0 / 0.16); }
/* Брендовые PNG-иконки соцсетей (forest-кружок + кремовый глиф) — сам PNG и есть
   кружок, поэтому убираем подложку и растягиваем картинку на все 40px. */
.ev-foot-social--img { background: transparent; padding: 0; overflow: hidden; }
.ev-foot-social--img:hover { background: transparent; transform: translateY(-2px); }
.ev-foot-social--img img { display: block; width: 40px; height: 40px; border-radius: 100px; }
.ev-foot-club { display: flex; align-items: center; gap: 13px; margin-top: 18px; padding: 14px 16px; border-radius: var(--r-md); background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.14); text-decoration: none; transition: background .15s, border-color .15s; }
.ev-foot-club:hover { background: oklch(1 0 0 / 0.1); border-color: var(--ochre); }
.ev-foot-club-ic { width: 38px; height: 38px; border-radius: 10px; background: oklch(1 0 0 / 0.08); display: grid; place-items: center; flex-shrink: 0; }
.ev-foot-club-tx { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.ev-foot-club-t { font-weight: 700; font-size: 15px; color: oklch(0.96 0.02 85); }
.ev-foot-club-s { font-size: 12px; color: oklch(0.72 0.02 85); }

/* ───── Club band ───── */
.club-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-2xl); padding: 32px 36px; }
@media (max-width: 720px) { .club-band { grid-template-columns: 1fr; } }
.club-band-badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest-ink); background: var(--forest-soft); padding: 5px 12px; border-radius: 100px; }
.ev-footer-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 13px; color: oklch(0.65 0.02 85); }

/* ───── Sticky buy bar ───── */
.ev-stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  background: oklch(0.98 0.012 85 / 0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgb(60 40 20 / 0.1);
  transform: translateY(100%); transition: transform .3s;
}
.ev-stickybar[data-show="1"] { transform: translateY(0); }
.ev-stickybar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }

/* ───── Calendar ───── */
.cal-row { display: flex; gap: 18px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); cursor: pointer; transition: border-color .15s, transform .15s, box-shadow .15s; align-items: center; }
.cal-row:hover { border-color: var(--forest); transform: translateX(3px); box-shadow: var(--shadow-md); }
.cal-date { text-align: center; flex-shrink: 0; min-width: 64px; }
.cal-date-m { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--terracotta); }
.cal-date-d { font-family: var(--font-display); font-size: 38px; font-weight: 600; line-height: 1; }
.cal-divider { width: 1px; align-self: stretch; background: var(--line); }
.cal-month-head { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin: 36px 0 18px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.cal-month-head:first-child { margin-top: 0; }

/* utility */
.ev-btn-block { width: 100%; justify-content: center; }
.muted { color: var(--ink-3); }

/* ───── Speaker cards ───── */
.spk-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }
.spk-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 22px; transition: transform .15s, box-shadow .15s, border-color .15s; cursor: pointer; display: flex; flex-direction: column; }
.spk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--forest); }
.spk-card:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.spk-card-link { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--forest-ink); }
.spk-card:hover .spk-card-link { color: var(--forest); }
.spk-card-head { display: flex; gap: 14px; align-items: flex-start; }
.spk-card-photo { width: 64px; height: 64px; border-radius: 14px; overflow: hidden; flex-shrink: 0; }
.spk-card-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.22; }
.spk-card-en { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 2px; }
.spk-card-role { font-size: 13px; color: var(--forest-ink); font-weight: 600; margin-top: 7px; line-height: 1.3; }
.spk-card-cred { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; margin: 14px 0; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spk-topics { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.spk-topics li { display: flex; gap: 9px; font-size: 13px; line-height: 1.4; color: var(--ink-2); align-items: flex-start; }
.spk-topics li svg { flex-shrink: 0; margin-top: 2px; }
.spk-more { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border: 1px dashed var(--line-strong); border-radius: var(--r-lg); font-size: 14px; font-weight: 600; color: var(--ochre-deep); }

/* ───── Speaker profile overlay ───── */
.spk-overlay { position: fixed; inset: 0; z-index: 300; background: oklch(0.2 0.02 60 / 0.5); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 24px; animation: spkFade .18s ease; }
@keyframes spkFade { from { opacity: 0; } to { opacity: 1; } }
.spk-modal { background: var(--surface); border-radius: var(--r-2xl); max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-lg); animation: spkRise .22s cubic-bezier(.2,.8,.2,1); }
@keyframes spkRise { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.spk-modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 40px; height: 40px; border-radius: 100px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--ink-2); transition: background .15s; }
.spk-modal-close:hover { background: var(--bg-sunk); }
.spk-modal-grid { display: grid; grid-template-columns: 280px 1fr; }
@media (max-width: 700px) { .spk-modal-grid { grid-template-columns: 1fr; } }
.spk-modal-aside { background: var(--bg-sunk); padding: 26px; border-right: 1px solid var(--line); border-radius: var(--r-2xl) 0 0 var(--r-2xl); }
@media (max-width: 700px) { .spk-modal-aside { border-right: 0; border-bottom: 1px solid var(--line); border-radius: var(--r-2xl) var(--r-2xl) 0 0; } }
.spk-modal-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; }
.spk-modal-sessions { margin-top: 20px; }
.spk-modal-sub { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.spk-modal-session { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; line-height: 1.4; color: var(--ink-2); padding: 7px 0; }
.spk-modal-session svg { flex-shrink: 0; margin-top: 2px; }
.spk-modal-body { padding: 30px 32px; }
.spk-modal-country { font-size: 13px; font-weight: 600; color: var(--ink-3); }
.spk-modal-en { font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); letter-spacing: 0.03em; margin-top: 4px; }
.spk-modal-role { font-size: 15px; font-weight: 700; color: var(--forest-ink); margin-top: 12px; }
.spk-modal-cred { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
.spk-modal-bio { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin-top: 16px; text-wrap: pretty; }
.spk-modal-topics { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 11px; }
.spk-modal-topics li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; align-items: flex-start; }
.spk-modal-topics li svg { flex-shrink: 0; margin-top: 2px; }

/* ───── Gala band ───── */
.gala-band {
  display: grid; grid-template-columns: 0.9fr 1.1fr; border-radius: var(--r-2xl); overflow: hidden;
  background: linear-gradient(155deg, oklch(0.26 0.03 35) 0%, oklch(0.18 0.022 30) 100%);
  color: oklch(0.96 0.02 85); min-height: 400px;
}
.gala-media { position: relative; min-height: 240px; }
.gala-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) { .gala-band { grid-template-columns: 1fr; } .gala-body { padding: 30px; } }
/* Гала с фоновым фото (v1.1, image-slots): фото — фон всего баннера, scrim в inline-фоне
   для читаемости текста, текст на всю ширину слева. */
.gala-band--photo { grid-template-columns: 1fr; }
.gala-band--photo .gala-body { max-width: 640px; }

/* ───── Public day ───── */
.pubday-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 820px) { .pubday-grid { grid-template-columns: 1fr; } }
.pubday-activities { display: flex; flex-direction: column; gap: 10px; }
.pubday-act { display: flex; gap: 14px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; font-size: 15px; font-weight: 600; }
.pubday-act-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--forest-soft); display: grid; place-items: center; flex-shrink: 0; }
.pubday-tickets { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; position: sticky; top: 92px; }
.pubday-price-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.pubday-price-row:last-of-type { border-bottom: 0; }

/* ───── Support (sponsors, no figures) ───── */
.support-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.support-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; transition: transform .15s, box-shadow .15s; }
.support-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.support-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--ochre-soft); display: grid; place-items: center; margin-bottom: 14px; }
.support-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.support-desc { font-size: 13px; line-height: 1.5; color: var(--ink-3); margin-top: 8px; }
.support-cta { margin-top: 28px; background: var(--forest-soft); border-radius: var(--r-xl); padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ───── Sponsors logo wall (§3.11a, image-slots) — логотипы по уровню, без цифр ───── */
.sp-tier { margin-bottom: 34px; }
.sp-tier:last-of-type { margin-bottom: 0; }
.sp-tier-head { display: flex; align-items: baseline; gap: 9px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.sp-tier-name { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sp-tier-note { font-size: 12px; color: var(--ink-3); }
.sp-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.sp-logo { display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px 18px; box-shadow: var(--shadow-sm); }
.sp-tier[data-size="xl"] .sp-logo { width: min(420px, 100%); height: 130px; }   /* Титульный — 1 */
.sp-tier[data-size="lg"] .sp-logo { width: 280px; height: 100px; }              /* Платиновые — 2 */
.sp-tier[data-size="md"] .sp-logo { width: 216px; height: 82px; }               /* Золотые — 3 */
.sp-tier[data-size="sm"] .sp-logo { width: 150px; height: 62px; }               /* Партнёры/экспоненты — 10 */
.sp-cta { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
@media (max-width: 560px) {
  .sp-tier[data-size="lg"] .sp-logo { width: 100%; }
  .sp-tier[data-size="md"] .sp-logo,
  .sp-tier[data-size="sm"] .sp-logo { width: 47%; }
}

/* ───── Ticket group heads ───── */
.tk-group-head { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--ink-3); margin-bottom: 16px; }
.tk-group-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest-ink); background: var(--forest-soft); padding: 4px 11px; border-radius: 100px; }
.tk-group-tag[data-tone="public"] { color: var(--ochre-deep); background: var(--ochre-soft); }

/* ───── Attendee blocks (personalized) ───── */
.att-card { background: var(--bg-sunk); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 20px; }
.att-head { display: flex; align-items: center; justify-content: space-between; }
.att-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--forest-soft); color: var(--forest-ink); }
.att-ic[data-tone="gala"] { background: var(--ochre-soft); color: var(--ochre-deep); }
.att-ic[data-tone="public"], .att-ic[data-tone="child"] { background: oklch(0.9 0.04 230); color: oklch(0.36 0.08 230); }
.att-card .input { background: var(--surface); }

/* ============================================================
   Прошедшее событие (recap) — доп. блоки: hero-фото, партнёры, медиа.
   ============================================================ */

/* Hero с фото-фоном на весь баннер (.ev-hero--photo) — текст в одну колонку.
   ВАЖНО: тёмный background-color ПОД фото — иначе пока большое фото грузится,
   полупрозрачный скрим лежит на белом l-canvas → светлая шапка на загрузке. */
.ev-hero, .ev-hero--photo { background-color: oklch(0.16 0.02 48); }
.ev-hero--photo .ev-hero-inner { grid-template-columns: 1fr; }
.ev-hero--photo .ev-hero-inner > div { max-width: 720px; }

/* Ссылка «Профиль спикера» — всегда у нижнего края карточки (одинаково везде). */
.spk-card-link { margin-top: auto; }

/* Партнёры 2025: крупнее, 5 в ряд (9 логотипов → 2 ряда). */
.partner-grid-2025 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.partner-cell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 18px; display: grid; place-items: center; min-height: 120px; }
.partner-logo { max-width: 100%; max-height: 70px; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 1000px) { .partner-grid-2025 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .partner-grid-2025 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .partner-grid-2025 { grid-template-columns: repeat(2, 1fr); } .partner-cell { min-height: 96px; padding: 16px; } .partner-logo { max-height: 56px; } }

/* Фото- и видеорепортаж: две плитки 16:9 (фотогалерея | видео). */
.recap-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .recap-media { grid-template-columns: 1fr; } }
.recap-media-tile { position: relative; display: flex; align-items: flex-end; aspect-ratio: 16/9; border-radius: var(--r-xl); overflow: hidden; background-color: var(--bg-sunk); background-size: cover; background-position: center; text-decoration: none; transition: transform .18s, box-shadow .18s; }
.recap-media-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.recap-media-label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin: 18px; font-weight: 700; font-size: 15px; color: #fff; }
.recap-media-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 66px; height: 66px; border-radius: 100px; background: var(--ochre); display: grid; place-items: center; box-shadow: 0 6px 20px rgb(0 0 0 / 0.35); transition: transform .18s; }
.recap-media-video:hover .recap-media-play { transform: translate(-50%, -50%) scale(1.08); }
.recap-media-play::after { content: ''; border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #1d1408; margin-left: 5px; }
.recap-media-embed { background: #000; }
.recap-media-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
