/* ===========================================================
   Кубарём — кафе настольных игр. Светлая, игриво-уютная тема.
   Кремовый фон + горчица / бирюза / коралл. Округлый display.
   =========================================================== */

:root {
  /* палитра */
  --cream:      #fbf3e3;
  --cream-deep: #f3e7cf;
  --paper:      #fffdf7;
  --ink:        #2c2620;
  --ink-soft:   #6a5f51;
  --mustard:    #e0a92e;
  --mustard-d:  #c4901a;
  --teal:       #1f9e94;
  --teal-d:     #157f76;
  --coral:      #ef6f53;
  --coral-d:    #d9543a;
  --line:       #e6d9bd;

  /* типографика */
  --display: "Trebuchet MS", "Segoe UI", "Verdana", "DejaVu Sans", sans-serif;
  --body:    "Segoe UI", "Roboto", "Helvetica Neue", system-ui, sans-serif;

  /* радиусы и тени */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --shadow:    0 14px 34px -18px rgba(44, 38, 32, .35);
  --shadow-sm: 0 6px 18px -10px rgba(44, 38, 32, .4);

  --wrap: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background-color: var(--cream);
  /* атмосферный фон: тёплый радиальный свет + паттерн «точек-пипсов» кубика */
  background-image:
    radial-gradient(1100px 620px at 78% -8%, rgba(224, 169, 46, .18), transparent 60%),
    radial-gradient(900px 560px at 6% 4%, rgba(31, 158, 148, .12), transparent 55%),
    radial-gradient(rgba(44, 38, 32, .05) 1.6px, transparent 1.7px);
  background-size: auto, auto, 26px 26px;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
}

/* доступность: фокус и skip-link */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  z-index: 100;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

/* прогрессивное улучшение: скрываем только при включённом JS */
.js [data-rise] {
  opacity: 0;
  transform: translateY(26px);
}
.js [data-rise].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js [data-rise] { opacity: 1 !important; transform: none !important; }
}

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -12px var(--coral-d);
}
.btn--solid:hover { background: var(--coral-d); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--wide { width: 100%; }

/* ---------- шапка ---------- */
.site-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 227, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-bar.is-stuck {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
  background: rgba(251, 243, 227, .95);
}
.bar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin-right: auto;
}
.brand__cube {
  position: relative;
  width: 34px; height: 34px;
  background: var(--mustard);
  border-radius: 9px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 6px;
  transform: rotate(-8deg);
}
.brand__cube .pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink);
  align-self: center;
  justify-self: center;
}
.brand__cube .pip:nth-child(1) { grid-area: 1 / 1; }
.brand__cube .pip:nth-child(2) { grid-area: 1 / 3; }
.brand__cube .pip:nth-child(3) { grid-area: 2 / 2; }
.brand__cube .pip:nth-child(4) { grid-area: 3 / 1; }
.brand__cube .pip:nth-child(5) { grid-area: 3 / 3; }

.bar-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.bar-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.bar-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .22s var(--ease);
}
.bar-nav a:hover { color: var(--ink); }
.bar-nav a:hover::after { width: 100%; }

