:root {
  --color-red-500: #e53935;
  --color-red-600: #d32f2f;
  --color-red-700: #b71c1c;
  --color-graphite-950: #0a0b0e;
  --color-graphite-900: #12141a;
  --color-graphite-800: #1e2129;
  --color-graphite-700: #2b303b;
  --color-graphite-500: #646f85;
  --color-graphite-400: #8c97ab;
  --color-white: #ffffff;
  --color-gray-50: #fbfbfc;
  --color-gray-100: #f4f5f7;
  --color-gray-200: #e2e5eb;
  --color-gray-300: #cbd1db;
  --color-gray-500: #8c93aa;
  --color-success: #2e8b57;
  --color-warning: #f5a623;
  --color-danger: #d32f2f;
  --color-info: #1976d2;

  --bg-main: var(--color-gray-50);
  --bg-surface: var(--color-white);
  --bg-surface-2: var(--color-gray-100);
  --border-subtle: var(--color-gray-200);
  --border-strong: var(--color-gray-300);

  --text-main: var(--color-graphite-900);
  --text-muted: var(--color-graphite-500);

  --primary: var(--color-red-600);
  --primary-hover: #b71c1c;

  --font-head: "Chakra Petch", system-ui, -apple-system, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --space-2: 0.125rem;
  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-10: 0.625rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-56: 3.5rem;
  --space-64: 4rem;
  --space-72: 4.5rem;
  --space-96: 6rem;

  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-999: 9999px;

  --shadow-sm:
    0 2px 8px -2px rgba(10, 11, 14, 0.04), 0 1px 4px -1px rgba(10, 11, 14, 0.02);
  --shadow-md:
    0 8px 24px -4px rgba(10, 11, 14, 0.06),
    0 4px 12px -2px rgba(10, 11, 14, 0.03);
  --shadow-lg:
    0 16px 40px -8px rgba(10, 11, 14, 0.08),
    0 8px 20px -4px rgba(10, 11, 14, 0.04);
  --shadow-primary: 0 8px 24px -4px rgba(211, 47, 47, 0.35);

  --container-max: 1360px;
  --header-height: 76px;
  --slot-height: 24px;
  --slot-count: 32;
  --cut-xs: 6px;
  --cut-sm: 8px;
  --cut-md: 12px;
  --cut-lg: 16px;

  --ease-out: 180ms ease;
  --motion-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --motion-base: 250ms cubic-bezier(0.33, 1, 0.68, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(ellipse at 100% 0%,
      rgba(211, 47, 47, 0.025),
      transparent 50%),
    radial-gradient(ellipse at 0% 100%,
      rgba(25, 118, 210, 0.015),
      transparent 50%),
    var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.cookie-banner-visible {
  padding-bottom: calc(var(--cookie-banner-offset, 0px) + var(--space-16));
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container-max), calc(100% - 2 * var(--space-24)));
  margin: 0 auto;
}

.section {
  padding: var(--space-96) 0;
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80px, 20%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.section--dark + .section::before,
.section + .section--dark::before,
.section--tinted + .section--dark::before,
.section--dark + .section--tinted::before {
  display: none;
}

.section--dark {
  background: var(--color-graphite-950);
  color: var(--color-white);
}

.section--dark .section-title {
  color: var(--color-white);
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.section--tinted {
  background: var(--color-gray-100);
}

.section--tinted + .section::before,
.section + .section--tinted::before {
  display: none;
}

.section--residents-bg {
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
}

.section--residents-bg + .section::before,
.section + .section--residents-bg::before {
  display: none;
}

.section--infra-bg + .section--residents-bg {
  border-top: none;
}

.section--news-bg {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
}

.section--news-bg + .section::before,
.section + .section--news-bg::before {
  display: none;
}

.section--infra-bg {
  background: var(--color-graphite-700);
  padding-top: calc(var(--space-96) + var(--space-24));
  padding-bottom: calc(var(--space-96) + var(--space-24));
}

.section--infra-bg .section-title {
  color: var(--color-white);
}

.section--infra-bg .section-head p {
  color: rgba(255, 255, 255, 0.55);
}

.section--infra-bg .section-subtitle {
  color: rgba(255, 255, 255, 0.4);
}

.section--infra-bg + .section::before,
.section + .section--infra-bg::before {
  display: none;
}

.section--schedule-bg {
  background: var(--color-gray-50);
  padding-top: calc(var(--space-96) + var(--space-24));
  padding-bottom: calc(var(--space-96) + var(--space-24));
}

.section--booking-bg {
  background: var(--color-graphite-800);
  padding-top: calc(var(--space-96) + var(--space-24));
  padding-bottom: calc(var(--space-96) + var(--space-24));
}

.section--booking-bg .section-title {
  color: var(--color-white);
}

.section--booking-bg .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.section--booking-bg + .section::before,
.section + .section--booking-bg::before {
  display: none;
}

.section--schedule-bg .section-title {
  color: var(--color-graphite-900);
}

.section--schedule-bg .section-head p {
  color: var(--color-graphite-500);
}

.section-head--schedule {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-48);
}

.section-head__lead {
  margin: var(--space-12) 0 0;
  color: var(--color-graphite-400);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 580px;
}

.section--schedule-bg + .section::before,
.section + .section--schedule-bg::before {
  display: none;
}

.badge + .section-title {
  margin-top: var(--space-16);
}

.section-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin: 0;
  color: var(--text-main);
  line-height: 1.05;
}

.section-subtitle {
  font-family: var(--font-head);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: var(--space-8) 0 0;
  font-weight: 600;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-16);
  margin-bottom: var(--space-48);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.82rem;
  margin-bottom: var(--space-16);
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs span {
  color: #fff;
  font-weight: 500;
}

.breadcrumbs a::after {
  content: "›";
  margin-left: var(--space-8);
  margin-right: var(--space-4);
  color: rgba(255, 255, 255, 0.35);
  display: inline-block;
  font-weight: 400;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: var(--space-8);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
  color: var(--primary);
  background: rgba(211, 47, 47, 0.08);
  /* Мягкая подложка */
  padding: 6px 14px;
  border-radius: var(--radius-999);
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  clip-path: none;
}

.badge--light {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge--light::before {
  background: var(--color-red-500);
  box-shadow: 0 0 12px var(--color-red-500);
}

/* Components */
.btn {
  border: 1px solid transparent;
  border-radius: var(--radius-999);
  min-height: 52px;
  padding: 0 var(--space-32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--motion-base);
}

.btn:focus-visible {
  outline: 3px solid rgba(229, 57, 53, 0.4);
  outline-offset: 4px;
}

.btn[disabled],
.btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
  filter: grayscale(1);
}

.btn--primary {
  background: var(--primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 28px -6px rgba(183, 28, 28, 0.45);
}

.btn--secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--bg-surface-2);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: var(--bg-surface-2);
  border-color: var(--text-main);
}

.form-actions {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-12);
  padding: 0 var(--space-20);
  background: var(--color-gray-50);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--motion-fast);
}

.input,
.select {
  height: 52px;
}

.textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: var(--space-16);
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: var(--color-gray-500);
  background: var(--color-white);
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.08);
}

.input.is-error,
.select.is-error,
.textarea.is-error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.12);
}

.input.is-success,
.select.is-success,
.textarea.is-success {
  border-color: var(--color-success);
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.12);
}

.form-field {
  display: grid;
  gap: var(--space-8);
}

.form-label {
  font-size: 0.74rem;
  font-weight: 800;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-graphite-400);
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-size: 0.9rem;
}

.checkbox input {
  accent-color: var(--color-red-500);
  width: 16px;
  height: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.chip {
  border-radius: var(--radius-999);
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-graphite-700);
  min-height: 34px;
  padding: 0 var(--space-12);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--ease-out);
}

.chip:hover {
  border-color: var(--color-graphite-700);
}

.chip.is-active {
  border-color: transparent;
  background: var(--color-graphite-900);
  color: var(--color-white);
}

.tabs {
  display: inline-flex;
  border-radius: var(--radius-12);
  background: var(--color-gray-100);
  padding: var(--space-4);
  gap: var(--space-4);
}

.tab {
  border: 0;
  min-height: 36px;
  padding: 0 var(--space-12);
  border-radius: var(--radius-8);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-graphite-700);
  background: transparent;
  cursor: pointer;
}

