:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #edf2ff;
  --text: #0f1b36;
  --muted: #4f5d79;
  --line: #d7e0f5;
  --brand: #ff6b2c;
  --brand-dark: #d95722;
  --brand-soft: #fff0e8;
  --header-bg: #0f1424;
  --header-line: #28314a;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px rgba(12, 22, 43, 0.1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, Roboto, Arial, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.container > * {
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.5rem 0.8rem;
  background: #fff;
  border-radius: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(15, 20, 36, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(7, 12, 24, 0.4);
  background: rgba(15, 20, 36, 0.98);
}

.header-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: space-between;
  padding: 0.72rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 0.1rem;
  text-decoration: none;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f1a33;
  flex: 0 0 auto;
}

.logo:hover,
.logo:focus-visible {
  color: #233e72;
}

.desktop-search,
.desktop-nav,
.header-phone,
.city-inline:not(.mobile-city),
.header-tools .btn {
  display: none;
}

.desktop-search {
  width: min(360px, 100%);
}

.header-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.header-search input {
  min-width: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.menu-toggle {
  width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--header-line);
  background: #1a233b;
  color: #f2f6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentcolor;
}

.menu-toggle[aria-expanded="true"] {
  background: linear-gradient(120deg, var(--brand), #ff915d);
  border-color: transparent;
}

.header-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(9, 14, 28, 0.96);
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.header-panel.is-open {
  transform: translateX(0);
  opacity: 1;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  width: 200px;
  height: 34px;
}

.menu-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--header-line);
  background: #1a233b;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  gap: 0.6rem;
}

.main-nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--header-line);
  background: #172036;
  color: #e9eef9;
  padding: 0.45rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: #945436;
  background: #2a2131;
}

.main-nav a.is-active {
  background: linear-gradient(120deg, rgba(255, 107, 44, 0.35), rgba(255, 151, 96, 0.2));
  border-color: #a55f3a;
  color: #fff;
}

.city-inline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  color: #dce5f8;
  font-size: 0.82rem;
}

.city-inline select {
  min-width: 118px;
  width: auto;
  padding: 0.42rem 0.55rem;
}

.mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #eff3ff;
  border: 1px solid var(--header-line);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

/* Controls */
.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(125deg, var(--brand), #ff915d);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 107, 44, 0.25);
}

.btn-small {
  font-size: 0.88rem;
  padding: 0.48rem 0.85rem;
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  box-shadow: none;
  background: var(--surface-soft);
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

::placeholder {
  color: #7f8ca8;
}

/* Layout */
.section {
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
}

.hero {
  padding: clamp(2rem, 4vw, 3rem) 0 1.2rem;
}

.hero-layout,
.split-hero,
.team-grid,
.owner-grid,
.details-grid,
.catalog-layout,
.form-layout,
.highlight-grid {
  display: grid;
  gap: 1rem;
}

.hero-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  color: var(--brand);
  font-weight: 800;
}

.home-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.cards-4,
.cards-3,
.cards-2,
.cards-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.cards-4 > *,
.cards-3 > *,
.cards-2 > *,
.cards-grid > *,
.footer-grid > *,
.catalog-layout > *,
.split-hero > *,
.form-layout > *,
.highlight-grid > * {
  min-width: 0;
}

.card,
.soft-panel,
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.quote-card {
  background: #f0f4ff;
}

.steps .card {
  display: grid;
  gap: 0.5rem;
}

.step-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 800;
}

.sport-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.sport-scroll::-webkit-scrollbar {
  height: 7px;
}

.sport-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.54rem 0.9rem;
  background: #fff;
  font-weight: 600;
}

.numbers {
  background: linear-gradient(180deg, #121c34, #0e172b);
  color: #f0f4ff;
}

.numbers .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.numbers p,
.numbers strong,
.numbers h2 {
  color: #f0f4ff;
}

.numbers strong {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.cta-panel {
  background: linear-gradient(120deg, #fff6f1, #fff);
  border: 1px solid #ffd9c6;
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  display: grid;
  gap: 0.8rem;
}

/* Catalog */
.filters details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.filters summary {
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0.8rem;
}

.filter-grid {
  display: grid;
  gap: 0.7rem;
}

.results-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.2rem;
  gap: 0.3rem;
}

.switcher button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0.38rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.switcher button.active {
  background: var(--surface-soft);
  color: #243f9f;
}

.arena-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.arena-card-body {
  padding: 0.92rem;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 0.5rem 0;
}

.thumbs img {
  height: 66px;
  object-fit: cover;
}

.meta-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.45rem 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

#mapView[hidden],
#listView[hidden] {
  display: none;
}

.map-panel iframe {
  min-height: 420px;
}

/* Arena detail */
.gallery-grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
  height: 150px;
  object-fit: cover;
}