.bar-cta {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px -12px var(--teal-d);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.bar-cta:hover { background: var(--teal-d); transform: translateY(-2px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.drawer {
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.drawer ul {
  list-style: none;
  margin: 0; padding: 12px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 8px;
  border-radius: var(--r-sm);
}
.drawer a:hover { background: var(--cream-deep); }
.drawer__cta {
  margin-top: 8px;
  background: var(--coral);
  color: #fff !important;
  text-align: center;
  font-family: var(--display);
}

/* ---------- секции общие ---------- */
section { padding: 86px 22px; }
.head { max-width: 720px; margin: 0 auto 48px; }
.head--center { text-align: center; }
.head__kicker {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--teal-d);
  margin: 0 0 12px;
}
.head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.head__sub { color: var(--ink-soft); margin: 16px 0 0; font-size: 1.08rem; }

/* ---------- hero ---------- */
.lead {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.lead__tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--coral-d);
  background: rgba(239, 111, 83, .12);
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.lead h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -.02em;
}
.lead__deck {
  font-size: 1.22rem;
  color: var(--ink-soft);
  margin: 22px 0 30px;
  max-width: 33ch;
}
.lead__row { display: flex; gap: 16px; flex-wrap: wrap; }
.lead__facts {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 40px 0 0;
  padding: 0;
  flex-wrap: wrap;
}
.lead__facts li { display: flex; flex-direction: column; }
.lead__facts strong {
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--mustard-d);
  line-height: 1;
}
.lead__facts span { font-size: .92rem; color: var(--ink-soft); margin-top: 4px; }

.lead__shot {
  margin: 0;
  position: relative;
}
.lead__shot img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 8px solid var(--paper);
}
.lead__shot::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 96px; height: 96px;
  background: var(--teal);
  border-radius: 22px;
  transform: rotate(12deg);
  z-index: -1;
  opacity: .9;
}
.lead__shot::after {
  content: "";
  position: absolute;
  inset: auto auto -20px -20px;
  width: 72px; height: 72px;
  background: var(--mustard);
  border-radius: 18px;
  transform: rotate(-10deg);
  z-index: -1;
}

/* ---------- полоса «как устроено» ---------- */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 34px 22px;
}
.strip__list {
  max-width: var(--wrap);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.strip__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.04rem;
}
.strip__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--mustard);
  border: 2px solid rgba(224, 169, 46, .4);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  flex: none;
}

/* ---------- витрина игр ---------- */
.shelf { background: var(--cream); }
.play-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.play-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.play-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.play-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.badge {
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
}
.badge--coral   { background: var(--coral); }
.badge--teal    { background: var(--teal); }
.badge--mustard { background: var(--mustard-d); }
.play-card__time {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.play-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.play-card p { margin: 0 0 14px; color: var(--ink-soft); font-size: .98rem; }
.play-card__tag {
  font-size: .82rem !important;
  color: var(--teal-d) !important;
  font-weight: 600;
  margin: 0 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.shelf__note {
  max-width: 640px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.shelf__note strong { color: var(--ink); }

/* ---------- тарифы ---------- */
.tariff {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(31,158,148,.1), transparent 60%),
    var(--cream-deep);
}
.tariff-rack {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.rate {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.rate--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.rate__flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.rate__name { font-size: 1.45rem; margin-bottom: 14px; }
.rate__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 20px;
}
.rate__price span { font-size: 2.7rem; color: var(--coral); }
.rate--feature .rate__price span { color: var(--mustard); }
.rate__price small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.rate--feature .rate__price small { color: rgba(251,243,227,.7); }
.rate__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}
.rate__list li {
  position: relative;
  padding-left: 28px;
  font-size: .98rem;
}
.rate__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.rate--feature .rate__list li::before { box-shadow: inset 0 0 0 3px var(--ink); }
.tariff__fine {
  max-width: 640px;
  margin: 38px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: .98rem;
}

/* ---------- афиша вечеров ---------- */
.meetups { background: var(--cream); }
.event-line {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  counter-reset: ev;
}
.event {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease);
}
.event:hover { transform: translateX(6px); }
.event__when {
  flex: none;
  width: 78px;
  text-align: center;
  border-right: 2px dashed var(--line);
  padding-right: 22px;
}
.event__day {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--coral);
}
.event__time { font-size: .9rem; color: var(--ink-soft); }
.event__body { flex-grow: 1; }
.event__body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.event__body p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.event__price {
  flex: none;
  font-family: var(--display);
  font-weight: 700;
  color: var(--teal-d);
  background: rgba(31,158,148,.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .92rem;
  white-space: nowrap;
}

/* ---------- зал / галерея ---------- */
.den {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.den__intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.den__intro > p { color: var(--ink-soft); font-size: 1.06rem; }
.den__perks {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.den__perks li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}
.den__perks li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--mustard-d);
  font-size: 1.1rem;
}
.den__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
}
.den__pic { margin: 0; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.den__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.den__pic:hover img { transform: scale(1.06); }
.den__pic--big { grid-column: 1 / -1; grid-row: span 2; }

/* ---------- отзывы ---------- */
.voices {
  background:
    radial-gradient(600px 360px at 10% 100%, rgba(239,111,83,.1), transparent 60%),
    var(--cream-deep);
}
.voice-wall {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.voice::before {
  content: "“";
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--display);
  font-size: 4rem;
  color: var(--mustard);
  opacity: .35;
  line-height: 1;
}
.voice p {
  position: relative;
  margin: 0 0 20px;
  font-size: 1.02rem;
  color: var(--ink);
}
.voice footer { display: flex; flex-direction: column; }
.voice__name { font-family: var(--display); font-weight: 700; }
.voice__meta { font-size: .85rem; color: var(--ink-soft); }

/* ---------- бронь ---------- */
.join { background: var(--cream); }
.join-card {
  max-width: var(--wrap);
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow);
  background-image: radial-gradient(rgba(251,243,227,.06) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
}
.join-card .head__kicker { color: var(--mustard); }
.join-card__text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.join-card__text > p { color: rgba(251,243,227,.78); }
.join-card__contacts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.join-card__contacts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.join-card__contacts span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mustard);
  font-weight: 700;
}
.join-card__contacts a { color: var(--cream); text-decoration: none; font-weight: 600; }
.join-card__contacts a:hover { color: var(--mustard); }

