/* ПРИЗМА — центр современного искусства. Светлая редакционная система:
   бумага / чернила / киноварь. Playfair Display + Manrope + JetBrains Mono. */

:root {
  --paper: #f2eee6;
  --paper-2: #eae4d8;
  --ink: #171512;
  --ink-2: #232019;
  --verm: #e8400f;
  --verm-dim: rgba(232, 64, 15, 0.10);
  --gray: #b9b2a4;
  --muted: #8a8578;
  --line: rgba(23, 21, 18, 0.16);
  --line-soft: rgba(23, 21, 18, 0.09);
  --f-display: 'Playfair Display', serif;
  --f-text: 'Manrope', sans-serif;
  --f-code: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-curtain: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-ui: cubic-bezier(0.77, 0, 0.18, 1);
  --ease-big: cubic-bezier(0.625, 0.05, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

::selection { background: var(--verm); color: var(--paper); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: #cfc8ba; border: 2px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--verm); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
[hidden] { display: none !important; }

.grain { position: fixed; inset: 0; z-index: 900; pointer-events: none; background: url('assets/grain.png'); opacity: 0.32; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; }

/* ---------- типографика ---------- */

.h-display {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(56px, 8.6vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.h-display em { font-style: italic; color: var(--verm); }

.h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.h2 em { font-style: italic; color: var(--verm); }

.lead { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 460px; }

.label {
  font-family: var(--f-code);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.label i, .corner i { font-style: normal; color: var(--verm); }

.footnote { font-family: var(--f-code); font-size: 12.5px; color: var(--muted); }

/* ---------- появление ---------- */

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.rv.in { opacity: 1; transform: translateY(0); }

/* ---------- кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-text);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 0;
  transition: background-color 0.3s var(--ease-ui), color 0.3s var(--ease-ui), border-color 0.3s var(--ease-ui);
}
.btn__arrow { font-style: normal; transition: transform 0.3s var(--ease-ui); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--verm); color: var(--paper); }
.btn--verm { background: var(--verm); color: var(--paper); }
.btn--verm:hover { background: var(--ink); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--verm); color: var(--verm); }

.chip {
  font-family: var(--f-code);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 12px;
  transition: color 0.3s var(--ease-ui), border-color 0.3s var(--ease-ui), background-color 0.3s var(--ease-ui);
}
.chip:hover, .chip.is-active { color: var(--paper); background: var(--ink); border-color: var(--ink); }

/* ---------- курсор ---------- */

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  z-index: 800;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--verm); transition: transform 0.3s var(--ease-ui); }
.cursor::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid var(--verm);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s var(--ease-ui), transform 0.3s var(--ease-ui);
}
.cursor.is-hot::after { opacity: 1; transform: scale(1); }
.cursor.is-hidden { opacity: 0; }

/* ---------- прелоадер и шторка ---------- */

.preloader {
  position: fixed; inset: 0;
  z-index: 950;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: transform 0.8s var(--ease-curtain);
}
.preloader.is-done { transform: translateY(-101%); }
.preloader__brand {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--paper);
}
.preloader__counter { font-family: var(--f-code); font-size: 84px; font-weight: 500; color: var(--paper); line-height: 1; }
.preloader__counter i { font-style: normal; color: var(--verm); }
.preloader__bar { width: 240px; height: 2px; background: rgba(242, 238, 230, 0.16); }
.preloader__bar span { display: block; height: 100%; background: var(--verm); transform: scaleX(0); transform-origin: left; }

.curtain {
  position: fixed; inset: 0;
  z-index: 850;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(101%);
  transition: transform 0.7s var(--ease-curtain);
}
.curtain__label {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.1em;
  color: var(--paper);
}
.curtain.is-in { transform: translateY(0); }
.curtain.is-out { transform: translateY(-101%); }
.curtain.no-trans { transition: none; }
.curtain.boot { transform: translateY(0); }

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

.head {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  background: rgba(242, 238, 230, 0.94);
  border-bottom: 1px solid var(--line-soft);
}
.head__logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.head__logo i { font-style: normal; color: var(--verm); }
.head__nav { display: flex; gap: 30px; margin: 0 auto; }
.head__nav a {
  font-family: var(--f-code);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-ui), border-color 0.3s var(--ease-ui);
}
.head__nav a:hover { color: var(--ink); }
.head__nav a.is-here { color: var(--ink); border-bottom-color: var(--verm); }
.head__cta { padding: 11px 20px; font-size: 13px; }
.head__progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; }
.head__progress span { display: block; height: 100%; background: var(--verm); transform: scaleX(0); transform-origin: left; }