.tab.is-active {
  color: var(--color-red-600);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.card {
  border-radius: var(--radius-16);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.card--dark {
  background: linear-gradient(145deg,
      var(--color-graphite-900),
      var(--color-graphite-800));
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.card--dark:hover {
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
}

.card__body {
  padding: var(--space-32);
}

.card__title {
  margin: 0 0 var(--space-12);
  font-size: 1.25rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.card__meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card--dark .card__meta {
  color: rgba(255, 255, 255, 0.76);
}

.card--sport-dir {
  background: linear-gradient(145deg,
      var(--color-graphite-800) 0%,
      var(--color-graphite-900) 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card--sport-dir .card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-red-500), transparent);
  transition: width 0.4s ease;
  z-index: 3;
}

.card--sport-dir:hover .card__accent {
  width: 6px;
}

.card--sport-dir:hover {
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
}

.card--sport-dir .card__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
  transition: opacity 0.6s ease, transform 0.8s ease;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,1) 100%);
}

.card--sport-dir:hover .card__bg {
  opacity: 0.28;
  transform: scale(1.04);
}

.card--sport-dir .card__body {
  position: relative;
  z-index: 2;
  padding: var(--space-32) var(--space-32) var(--space-32) var(--space-40);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card--sport-dir .card__title {
  color: var(--color-white);
  font-size: 1.3rem;
}

.card--sport-dir .card__meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.card--sport-dir .card-link {
  color: var(--color-red-500);
  margin-top: var(--space-20);
}

.card--sport-dir .card__actions {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-24);
}

.card--sport-dir .card__actions .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

.card--sport-dir .card__actions .btn--ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.card--sport-dir .card__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.card--space-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card--space-link:hover {
  color: inherit;
}

.card--infra-item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--color-graphite-900);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  border-top: 3px solid var(--color-red-500);
  transition:
    background var(--motion-base),
    border-color var(--motion-base),
    box-shadow var(--motion-base),
    transform var(--motion-base);
}

.card--infra-item:hover {
  background: var(--color-graphite-950);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    0 12px 40px rgba(229, 57, 53, 0.08);
  transform: translateY(-4px);
}

.card--infra-item .card__body {
  padding: var(--space-32) var(--space-32) var(--space-32) var(--space-32);
}

.infra-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-red-500);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-20);
  letter-spacing: -0.04em;
  opacity: 0.85;
  transition: opacity var(--motion-base);
}

.card--infra-item:hover .infra-number {
  opacity: 1;
}

.card--infra-item .card__title {
  font-size: 1.15rem;
  color: var(--color-white);
}

.card--infra-item .card__meta {
  color: rgba(255, 255, 255, 0.5);
}

.card--infra-featured {
  grid-row: 1 / 3;
}

.card--infra-featured .infra-number {
  font-size: 5rem;
}

.card--infra-featured .card__title {
  font-size: 1.5rem;
}

.card--infra-featured .card__body {
  padding: var(--space-48) var(--space-40);
}

.infra-tag {
  display: inline-block;
  margin-top: var(--space-20);
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red-500);
  border: 1px solid rgba(229, 57, 53, 0.25);
  border-radius: 100px;
  background: rgba(229, 57, 53, 0.08);
}

.card--org {
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  box-shadow:
    0 1px 3px rgba(10, 11, 14, 0.04),
    0 6px 20px -4px rgba(10, 11, 14, 0.07);
  border-left: 4px solid var(--color-red-500);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--motion-base),
    border-color var(--motion-base),
    transform var(--motion-base);
}

.card--org:hover {
  box-shadow:
    0 4px 12px rgba(10, 11, 14, 0.06),
    0 16px 40px -8px rgba(10, 11, 14, 0.10);
  transform: translateY(-3px);
}

.card--org .card__body {
  padding: var(--space-28, 28px) var(--space-32) var(--space-28, 28px) var(--space-32);
}

.card--org .card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
  color: var(--color-graphite-900);
}

.card--org .card__meta {
  font-size: 0.92rem;
  margin-bottom: var(--space-16);
  color: var(--color-graphite-500);
  line-height: 1.55;
}

.org-index {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-gray-100);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color var(--motion-base);
}

.card--org:hover .org-index {
  color: rgba(229, 57, 53, 0.08);
}

.breadcrumbs span:last-child::after {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.page-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-graphite-700);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.page-btn.is-active {
  border-color: var(--color-red-500);
  background: rgba(212, 43, 43, 0.1);
  color: var(--color-red-700);
}

.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-12);
  background: var(--bg-surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion:hover {
  border-color: var(--border-strong);
}

.accordion.is-open {
  box-shadow: var(--shadow-sm);
}

.accordion+.accordion {
  margin-top: var(--space-12);
}

.accordion__trigger {
  width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  padding: var(--space-20) var(--space-24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.86rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.accordion__trigger::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.accordion.is-open .accordion__trigger::after {
  content: "−";
  color: var(--color-red-500);
}

.accordion__content {
  display: none;
  padding: 0 var(--space-24) var(--space-20);
  font-size: 0.92rem;
  color: var(--color-graphite-500);
  line-height: 1.65;
}

.accordion.is-open .accordion__content {
  display: block;
}

.modal {
  border: 0;
  border-radius: 18px;
  width: min(560px, calc(100% - 24px));
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(12, 16, 24, 0.52);
  backdrop-filter: blur(2px);
}

.modal__head {
  position: relative;
  background: linear-gradient(140deg,
      var(--color-graphite-900),
      var(--color-graphite-800));
  color: var(--color-white);
  padding: var(--space-20);
  padding-right: var(--space-48);
}

.modal-close-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--motion-fast);
}

.modal-close-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal__head h3 {
  margin: 0 0 var(--space-8);
  font-size: 1.2rem;
  font-family: var(--font-head);
  text-transform: uppercase;
}

.modal__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.modal__body {
  padding: var(--space-20);
  display: grid;
  gap: var(--space-16);
}

.modal__meta {
  display: grid;
  gap: var(--space-10);
}

.modal__meta-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  font-size: 0.92rem;
  color: var(--color-graphite-700);
}

.modal__actions {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.feedback-modal {
  width: min(640px, calc(100% - 24px));
}

.feedback-form {
  display: grid;
  gap: var(--space-16);
}

.feedback-form__field {
  display: grid;
  gap: var(--space-8);
}

.feedback-form__field span,
.feedback-form__checkbox span {
  font-size: 0.92rem;
  color: var(--color-graphite-700);
}

.feedback-form__field input,
.feedback-form__field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--color-white);
  padding: 0.9rem 1rem;
  color: var(--text-main);
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.feedback-form__field textarea {
  resize: vertical;
  min-height: 132px;
}

.feedback-form__field input:focus,
.feedback-form__field textarea:focus {
  outline: none;
  border-color: rgba(211, 47, 47, 0.5);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.12);
}

.feedback-form__field input.is-error,
.feedback-form__field textarea.is-error {
  border-color: rgba(211, 47, 47, 0.6);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.feedback-form__checkbox input.is-error {
  outline: 2px solid rgba(211, 47, 47, 0.55);
  outline-offset: 2px;
}

.feedback-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-10);
}

.feedback-form__checkbox input {
  margin-top: 0.25rem;
}

.feedback-form__checkbox a {
  color: var(--primary);
}

.feedback-form__error,
.feedback-form__success {
  margin: 0;
  font-size: 0.92rem;
}

.feedback-form__error {
  color: var(--color-danger);
}

.feedback-form__success {
  color: var(--color-success);
}

.contact-feedback-btn,
.footer-feedback-btn {
  width: fit-content;
  margin-top: var(--space-20);
}

.footer-feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-12);
  padding: 0.55rem 0.9rem;
  min-height: 36px;
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}

.footer-feedback-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* Layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(251, 251, 252, 0.85);
  border-bottom: 1px solid rgba(203, 209, 219, 0.4);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header--transparent {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header--transparent.is-scrolled {
  background: rgba(10, 11, 14, 0.88);
  border-bottom-color: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 2px 24px rgba(0, 0, 0, 0.3),
    inset 0 -2px 0 0 var(--color-red-600);
}

.site-header--transparent .main-nav a {
  color: rgba(255, 255, 255, 0.85);
}

.site-header--transparent .main-nav a:hover {
  color: var(--color-white);
}

.site-header--transparent .site-header__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.site-header--transparent .site-header__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header--transparent .menu-toggle span {
  background: var(--color-white);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-48);
}