.book-form {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 30px;
  color: var(--ink);
}
.field { margin-bottom: 16px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .18s var(--ease);
}
.field input:focus, .field textarea:focus {
  border-color: var(--teal);
  outline: none;
}
.field textarea { resize: vertical; }
.field input[aria-invalid="true"] { border-color: var(--coral); }
.field__err {
  display: block;
  color: var(--coral-d);
  font-size: .82rem;
  margin-top: 5px;
  font-weight: 600;
}
.book-form__ok {
  background: rgba(31,158,148,.14);
  color: var(--teal-d);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin: 14px 0 0;
}
.book-form__hint {
  font-size: .8rem;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

/* ---------- подвал ---------- */
.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 22px 26px;
}
.foot-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.foot-brand .brand__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
}
.foot-brand p { color: rgba(251,243,227,.7); margin: 12px 0 0; max-width: 40ch; }
.foot-nav h3, .foot-contact h3 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mustard);
  margin: 0 0 14px;
}
.foot-nav ul, .foot-contact ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-nav a, .foot-contact a {
  text-decoration: none;
  color: rgba(251,243,227,.82);
}
.foot-nav a:hover, .foot-contact a:hover { color: var(--mustard); }
.foot-contact li { color: rgba(251,243,227,.82); }
.foot-base {
  max-width: var(--wrap);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(251,243,227,.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(251,243,227,.6);
}

/* ===========================================================
   Адаптив
   =========================================================== */
@media (max-width: 940px) {
  .bar-nav, .bar-cta { display: none; }
  .burger { display: flex; }
  .lead {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 40px;
  }
  .lead__shot { order: -1; }
  .strip__list { grid-template-columns: 1fr; gap: 16px; }
  .play-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-rack { grid-template-columns: 1fr; max-width: 460px; }
  .rate--feature { transform: none; }
  .den { grid-template-columns: 1fr; gap: 36px; }
  .voice-wall { grid-template-columns: 1fr; max-width: 540px; }
  .join-card { grid-template-columns: 1fr; padding: 40px 30px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  section { padding: 60px 18px; }
  .bar-inner { padding: 12px 18px; }
  .play-grid { grid-template-columns: 1fr; }
  .lead__facts { gap: 22px; }
  .event { flex-direction: column; align-items: flex-start; gap: 14px; }
  .event__when {
    width: auto;
    border-right: 0;
    border-bottom: 2px dashed var(--line);
    padding-right: 0;
    padding-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .field--row { grid-template-columns: 1fr; }
  .den__gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .den__pic--big { grid-row: span 1; }
  .foot-inner { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; }
}