.burger { display: none; margin-left: auto; flex: none; width: 40px; height: 40px; position: relative; }
.burger i { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink); transition: transform 0.45s var(--ease-big), top 0.45s var(--ease-big); }
.burger i:nth-child(1) { top: 15px; }
.burger i:nth-child(2) { top: 23px; }
.burger.is-open i:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.is-open i:nth-child(2) { top: 19px; transform: rotate(-45deg); }

.mnav {
  position: fixed;
  inset: 0;
  z-index: 690;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0 24px;
  transform: translateY(-101%);
  transition: transform 0.7s var(--ease-curtain);
}
.mnav.is-open { transform: translateY(0); }
.mnav a {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mnav a i { font-style: normal; font-family: var(--f-code); font-weight: 400; font-size: 12px; color: var(--verm); vertical-align: 10px; margin-right: 12px; }
.mnav .btn { margin-top: 26px; align-self: flex-start; }

/* ---------- герой главной ---------- */

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 130px 0 60px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; width: 100%; }
.hero__kicker { display: flex; gap: 12px; align-items: baseline; margin-bottom: 28px; }
.hero__title { margin-bottom: 34px; }
.hero__lead { margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; }
.hero__art { position: relative; }
.hero__art img { width: 100%; height: auto; }
.hero__art figcaption { margin-top: 14px; display: flex; justify-content: space-between; }

.corner { position: absolute; z-index: 5; font-family: var(--f-code); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: inline-flex; gap: 10px; align-items: baseline; }
.corner--bl { bottom: 24px; left: 40px; }
.corner--br { bottom: 24px; right: 40px; }
.corner b { color: var(--ink); font-weight: 400; }

/* ---------- бегущая лента ---------- */

.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee__line { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__line span { font-family: var(--f-display); font-weight: 700; font-style: italic; font-size: 20px; padding: 18px 0; white-space: nowrap; color: var(--ink); }
.marquee__line i { font-style: normal; color: var(--verm); padding: 18px 26px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- секции главной ---------- */

.sec { padding: 130px 0; }
.sec.tight { padding-top: 0; }
.sec__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; margin-bottom: 54px; }
.sec__head .btn { flex: none; white-space: nowrap; }
.sec__head .lead { padding-bottom: 6px; }

.now { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; }
.showcard { border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color 0.45s var(--ease-big), transform 0.45s var(--ease-big); background: var(--paper); }
.showcard:hover { border-color: var(--ink); transform: translateY(-6px); }
.showcard__img { overflow: hidden; }
.showcard__img img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.8s var(--ease-big); }
.showcard:hover .showcard__img img { transform: scale(1.05); }
.showcard__body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.showcard__top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.showcard__title { font-family: var(--f-display); font-weight: 900; font-size: 30px; line-height: 1.05; }
.showcard__artist { font-size: 14px; color: var(--muted); }
.showcard__desc { font-size: 14.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.showcard__foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.showcard__link { font-family: var(--f-code); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.showcard__link em { font-style: normal; color: var(--verm); transition: transform 0.3s var(--ease-ui); }
.showcard:hover .showcard__link em { transform: translateX(4px); }
.showcard--wide .showcard__img img { height: 480px; }

.numbers { background: var(--ink); color: var(--paper); }
.numbers .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-top: 110px; padding-bottom: 110px; }
.num { display: flex; flex-direction: column; gap: 10px; border-left: 1px solid rgba(242, 238, 230, 0.18); padding-left: 24px; }
.num b { font-family: var(--f-display); font-weight: 900; font-size: clamp(48px, 5.6vw, 84px); line-height: 1; }
.num b i { font-style: normal; color: var(--verm); margin-left: 0.14em; }
.num span { font-family: var(--f-code); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242, 238, 230, 0.6); }

.manifesto { padding: 150px 0; }
.manifesto__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 1000px;
}
.manifesto__quote em { color: var(--verm); }
.manifesto__row { margin-top: 44px; display: flex; gap: 40px; align-items: center; }

/* ---------- внутренние страницы: шапка раздела ---------- */

.pagehead { padding: 200px 0 70px; border-bottom: 1px solid var(--line); position: relative; }
.pagehead .label { display: inline-flex; gap: 10px; margin-bottom: 24px; }
.pagehead .h-display { max-width: 900px; }
.pagehead__lead { margin-top: 30px; max-width: 560px; }

/* ---------- выставки: список ---------- */