.site-header__actions .btn--primary {
  min-height: 42px;
  padding: 0 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-graphite-700);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--color-red-600);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-shrink: 0;
}

.site-header__actions .btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-main);
}

.site-header__actions .btn--ghost:hover {
  background: var(--bg-surface-2);
  border-color: var(--text-main);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  position: relative;
  z-index: 60;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-graphite-900);
  position: absolute;
  left: 9px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
  background: var(--color-red-600);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
  background: var(--color-red-600);
}

body.no-scroll {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero:not(.hero--small)::before {
  inset: -30px;
  animation: heroKenBurns 30s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.05) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scale(1.1) translate(-6px, -4px) rotate(0.3deg);
  }
  100% {
    transform: scale(1.07) translate(4px, -8px) rotate(-0.2deg);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(10, 11, 14, 0.88) 0%,
      rgba(10, 11, 14, 0.65) 45%,
      rgba(10, 11, 14, 0.45) 100%),
    radial-gradient(ellipse 120% 80% at 75% 20%,
      rgba(212, 43, 43, 0.22),
      transparent 65%);
}

.hero:not(.hero--small)::after {
  background:
    linear-gradient(170deg,
      rgba(10, 11, 14, 0.92) 0%,
      rgba(10, 11, 14, 0.7) 40%,
      rgba(10, 11, 14, 0.5) 100%),
    radial-gradient(ellipse 100% 70% at 70% 25%,
      rgba(229, 57, 53, 0.18),
      transparent 60%);
}

.hero:not(.hero--small)::after {
  background:
    linear-gradient(170deg,
      rgba(10, 11, 14, 0.92) 0%,
      rgba(10, 11, 14, 0.7) 40%,
      rgba(10, 11, 14, 0.5) 100%),
    radial-gradient(ellipse 100% 70% at 70% 25%,
      rgba(229, 57, 53, 0.18),
      transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 70%,
      rgba(229, 57, 53, 0.08),
      transparent 60%);
  background-size: 100% 100%, 200% 200%, 200% 200%;
  background-position: center, 30% 30%, 70% 70%;
  animation: heroGradientShift 10s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
  0% {
    background-position: center, 30% 30%, 70% 70%;
  }
  50% {
    background-position: center, 60% 40%, 40% 50%;
  }
  100% {
    background-position: center, 40% 60%, 60% 30%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg,
      rgba(10, 11, 14, 0.8),
      rgba(212, 43, 43, 0.4),
      rgba(10, 11, 14, 0.6),
      rgba(20, 20, 30, 0.5));
  background-size: 400% 400%;
  animation: gradientFlow 10s ease infinite;
  z-index: 0;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-64) 0 var(--space-48);
  padding-top: calc(var(--header-height) + var(--space-48));
}

.hero--small {
  min-height: 340px;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--small::before {
  display: none;
}

.hero--small .hero__inner {
  padding-top: calc(var(--header-height) + var(--space-32));
  padding-bottom: var(--space-40);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero--small h1 {
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  line-height: 1.1;
}

.hero--small .badge {
  margin-top: var(--space-8);
  margin-bottom: 15px;
}

.hero--small p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: var(--space-32);
}

.hero--small .hero__actions .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero:not(.hero--small) .hero__inner {
  padding: var(--space-64) 0 var(--space-64);
  padding-top: calc(var(--header-height) + var(--space-64));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
}

.hero__content {
  display: grid;
  gap: var(--space-24);
}

.hero:not(.hero--small) .hero__content {
  justify-items: center;
  text-align: center;
}

.hero .badge {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.hero:not(.hero--small) .badge {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  background: rgba(229, 57, 53, 0.15);
  border-color: rgba(229, 57, 53, 0.3);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.hero:not(.hero--small) h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
}

.hero-h1-accent {
  color: var(--color-red-500);
  display: block;
  margin-top: 0.08em;
}

.hero:not(.hero--small) .hero-h1-accent {
  text-shadow:
    0 0 40px rgba(229, 57, 53, 0.3),
    0 2px 32px rgba(0, 0, 0, 0.3);
}

.hero p {
  margin: 0;
  max-width: 540px;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.hero:not(.hero--small) p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
  padding-top: var(--space-12);
  justify-content: center;
}

.btn--hero {
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.btn--hero.btn--primary {
  box-shadow:
    0 4px 20px -4px rgba(229, 57, 53, 0.5),
    0 0 0 1px rgba(229, 57, 53, 0.1);
}

.btn--hero.btn--primary:hover {
  box-shadow:
    0 6px 28px -4px rgba(229, 57, 53, 0.6),
    0 0 0 1px rgba(229, 57, 53, 0.2);
}

.hero__actions .btn--ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-16);
  margin-top: var(--space-16);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--color-red-500);
  border-radius: var(--radius-12);
  backdrop-filter: blur(10px);
  padding: var(--space-20) var(--space-16);
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  position: relative;
}

.hero__scroll-hint span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--color-red-500);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(12px);
  }
}

@keyframes heroRevealBadge {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroRevealHeadline {
  0% {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroRevealActions {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRevealHint {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-anim {
  opacity: 0;
}

.hero-anim--1 {
  animation: heroRevealBadge 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-anim--2 {
  animation: heroRevealHeadline 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-anim--3 {
  animation: heroRevealActions 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
}

.hero-anim--3 .btn--hero:nth-child(1) {
  opacity: 0;
  animation: heroRevealActions 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.hero-anim--3 .btn--hero:nth-child(2) {
  opacity: 0;
  animation: heroRevealActions 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}

.hero-anim--4 {
  animation: heroRevealHint 1s ease 2s forwards;
}

.hero:not(.hero--small) .hero__content {
  animation: heroContentFloat 6s ease-in-out 2.5s infinite;
}

@keyframes heroContentFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.sports-grid,
.infra-grid,
.org-grid,
.news-grid,
.gallery-grid,
.contacts-grid {
  display: grid;
  gap: var(--space-20);
}

.sports-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-20);
}

.sport-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-red-500);
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: var(--space-20);
  transition:
    transform var(--motion-base),
    background var(--motion-base),
    border-color var(--motion-base);
}

.card:hover .sport-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--color-white);
}

.card-link {
  margin-top: var(--space-16);
  color: var(--color-red-500);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.card-link:hover {
  color: var(--color-red-700);
  gap: 10px;
}

.infra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-20);
}

.section--infra-bg .infra-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-24);
}

.org-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-24);
}

.org-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--color-success);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  margin-top: 0;
  padding: 5px 12px;
  background: rgba(46, 139, 87, 0.06);
  border-radius: 100px;
  border: 1px solid rgba(46, 139, 87, 0.15);
}

.org-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 6px rgba(46, 139, 87, 0.4);
}

/* Schedule */
.schedule-panel {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-16);
  background: var(--color-white);
  box-shadow:
    0 1px 2px rgba(10, 11, 14, 0.04),
    0 4px 16px -2px rgba(10, 11, 14, 0.06),
    0 16px 48px -8px rgba(10, 11, 14, 0.06);
  padding: var(--space-24);
  overflow: hidden;
}

.section--schedule-bg .schedule-panel {
  border: 1px solid rgba(10, 11, 14, 0.07);
  border-top: 4px solid var(--color-red-500);
  background: var(--color-white);
  box-shadow:
    0 1px 2px rgba(10, 11, 14, 0.04),
    0 4px 12px rgba(10, 11, 14, 0.06),
    0 16px 40px -8px rgba(10, 11, 14, 0.10),
    0 32px 64px -16px rgba(10, 11, 14, 0.06);
}

.schedule-panel:has(.schedule-panel__header) {
  padding: 0;
}

.schedule-panel__header {
  background: var(--color-white);
  padding: var(--space-24) var(--space-32);
  border-bottom: 1px solid var(--color-gray-200);
}

.schedule-panel__header .schedule-controls {
  margin-bottom: 0;
}

.section--schedule-bg .schedule-panel__header {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 1px 3px rgba(10, 11, 14, 0.03);
}

.section--schedule-bg .schedule-panel__header .week-title {
  color: var(--color-graphite-900);
}

.section--schedule-bg .schedule-panel__header .btn--ghost {
  color: var(--color-graphite-700);
  border-color: var(--color-gray-200);
  background: var(--color-white);
}

.section--schedule-bg .schedule-panel__header .btn--ghost:hover {
  background: var(--color-white);
  border-color: var(--color-gray-300);
  box-shadow: 0 1px 3px rgba(10, 11, 14, 0.06);
}

