/* ═══════════════════════════════════════════
   INTERCEPTOR TEAM — TACTICAL DARK DESIGN
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080B0F;
  --bg2:       #0D1118;
  --surface:   #111620;
  --surface2:  #161D2A;
  --border:    #1E2B3A;
  --red:       #D42B2B;
  --red-glow:  #FF3535;
  --orange:    #E84C0B;
  --white:     #FFFFFF;
  --grey:      #8A9BB0;
  --grey2:     #4A5A6A;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-glow);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover {
  box-shadow: 0 0 30px rgba(212,43,43,0.5), 0 0 60px rgba(212,43,43,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 20px rgba(212,43,43,0.2);
}

.btn--vk {
  background: #2787F5;
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
}
.btn--vk:hover { background: #1a6fd4; }

.btn--large { padding: 16px 40px; font-size: 18px; }

/* ── TAGS ──────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag--red { background: var(--red); color: var(--white); }
.tag--dark { background: var(--surface2); color: var(--grey); border: 1px solid var(--border); }

/* ── SECTION HEADER ────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
}
.section-header--center { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.section-header__tag {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.section-header__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  flex: 1;
}
.section-header__more {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grey);
  white-space: nowrap;
  transition: color var(--transition);
}
.section-header__more:hover { color: var(--red); }

/* ── REVEAL ANIMATION ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.visible {
  transform: translateX(0);
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(8, 11, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212,43,43,0.4));
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.nav__logo-text span { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,11,15,0.85) 0%,
    rgba(8,11,15,0.60) 40%,
    rgba(8,11,15,0.40) 65%,
    rgba(8,11,15,0.70) 100%
  );
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  opacity: 0.5;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,11,15,0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 100px 48px 100px;
  max-width: 800px;
}

.hero__tag {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 28px;
}
.hero__title-line1 {
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title-line2 {
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: -0.01em;
  -webkit-text-stroke: 2px rgba(255,255,255,0.7);
  color: transparent;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.95s forwards;
}

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

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8,11,15,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--red);
  padding: 20px 32px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.hero__stat {
  flex: 1;
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.hero__stat-num::after {
  content: attr(data-suffix);
}
.hero__stat-label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Diagonal clip at bottom */
.hero__clip {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* ════════════════════════════════════════════
   NEWS
════════════════════════════════════════════ */
.news {
  padding: 100px 0;
  background: var(--bg);
}

.news__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.news-card--featured { grid-row: span 1; }

.news-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.news-card--featured .news-card__img-wrap { height: 260px; }
.news-card:not(.news-card--featured) .news-card__img-wrap { height: 180px; }

.news-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card__img { transform: scale(1.06); }

.news-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,15,0.6), transparent);
}

.news-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.news-card__meta time {
  font-size: 12px;
  color: var(--grey2);
  font-family: var(--font-head);
  letter-spacing: 0.08em;
}
.news-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.news-card--featured .news-card__title { font-size: 26px; }

.news-card__text {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.news-card__link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  align-self: flex-start;
  transition: color var(--transition);
}
.news-card__link:hover { color: var(--red-glow); }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.about__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,43,43,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,43,43,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.about__divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}
.about__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about__lead strong { color: var(--white); }

.about__timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__timeline-list li {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--border);
  transition: border-color var(--transition);
}
.about__timeline-list li:hover { border-color: var(--red); }
.about__year {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  white-space: nowrap;
  min-width: 90px;
}
.about__timeline-list span:last-child {
  font-size: 13px;
  color: var(--grey);
}

.about__photo-wrap {
  position: relative;
}
.about__photo-frame {
  position: relative;
}
.about__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  filter: saturate(0.9) contrast(1.05);
}
.about__photo-corner {
  position: absolute;
  width: 24px; height: 24px;
}
.about__photo-corner--tl {
  top: -6px; left: -6px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}
.about__photo-corner--br {
  bottom: -6px; right: -6px;
  border-bottom: 3px solid var(--red);
  border-right: 3px solid var(--red);
}
.about__shield {
  position: absolute;
  bottom: -32px;
  right: -20px;
  width: 120px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.8));
}
.about__shield img { width: 100%; }

/* ════════════════════════════════════════════
   CHAMPIONSHIPS TIMELINE
════════════════════════════════════════════ */
.champs {
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}

.champs__track {
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--border);
}
.champs__track::-webkit-scrollbar { height: 4px; }
.champs__track::-webkit-scrollbar-track { background: var(--border); }
.champs__track::-webkit-scrollbar-thumb { background: var(--red); }

.champs__line {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

.champs__items {
  display: flex;
  gap: 0;
  padding: 0 48px;
  min-width: max-content;
}

.champ-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  padding: 0 12px;
  position: relative;
}

.champ-item__dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--grey2);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  flex-shrink: 0;
}
.champ-item:hover .champ-item__dot,
.champ-item__dot--active {
  background: var(--red) !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 12px rgba(212,43,43,0.6);
}

.champ-item__card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  width: 130px;
  transition: border-color var(--transition), transform var(--transition);
}
.champ-item:hover .champ-item__card,
.champ-item__card--active {
  border-color: var(--red) !important;
  transform: translateY(-4px);
}
.champ-item__card--active {
  box-shadow: 0 0 20px rgba(212,43,43,0.2);
}

.champ-item__roman {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.champ-item__year {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grey2);
  margin-bottom: 6px;
}
.champ-item__name {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.champ-item__winner {
  font-size: 11px;
  color: var(--grey);
}

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery {
  padding: 120px 0;
  background: var(--bg2);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-top: 0;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.85) contrast(1.05);
}
.gallery__item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.1);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,43,43,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: white;
  opacity: 0;
}
.gallery__item:hover .gallery__item-overlay {
  background: rgba(212,43,43,0.5);
  opacity: 1;
}

.gallery__footer {
  text-align: center;
  margin-top: 40px;
}

/* ════════════════════════════════════════════
   DIVISIONS
════════════════════════════════════════════ */
.divisions {
  padding: 120px 0;
  background: var(--bg);
}

.divisions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.division-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  gap: 32px;
  padding: 32px;
  transition: border-color var(--transition);
}
.division-card:hover { border-color: var(--red); }

.division-card__logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.division-card__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.division-card__logo--shield { width: 90px; height: 110px; }

.division-card__title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.division-card__sub {
  font-size: 12px;
  color: var(--red);
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.division-card__text {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 16px;
}
.division-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.6) brightness(0.5);
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,11,15,0.7), rgba(8,11,15,0.5), rgba(8,11,15,0.7));
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: #050709;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__logo {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.footer__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__since {
  font-size: 12px;
  color: var(--grey2);
  margin-top: 4px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.footer__nav-col a {
  font-size: 13px;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__nav-col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--border);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  color: var(--grey2);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .news__grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-wrap { order: -1; }
  .about__shield { right: 16px; width: 90px; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .divisions__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 20px; }

  .hero__content { padding: 80px 20px 80px; }
  .hero__stats {
    left: 20px; right: 20px; bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
  }
  .hero__stat { min-width: 80px; }
  .hero__stat-divider { display: none; }
  .hero__cta { flex-direction: column; }

  .news { padding: 60px 0; }
  .news__grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: span 1; }

  .about { padding: 80px 0; }
  .champs { padding: 80px 0; }
  .gallery { padding: 80px 0; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .divisions { padding: 80px 0; }
  .division-card { flex-direction: column; }

  .section-header { flex-direction: column; gap: 8px; }

  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .champs__items { padding: 0 20px; }
  .footer__nav { grid-template-columns: 1fr; }
}
