/* ============================================================
   DENYS TARASOV — Personal Athlete Site
   Royal Gold & Black Theme
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --black:      #0B0B0B;
  --surface:    #111111;
  --surface2:   #181818;
  --gold:       #C6963A;
  --gold-light: #E8B84B;
  --gold-dim:   #7a5c20;
  --gold-line:  rgba(198,150,58,0.25);
  --white:      #F2F2F2;
  --muted:      #888888;
  --nav-h:      72px;
  --radius:     4px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }
ul { list-style: none; }
sup { font-size: 0.5em; vertical-align: super; }

/* ---- UTILS ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.center { text-align: center; }

.label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label.center { text-align: center; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 48px;
}
.section-title.center { text-align: center; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(11,11,11,0.96);
  border-bottom: 1px solid var(--gold-line);
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-divider { color: var(--gold-dim); font-size: 13px; }
.lang-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color var(--transition);
  padding: 2px 0;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('back.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,11,11,0.82) 0%,
    rgba(11,11,11,0.55) 50%,
    rgba(11,11,11,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__flag { font-size: 20px; line-height: 1; }
.hero__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}
.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero__socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
.hero__social {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  color: var(--muted);
  transition: var(--transition);
}
.hero__social svg { width: 16px; height: 16px; }
.hero__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero__cta {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  transition: var(--transition);
}
.hero__cta:hover {
  background: var(--gold);
  color: var(--black);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ---- HOOK 1: TICKER BAR ---- */
.ticker-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--gold-line);
  border-top: 1px solid var(--gold-line);
  padding: 0 32px;
}
.ticker-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.ticker-bar__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
}
.ticker-bar__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.ticker-bar__num sup { font-size: 0.5em; }
.ticker-bar__label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-bar__divider {
  width: 1px;
  height: 32px;
  background: var(--gold-line);
  flex-shrink: 0;
}
.ticker-bar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  white-space: nowrap;
}
.ticker-bar__cta svg { width: 16px; height: 16px; transition: transform var(--transition); }
.ticker-bar__cta:hover { color: var(--gold-light); }
.ticker-bar__cta:hover svg { transform: translateX(4px); }

/* ---- HOOK 2: SPONSOR STRIP ---- */
.sponsor-strip {
  background: linear-gradient(90deg, var(--surface) 0%, #1a1508 50%, var(--surface) 100%);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 28px 32px;
}
.sponsor-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.sponsor-strip p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  color: #BFBFBF;
  line-height: 1.5;
}
.sponsor-strip__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 12px 24px;
  transition: var(--transition);
  white-space: nowrap;
}
.sponsor-strip__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.sponsor-strip__link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.sponsor-strip__link:hover svg { transform: translateX(4px); }

/* ---- HOOK 3: FLOATING SIDE TAB ---- */
.sponsor-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  z-index: 90;
  background: var(--gold);
  color: var(--black);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform-origin: right center;
  padding: 20px 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), background var(--transition);
  cursor: pointer;
}
.sponsor-tab.visible {
  transform: translateY(-50%) translateX(0);
}
.sponsor-tab:hover { background: var(--gold-light); }

/* ---- ABOUT ---- */
.about {
  background: var(--surface);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.about__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.about__photo-wrap {
  position: relative;
}
.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
}
.about__photo-border {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid var(--gold-dim);
  z-index: -1;
}
.about__subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.about__text {
  font-size: 17px;
  line-height: 1.75;
  color: #BFBFBF;
  margin-bottom: 36px;
  max-width: 520px;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
}

