/* Культура и мультимедиа — единая система 2026-09-19
   Тезис: вечерний зал — угольный фон героя, тёплая бумага для чтения,
   один янтарный акцент. Шрифты: Literata (текст) + Sora (UI). */

:root {
  --ink: #14121a;
  --ink-2: #2c2834;
  --muted: #6b6575;
  --paper: #f6f2ea;
  --paper-2: #ebe4d8;
  --line: rgba(20, 18, 26, 0.12);
  --accent: #c47a3a;
  --accent-deep: #9a5a28;
  --stage: #14121a;
  --stage-2: #1e1a26;
  --on-stage: #f6f2ea;
  --on-stage-muted: rgba(246, 242, 234, 0.72);
  --max: 1120px;
  --read: 680px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ui: "Sora", sans-serif;
  --font-text: "Literata", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.wrap--read { width: min(100% - 40px, var(--read)); }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.brand:hover { color: inherit; text-decoration: none; }
.brand__mark {
  width: 40px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand__name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}
.brand__name h1 {
  font: inherit;
  margin: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
}
.nav a:hover { color: var(--accent-deep); }
.nav__phone {
  color: var(--ink) !important;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .brand__name { font-size: 11px; max-width: 140px; }
  .nav a:not(.nav__phone) { display: none; }
  .nav__phone { font-size: 13px; }
}

/* ----- Hero (home) ----- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 122, 58, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(196, 122, 58, 0.12), transparent 50%),
    linear-gradient(165deg, var(--stage) 0%, var(--stage-2) 55%, #0c0b10 100%);
  color: var(--on-stage);
  overflow: hidden;
}
.hero--video {
  background: var(--stage);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 18, 26, 0.35) 0%, rgba(20, 18, 26, 0.72) 55%, rgba(12, 11, 16, 0.92) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.hero--video::after { opacity: 0.25; }
.hero__inner {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 720px);
  margin: 0 auto 0 clamp(24px, 6vw, 80px);
  padding: clamp(48px, 10vh, 100px) 0 clamp(56px, 12vh, 120px);
  animation: rise 0.9s var(--ease) both;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1,
.hero__title {
  font-family: var(--font-text);
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 14ch;
}
.hero__lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: var(--on-stage-muted);
  max-width: 36ch;
  margin: 0 0 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #1a1208;
}
.btn--primary:hover { background: #d4924f; color: #1a1208; }
.btn--ghost {
  background: transparent;
  color: var(--on-stage);
  border-color: rgba(246, 242, 234, 0.35);
}
.btn--ghost:hover { border-color: var(--on-stage); color: var(--on-stage); }
.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ink:hover { background: var(--ink-2); color: var(--paper); }
.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--line:hover { border-color: var(--ink); color: var(--ink); }

/* ----- Sections ----- */
.section {
  padding: clamp(56px, 10vw, 96px) 0;
}
.section--tight { padding: clamp(40px, 7vw, 64px) 0; }
.section__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-text);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  max-width: 20ch;
}
.section__lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 48ch;
  margin: 0 0 36px;
}

/* ----- Editorial lists (no cards) ----- */
.ed-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.ed-list__item {
  border-bottom: 1px solid var(--line);
}
.ed-list__link {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.3s var(--ease);
}
.ed-list__link:hover {
  text-decoration: none;
  color: inherit;
  padding-left: 8px;
}
.ed-list__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ed-list__name {
  font-family: var(--font-text);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.ed-list__desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 54ch;
}