.feature-list,
.bullet-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.32rem;
  color: var(--muted);
}

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

.price-table th,
.price-table td {
  border: 1px solid var(--line);
  padding: 0.54rem;
  text-align: left;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.slot {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  background: #fff;
}

/* Generic support blocks */
.timeline-list {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  border-left: 2px solid #ffbc93;
  padding-left: 0.8rem;
}

.badge-inline {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #ffc8aa;
  background: var(--brand-soft);
  color: #a34719;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.stat-strip {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.stat-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.65rem 0.75rem;
}

.blog-search {
  margin-bottom: 1rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

.success-msg {
  display: none;
  color: #0f8a4a;
  font-weight: 700;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: #0f1424;
  color: #d5ddf2;
}

.footer-grid {
  padding: 2.2rem 0 1.2rem;
}

.site-footer h3,
.site-footer p,
.site-footer a {
  color: #d5ddf2;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.payments {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pay-badge {
  border: 1px solid rgba(213, 221, 242, 0.38);
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.82rem;
}

.footer-copy {
  border-top: 1px solid rgba(213, 221, 242, 0.2);
  margin: 0;
  padding: 0.95rem 4vw 1.15rem;
  text-align: center;
}

iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  min-height: 180px;
}

/* Floating blocks */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 88;
  display: none;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.chat-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  border: 0;
  border-radius: 999px;
  background: #15203d;
  color: #fff;
  padding: 0.65rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 4.1rem;
  width: min(360px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 96;
}

.chat-widget header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.82rem;
  border-bottom: 1px solid var(--line);
}

.chat-widget header h3 {
  margin: 0;
  font-size: 1rem;
}

.chat-widget header button {
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-body {
  max-height: 230px;
  overflow: auto;
  padding: 0.82rem;
  display: grid;
  gap: 0.5rem;
}

#chatForm {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.42rem;
  border-top: 1px solid var(--line);
  padding: 0.82rem;
}