.section--schedule-bg .schedule-panel__header .btn--secondary {
  background: var(--color-red-600);
  border-color: var(--color-red-600);
  color: var(--color-white);
}

.section--schedule-bg .schedule-panel__header .btn--secondary:hover {
  background: var(--color-red-500);
  border-color: var(--color-red-500);
}

.section--schedule-bg .schedule-panel__header .chip {
  background: var(--color-white);
  color: var(--color-graphite-500);
  border-color: var(--color-gray-200);
}

.section--schedule-bg .schedule-panel__header .chip:hover {
  background: var(--color-white);
  color: var(--color-graphite-900);
  border-color: var(--color-gray-300);
  box-shadow: 0 1px 3px rgba(10, 11, 14, 0.06);
}

.section--schedule-bg .schedule-panel__header .chip.is-active {
  background: var(--color-red-600);
  color: var(--color-white);
  border-color: var(--color-red-600);
}

.section--schedule-bg .schedule-panel__header .schedule-filter-grid {
  border-top-color: var(--color-gray-100);
}

.section--schedule-bg .schedule-panel__header .form-label {
  color: var(--color-graphite-500);
}

.section--schedule-bg .schedule-panel__header .select,
.section--schedule-bg .schedule-panel__header .input {
  background: var(--color-white);
  border-color: var(--color-gray-200);
  color: var(--color-graphite-900);
}

.section--schedule-bg .schedule-panel__header .select:hover,
.section--schedule-bg .schedule-panel__header .input:hover {
  border-color: var(--color-gray-300);
  background: var(--color-white);
}

.section--schedule-bg .schedule-panel__header .select:focus,
.section--schedule-bg .schedule-panel__header .input:focus {
  border-color: var(--color-red-500);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.08);
}

.section--schedule-bg .schedule-panel__header .schedule-filter-mobile-trigger {
  color: var(--color-graphite-700);
  border-color: var(--color-gray-300);
}

.schedule-controls {
  display: grid;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
}

.schedule-panel:has(.schedule-panel__header) .schedule-desktop,
.schedule-panel:has(.schedule-panel__header) .schedule-mobile {
  padding: var(--space-24) var(--space-32);
}

.schedule-panel:has(.schedule-panel__header) .schedule-skeleton,
.schedule-panel:has(.schedule-panel__header) .schedule-state {
  margin-left: var(--space-32);
  margin-right: var(--space-32);
  margin-bottom: var(--space-24);
}

.week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.week-nav__controls {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.week-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.schedule-venue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
}

.schedule-venue-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-graphite-700);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.schedule-venue-tab:hover {
  border-color: var(--color-gray-300);
  color: var(--color-graphite-900);
  box-shadow: 0 4px 12px rgba(10, 11, 14, 0.06);
}

.schedule-venue-tab.is-active {
  background: var(--color-red-600);
  border-color: var(--color-red-600);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.18);
}

.schedule-venue-intro {
  display: grid;
  gap: var(--space-8);
  padding: var(--space-20);
  border: 1px solid var(--color-gray-150, rgba(10, 11, 14, 0.06));
  border-radius: var(--radius-16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 251, 0.96) 100%);
}

.schedule-venue-intro__eyebrow {
  margin: 0;
  color: var(--color-red-600);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-venue-intro__title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.schedule-venue-intro__lead {
  margin: 0;
  max-width: 72ch;
  color: var(--color-graphite-600);
}

.schedule-filter-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(140px, 1fr)) 1.5fr;
  gap: var(--space-10);
  align-items: end;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-gray-100);
}

.schedule-filter-mobile-trigger {
  display: none;
}

.schedule-desktop {
  display: block;
}

.schedule-mobile {
  display: none;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 74px repeat(7, minmax(122px, 1fr));
  grid-template-rows: 46px 1fr;
  border: 1px solid var(--color-gray-200);
  border-radius: 14px;
  overflow: hidden;
}

.section--schedule-bg .schedule-grid {
  grid-template-rows: 48px 1fr;
  border: 1px solid var(--color-gray-150, rgba(10, 11, 14, 0.06));
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(10, 11, 14, 0.02);
}

.schedule-corner,
.day-head {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--color-gray-200);
  background: var(--color-gray-100);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section--schedule-bg .schedule-corner,
.section--schedule-bg .day-head {
  background: var(--color-gray-50);
  color: var(--color-graphite-900);
  border-bottom: 2px solid var(--color-red-500);
}

.section--schedule-bg .schedule-corner {
  background: var(--color-gray-100);
  color: var(--color-graphite-500);
  border-bottom-color: var(--color-gray-200);
}

.day-head span {
  display: block;
  color: var(--color-graphite-500);
  font-size: 0.69rem;
  margin-top: 2px;
}

.section--schedule-bg .day-head span {
  color: var(--color-graphite-500);
}

.time-axis {
  border-right: 1px solid var(--color-gray-200);
  background: var(--color-gray-100);
}

.section--schedule-bg .time-axis {
  background: var(--color-gray-50);
  border-right-color: var(--color-gray-100);
}

.time-label {
  height: calc(var(--slot-height) * 2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--space-4);
  font-size: 0.7rem;
  color: var(--color-graphite-500);
  font-family: var(--font-head);
}

.day-track {
  position: relative;
  height: calc(var(--slot-height) * var(--slot-count));
  border-right: 1px solid var(--color-gray-200);
  background: repeating-linear-gradient(to bottom,
      rgba(112, 124, 148, 0.22) 0,
      rgba(112, 124, 148, 0.22) 1px,
      transparent 1px,
      transparent calc(var(--slot-height)));
}

.day-track:last-child {
  border-right: 0;
}

.schedule-event {
  position: absolute;
  left: 6px;
  right: 6px;
  top: calc(var(--start) * var(--slot-height) + 2px);
  height: calc(var(--span) * var(--slot-height) - 5px);
  border: 1px solid rgba(211, 47, 47, 0.38);
  border-radius: 6px;
  padding: 0;
  text-align: left;
  background: rgba(211, 47, 47, 0.22);
  cursor: pointer;
  display: block;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    background var(--motion-fast);
}

.schedule-event:hover {
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.18);
  z-index: 10;
  border-color: rgba(211, 47, 47, 0.58);
  background: rgba(211, 47, 47, 0.3);
}

.schedule-event[hidden] {
  display: none;
}

.schedule-event__title {
  display: none;
}

.schedule-event__meta {
  display: none;
}

.schedule-event[data-status="available"] {
  border-color: rgba(211, 47, 47, 0.38);
  background: rgba(211, 47, 47, 0.22);
}

.schedule-event[data-status="waitlist"] {
  border-color: rgba(211, 47, 47, 0.38);
  background: rgba(211, 47, 47, 0.22);
}

.schedule-event[data-status="full"] {
  border-color: rgba(211, 47, 47, 0.38);
  background: rgba(211, 47, 47, 0.22);
}

.schedule-event[data-status="cancelled"] {
  border-color: rgba(211, 47, 47, 0.28);
  background: rgba(211, 47, 47, 0.14);
  opacity: 1;
}

.section--schedule-bg .schedule-event {
  left: 4px;
  right: 4px;
  border: 1px solid rgba(211, 47, 47, 0.38);
  border-radius: 6px;
  background: rgba(211, 47, 47, 0.22);
  transition:
    transform var(--motion-fast),
    box-shadow var(--motion-fast),
    background var(--motion-fast);
}

.section--schedule-bg .schedule-event:hover {
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.18);
  transform: scale(1.01);
  border-color: rgba(211, 47, 47, 0.58);
  background: rgba(211, 47, 47, 0.3);
}

.section--schedule-bg .schedule-event__title {
  display: none;
}

.section--schedule-bg .schedule-event[data-status="available"] {
  border-color: rgba(211, 47, 47, 0.38);
  background: rgba(211, 47, 47, 0.22);
}

.section--schedule-bg .schedule-event[data-status="waitlist"] {
  border-color: rgba(211, 47, 47, 0.38);
  background: rgba(211, 47, 47, 0.22);
}

.section--schedule-bg .schedule-event[data-status="full"] {
  border-color: rgba(211, 47, 47, 0.38);
  background: rgba(211, 47, 47, 0.22);
}