.filterbar { display: flex; gap: 10px; padding: 34px 0; }
.exlist { border-bottom: 1px solid var(--line); }
.exrow {
  display: grid;
  grid-template-columns: 200px 1fr 230px 130px 50px;
  gap: 24px;
  align-items: center;
  padding: 30px 8px;
  border-top: 1px solid var(--line);
  transition: background-color 0.3s var(--ease-ui);
  position: relative;
}
.exrow:hover { background: var(--verm-dim); }
.exrow__date { font-family: var(--f-code); font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.exrow__title { font-family: var(--f-display); font-weight: 900; font-size: clamp(24px, 2.6vw, 38px); line-height: 1.02; transition: transform 0.45s var(--ease-big); }
.exrow:hover .exrow__title { transform: translateX(10px); }
.exrow__title small { display: block; font-family: var(--f-text); font-weight: 500; font-size: 13px; color: var(--muted); margin-top: 8px; letter-spacing: 0; }
.exrow__artist { font-size: 14.5px; font-weight: 600; }
.exrow__hall { font-family: var(--f-code); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.exrow__go { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background-color 0.3s var(--ease-ui), color 0.3s var(--ease-ui), border-color 0.3s var(--ease-ui), transform 0.45s var(--ease-big); }
.exrow:hover .exrow__go { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: rotate(45deg); }
.exrow.is-hidden { display: none; }

.flypreview {
  position: fixed;
  z-index: 600;
  width: 250px; height: 330px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85) rotate(-3deg);
  transition: opacity 0.35s var(--ease-ui), transform 0.35s var(--ease-big);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
}
.flypreview img { width: 100%; height: 100%; object-fit: cover; }
.flypreview.is-on { opacity: 1; transform: scale(1) rotate(0deg); }

/* ---------- о центре ---------- */

.statement { padding: 140px 0 90px; }
.statement p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.22;
  max-width: 1050px;
}
.statement p em { color: var(--verm); }

.aboutgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; padding-bottom: 40px; }
.aboutgrid__text p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 20px; max-width: 520px; }
.aboutgrid__img { position: relative; }
.aboutgrid__img img { width: 100%; }
.aboutgrid__img figcaption { margin-top: 12px; display: flex; justify-content: space-between; }

.timeline { border-bottom: 1px solid var(--line); }
.timeline__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.timeline__year { font-family: var(--f-display); font-weight: 900; font-size: 44px; line-height: 1; }
.timeline__year i { font-style: normal; color: var(--verm); }
.timeline__text { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 760px; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.member { border: 1px solid var(--line); padding: 24px; display: flex; gap: 18px; align-items: center; transition: border-color 0.4s var(--ease-big), transform 0.4s var(--ease-big); }
.member:hover { border-color: var(--verm); transform: translateY(-4px); }
.member__ava {
  flex: none;
  width: 64px; height: 64px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member:nth-child(3n) .member__ava { background: var(--verm); }
.member:nth-child(3n + 2) .member__ava { background: var(--paper-2); color: var(--ink); }
.member b { display: block; font-size: 15.5px; }
.member span { font-size: 12.5px; color: var(--muted); font-family: var(--f-code); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- посещение ---------- */

.infocards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.infocard { border: 1px solid var(--line); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.infocard h3 { font-family: var(--f-display); font-weight: 900; font-size: 24px; }
.infocard__row { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; border-top: 1px solid var(--line-soft); padding-top: 12px; }
.infocard__row b { font-weight: 700; }
.infocard__row span { color: var(--muted); text-align: right; }
.infocard .note { font-size: 12.5px; color: var(--muted); font-family: var(--f-code); }

.mapband { margin-top: 20px; border: 1px solid var(--line); }
.mapband img { width: 100%; }
.mapband__meta { display: flex; justify-content: space-between; gap: 20px; padding: 18px 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }

.faq { border-bottom: 1px solid var(--line); }
.qa { border-top: 1px solid var(--line); }
.qa__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  transition: color 0.3s var(--ease-ui);
}
.qa__q:hover { color: var(--verm); }
.qa__q em { font-style: normal; font-family: var(--f-code); font-size: 22px; color: var(--verm); transition: transform 0.45s var(--ease-big); }
.qa.is-open .qa__q em { transform: rotate(45deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease-big); }
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa__a > div { overflow: hidden; }
.qa__a p { padding: 0 4px 26px; font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 780px; }

.ctaband { background: var(--verm); color: var(--paper); }
.ctaband .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 70px; padding-bottom: 70px; flex-wrap: wrap; }
.ctaband h2 { font-family: var(--f-display); font-weight: 900; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.05; max-width: 640px; }
.ctaband .btn { background: var(--ink); color: var(--paper); font-size: 15px; padding: 20px 34px; }
.ctaband .btn:hover { background: var(--paper); color: var(--ink); }

/* ---------- футер ---------- */

.foot { background: var(--ink); color: var(--paper); }
.foot .marquee { border-color: rgba(242, 238, 230, 0.16); }
.foot .marquee__line span { color: rgba(242, 238, 230, 0.85); }
.foot .marquee__line i { color: var(--verm); }

.foot__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 50px; padding: 80px 0 60px; }
.foot__title { font-family: var(--f-display); font-weight: 900; font-size: 40px; line-height: 1; margin-bottom: 18px; }
.foot__title i { font-style: normal; color: var(--verm); }
.foot__about { font-size: 14.5px; line-height: 1.7; color: rgba(242, 238, 230, 0.7); max-width: 300px; }
.foot__col h4 { font-family: var(--f-code); font-weight: 400; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242, 238, 230, 0.5); margin-bottom: 20px; }
.foot__col p, .foot__col a { display: block; font-size: 14.5px; line-height: 1.7; color: rgba(242, 238, 230, 0.85); }
.foot__col a { transition: color 0.3s var(--ease-ui); }
.foot__col a:hover { color: var(--verm); }
.foot__col .gap { margin-bottom: 14px; }

