:root {
  --page-bg: #050707;
  --ink: #0a0d0d;
  --panel: #101515;
  --panel-strong: #151b1b;
  --text: #ffffff;
  --muted: #c6d2d2;
  --cyan: #11c8d7;
  --cyan-dark: #087c88;
  --pink: #ec3cc7;
  --pink-dark: #9b1f88;
  --line: rgba(255, 255, 255, 0.18);
  --map-bg: #f3efe6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 10px 28px;
  border-bottom: 1px solid rgba(17, 200, 215, 0.28);
  background: rgba(5, 7, 7, 0.94);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
}

.public-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.public-nav a {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.public-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.public-nav .nav-cta {
  color: #fff;
  background: var(--pink);
}

.public-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 66px);
  padding: 112px 56px 54px;
  overflow: hidden;
  isolation: isolate;
}

.public-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #091415;
  background-image: var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.public-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.94), rgba(5, 7, 7, 0.62) 52%, rgba(5, 7, 7, 0.18)),
    linear-gradient(0deg, rgba(5, 7, 7, 0.96), rgba(5, 7, 7, 0.05) 54%);
}

.public-hero__content {
  width: min(860px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.public-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 82px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: #eefafa;
  font-size: 22px;
  font-weight: 700;
}

.hero-actions,
.vk-card-actions,
.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.public-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.public-btn--primary {
  background: var(--pink);
}

.public-btn--primary:hover {
  background: var(--pink-dark);
}

.public-btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.38);
}

.public-btn--ghost:hover {
  border-color: var(--cyan);
}

.hero-corner {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  max-width: 260px;
}

.hero-corner span {
  display: inline-flex;
  justify-content: flex-end;
  padding: 8px 11px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(5, 7, 7, 0.72);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.poster-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  background: var(--cyan);
  color: #031010;
}

.poster-strip span {
  min-height: 58px;
  padding: 17px 18px;
  border-right: 2px solid #031010;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.poster-strip span:nth-child(even) {
  background: var(--pink);
  color: #ffffff;
}

.poster-strip span:last-child {
  border-right: 0;
}

.public-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.statement-section {
  border-bottom: 1px solid var(--line);
}

.statement-lines {
  display: grid;
  gap: 12px;
}

.statement-lines p {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.statement-lines p:nth-child(2) {
  color: var(--cyan);
}

.statement-lines p:nth-child(3) {
  color: var(--pink);
}

.season-board,
.city-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.season-board h2,
.city-lead h2,
.section-heading h2,
.city-poster h2,
.vk-community-card h3,
.vk-post-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.season-board p,
.city-lead p,
.city-poster p,
.vk-community-card p,
.vk-post-card p,
.location-meta {
  color: var(--muted);
  font-size: 17px;
}

.season-board__facts {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--cyan);
}

.season-board__facts div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 86px;
  border-bottom: 2px solid var(--cyan);
}

.season-board__facts strong {
  color: var(--pink);
  font-size: 36px;
  line-height: 1;
}

.season-board__facts span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.city-poster {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  min-height: 430px;
  margin: 0 auto 82px;
  padding: 54px;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid var(--cyan);
  background: #091415;
}

.city-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.city-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 7, 7, 0.78);
}

.city-poster div {
  max-width: 620px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.locations-section {
  padding-top: 36px;
}

.public-location-grid {
  display: grid;
  gap: 16px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  min-height: 320px;
  border: 2px solid rgba(17, 200, 215, 0.58);
  background: var(--panel);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.location-index {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  padding: 4px 9px;
  background: var(--pink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.location-card h3 {
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.08;
}

.location-meta {
  margin: 0;
}

.location-map {
  min-height: 318px;
  background: var(--map-bg);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 318px;
  border: 0;
}

.location-actions {
  margin-top: 22px;
}

.vk-band {
  border-top: 1px solid var(--line);
}

.vk-public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: 18px;
}

.vk-community-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  border: 2px solid var(--pink);
  background: var(--panel-strong);
  padding: 18px;
}

.vk-community-card img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #0a0d0d;
}

.vk-community-card p,
.vk-post-card p {
  white-space: pre-line;
}

.vk-posts {
  display: grid;
  gap: 14px;
}

.vk-post-card {
  display: grid;
  gap: 14px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: var(--panel);
  padding: 18px;
}

.vk-post-card img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.vk-post-card--empty {
  border-color: var(--cyan);
}

.public-placeholder {
  padding: 20px;
  border: 2px solid rgba(17, 200, 215, 0.42);
  background: rgba(17, 200, 215, 0.08);
  color: var(--muted);
}

.public-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 30px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.public-footer a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .public-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-nav {
    justify-content: flex-start;
  }

  .public-hero {
    min-height: 720px;
    padding: 96px 28px 40px;
  }

  .public-hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-corner {
    position: static;
    max-width: none;
    margin-top: 26px;
  }

  .hero-corner span {
    justify-content: flex-start;
    text-align: left;
  }

  .poster-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-strip span:nth-child(2) {
    border-right: 0;
  }

  .season-board,
  .city-lead,
  .vk-public-grid,
  .vk-community-card,
  .location-card {
    grid-template-columns: 1fr;
  }

  .statement-lines p {
    font-size: 36px;
  }

  .season-board h2,
  .city-lead h2,
  .section-heading h2,
  .city-poster h2,
  .vk-community-card h3,
  .vk-post-card h3 {
    font-size: 34px;
  }

  .location-map,
  .location-map iframe {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .public-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .public-nav a {
    font-size: 12px;
    padding: 7px 8px;
  }

  .public-hero {
    min-height: 650px;
    padding: 78px 18px 32px;
  }

  .public-hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .vk-card-actions,
  .location-actions,
  .public-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .public-btn {
    width: 100%;
    min-height: 44px;
  }

  .poster-strip {
    grid-template-columns: 1fr;
  }

  .poster-strip span {
    border-right: 0;
    border-bottom: 2px solid #031010;
  }

  .poster-strip span:last-child {
    border-bottom: 0;
  }

  .public-section {
    width: min(100% - 24px, 1180px);
    padding: 48px 0;
  }

  .statement-lines p {
    font-size: 28px;
  }

  .season-board h2,
  .city-lead h2,
  .section-heading h2,
  .city-poster h2,
  .vk-community-card h3,
  .vk-post-card h3 {
    font-size: 28px;
  }

  .season-board__facts div {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .season-board__facts strong {
    font-size: 28px;
  }

  .season-board__facts span {
    font-size: 16px;
  }

  .city-poster {
    width: min(100% - 24px, 1180px);
    min-height: 360px;
    margin-bottom: 48px;
    padding: 24px;
  }

  .location-copy,
  .vk-community-card,
  .vk-post-card {
    padding: 14px;
  }

  .location-card h3 {
    font-size: 22px;
  }

  .location-map,
  .location-map iframe {
    min-height: 230px;
  }

  .vk-community-card img {
    min-height: 190px;
  }

  .public-footer {
    padding: 24px 14px;
  }
}
