/* ==========================================================================
   Samson SUPERFINÁLE — samsonsuperfinale.cz
   Statický web (vanilla HTML/CSS/JS). Vizuální styl převzat 1:1 z Claude
   Design exportu (design-import/Samson Superfinale.dc.html).
   ========================================================================== */

:root {
  --ink: #2B0E42;
  --ink-soft: #5B3D72;
  --ink-faint: #8A72A0;
  --pink: #E63888;
  --pink-deep: #B81C63;
  --orange: #FF7A30;
  --orange-deep: #E85F17;
  --yellow: #FFC738;
  --yellow-deep: #EFA400;
  --bg: #FCF8F3;
  --bg-alt: #F5ECDF;
  --line: rgba(43, 14, 66, 0.12);
  --white: #FFFFFF;
  --font-display: 'Archivo Black', sans-serif;
  --font-base: 'Manrope', sans-serif;
  --header-h: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--orange-deep);
  outline-offset: 2px;
}

@keyframes sf-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sf-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes sf-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sf-pop { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes sf-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--pink);
  margin-bottom: 6px;
}
.eyebrow--orange { color: var(--orange-deep); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 48px);
  margin: 0;
  line-height: 1.05;
}

.section-head { text-align: center; margin-bottom: 44px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--yellow-deep);
  font-size: 14px;
  padding: 15px 26px;
}
.btn-yellow:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--yellow-deep); }
.btn-yellow--lg { font-size: 15px; padding: 18px 32px; box-shadow: 0 6px 0 var(--yellow-deep); }
.btn-yellow--lg:hover { box-shadow: 0 4px 0 var(--yellow-deep); }
.btn-ink {
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  padding: 11px 18px;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  padding: 12px 20px;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  padding: 11px;
  display: block;
  width: 100%;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-disabled {
  display: block;
  text-align: center;
  color: var(--ink-faint);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  padding: 11px;
  border-radius: 999px;
  border: 1.5px dashed var(--line);
  background: var(--bg-alt);
  cursor: not-allowed;
  user-select: none;
}
.btn-disabled--pill {
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 13px;
  white-space: nowrap;
}
.btn-disabled--lg { padding: 18px 32px; font-size: 15px; }
.btn-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  font-size: 15px;
}