/* ---- ACHIEVEMENTS ---- */
.achievements { background: var(--black); }
.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.achievement-card {
  background: var(--surface);
  padding: 48px 32px;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.achievement-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198,150,58,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.achievement-card:hover::before { opacity: 1; }
.achievement-card:hover { transform: translateY(-4px); }
.achievement-card__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
}
.achievement-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.achievement-card__desc {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---- CHAMPIONSHIP ---- */
.championship {
  background: var(--surface);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.championship__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.championship__main img,
.championship__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.championship__main { height: 480px; overflow: hidden; position: relative; }
.championship__side { height: 480px; overflow: hidden; position: relative; }
.championship__main img,
.championship__side img {
  transition: transform 0.6s ease;
}
.championship__main:hover img,
.championship__side:hover img { transform: scale(1.03); }
.championship__caption {
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- GALLERY ---- */
.gallery { background: var(--black); overflow: hidden; }
.gallery .container { margin-bottom: 40px; }
.gallery__wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.gallery__wrapper:active { cursor: grabbing; }
.gallery__track {
  display: flex;
  gap: 12px;
  padding: 0 32px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gallery__item {
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(10%);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding: 0 32px;
}
.gallery__btn {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery__btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.gallery__dots {
  display: flex;
  gap: 8px;
}
.gallery__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  transition: var(--transition);
  cursor: pointer;
}
.gallery__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.95);
  cursor: pointer;
}
.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox__close:hover { background: var(--gold); color: var(--black); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox__nav:hover { background: var(--gold); color: var(--black); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---- VIDEOS ---- */
.videos { background: var(--surface); border-top: 1px solid var(--gold-line); }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.video-card {
  background: var(--surface2);
  border: 1px solid #1f1f1f;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.video-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.video-card__thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #0a0a0a;
}
.video-card__thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85);
}
.video-card:hover .video-card__thumb img {
  transform: scale(1.04);
  filter: brightness(1);
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.video-card__play-btn {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(198,150,58,0.4);
}
.video-card:hover .video-card__play-btn {
  background: var(--gold-light);
  box-shadow: 0 0 0 12px rgba(198,150,58,0.15);
  transform: scale(1.1);
}
.video-card__play-btn svg {
  width: 22px; height: 22px;
  fill: var(--black);
  margin-left: 3px;
}
.videos__channel-cta {
  text-align: center;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 15px 40px;
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
}

/* ---- SPONSORS ---- */
.sponsors {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--gold-line);
  overflow: hidden;
}
.sponsors__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(198,150,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sponsors__inner { position: relative; z-index: 1; }
.sponsors__text {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #BFBFBF;
}
.sponsors__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}
.sponsor-feature {
  background: var(--surface);
  padding: 40px 28px;
  text-align: center;
  border-top: 2px solid var(--gold-dim);
  transition: var(--transition);
}
.sponsor-feature:hover { border-top-color: var(--gold); }
.sponsor-feature__icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.sponsor-feature__icon svg { width: 100%; height: 100%; }
.sponsor-feature h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.sponsor-feature p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.sponsors__inner { text-align: center; }
.btn-outline {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 15px 48px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--gold-line);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.footer__socials {
  display: flex;
  gap: 20px;
}
.footer__socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.footer__socials a svg { width: 16px; height: 16px; }
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer__copy {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- MOBILE MENU ---- */
@media (max-width: 900px) {
  .burger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(11,11,11,0.98);
    flex-direction: column;
    padding: 32px;
    gap: 28px;
    border-bottom: 1px solid var(--gold-line);
    transform: translateY(-120%);
    transition: transform var(--transition);
    backdrop-filter: blur(12px);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { font-size: 18px; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 340px 1fr; gap: 48px; }
  .achievements__grid { grid-template-columns: repeat(2, 1fr); }
  .championship__grid { grid-template-columns: 1fr; }
  .championship__side { height: 320px; }
  .championship__main { height: 360px; }
  .sponsors__features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ticker-bar__stat { padding: 14px 20px; }
  .ticker-bar__cta { padding: 14px 20px; }
  .sponsor-strip__inner { flex-direction: column; text-align: center; gap: 16px; }
  .sponsor-tab { display: none; }


  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { aspect-ratio: 4/3; }
  .about__photo-border { display: none; }
  .achievements__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { width: 260px; height: 340px; }
  .videos__grid { grid-template-columns: 1fr; }
  .sponsors__features { grid-template-columns: 1fr; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

@media (max-width: 480px) {
  .achievements__grid { grid-template-columns: 1fr; }
  .hero__name { font-size: clamp(3rem, 16vw, 5rem); }
  .gallery__item { width: 220px; height: 280px; }
}