/* ----- Releases strip ----- */
.releases {
  display: grid;
  gap: 28px;
}
@media (min-width: 720px) {
  .releases { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.release {
  display: grid;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.release:hover { text-decoration: none; color: inherit; }
.release__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.release__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.release:hover .release__visual img { transform: scale(1.04); }
.release__caption {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.release__title {
  font-family: var(--font-text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

/* ----- CTA band ----- */
.cta {
  background: var(--stage);
  color: var(--on-stage);
  padding: clamp(48px, 8vw, 80px) 0;
}
.cta .section__title { color: var(--on-stage); }
.cta .section__lead { color: var(--on-stage-muted); }
.cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ----- Article page ----- */
.page-hero {
  padding: clamp(40px, 8vw, 72px) 0 28px;
  border-bottom: 1px solid var(--line);
}
.crumbs {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); }
.page-hero__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-text);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.article-body {
  padding: 40px 0 72px;
  font-size: 18px;
}
.article-body h2 {
  font-family: var(--font-text);
  font-size: 24px;
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
}
.article-body h3 {
  font-size: 18px;
  font-family: var(--font-ui);
  font-weight: 600;
  margin: 28px 0 10px;
}
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol {
  margin: 0 0 18px;
  padding-left: 1.25em;
}
.article-body li { margin: 0 0 8px; }
.article-body .note {
  margin: 24px 0;
  padding: 16px 0 16px 18px;
  border-left: 3px solid var(--accent);
  color: var(--ink-2);
  font-size: 17px;
}
.article-figure {
  margin: 28px 0;
}
.article-figure img {
  width: 100%;
  height: auto;
  background: var(--paper-2);
}
.article-figure figcaption {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ----- Video ----- */
.video-frame {
  margin: 0 0 28px;
  background: var(--stage);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.video-transcript {
  margin: 24px 0;
  font-family: var(--font-ui);
  font-size: 14px;
}
.video-transcript summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-2);
}
.video-transcript pre {
  margin-top: 12px;
  white-space: pre-wrap;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.video-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 720px) {
  .video-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.video-card {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.video-card:hover { text-decoration: none; color: inherit; }
.video-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--stage);
}
.video-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.video-card:hover .video-card__visual img { transform: scale(1.04); }
.video-card__dur {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(20, 18, 26, 0.82);
  color: var(--paper);
}
.video-card__name {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.article-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ----- Intro block on home ----- */
.intro {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) {
  .intro {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
  }
}
.intro__text p + p { margin-top: 14px; color: var(--ink-2); }
.intro__aside {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.intro__aside strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 8px;
}
.intro__visual {
  display: grid;
  gap: 16px;
}
.intro__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-2);
}

/* ----- Media list (articles with thumbs) ----- */
.media-list {
  list-style: none;
  display: grid;
  gap: 28px;
}
.media-list__link {
  display: grid;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.media-list__link:hover { text-decoration: none; color: inherit; }
@media (min-width: 720px) {
  .media-list__link {
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
  }
}
.media-list__visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper-2);
}
.media-list__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.media-list__link:hover .media-list__visual img { transform: scale(1.04); }
.media-list__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(20, 18, 26, 0.82);
  color: var(--paper);
}
.media-list__text { display: grid; gap: 8px; min-width: 0; }
.media-list__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.media-list__name {
  font-family: var(--font-text);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.media-list__desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 54ch;
}

.article-media { margin-bottom: 8px; }
.video-frame__cap {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.video-frame__cap a { color: var(--ink-2); text-decoration: none; }
.video-frame__cap a:hover { color: var(--accent-deep); }

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: rgba(246, 242, 234, 0.78);
  padding: 48px 0 40px;
  font-family: var(--font-ui);
  font-size: 14px;
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
}
.site-footer__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.site-footer__brand img {
  width: 40px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-footer__name {
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 6px;
}
.site-footer__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.45);
  margin-bottom: 10px;
}
.site-footer__links {
  list-style: none;
  display: grid;
  gap: 8px;
}
.site-footer__copy {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 242, 234, 0.12);
  font-size: 12px;
  color: rgba(246, 242, 234, 0.4);
}

/* ----- Utilities ----- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.more-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  margin-top: 28px;
  text-decoration: none;
  color: var(--ink);
}
.more-link:hover { color: var(--accent-deep); }

/* ----- Release interview (legacy markup) ----- */
.release-body .question {
  font-family: var(--font-ui);
  font-weight: 600;
  font-style: normal;
  margin: 28px 0 12px;
  color: var(--ink);
}
.release-body .frame_pic {
  margin: 16px 0 20px;
  max-width: 240px;
}
.release-body .pic_float_right { float: right; margin: 4px 0 16px 28px; }
.release-body .pic_float_left { float: left; margin: 4px 28px 16px 0; }
.release-body .pic_caption {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 8px;
}
.release-body .info_block,
.release-body .info_block_new_grey {
  margin: 24px 0;
  padding: 16px 0 16px 18px;
  border-left: 3px solid var(--accent);
  background: transparent;
}
.release-body .info_block_title {
  font-family: var(--font-ui);
  font-weight: 600;
  margin-bottom: 8px;
}
.release-body .clearfix { clear: both; }
@media (max-width: 640px) {
  .release-body .pic_float_right,
  .release-body .pic_float_left {
    float: none;
    margin: 16px auto;
    max-width: 100%;
  }
}

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