/* ---------- Cookie banner / modal ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(43, 14, 66, .18);
  padding: 24px;
  z-index: 600;
  animation: sf-pop .4s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.cookie-banner__text { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.btn-cookie-accept {
  background: var(--yellow); color: var(--ink); font-weight: 800; text-transform: uppercase;
  font-size: 13px; letter-spacing: .03em; border: none; border-radius: 999px; padding: 12px 22px; cursor: pointer;
}
.btn-cookie-reject {
  background: transparent; color: var(--ink); font-weight: 700; text-transform: uppercase;
  font-size: 13px; border: 1.5px solid var(--line); border-radius: 999px; padding: 12px 22px; cursor: pointer;
}
.btn-cookie-settings {
  background: transparent; color: var(--ink-soft); font-weight: 700; text-transform: uppercase;
  font-size: 13px; border: none; text-decoration: underline; cursor: pointer; padding: 12px 6px;
}

.cookie-modal {
  position: fixed; inset: 0; background: rgba(43, 14, 66, .45); z-index: 700;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal__panel {
  background: var(--white); border-radius: 24px; max-width: 520px; width: 100%;
  max-height: 86vh; overflow: auto; padding: 32px;
}
.cookie-modal__title { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; margin: 0 0 18px; }
.cookie-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
}
.cookie-row--locked { background: var(--bg-alt); }
.cookie-row__name { font-weight: 800; font-size: 14px; text-transform: uppercase; }
.cookie-row__desc { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.toggle {
  width: 44px; height: 26px; border-radius: 999px; background: var(--ink-faint);
  position: relative; border: none; cursor: pointer; flex: none;
}
.toggle__dot {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); transition: left .15s;
}
.toggle.is-on { background: var(--pink); }
.toggle.is-on .toggle__dot { left: 21px; }
.cookie-modal__actions { display: flex; gap: 10px; margin-top: 24px; }
.btn-save-prefs {
  flex: 1; background: var(--yellow); color: var(--ink); font-weight: 800; text-transform: uppercase;
  font-size: 13px; border: none; border-radius: 999px; padding: 14px; cursor: pointer;
}
.btn-close-modal {
  background: transparent; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 14px 18px; cursor: pointer; font-weight: 700; font-size: 13px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(252, 248, 243, .9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(43, 14, 66, .08);
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  transition: height .25s ease;
}
.site-header.is-scrolled .site-header__inner { height: 68px; }
.site-header__logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.site-header__logo img { height: 40px; width: auto; transition: height .25s ease; display: block; }
.site-header.is-scrolled .site-header__logo img { height: 30px; }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .02em;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.nav-desktop a:hover { color: var(--pink); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.burger__line {
  display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px;
  transition: all .25s ease;
}
.burger.is-open .burger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; }
.burger.is-open .burger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 450;
  transition: opacity .3s ease, visibility .3s ease;
  opacity: 0; visibility: hidden; pointer-events: none;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu__inner { display: flex; flex-direction: column; height: 100%; padding: 100px 32px 40px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: 32px; text-transform: uppercase; color: var(--white);
  text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.mobile-menu__cta { margin: 20px 0; }
.mobile-menu__social { display: flex; gap: 20px; justify-content: center; }
.mobile-menu__social a {
  color: var(--white); font-weight: 700; text-decoration: none; font-size: 13px; text-transform: uppercase;
}

/* ---------- Pages ---------- */
.page[hidden] { display: none; }
.page-hero {
  position: relative;
  padding: 150px 24px 40px;
  background: linear-gradient(180deg, #FFF6E8 0%, var(--bg) 80%);
}
.page-hero--center { text-align: center; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(34px, 5vw, 58px); margin: 0 0 16px; line-height: 1;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; padding: 150px 24px 64px; overflow: hidden;
  background: linear-gradient(180deg, #FFF6E8 0%, var(--bg) 70%);
}
.hero__blob-1 {
  position: absolute; width: 340px; height: 340px; border-radius: 50%; background: var(--pink);
  opacity: .14; top: -120px; right: -100px; pointer-events: none;
}
.hero__blob-2 {
  position: absolute; width: 180px; height: 180px; border-radius: 50%; background: var(--orange);
  opacity: .16; bottom: 60px; left: -70px; pointer-events: none;
}
.hero__grid {
  max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center; position: relative;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 800;
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--pink-deep); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(40px, 6vw, 76px); line-height: .98; margin: 0 0 8px; color: var(--ink);
}
.hero__facts { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__fact { background: var(--ink); color: var(--white); border-radius: 14px; padding: 12px 18px; }
.hero__fact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .7; font-weight: 700; }
.hero__fact-value { font-family: var(--font-display); font-size: 18px; }
.hero__lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 520px; margin: 0 0 28px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }

.event-state {
  display: inline-flex; gap: 22px; background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 20px 24px; box-shadow: 0 10px 30px rgba(43, 14, 66, .08);
}
.event-state[hidden] { display: none; }
.countdown__item { text-align: center; min-width: 56px; }
.countdown__value { font-family: var(--font-display); font-size: 32px; color: var(--pink-deep); }
.countdown__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft);
  font-weight: 700; margin-top: 2px;
}
.event-state--live {
  background: var(--ink); color: var(--white); border-radius: 20px; padding: 22px 26px;
  display: inline-flex; align-items: center; gap: 14px; border: none;
}
.event-state--live .dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--pink);
  animation: sf-pulse 1s infinite alternate;
}
.event-state--live .label { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; }
.event-state--post {
  align-items: center; gap: 18px; flex-wrap: wrap; display: inline-flex;
}
.event-state--post .label { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; color: var(--ink); }

.hero__media { position: relative; z-index: 1; }
.hero__photo-wrap {
  position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 30px 60px rgba(43, 14, 66, .18);
}
.hero__photo-wrap img { width: 100%; height: 520px; object-fit: cover; object-position: center 40%; display: block; }
.hero__photo-gradient { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(43, 14, 66, .35), transparent 40%); }
.hero__badge-circle {
  position: absolute; top: -24px; right: -24px; width: 96px; height: 96px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(43, 14, 66, .2); animation: sf-float 4s ease-in-out infinite;
  text-align: center; font-family: var(--font-display); color: var(--ink); line-height: 1;
}
.hero__badge-circle .big { font-size: 20px; }
.hero__badge-circle .small { font-size: 9px; text-transform: uppercase; }