.section--schedule-bg .schedule-event[data-status="cancelled"] {
  border-color: rgba(211, 47, 47, 0.28);
  background: rgba(211, 47, 47, 0.14);
  opacity: 1;
  text-decoration: none;
}

.schedule-legend {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  padding: var(--space-20) var(--space-32);
  border-top: 1px solid var(--color-gray-200);
}

.schedule-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-graphite-500);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

.schedule-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.schedule-legend__dot--available { background: var(--color-success); }
.schedule-legend__dot--waitlist { background: var(--color-info); }
.schedule-legend__dot--full { background: var(--color-danger); }
.schedule-legend__dot--cancelled { background: var(--color-graphite-500); }

.schedule-state {
  margin-top: var(--space-12);
  border-radius: 12px;
  border: 1px dashed var(--color-gray-300);
  padding: var(--space-16);
  text-align: center;
  color: var(--color-graphite-500);
  font-size: 0.9rem;
}

.schedule-state[hidden] {
  display: none;
}

.schedule-skeleton {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-8);
}

.schedule-skeleton[hidden] {
  display: none;
}

.skeleton-line {
  height: 14px;
  border-radius: var(--radius-999);
  background: linear-gradient(90deg,
      var(--color-gray-100),
      var(--color-gray-200),
      var(--color-gray-100));
  background-size: 200% 100%;
  animation: shimmer 1.1s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.mobile-day-tabs {
  display: flex;
  overflow-x: auto;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

.mobile-day {
  border: 1px solid var(--color-gray-300);
  border-radius: 10px;
  background: var(--color-white);
  min-width: 68px;
  padding: 8px 10px;
  text-align: center;
  font-size: 0.72rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-day span {
  display: block;
  margin-top: 2px;
  color: var(--color-graphite-500);
}

.mobile-day.is-active {
  border-color: var(--color-red-500);
  background: rgba(212, 43, 43, 0.1);
  color: var(--color-red-700);
}

.mobile-events {
  display: grid;
  gap: var(--space-10);
}

.mobile-event {
  border: 1px solid var(--color-gray-200);
  border-left: 4px solid var(--color-info);
  border-radius: 12px;
  background: var(--color-white);
  padding: var(--space-12);
  display: grid;
  gap: var(--space-8);
}

.mobile-event[data-status="available"] {
  border-left-color: var(--color-success);
}

.mobile-event[data-status="full"] {
  border-left-color: var(--color-danger);
}

.mobile-event[data-status="cancelled"] {
  border-left-color: var(--color-gray-500);
  opacity: 0.7;
}

.mobile-event__head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-10);
  align-items: flex-start;
}

.mobile-event__title {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.86rem;
  line-height: 1.2;
}

.mobile-event__meta {
  margin: 0;
  color: var(--color-graphite-500);
  font-size: 0.8rem;
}

.status-pill {
  padding: 4px 8px;
  border-radius: var(--radius-999);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.status-pill[data-status="available"] {
  background: rgba(52, 168, 83, 0.15);
  color: #2d7a41;
}

.status-pill[data-status="waitlist"] {
  background: rgba(47, 109, 246, 0.15);
  color: #2054bf;
}

.status-pill[data-status="full"] {
  background: rgba(217, 48, 37, 0.15);
  color: #a32219;
}

.status-pill[data-status="cancelled"] {
  background: rgba(135, 147, 170, 0.2);
  color: #5f6a80;
}

/* Booking and content */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: var(--space-40);
  align-items: start;
}

.sport-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: var(--space-48);
  align-items: start;
}

.sport-detail-sidebar {
  min-width: 0;
}

.sport-detail-sidebar__card {
  margin-top: var(--space-20);
}

.sport-detail-gallery {
  margin-top: var(--space-40);
}

.sport-detail-gallery__head {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-20);
}

.sport-detail-gallery__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-red-500);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sport-detail-gallery__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--color-graphite-900);
}

.sport-detail-gallery__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.space-detail-copy {
  display: grid;
  gap: var(--space-16);
  color: var(--color-graphite-700);
  font-size: 1rem;
  line-height: 1.75;
}

.space-detail-copy p {
  margin: 0;
}

.sport-detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
}

.sport-detail-gallery__item {
  padding: 0;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-16);
  background: transparent;
  box-shadow:
    0 1px 3px rgba(10, 11, 14, 0.04),
    0 10px 28px -10px rgba(10, 11, 14, 0.14);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition:
    transform var(--motion-base),
    box-shadow var(--motion-base),
    border-color var(--motion-base);
}

.sport-detail-gallery__item:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 57, 53, 0.22);
  box-shadow:
    0 8px 18px rgba(10, 11, 14, 0.06),
    0 18px 44px -16px rgba(10, 11, 14, 0.22);
}

.sport-detail-gallery__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-graphite-900);
}

.sport-detail-gallery__image::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='m20 20-4.35-4.35'/%3E%3C/svg%3E")
    center / 24px 24px no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition:
    opacity var(--motion-base),
    transform var(--motion-base);
  z-index: 2;
  pointer-events: none;
}

.sport-detail-gallery__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.24);
  opacity: 0;
  transition: opacity var(--motion-base);
  pointer-events: none;
  z-index: 1;
}

.sport-detail-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.7s ease,
    filter 0.45s ease;
}

.sport-detail-gallery__item:hover .sport-detail-gallery__image img {
  transform: scale(1.03);
  filter: blur(2.5px);
}

.sport-detail-gallery__item:hover .sport-detail-gallery__image::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sport-detail-gallery__item:hover .sport-detail-gallery__image::after {
  opacity: 1;
}

.gallery-lightbox {
  width: min(980px, calc(100% - 24px));
  background: transparent;
  box-shadow: none;
}

.gallery-lightbox__body {
  padding: 0;
  gap: 0;
  background: transparent;
  position: relative;
}

.gallery-lightbox__frame {
  display: grid;
  place-items: center;
  background: #090b10;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-lightbox__frame img {
  display: block;
  width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
}

.gallery-lightbox__close {
  top: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(10, 11, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-lightbox__close:hover {
  background: rgba(10, 11, 14, 0.62);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(10, 11, 14, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    background var(--motion-fast),
    transform var(--motion-fast),
    opacity var(--motion-fast);
}

.gallery-lightbox__nav:hover {
  background: rgba(10, 11, 14, 0.58);
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox__nav[hidden] {
  display: none;
}

.gallery-lightbox__nav--prev {
  left: 16px;
}

.gallery-lightbox__nav--next {
  right: 16px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-16);
  background: var(--color-white);
  box-shadow:
    0 1px 3px rgba(10, 11, 14, 0.04),
    0 10px 28px -12px rgba(10, 11, 14, 0.12);
  padding: var(--space-40);
}

.legal-meta {
  margin: 0 0 var(--space-24);
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-stack {
  display: grid;
  gap: var(--space-36);
}

.legal-stack section {
  display: grid;
  gap: var(--space-14);
}

.legal-stack h2 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-graphite-900);
}

.legal-stack p,
.legal-stack li {
  margin: 0;
  color: var(--color-graphite-700);
  line-height: 1.75;
}

.legal-stack ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: var(--space-8);
}

.regulation-docs {
  display: grid;
  gap: var(--space-20);
}

.regulation-doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-20);
  align-items: center;
  padding: var(--space-24);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 253, 0.98));
}

.regulation-doc-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(208, 28, 45, 0.08);
  color: var(--color-red-500);
}

.regulation-doc-card__icon svg {
  width: 28px;
  height: 28px;
}

.regulation-doc-card__body {
  display: grid;
  gap: var(--space-8);
}

.regulation-doc-card__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.regulation-doc-card__body h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--color-graphite-900);
}

.regulation-doc-card__body p {
  margin: 0;
  color: var(--color-graphite-700);
  line-height: 1.7;
}

.regulation-doc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-graphite-900);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.regulation-doc-card__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  background: var(--color-red-500);
}

.regulation-doc-card__link svg {
  width: 18px;
  height: 18px;
}

.booking-card {
  border: none;
  border-top: 4px solid var(--color-red-500);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 24px 64px -8px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.booking-card:hover {
  transform: none;
}

.booking-card__top {
  background: var(--color-graphite-900);
  padding: var(--space-24) var(--space-32);
}

.booking-card__heading {
  margin: 0 0 var(--space-16);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--color-graphite-400);
  font-weight: 700;
}

.booking-card > .card__body {
  padding: var(--space-32) var(--space-32) var(--space-40);
}