#chatForm button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--brand), #ff915d);
  color: #fff;
  padding: 0.6rem 0.76rem;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (min-width: 760px) {
  .hero-layout,
  .split-hero,
  .team-grid,
  .owner-grid,
  .details-grid,
  .form-layout,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

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

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

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

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

@media (min-width: 1240px) {
  .desktop-search,
  .desktop-nav,
  .city-inline:not(.mobile-city),
  .header-phone,
  .header-tools .btn {
    display: inline-flex;
  }

  .desktop-search {
    display: grid;
  }

  .desktop-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav a {
    white-space: nowrap;
    background: transparent;
    border-color: transparent;
    color: #e7ecf9;
  }

  .desktop-nav a.is-active {
    border-color: #8f5032;
    background: rgba(255, 107, 44, 0.2);
  }

  .menu-toggle {
    display: none;
  }

  .header-panel {
    display: none !important;
  }

  .header-line {
    display: grid;
    grid-template-columns: auto minmax(230px, 360px) minmax(0, 1fr) auto;
  }

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

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

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

/* Header V4 Stable Layout */
.site-header {
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid #ddd7ca;
  backdrop-filter: blur(8px);
  overflow-x: clip;
}

.site-header .container {
  width: min(var(--container), calc(100vw - 20px));
  max-width: 100%;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 237, 0.98);
  box-shadow: 0 8px 22px rgba(22, 28, 42, 0.08);
}

.header-shell {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.5rem 0;
  width: 100%;
  min-width: 0;
}

.header-shell > * {
  min-width: 0;
}

.header-brand {
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-logo {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: lowercase;
  line-height: 1;
  padding-right: 0.4rem;
  flex: 0 0 auto;
}

.header-center {
  display: none;
  min-width: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  min-width: 0;
}

.header-nav .header-nav__link {
  color: #273147;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.34rem 0.4rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-nav .header-nav__link:hover,
.header-nav .header-nav__link:focus-visible {
  background: #ece8dd;
  border-color: #dfd8ca;
}

.header-nav .header-nav__link.is-active {
  background: #ece8dd;
  border-color: #dad2c1;
  color: #1c263a;
}

.header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.38rem;
}

.header-search-desktop {
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
  background: #f4f1e9;
  border: 1px solid #ddd7ca;
  border-radius: 999px;
  padding: 0.16rem 0.18rem 0.16rem 0.7rem;
}

.header-search-desktop input,
.header-search-mobile input {
  min-width: 0;
  width: 100%;
  height: 36px;
  background: transparent;
  color: #1f2940;
  border: 0;
}

.header-search-desktop button,
.header-search-mobile button {
  height: 36px;
  white-space: nowrap;
}

.header-search-desktop input::placeholder,
.header-search-mobile input::placeholder {
  color: #8e97ab;
}

.header-search-desktop .btn {
  padding: 0.42rem 0.72rem;
}

.header-city {
  display: none;
  align-items: center;
  gap: 0.35rem;
  color: #2f3950;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-city select {
  height: 36px;
  min-width: 98px;
  border-radius: 999px;
  border: 1px solid #ddd7ca;
  background: #f4f1e9;
  color: #273147;
  font-weight: 600;
}

.header-city--mobile {
  display: inline-flex;
}

.header-account,
.header-phone {
  display: none;
}

.header-phone {
  color: #1f2a40;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: #fff;
}

.header-burger {
  width: 42px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #d7d1c3;
  background: #f4f1e9;
  color: #283248;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.header-burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-burger[aria-expanded="true"] {
  background: linear-gradient(125deg, var(--brand), #ff915d);
  border-color: transparent;
}

.header-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr min(420px, 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.header-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header-drawer__backdrop {
  background: rgba(12, 18, 30, 0.35);
}

.header-drawer__panel {
  background: #f8f5ee;
  border-left: 1px solid #ddd7ca;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  transform: translateX(18px);
  transition: transform 0.25s ease;
  min-width: 0;
}

.header-drawer.is-open .header-drawer__panel {
  transform: translateX(0);
}

.header-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.header-drawer__close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #ddd7ca;
  background: #f4f1e9;
  color: #253047;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.header-search-mobile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.header-drawer__nav {
  display: grid;
  gap: 0.5rem;
}

.header-drawer__nav .header-nav__link {
  display: block;
  background: #f4f1e9;
  border: 1px solid #ddd7ca;
  color: #253047;
  border-radius: 12px;
  padding: 0.6rem 0.74rem;
  text-decoration: none;
  font-weight: 600;
}

.header-drawer__nav .header-nav__link.is-active {
  background: #ece8dd;
  border-color: #d8cebb;
}

.header-drawer__actions {
  display: grid;
  gap: 0.5rem;
}

.header-drawer__actions .header-phone {
  display: inline-flex;
}

@media (min-width: 760px) {
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.8rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-city--mobile {
    display: inline-flex;
  }
}

@media (min-width: 1280px) {
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 0.62rem;
  }

  .header-center {
    display: block;
    min-width: 0;
    overflow: hidden;
  }

  .header-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: auto hidden;
    scrollbar-width: none;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-search-desktop {
    display: grid;
    width: clamp(180px, 15vw, 246px);
  }

  .header-city {
    display: inline-flex;
  }

  .header-burger {
    display: none;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .header-account {
    display: none;
  }

  .header-nav .header-nav__link {
    font-size: 0.78rem;
    padding: 0.3rem 0.33rem;
  }
}

@media (min-width: 1440px) {
  .header-account {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .site-header .container {
    width: min(var(--container), calc(100vw - 16px));
  }

  .header-shell {
    column-gap: 0.45rem;
  }

  .header-logo {
    max-width: calc(100vw - 96px);
    padding-right: 0;
    font-size: 0.96rem;
  }
}

/* Home V2 Premium */
.home-v2 {
  background:
    radial-gradient(1100px 520px at 90% -10%, rgba(37, 87, 175, 0.14), transparent 55%),
    radial-gradient(900px 420px at 0% 20%, rgba(255, 122, 47, 0.12), transparent 50%),
    #f4f7fc;
}

.home-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #4567a8;
}

.home-hero-v2 {
  padding: clamp(1.3rem, 4vw, 3.1rem) 0 1.15rem;
}

.home-hero-v2__grid {
  display: grid;
  gap: 1rem;
}

.home-hero-v2__content {
  background: linear-gradient(160deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #dbe5f8;
  border-radius: 24px;
  padding: clamp(1rem, 2.8vw, 2rem);
  box-shadow: 0 20px 44px rgba(20, 34, 66, 0.08);
}

.home-hero-v2__content h1 {
  font-size: clamp(1.95rem, 4.2vw, 3.4rem);
  max-width: 16ch;
}

.home-hero-v2__content p {
  max-width: 52ch;
}

.home-hero-v2__search {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: minmax(0, 1fr);
}

.home-hero-v2__search input {
  height: 52px;
  border-radius: 14px;
}

.home-hero-v2__search .btn {
  min-height: 52px;
  border-radius: 14px;
}

.home-hero-v2__metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.home-hero-v2__metrics span {
  border: 1px solid #dde6f6;
  background: #fff;
  border-radius: 12px;
  padding: 0.62rem 0.7rem;
  color: #3c4d6f;
  font-size: 0.88rem;
}

.home-hero-v2__metrics strong {
  display: block;
  color: #121f3c;
  font-size: 1.08rem;
  margin-bottom: 0.08rem;
}

.home-hero-v2__media {
  min-height: clamp(320px, 44vw, 560px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 56px rgba(20, 34, 66, 0.2);
}

.home-hero-v2__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(5, 14, 34, 0.36) 0%, rgba(5, 14, 34, 0.12) 42%, rgba(255, 122, 47, 0.24) 100%);
}

.home-hero-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.home-inline-link {
  text-decoration: none;
  color: #2d4f8f;
  font-weight: 600;
  white-space: nowrap;
}

.home-inline-link:hover,
.home-inline-link:focus-visible {
  color: #133878;
}

.home-categories-v2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.home-sport-card {
  background: #fff;
  border: 1px solid #dbe5f8;
  border-radius: 18px;
  padding: 0.65rem;
  box-shadow: 0 14px 30px rgba(14, 27, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 27, 56, 0.1);
}

.home-sport-card img {
  height: 168px;
  object-fit: cover;
  border-radius: 13px;
  margin-bottom: 0.75rem;
}

.home-sport-card h3 {
  margin-bottom: 0.35rem;
}

.home-flow-v2__grid {
  display: grid;
  gap: 1rem;
}

.home-flow-v2__intro {
  background: #101f3f;
  color: #f4f7ff;
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.home-flow-v2__intro p {
  color: #cfd8eb;
  margin: 0;
}

.home-flow-v2__steps {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.home-flow-v2__steps article {
  background: #fff;
  border: 1px solid #dbe5f8;
  border-radius: 16px;
  padding: 0.9rem 0.9rem 0.95rem;
}

.home-flow-v2__steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #23498f, #ff7a2f);
  margin-bottom: 0.55rem;
}

.home-flow-v2__steps p {
  margin: 0;
}

.home-venues-v2__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.home-venue-card {
  border: 1px solid #dbe5f8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.home-venue-card img {
  height: 190px;
  object-fit: cover;
}

.home-venue-card > div {
  padding: 0.8rem 0.85rem 0.9rem;
}

.home-venue-card h3 {
  margin-bottom: 0.3rem;
}

.home-venue-card p {
  margin-bottom: 0.38rem;
}

.home-proof-v2__grid {
  display: grid;
  gap: 1rem;
}

.home-quote-list {
  display: grid;
  gap: 0.7rem;
}

.home-quote-list blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid #dbe5f8;
  border-radius: 14px;
  padding: 0.85rem;
}

.home-quote-list cite {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: #44567a;
}

.home-proof-v2__cta {
  background: linear-gradient(160deg, #122142 0%, #1f3f78 100%);
  color: #f0f4ff;
  border-radius: 20px;
  overflow: hidden;
}

.home-proof-v2__cta img {
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.home-proof-v2__cta h3,
.home-proof-v2__cta p,
.home-proof-v2__cta .btn {
  margin-left: 0.95rem;
  margin-right: 0.95rem;
}

.home-proof-v2__cta h3 {
  margin-top: 0.85rem;
}

.home-proof-v2__cta p {
  color: #d6deef;
}

.home-proof-v2__cta .btn {
  margin-bottom: 0.65rem;
}

@media (min-width: 760px) {
  .home-hero-v2__search {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-hero-v2__search .btn {
    min-width: 170px;
  }
}

@media (min-width: 1024px) {
  .home-hero-v2__grid,
  .home-flow-v2__grid,
  .home-proof-v2__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-flow-v2__intro {
    align-self: start;
  }
}

/* Internal Pages V2 */
.catalog-hero-v2 {
  display: grid;
  gap: 1rem;
}

.catalog-hero-v2__content {
  background: #fff;
  border: 1px solid #dbe5f8;
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.6rem);
  box-shadow: 0 12px 30px rgba(11, 24, 53, 0.06);
}

.catalog-hero-v2__media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.catalog-hero-v2__media img {
  height: 100%;
  object-fit: cover;
}

.catalog-cards-v2 {
  gap: 0.9rem;
}

.catalog-cards-v2 .arena-card {
  border: 1px solid #dbe5f8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgba(11, 24, 53, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-cards-v2 .arena-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(11, 24, 53, 0.11);
}

.catalog-cards-v2 .arena-card > img {
  height: 188px;
  object-fit: cover;
}

.catalog-cards-v2 .arena-card-body {
  padding: 0.8rem 0.82rem 0.9rem;
}

.arena-hero-v2 {
  display: grid;
  gap: 1rem;
}

.arena-hero-v2__content {
  background: #fff;
  border: 1px solid #dbe5f8;
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.arena-hero-v2__booking .btn {
  margin-top: 0.7rem;
}

.arena-gallery-v2 img {
  min-height: 122px;
  object-fit: cover;
}

.blog-grid-v2 article h2 {
  font-size: 1.16rem;
}

@media (min-width: 760px) {
  .catalog-hero-v2,
  .arena-hero-v2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

@media (min-width: 1240px) {
  .catalog-cards-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