/* ---------- Generic section ---------- */
.section { padding: 80px 24px; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 56px 24px; }

/* ---------- Schedule ---------- */
.schedule { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.schedule-block { margin-bottom: 8px; }
.schedule-block__title {
  display: inline-block; color: var(--white); font-family: var(--font-display); font-size: 14px;
  text-transform: uppercase; padding: 8px 18px; border-radius: 999px; margin-bottom: 14px;
}
.schedule-block--women .schedule-block__title { background: var(--pink); }
.schedule-block--juniors .schedule-block__title { background: var(--orange); }
.schedule-block--men .schedule-block__title { background: var(--ink); }
.schedule-event { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.schedule-event__time { font-family: var(--font-display); font-size: 22px; color: var(--ink); min-width: 76px; }
.schedule-event__title { font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: .02em; margin-bottom: 4px; }
.schedule-event__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.schedule-placeholder {
  background: var(--white); border: 1px dashed var(--ink-faint); border-radius: 20px;
  padding: 36px 28px; text-align: center;
}
.schedule-placeholder__title { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
.schedule-placeholder__text { font-size: 14px; color: var(--ink-soft); max-width: 440px; margin: 0 auto 22px; line-height: 1.6; }
.slot-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.slot-chip { background: var(--bg-alt); border-radius: 12px; padding: 12px 20px; }
.slot-chip__time { font-family: var(--font-display); font-size: 18px; color: var(--pink-deep); }
.slot-chip__label { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); letter-spacing: .04em; }
.schedule-placeholder__note { font-size: 12px; color: var(--ink-faint); margin-top: 16px; }

/* ---------- Matches ---------- */
.matches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.match-card { background: var(--white); border-radius: 22px; overflow: hidden; box-shadow: 0 12px 30px rgba(43, 14, 66, .08); }
.match-card__photo { position: relative; }
.match-card__photo img { width: 100%; height: 170px; object-fit: cover; display: block; }
.match-card__time {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--white);
  font-family: var(--font-display); font-size: 14px; padding: 6px 14px; border-radius: 999px;
}
.match-card__body { padding: 20px; }
.match-card__label {
  font-weight: 800; text-transform: uppercase; font-size: 13px; color: var(--pink-deep);
  margin-bottom: 10px; letter-spacing: .04em;
}
.match-card__teams { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.match-card__teams img { height: 34px; width: auto; object-fit: contain; }
.match-card__vs { font-family: var(--font-display); color: var(--ink-faint); font-size: 13px; }
.match-card__unknown {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 6px;
}
.match-card__unknown-circle {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  color: var(--ink-faint); font-size: 16px;
}
.match-card__unknown-text {
  text-align: center; font-size: 12px; color: var(--ink-faint); font-weight: 700;
  text-transform: uppercase; margin-bottom: 16px;
}

/* ---------- Info strip ---------- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 22px; text-align: center; }
.info-card__icon {
  width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.info-card__title { font-family: var(--font-display); font-size: 15px; text-transform: uppercase; margin-bottom: 4px; }
.info-card__desc { font-size: 13px; color: var(--ink-soft); }

/* ---------- Visual (dark) section ---------- */
.visual-section { padding: 70px 24px; background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.visual-section__blob {
  position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--pink);
  opacity: .18; bottom: -100px; right: 80px;
}
.visual-grid {
  max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
.visual-grid h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(28px, 4vw, 44px); margin: 0 0 18px; }
.visual-grid p { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, .75); max-width: 480px; margin: 0 0 24px; }
.visual-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.visual-stats__value { font-family: var(--font-display); font-size: 34px; color: var(--yellow); }
.visual-stats__label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255, 255, 255, .6); }
.visual-photo { border-radius: 24px; overflow: hidden; }
.visual-photo img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.news-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.news-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: 12px; font-weight: 700; color: var(--orange-deep); text-transform: uppercase; margin-bottom: 8px; }
.news-card__title { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; line-height: 1.25; margin-bottom: 10px; }
.news-card__text { font-size: 14px; color: var(--ink-soft); line-height: 1.55; flex: 1; }

