:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --deep: #0d0a11;
  --radius: 4px;
  --radius-btn: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Didot, "Bodoni MT", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
  --header-h-shrink: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-2);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--tight {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: height 0.2s ease, padding 0.2s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  transition: height 0.2s ease;
}

.site-header.is-shrunk .site-header__inner {
  height: var(--header-h-shrink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.brand:hover {
  color: var(--accent);
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.independence {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence p {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.hero-quiet {
  background: var(--surface-alt);
  padding: clamp(72px, 12vw, 140px) 0;
}

.hero-quiet__rule {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.25rem;
  border: none;
}

.hero-quiet h1 {
  max-width: 16ch;
  margin: 0 0 1.5rem 0;
}

.hero-quiet__lead {
  max-width: 62ch;
  margin-left: 0;
  margin-right: auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.category-rows {
  list-style: none;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.category-row:first-child {
  border-top: 1px solid var(--border);
}

.category-row h3 {
  margin: 0;
}

.category-row p {
  color: var(--text-muted);
  margin: 0;
}

.photo-strip__intro {
  max-width: 52ch;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.95fr;
  grid-template-rows: 220px 280px;
  gap: 16px;
}

.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic figure:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.photo-mosaic figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.photo-mosaic figure:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
  margin-top: 40px;
  height: calc(100% - 40px);
}

.photo-mosaic figure:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
  height: 180px;
  align-self: end;
}

.photo-mosaic figure:nth-child(5) {
  grid-column: 2 / 5;
  grid-row: 2;
}

.timeline {
  list-style: none;
  position: relative;
  max-width: 760px;
  margin: 48px 0 0;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.timeline li {
  position: relative;
  padding-bottom: 40px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline h3 {
  margin-bottom: 0.5rem;
}

.timeline p {
  color: var(--text-muted);
}

.closing-band {
  background: var(--deep);
  text-align: center;
  padding: var(--section-pad) 24px;
}

.closing-band h2 {
  margin-bottom: 1.25rem;
}

.closing-band p {
  max-width: 54ch;
  margin: 0 auto 1rem;
  color: var(--text-muted);
}

.closing-band a {
  display: inline-block;
  margin-top: 0.75rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 56px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-title {
  padding: 72px 0 48px;
}

.page-title p {
  max-width: 62ch;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.venue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: var(--section-pad);
}

.venue-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.venue-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.venue-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-row__body {
  padding: 28px 8px 28px 0;
}

.venue-row__body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 0.35rem;
}

.venue-row__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.venue-row__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.venue-row__action {
  padding-right: 28px;
  white-space: nowrap;
}

.venue-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: var(--section-pad);
}

.venue-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.venue-card__photo {
  aspect-ratio: 1;
  max-height: 420px;
  overflow: hidden;
}

.venue-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.venue-card__title-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.25;
  color: var(--text);
  flex: 0 0 auto;
}

.venue-card__title-line span {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.venue-card__body > p:not(.venue-card__title-line) {
  color: var(--text-muted);
  flex: 1;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  max-width: 62ch;
  color: var(--text-muted);
}

.catalog-close a {
  border-bottom: 1px solid var(--accent);
}

.prose {
  max-width: 70ch;
  margin: 0 auto;
  padding: 72px 24px var(--section-pad);
}

.prose h1 {
  margin-bottom: 1.5rem;
}

.prose .lead {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.prose-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.prose-section:first-of-type {
  border-top: 1px solid var(--border);
}

.prose-section:last-child {
  border-bottom: none;
}

.prose-section h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(22px, 3vw, 32px);
}

.prose-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.prose-section p:last-child {
  margin-bottom: 0;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 24px var(--section-pad);
}

.contact-wrap .lead {
  color: var(--text-muted);
  margin: 1.25rem 0 1rem;
}

.contact-email {
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 1.5rem 0;
}

.form-agree input {
  margin-top: 4px;
  width: auto;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  color: #e8a0a0;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 1rem;
  color: #e8a0a0;
  font-size: 0.9rem;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}

.confirm-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(24px, 3vw, 32px);
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.confirm-panel .btn {
  margin-top: 1.5rem;
}

.legal-body {
  max-width: 70ch;
  margin: 0 auto;
  padding: 72px 24px var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 0.75rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 2.25rem 0 0.85rem;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.sitemap-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px var(--section-pad);
}

.sitemap-wrap .lead {
  color: var(--text-muted);
  margin: 1.25rem 0 2.5rem;
  max-width: 54ch;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  line-height: 2;
}

.sitemap-links a {
  color: var(--text);
}

.sitemap-links a:hover {
  color: var(--accent);
}

.sitemap-links .sep {
  color: var(--text-muted);
  user-select: none;
}

.site-footer {
  background: var(--surface-alt);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 2fr;
  gap: 48px 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 56px;
}

.footer-brand .brand {
  margin-bottom: 1.25rem;
}

.footer-brand .blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  max-width: 42ch;
}

.footer-brand .about-guide {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  max-width: 42ch;
}

.footer-regions {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-brand a[href^="mailto"] {
  font-size: 0.9rem;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-group ul {
  list-style: none;
}

.footer-group li {
  margin-bottom: 0.55rem;
}

.footer-group a {
  color: var(--text);
  font-size: 0.92rem;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-notice {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-requisites {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-bottom__links a,
.footer-bottom__links button {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-bottom__links a:hover,
.footer-bottom__links button:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.consent-backdrop[hidden] {
  display: none;
}

.consent-modal {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.consent-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.consent-modal p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.consent-modal__policy {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.consent-actions .btn {
  padding: 10px 8px;
  font-size: 0.78rem;
  text-align: center;
  width: 100%;
}

.consent-actions .btn--accent {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent-actions .btn--ghost {
  border-color: var(--border);
  color: var(--text);
}

.consent-manage-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-decoration: underline;
}

.consent-prefs {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.45);
}

.consent-prefs[hidden] {
  display: none;
}

.consent-prefs__panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 24px;
}

.consent-prefs__panel h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.consent-cat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.consent-cat strong {
  font-size: 0.92rem;
  color: var(--text);
}

.consent-cat input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .photo-mosaic figure:nth-child(1),
  .photo-mosaic figure:nth-child(2),
  .photo-mosaic figure:nth-child(3),
  .photo-mosaic figure:nth-child(4),
  .photo-mosaic figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    height: 240px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: none;
    z-index: 999;
  }

  .site-header.is-shrunk .nav-list {
    top: var(--header-h-shrink);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li a {
    display: block;
    padding: 14px 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .venue-row {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }

  .venue-row__thumb {
    width: 100px;
    height: 100px;
    grid-row: 1 / 2;
  }

  .venue-row__body {
    padding: 20px 20px 8px 0;
    grid-column: 2;
  }

  .venue-row__action {
    grid-column: 1 / -1;
    padding: 0 20px 20px;
    white-space: normal;
  }

  .venue-row__action .btn {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .footer-groups {
    grid-template-columns: 1fr 1fr;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

  .photo-mosaic figure:nth-child(n) {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .site-header__inner {
    padding: 0 16px;
  }

  .footer-top,
  .footer-notice,
  .footer-requisites,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-groups {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .venue-row {
    grid-template-columns: 1fr;
  }

  .venue-row__thumb {
    width: 100%;
    height: 200px;
  }

  .venue-row__body {
    padding: 20px 20px 8px;
  }

  .brand span {
    font-size: 1rem;
  }
}