.booking-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle), transparent);
  margin: var(--space-24) 0;
}

.request-types {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  margin-bottom: 0;
}

.request-type {
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  border-radius: var(--radius-999);
  height: 44px;
  padding: 0 var(--space-20);
  font-family: var(--font-head);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.request-type:hover {
  border-color: var(--color-gray-500);
}

.request-type.is-active {
  border-color: transparent;
  background: var(--color-red-600);
  color: var(--color-white);
  box-shadow: 0 4px 16px -2px rgba(211, 47, 47, 0.4);
}

.booking-card__top .request-type {
  border-color: var(--color-graphite-700);
  background: var(--color-graphite-800);
  color: var(--color-graphite-400);
}

.booking-card__top .request-type:hover {
  border-color: var(--color-graphite-500);
  color: var(--color-white);
}

.booking-card__top .request-type.is-active {
  border-color: transparent;
  background: var(--color-red-600);
  color: var(--color-white);
}

.booking-form {
  display: grid;
  gap: var(--space-20);
  margin-top: 15px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-20);
}

.booking-grid .form-field[data-col="full"] {
  grid-column: 1 / -1;
}

.btn--booking-submit {
  width: 100%;
  height: 54px;
  font-size: 0.88rem;
}

.booking-success {
  margin-top: var(--space-20);
  border-radius: var(--radius-12);
  border: 1px solid rgba(52, 168, 83, 0.3);
  background: rgba(52, 168, 83, 0.08);
  padding: var(--space-20);
  display: none;
}

.booking-success.is-visible {
  display: grid;
  gap: var(--space-12);
}

.booking-faq {
  padding-top: var(--space-8);
}

.booking-faq__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--color-graphite-400);
  font-weight: 700;
  margin: 0 0 var(--space-20);
}

.accordion--dark {
  background: var(--color-graphite-900);
  border-color: var(--color-graphite-700);
}

.accordion--dark:hover {
  border-color: var(--color-graphite-500);
}

.accordion--dark.is-open {
  border-color: var(--color-graphite-500);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.accordion--dark .accordion__trigger {
  color: var(--color-white);
}

.accordion--dark .accordion__trigger::after {
  color: var(--color-graphite-400);
}

.accordion--dark.is-open .accordion__trigger::after {
  color: var(--color-red-500);
}

.accordion--dark .accordion__content {
  color: var(--color-graphite-400);
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-24);
}

.news-card {
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  box-shadow:
    0 1px 3px rgba(10, 11, 14, 0.04),
    0 6px 20px -4px rgba(10, 11, 14, 0.07);
  overflow: hidden;
  transition:
    box-shadow var(--motion-base),
    transform var(--motion-base);
}

.news-card:hover {
  box-shadow:
    0 4px 12px rgba(10, 11, 14, 0.06),
    0 16px 40px -8px rgba(10, 11, 14, 0.10);
  transform: translateY(-4px);
}

.news-card__img {
  position: relative;
  overflow: hidden;
}

.news-card__img img,
.news-card > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card__img img,
.news-card:hover > img {
  transform: scale(1.06);
}

.news-card__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 11, 14, 0.25), transparent);
  pointer-events: none;
}

.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  background: var(--color-red-500);
  border-radius: 100px;
}

.news-card .card__body {
  padding: var(--space-24) var(--space-24) var(--space-28, 28px);
}

.news-card .card__title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: var(--space-10);
  color: var(--color-graphite-900);
}

.news-card .card__meta {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-graphite-500);
}

.news-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-family: var(--font-head);
  color: var(--color-red-500);
  margin-bottom: var(--space-12);
  letter-spacing: 0.06em;
  font-weight: 700;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-12);
}

.gallery-item {
  border-radius: var(--radius-12);
  overflow: hidden;
  height: 240px;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  box-shadow: 0 12px 32px -6px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.section--location-bg {
  background: var(--color-gray-50);
}

.section--location-bg + .section::before,
.section + .section--location-bg::before {
  display: none;
}

.contacts-grid {
  grid-template-columns: 5fr 7fr;
  gap: var(--space-32);
  align-items: stretch;
}

.card--contact {
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  box-shadow:
    0 1px 3px rgba(10, 11, 14, 0.04),
    0 6px 20px -4px rgba(10, 11, 14, 0.07);
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-18);
  height: auto;
}

.contact-block__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
}

.contact-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-block__header .card__title {
  font-size: 1.2rem;
  color: var(--color-graphite-900);
  line-height: 1.3;
}

.contact-list {
  display: grid;
  gap: var(--space-16);
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  flex: 0 0 auto;
}

.contact-list--compact {
  margin-top: var(--space-16);
  gap: var(--space-12);
}

.contact-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-graphite-700);
  padding-left: var(--space-16);
  border-left: 2px solid var(--color-gray-200);
}

.contact-list--compact li {
  padding-left: 14px;
}

.contact-list strong {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-graphite-500);
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

.contact-link {
  color: var(--color-graphite-900);
  text-decoration: none;
  transition: color var(--motion-fast);
}

.contact-link:hover {
  color: var(--color-red-500);
}

.contact-block__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding-top: var(--space-20);
  border-top: 1px solid var(--color-gray-100);
}

.contact-hours {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-success);
}

.map-embed {
  border-radius: var(--radius-16);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--color-gray-200);
  box-shadow:
    0 1px 3px rgba(10, 11, 14, 0.04),
    0 6px 20px -4px rgba(10, 11, 14, 0.07);
}

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

.map-embed--contacts {
  min-height: 100%;
  height: 100%;
}

.contact-feedback-btn {
  margin-top: var(--space-12);
}

.pricing-note {
  margin-top: var(--space-32);
  display: grid;
  gap: var(--space-10);
}

.pricing-note p {
  margin: 0;
  color: var(--text-muted);
  max-width: 880px;
}

.pricing-note__meta {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-graphite-500);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-24);
}

.pricing-card {
  height: 100%;
  border: 1px solid rgba(10, 11, 14, 0.08);
  box-shadow: var(--shadow-sm);
}

.pricing-card .card__body {
  display: grid;
  gap: var(--space-20);
}

.pricing-card__head {
  display: grid;
  gap: var(--space-10);
}

.pricing-card__eyebrow {
  margin: 0;
  color: var(--color-red-600);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: 0 0 var(--space-12);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--color-graphite-500);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  vertical-align: bottom;
}

.pricing-table tbody td {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.55;
  vertical-align: top;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  padding-left: var(--space-16);
}

.pricing-table td:last-child {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
}

.pricing-table td[data-label="Площадь"],
.pricing-table td[data-label="Абонемент"],
.pricing-table td[data-label="Продолжительность"] {
  color: var(--text-muted);
}