.foot__logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(90px, 15.5vw, 224px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 0.08em;
}
.foot__logo .fl { display: inline-block; transition: transform 0.45s var(--ease-big), color 0.45s var(--ease-big); }
.foot__logo .fl:hover { transform: translateY(-14px); color: var(--verm); }
.foot__logo .caret { display: inline-block; width: 0.14em; height: 0.62em; margin-left: 0.1em; background: var(--verm); animation: caret-blink 1.1s steps(1) infinite; }
@keyframes caret-blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0.15; } }

.foot__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  border-top: 1px solid rgba(242, 238, 230, 0.16);
  padding: 20px 0 26px;
  font-family: var(--f-code);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 238, 230, 0.5);
}
.foot__meta i { font-style: normal; color: var(--verm); }

/* ---------- мобильная версия ---------- */

@media (max-width: 820px) {
  body { font-size: 15px; }
  .wrap { padding: 0 20px; }

  .head { height: 60px; padding: 0 16px; gap: 12px; }
  .head__nav { display: none; }
  .burger { display: inline-flex; }
  .head__logo { font-size: 14px; letter-spacing: 0.08em; }
  .head__cta { display: none; }

  .preloader__counter { font-size: 48px; }

  .h-display { font-size: clamp(38px, 10.5vw, 54px); }
  .h2 { font-size: 30px; }
  .lead { font-size: 14px; }
  .label { font-size: 10.5px; }

  .hero { min-height: auto; padding: 110px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__kicker { margin-bottom: 18px; }
  .hero__title { margin-bottom: 20px; }
  .hero__lead { margin-bottom: 26px; }
  .hero__actions { flex-wrap: wrap; gap: 10px; }
  .hero__art img { width: 100%; }
  .corner--bl { left: 20px; bottom: 16px; }
  .corner--br { right: 20px; bottom: 16px; }

  .sec { padding: 80px 0; }
  .sec__head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 30px; }
  .sec__head .lead { padding-bottom: 0; }

  .now { grid-template-columns: 1fr; gap: 16px; }
  .showcard__img img, .showcard--wide .showcard__img img { height: 250px; }
  .showcard__body { padding: 18px 16px 20px; }
  .showcard__title { font-size: 22px; }

  .numbers .wrap { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding-top: 70px; padding-bottom: 70px; }
  .num b { font-size: 42px; }
  .manifesto { padding: 90px 0; }
  .manifesto__quote { font-size: 24px; }
  .manifesto__row { margin-top: 28px; flex-wrap: wrap; gap: 20px; }

  .pagehead { padding: 130px 0 44px; }
  .pagehead__lead { margin-top: 18px; }

  .filterbar { flex-wrap: wrap; padding: 22px 0; }

  .exrow { grid-template-columns: 1fr; gap: 8px; padding: 22px 4px; }
  .exrow__title { font-size: 24px; }
  .exrow:hover .exrow__title { transform: none; }
  .exrow__artist { font-size: 13px; color: var(--muted); }
  .exrow__go { display: none; }
  .flypreview { display: none; }

  .statement { padding: 80px 0 40px; }
  .aboutgrid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 20px; }
  .timeline__row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .timeline__year { font-size: 34px; }
  .team { grid-template-columns: 1fr; gap: 12px; }

  .infocards { grid-template-columns: 1fr; gap: 14px; }
  .infocard { padding: 20px; }
  .ctaband .wrap { padding-top: 50px; padding-bottom: 50px; gap: 24px; }

  .foot__grid { grid-template-columns: 1fr; gap: 34px; padding: 54px 0 40px; }
  .foot__title { font-size: 30px; }
  .foot__logo { font-size: 19vw; }
  .foot__meta { font-size: 10px; }

  .cursor { display: none; }
}

@media (pointer: coarse) {
  .cursor { display: none; }
}