/* ---------- Map + newsletter ---------- */
.map-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
.map-grid h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 16px; }
.map-embed { border-radius: 20px; overflow: hidden; height: 280px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-address { font-size: 14px; color: var(--ink-soft); margin-top: 10px; }

.newsletter-box { background: var(--white); border-radius: 24px; padding: 32px; align-self: start; }
.newsletter-box__title { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.newsletter-box__lead { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; }
.form-success {
  background: #EFFAF0; border: 1px solid #BEE8C4; color: #256B32; border-radius: 14px;
  padding: 16px; font-weight: 700; font-size: 14px;
}
.form-error-msg { color: var(--pink-deep); font-size: 13px; font-weight: 700; }
.form-field {
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); font-size: 15px;
  font-family: var(--font-base); width: 100%;
}
.form-field:focus { border-color: var(--pink); outline: none; }
.form-field.has-error { border-color: var(--pink); }
form { display: flex; flex-direction: column; gap: 12px; }
.btn-submit {
  background: var(--yellow); color: var(--ink); font-weight: 800; text-transform: uppercase;
  font-size: 14px; padding: 15px; border-radius: 999px; border: none; cursor: pointer;
}
.btn-submit:disabled { opacity: .6; cursor: progress; }

/* ---------- Tickets page ---------- */
.tickets-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 28px; }
.tickets-hero-stats__value { font-family: var(--font-display); font-size: 32px; color: var(--pink-deep); }
.tickets-hero-stats__label { font-size: 12px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }

.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.sector-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.sector-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sector-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.sector-card__name { font-family: var(--font-display); font-size: 17px; text-transform: uppercase; }
.sector-card__code { background: var(--bg-alt); color: var(--pink-deep); font-weight: 800; font-size: 12px; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.sector-card__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.sector-card__capacity { font-size: 12px; color: var(--ink-faint); font-weight: 700; text-transform: uppercase; }
.sector-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.sector-card__price { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.sector-card__cta {
  background: var(--bg-alt); color: var(--ink-faint); font-weight: 800; text-transform: uppercase;
  font-size: 12px; padding: 11px 18px; border-radius: 999px; cursor: not-allowed; user-select: none;
  border: 1px dashed var(--line);
}

.hall-plan-section { padding: 0 24px 80px; max-width: 1000px; margin: 0 auto; text-align: center; }
.hall-plan-section img { width: 100%; border-radius: 20px; border: 1px solid var(--line); background: var(--white); }

/* ---------- Teams ---------- */
.teams-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; display: flex; }
.team-card img { width: 160px; height: auto; object-fit: cover; flex: none; }
.team-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.team-card__city { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--orange-deep); letter-spacing: .06em; }
.team-card__name { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; line-height: 1.15; }
.team-card__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.team-card__links { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.team-card__links a {
  font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--pink-deep);
  text-decoration: none; border-bottom: 1.5px solid var(--pink);
}

/* ---------- Broadcasts ---------- */
.broadcasts-list { display: flex; flex-direction: column; gap: 24px; }
.broadcast-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.broadcast-item__time { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--orange-deep); letter-spacing: .06em; margin-bottom: 6px; }
.broadcast-item__label { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; }
.broadcast-item .btn-disabled { width: auto; padding: 14px 24px; }

/* ---------- Accreditation ---------- */
.accred-grid { padding: 10px 24px 90px; max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.accred-faq { display: flex; flex-direction: column; gap: 22px; }
.accred-faq__q { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; margin-bottom: 6px; }
.accred-faq__a { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.accred-form-box { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px; align-self: start; }
.field-error { color: var(--pink-deep); font-size: 12px; font-weight: 700; margin-top: 4px; }
textarea.form-field { resize: vertical; }

/* ---------- Contacts ---------- */
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; font-size: 16px; }
.contact-social { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.contact-social a { font-weight: 800; text-transform: uppercase; font-size: 13px; color: var(--pink-deep); text-decoration: none; }
.contact-map { border-radius: 22px; overflow: hidden; height: 320px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Archive ---------- */
.archive-hero { position: relative; padding: 150px 24px 60px; background: var(--ink); color: var(--white); overflow: hidden; }
.archive-hero__blob { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--pink); opacity: .2; top: -100px; right: -60px; }
.archive-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.archive-hero__tag {
  display: inline-flex; gap: 10px; align-items: center; background: rgba(255, 255, 255, .1);
  border-radius: 999px; padding: 8px 16px; font-weight: 800; font-size: 12px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--yellow); margin-bottom: 20px;
}
.archive-hero h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(34px, 6vw, 64px); margin: 0 0 14px; line-height: 1; }
.archive-hero p { font-size: 16px; color: rgba(255, 255, 255, .75); max-width: 600px; line-height: 1.6; margin: 0 0 26px; }