.site-footer {
  background: linear-gradient(180deg, var(--color-graphite-950) 0%, #060709 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: var(--space-96) 0 var(--space-40);
  margin-top: 0;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-64);
  align-items: start;
  padding-bottom: var(--space-48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: grid;
  gap: var(--space-20);
}

.footer-brand .brand img {
  height: 62px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.footer-brand__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 320px;
}

.footer-brand__contacts {
  display: grid;
  gap: var(--space-8);
}

.footer-phone {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: var(--color-white);
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  width: fit-content;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal:hover {
  color: rgba(255, 255, 255, 0.72);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  gap: var(--space-24);
  align-items: stretch;
}

.contacts-stack {
  display: grid;
  gap: var(--space-24);
  height: 100%;
  align-content: start;
}

.contacts-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
  margin-bottom: var(--space-40);
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: var(--space-32);
}

.footer-links h4 {
  margin: 0 0 var(--space-20);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links a {
  display: block;
  margin-bottom: var(--space-10);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-partners-row {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  padding: var(--space-32) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-partners-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  font-weight: 700;
}

.partners {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  margin-top: var(--space-32);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-partners-row .partners {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.partners img {
  height: 36px;
  width: auto;
  filter: none;
  opacity: 0.62;
  transition: opacity 0.3s ease;
}

.partners img:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: var(--space-24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

.footer-bottom__hours {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__hours:hover {
  color: rgba(255, 255, 255, 0.55);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.card--sport,
.card--infra {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  background: var(--color-graphite-900);
}

.card--sport img.card__bg,
.card--infra img.card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
  transition:
    transform 0.8s ease,
    opacity 0.5s ease;
}

.card--sport:hover img.card__bg,
.card--infra:hover img.card__bg {
  transform: scale(1.05);
  opacity: 0.8;
}

.card--sport::after,
.card--infra::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 11, 14, 0.95) 0%,
      rgba(10, 11, 14, 0.4) 50%,
      transparent 100%);
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

.card--sport .card__body,
.card--infra .card__body {
  position: relative;
  z-index: 2;
  color: #fff;
}

.card--sport .card__title,
.card--infra .card__title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: var(--space-8);
}

.card--sport .card__meta,
.card--infra .card__meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Corner style switcher:
   cut  -> <body data-corners="cut">
   round -> <body data-corners="round"> (rollback) */
body[data-corners="cut"] :is(.btn,
  .input,
  .select,
  .textarea,
  .tabs,
  .tab,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-event,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .status-pill,
  .request-type,
  .booking-success,
  .gallery-item,
  .map-embed,
  .modal,
  .hero-stat,
  .sport-icon,
  .menu-toggle) {
  border-radius: 0;
}

body[data-corners="cut"] :is(.btn,
  .input,
  .select,
  .textarea,
  .tabs,
  .tab,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-event,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .status-pill,
  .request-type,
  .booking-success,
  .gallery-item,
  .map-embed,
  .modal,
  .hero-stat,
  .sport-icon,
  .menu-toggle) {
  clip-path: polygon(var(--cut-md) 0,
      100% 0,
      100% calc(100% - var(--cut-md)),
      calc(100% - var(--cut-md)) 100%,
      0 100%,
      0 var(--cut-md));
}

body[data-corners="cut"] :is(.chip, .status-pill, .request-type, .mobile-day, .page-btn) {
  clip-path: polygon(var(--cut-xs) 0,
      100% 0,
      100% calc(100% - var(--cut-xs)),
      calc(100% - var(--cut-xs)) 100%,
      0 100%,
      0 var(--cut-xs));
}

body[data-corners="cut"] :is(.schedule-event, .mobile-event) {
  clip-path: polygon(var(--cut-sm) 0,
      100% 0,
      100% calc(100% - var(--cut-sm)),
      calc(100% - var(--cut-sm)) 100%,
      0 100%,
      0 var(--cut-sm));
}

body[data-corners="cut"] .news-card img {
  border-radius: 0;
  clip-path: polygon(var(--cut-md) 0,
      100% 0,
      100% calc(100% - var(--cut-md)),
      calc(100% - var(--cut-md)) 100%,
      0 100%,
      0 var(--cut-md));
}

body[data-corners="cut"] .accordion__trigger {
  border-radius: 0;
}

/* Restore visible border on cut edges (diagonal segments). */
body[data-corners="cut"] :is(.btn--ghost,
  .input,
  .select,
  .textarea,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .request-type,
  .booking-success) {
  position: relative;
  --cut-line-size: var(--cut-md);
  --cut-line-color: var(--color-gray-500);
}

body[data-corners="cut"] :is(.btn--ghost,
  .input,
  .select,
  .textarea,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .request-type,
  .booking-success)::before,
body[data-corners="cut"] :is(.btn--ghost,
  .input,
  .select,
  .textarea,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .request-type,
  .booking-success)::after {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(var(--cut-line-size) * 1.8);
  background: var(--cut-line-color);
  pointer-events: none;
  z-index: 4;
}

body[data-corners="cut"] :is(.btn--ghost,
  .input,
  .select,
  .textarea,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .request-type,
  .booking-success)::before {
  top: calc(var(--cut-line-size) * 0.58);
  left: calc(var(--cut-line-size) * 0.02);
  transform: rotate(-45deg);
  transform-origin: left center;
}

body[data-corners="cut"] :is(.btn--ghost,
  .input,
  .select,
  .textarea,
  .card,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .request-type,
  .booking-success)::after {
  bottom: calc(var(--cut-line-size) * 0.58);
  right: calc(var(--cut-line-size) * 0.02);
  transform: rotate(-45deg);
  transform-origin: right center;
}

body[data-corners="cut"] .btn--ghost {
  --cut-line-color: var(--color-graphite-900);
}

body[data-corners="cut"] .card {
  --cut-line-color: var(--color-gray-200);
}

body[data-corners="cut"] .card--dark {
  --cut-line-color: rgba(255, 255, 255, 0.12);
}

body[data-corners="cut"] :is(.input,
  .select,
  .textarea,
  .page-btn,
  .accordion,
  .schedule-panel,
  .schedule-grid,
  .schedule-state,
  .mobile-day,
  .mobile-event,
  .request-type) {
  --cut-line-color: var(--color-gray-300);
}

body[data-corners="cut"] :is(.chip, .mobile-day, .page-btn, .request-type) {
  --cut-line-size: var(--cut-xs);
}

body[data-corners="cut"] :is(.input:hover, .select:hover, .textarea:hover) {
  --cut-line-color: var(--color-gray-500);
}

body[data-corners="cut"] :is(.input:focus, .select:focus, .textarea:focus) {
  --cut-line-color: var(--color-info);
}

body[data-corners="cut"] :is(.input.is-error, .select.is-error, .textarea.is-error) {
  --cut-line-color: var(--color-danger);
}

body[data-corners="cut"] :is(.input.is-success,
  .select.is-success,
  .textarea.is-success,
  .booking-success) {
  --cut-line-color: var(--color-success);
}

@keyframes revealUp {
  from {
    opacity: 0;
    translate: 0 32px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.reveal {
  opacity: 0;
  translate: 0 32px;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  animation: revealUp 0.65s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.reveal-d1.is-visible { animation-delay: 0.08s; }
.reveal-d2.is-visible { animation-delay: 0.16s; }
.reveal-d3.is-visible { animation-delay: 0.24s; }
.reveal-d4.is-visible { animation-delay: 0.32s; }

.mobile-nav-brand {
  display: none;
}

.mobile-nav-cta {
  display: none;
}

.mobile-nav-contact {
  display: none;
}

/* Responsive */
@media (max-width: 1180px) {

  .sports-grid,
  .infra-grid,
  .news-grid,
  .gallery-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .schedule-venue-tabs {
    gap: var(--space-8);
  }

  .infra-number {
    font-size: 2.8rem;
  }

  .card--infra-featured .infra-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .site-header__actions .btn--ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: linear-gradient(170deg, var(--color-graphite-950) 0%, var(--color-graphite-900) 100%);
    z-index: 55;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-24);
    padding: var(--space-96) var(--space-32) var(--space-48);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav a {
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
  }

  .main-nav a:hover {
    color: var(--color-red-500);
  }

  .site-header.is-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.is-open .menu-toggle span {
    background: var(--color-white);
  }

  .mobile-nav-brand {
    display: block;
    position: absolute;
    top: var(--space-24);
    left: var(--space-24);
    font-family: var(--font-head);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
  }

  .mobile-nav-cta {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-16);
  }

  .mobile-nav-cta .btn {
    min-height: 46px;
    font-size: 0.82rem;
  }

  .mobile-nav-contact {
    display: block;
    position: absolute;
    bottom: var(--space-32);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    letter-spacing: 0.03em;
  }

  .hero {
    min-height: calc(100vh - 20px);
    min-height: calc(100svh - 20px);
  }

  .hero--small {
    min-height: auto;
  }

  .hero__content {
    width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head p {
    margin-top: var(--space-8);
  }

  .schedule-desktop {
    display: none;
  }

  .schedule-mobile {
    display: grid;
    gap: var(--space-12);
  }

  .schedule-filter-mobile-trigger {
    display: inline-flex;
  }

  .schedule-venue-tab {
    padding: 0.78rem 0.95rem;
    font-size: 0.74rem;
  }

  .booking-layout,
  .contacts-layout,
  .contacts-grid,
  .sport-detail-layout {
    grid-template-columns: 1fr;
  }

  .sport-detail-sidebar {
    order: 2;
  }

  .sport-detail-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-embed {
    min-height: 320px;
  }

  .map-embed iframe {
    min-height: 320px;
  }

  .contact-block__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }

  .schedule-panel__header {
    padding: var(--space-20) var(--space-24);
  }

  .schedule-panel:has(.schedule-panel__header) .schedule-desktop,
  .schedule-panel:has(.schedule-panel__header) .schedule-mobile {
    padding: var(--space-20) var(--space-24);
  }

  .schedule-panel:has(.schedule-panel__header) .schedule-skeleton,
  .schedule-panel:has(.schedule-panel__header) .schedule-state {
    margin-left: var(--space-24);
    margin-right: var(--space-24);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(var(--container-max), calc(100% - 2 * var(--space-16)));
  }

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

  .hero__inner {
    padding-top: calc(var(--header-height) + var(--space-24));
    padding-bottom: var(--space-32);
  }

  .hero__content {
    gap: var(--space-20);
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.95;
  }

  .hero--small h1 {
    font-size: clamp(1.55rem, 7.6vw, 2.35rem);
    line-height: 1;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }

  .hero__actions {
    display: flex;
    flex-direction: row;
    gap: var(--space-12);
    justify-content: center;
  }

  .btn--hero {
    padding: 0.72rem 1.4rem;
    font-size: 0.82rem;
    min-height: 46px;
    justify-content: center;
  }

  .hero__scroll-hint {
    display: none;
  }

  .section-head {
    margin-bottom: var(--space-24);
  }

  .card__body {
    padding: var(--space-24);
  }

  .card:hover {
    transform: none;
  }

  .gallery-item:hover {
    transform: none;
  }

  .gallery-item {
    height: 180px;
  }

  .sports-grid,
  .infra-grid,
  .org-grid,
  .news-grid,
  .gallery-grid,
  .footer-links,
  .booking-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .sport-detail-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sport-detail-gallery__item:hover {
    transform: none;
  }

  .gallery-lightbox {
    width: calc(100% - 16px);
  }

  .gallery-lightbox__caption {
    padding: var(--space-14) var(--space-16) var(--space-16);
    font-size: 0.9rem;
  }

  .legal-card {
    padding: var(--space-24) var(--space-20);
  }

  .legal-stack {
    gap: var(--space-24);
  }

  .regulation-doc-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .regulation-doc-card__link {
    width: 100%;
    justify-content: center;
  }

  .pricing-card .card__body {
    padding: var(--space-24) var(--space-20);
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: grid;
    gap: var(--space-12);
  }

  .pricing-table tbody tr {
    padding: var(--space-16);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-16);
    background: var(--color-gray-50);
  }

  .pricing-table tbody td {
    padding: 0;
    border: none;
    white-space: normal;
  }

  .pricing-table td + td {
    margin-top: var(--space-10);
  }

  .pricing-table th:not(:first-child),
  .pricing-table td:not(:first-child) {
    padding-left: 0;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--color-graphite-500);
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pricing-table td:first-child::before {
    color: var(--color-red-600);
  }

  .infra-number {
    font-size: 2.2rem;
  }

  .section--infra-bg .infra-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .card--infra-featured {
    grid-row: auto;
  }

  .card--infra-featured .infra-number {
    font-size: 2.8rem;
  }

  .card--infra-featured .card__title {
    font-size: 1.25rem;
  }

  .card--infra-featured .card__body {
    padding: var(--space-32);
  }

  .section--infra-bg {
    padding-top: var(--space-64);
    padding-bottom: var(--space-64);
  }

  .card--sport-dir .card__body {
    padding: var(--space-24) var(--space-24) var(--space-24) var(--space-32);
  }

  .card--sport-dir .card__bg {
    width: 45%;
    opacity: 0.14;
  }

  .card--sport-dir .card__actions {
    flex-direction: column;
    gap: var(--space-8);
    width: 100%;
  }

  .card--sport-dir .card__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .schedule-filter-grid {
    display: none;
  }

  .schedule-venue-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-venue-tab {
    width: 100%;
    justify-content: center;
  }

  .schedule-venue-intro {
    padding: var(--space-16);
  }

  .schedule-venue-intro__title {
    font-size: 1.12rem;
  }

  .schedule-legend {
    flex-wrap: wrap;
    gap: var(--space-12) var(--space-20);
    padding: var(--space-16) var(--space-20);
  }

  .section--schedule-bg {
    padding-top: var(--space-64);
    padding-bottom: var(--space-64);
  }

  .schedule-panel__header {
    padding: var(--space-16) var(--space-20);
  }

  .schedule-panel:has(.schedule-panel__header) .schedule-desktop,
  .schedule-panel:has(.schedule-panel__header) .schedule-mobile {
    padding: var(--space-16) var(--space-20);
  }

  .schedule-panel:has(.schedule-panel__header) .schedule-skeleton,
  .schedule-panel:has(.schedule-panel__header) .schedule-state {
    margin-left: var(--space-20);
    margin-right: var(--space-20);
  }

  .booking-card__top {
    padding: var(--space-20) var(--space-20);
  }

  .booking-card > .card__body {
    padding: var(--space-24) var(--space-20);
  }

  .booking-divider {
    margin: var(--space-16) 0;
  }

  .sport-detail-layout {
    gap: var(--space-24);
  }

  .sport-detail-sidebar__card {
    margin-top: var(--space-16);
  }

  .section--booking-bg {
    padding-top: var(--space-64);
    padding-bottom: var(--space-64);
  }

  .site-footer {
    padding: var(--space-48) 0 var(--space-32);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }

  .footer-partners-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-16);
    padding: var(--space-24) 0;
  }

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

  .site-header__actions .btn--primary {
    display: inline-flex;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .site-header__actions {
    gap: var(--space-10);
    align-items: center;
  }

  .brand img {
    height: 40px;
    width: auto;
  }

  .modal {
    width: calc(100% - 16px);
  }

  .partners {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-12);
  }

  .partners img {
    height: 28px;
  }

  .footer-brand .brand img {
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--space-16) var(--space-24);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-32);
  padding: var(--space-24) var(--space-32);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-16);
  box-shadow:
    0 -2px 8px rgba(10, 11, 14, 0.04),
    0 -8px 32px rgba(10, 11, 14, 0.08),
    0 -20px 60px -12px rgba(10, 11, 14, 0.06);
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-graphite-700);
  margin: 0 0 var(--space-8);
}