.archive-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.archive-stat { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px 12px; }
.archive-stat__value { font-family: var(--font-display); font-size: 30px; color: var(--pink-deep); }
.archive-stat__label { font-size: 12px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; letter-spacing: .04em; margin-top: 4px; }

.results-section { padding: 20px 24px 70px; max-width: 1100px; margin: 0 auto; }
.results-section h2, .videos-section h2, .gallery-section h2 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 24px; text-align: center;
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 24px; text-align: center; }
.result-card__cat { font-weight: 800; text-transform: uppercase; font-size: 12px; color: var(--orange-deep); letter-spacing: .06em; margin-bottom: 14px; }
.result-card__row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.result-card__team { font-family: var(--font-display); font-size: 14px; }
.result-card__score { background: var(--bg-alt); border-radius: 10px; padding: 8px 14px; font-family: var(--font-display); font-size: 18px; color: var(--ink-faint); }
.result-card__note { font-size: 12px; color: var(--ink-faint); text-transform: uppercase; font-weight: 700; }

.gallery-section { padding: 20px 24px 70px; max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 1; border: none; padding: 0; background: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0; background: rgba(20, 6, 30, .92); z-index: 800;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(255, 255, 255, .15); border: none; color: var(--white);
  border-radius: 50%; cursor: pointer;
}
.lightbox__close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 20px; }
.lightbox__prev { left: 24px; width: 52px; height: 52px; font-size: 22px; }
.lightbox__next { right: 24px; width: 52px; height: 52px; font-size: 22px; }
.lightbox img { max-width: 82vw; max-height: 80vh; border-radius: 16px; object-fit: contain; }
.lightbox__counter { position: absolute; bottom: 28px; color: rgba(255, 255, 255, .7); font-size: 13px; font-weight: 700; }

.videos-section { padding: 20px 24px 70px; max-width: 1200px; margin: 0 auto; }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-placeholder {
  background: var(--bg-alt); border: 1px dashed var(--ink-faint); border-radius: 16px; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--ink-soft);
  font-family: monospace; text-align: center; padding: 10px;
}

/* ---------- Sponsors marquee ---------- */
.sponsors-section { padding: 64px 24px; max-width: 1280px; margin: 0 auto; }
.sponsors-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.sponsors-track {
  display: flex; align-items: center; gap: 72px; width: max-content;
  animation: sf-marquee 46s linear infinite;
}
.sponsors-mask:hover .sponsors-track { animation-play-state: paused; }
.sponsors-track img { height: 130px; width: auto; max-width: 280px; object-fit: contain; flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .82); padding: 64px 24px 28px; }
.footer-grid { max-width: 1280px; margin: 0 auto 48px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; }
.footer-grid img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-about { font-size: 14px; color: rgba(255, 255, 255, .6); max-width: 260px; line-height: 1.5; }
.footer-col-title { font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .06em; color: var(--yellow); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact { font-size: 14px; text-decoration: none; color: inherit; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a { color: inherit; font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, .15); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, .5);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a, .footer-bottom-links button {
  color: inherit; text-decoration: none; background: none; border: none; font-size: 13px; cursor: pointer; padding: 0; font-family: inherit;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-desktop { display: none !important; }
  .burger { display: flex !important; }
  .hero__grid, .visual-grid, .map-grid, .contact-grid, .accred-grid { grid-template-columns: 1fr !important; }
  .matches-grid, .info-grid, .news-grid, .sectors-grid, .teams-grid, .footer-grid,
  .archive-stats, .results-grid, .videos-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 560px) {
  .matches-grid, .info-grid, .news-grid, .sectors-grid, .teams-grid,
  .archive-stats, .results-grid, .videos-grid, .footer-grid { grid-template-columns: 1fr !important; }
  .team-card { flex-direction: column; }
  .team-card img { width: 100% !important; height: 180px !important; }
  .hero__photo-wrap img { height: 340px; }
}