.cookie-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-20);
}

.cookie-banner__link {
  font-size: 0.75rem;
  color: var(--color-graphite-500);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gray-200);
  transition: color var(--motion-fast), border-color var(--motion-fast);
}

.cookie-banner__link:hover {
  color: var(--color-red-500);
  border-bottom-color: var(--color-red-500);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-10);
  flex-shrink: 0;
}

.cookie-btn {
  font-size: 0.82rem !important;
  padding: 10px 20px !important;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-20);
    padding: var(--space-20) var(--space-24);
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
  }

  .cookie-banner__actions .cookie-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    padding: var(--space-12);
  }

  .cookie-banner__inner {
    padding: var(--space-16) var(--space-20);
    gap: var(--space-16);
    border-radius: var(--radius-12, 12px);
  }

  .cookie-banner__text {
    font-size: 0.82rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .cookie-btn {
    width: 100%;
    min-width: unset;
  }
}

.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 14, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cookie-settings-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-settings {
  width: 100%;
  max-width: 520px;
  margin: var(--space-24);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-16);
  box-shadow:
    0 8px 32px rgba(10, 11, 14, 0.12),
    0 24px 64px -12px rgba(10, 11, 14, 0.10);
  overflow: hidden;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.cookie-settings-overlay.is-visible .cookie-settings {
  transform: translateY(0);
}

.cookie-settings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-24) var(--space-28, 28px);
  border-bottom: 1px solid var(--color-gray-100);
}

.cookie-settings__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-graphite-900);
  margin: 0;
}

.cookie-settings__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-graphite-500);
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--motion-fast), color var(--motion-fast);
}

.cookie-settings__close:hover {
  background: var(--color-gray-50);
  color: var(--color-graphite-900);
}

.cookie-settings__body {
  padding: var(--space-24) var(--space-28, 28px);
  display: grid;
  gap: var(--space-20);
}

.cookie-category {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  padding: var(--space-16) var(--space-20);
  border: 1px solid var(--color-gray-100);
  border-radius: 12px;
  background: var(--color-gray-50);
}

.cookie-category__info {
  flex: 1;
  min-width: 0;
}

.cookie-category__name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-graphite-900);
  margin-bottom: 3px;
}

.cookie-category__desc {
  display: block;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-graphite-500);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--color-gray-300);
  position: relative;
  transition: background 0.25s ease;
}

.cookie-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--color-red-500);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(20px);
}

.cookie-toggle--locked {
  cursor: default;
  opacity: 0.6;
}

.cookie-settings__footer {
  padding: var(--space-20) var(--space-28, 28px);
  border-top: 1px solid var(--color-gray-100);
  display: flex;
  justify-content: flex-end;
}
