/* =====================================================
   ASLA · Association Soccer Los Angeles
   Brand system v1.1 · full site
   ===================================================== */

:root {
  --orange: #FF6600;
  --orange-dim: #cc5200;
  --navy: #0B2545;
  --black: #0A0A0A;
  --slate-900: #1E2733;
  --slate-700: #445063;
  --slate-500: #7A8699;
  --slate-300: #CAD2DC;
  --slate-100: #F2F4F7;
  --paper: #FAF9F6;

  --font: 'Inter', 'Helvetica Neue', 'SF Pro', Arial, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --nav-h: 76px;
  --announce-h: 44px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--slate-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =====================================================
   00 · INTRO SPLASH
   ===================================================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: splashHold 2.6s ease-out forwards;
  will-change: opacity, transform;
}
.splash--gone { display: none; }
.splash::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,102,0,0.08) 0%, transparent 60%),
    linear-gradient(rgba(255,102,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}
.splash__crest {
  position: relative;
  width: clamp(180px, 32vw, 340px);
  height: auto;
  animation: crestIn 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.splash__crest img,
.splash__crest svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(255,102,0,0.4));
}
.splash__tag {
  position: relative;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-transform: uppercase;
  opacity: 0;
  animation: tagIn 1s ease-out .5s forwards;
}
.splash__tag::before,
.splash__tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange);
  vertical-align: middle;
  margin: 0 12px;
}
@keyframes crestIn {
  0% { opacity: 0; transform: scale(0.85); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes tagIn {
  from { opacity: 0; letter-spacing: 0.2em; }
  to { opacity: 1; letter-spacing: 0.4em; }
}
@keyframes splashHold {
  0%, 78% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
/* prevent scroll while splash is up */
body.splash-lock { overflow: hidden; }

/* -------- typography helpers -------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate-500);
  padding-left: 14px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 2px;
  background: var(--orange);
}
.eyebrow--orange { color: var(--orange); }

.h-display {
  font-size: clamp(36px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 16px 0;
}
.h-display--light { color: #fff; }
.orange { color: var(--orange); }
.ig__at { color: var(--orange); font-weight: 900; }

.lede {
  max-width: 720px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--slate-300);
  margin-top: 20px;
}
.lede--dark { color: var(--slate-700); }
.lede--navy {
  color: var(--navy);
  font-weight: 700;
  border-left: 3px solid var(--navy);
  padding-left: 20px;
}

.body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-700);
  margin-top: 16px;
  max-width: 620px;
}

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  border-radius: 0;
}
.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--primary { background: var(--orange); color: var(--black); border-color: var(--orange); }
.btn--primary:hover { background: #ff7a1f; border-color: #ff7a1f; transform: translateX(4px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,102,0,0.05); }
.btn--ghost { background: transparent; color: #fff; border-color: transparent; padding: 14px 8px; }
.btn--ghost:hover { color: var(--orange); }
.btn--dark-outline { background: transparent; color: var(--black); border-color: var(--slate-500); }
.btn--dark-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,102,0,0.05); }
.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 14px; }

.section-head { margin-bottom: 60px; max-width: 900px; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; max-width: none; }
.section-head--split .h-display { margin-bottom: 0; }

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--orange);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 14px;
}

/* =====================================================
   01 · ANNOUNCEMENT
   ===================================================== */
.announce {
  background: var(--black);
  border-bottom: 1px solid rgba(255,102,0,0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 60;
}
.announce__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announce__msg { color: #fff; display: flex; align-items: center; gap: 14px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; flex: 1; }
.announce__msg strong { color: var(--orange); }
.announce__sep { color: var(--orange); opacity: 0.7; }
.announce__link { color: var(--orange); display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; transition: gap .2s var(--ease); }
.announce__link:hover { gap: 14px; }
.announce__close {
  display: none;
  background: none;
  border: none;
  color: var(--slate-500);
  cursor: pointer;
  padding: 4px;
}
.announce__close:hover { color: #fff; }

/* =====================================================
   02 · NAV
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 55;
  background: transparent;
  transition: all .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__left { display: flex; align-items: center; gap: 24px; }
.nav__right { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.nav__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width: 100%; }

.nav__logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo img.crest,
.nav__logo svg.crest {
  width: 64px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: transform .3s var(--ease);
}
.nav__logo:hover img.crest,
.nav__logo:hover svg.crest { transform: scale(1.05); }
.crest {
  width: 44px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
.crest--foot { width: 60px; height: auto; max-height: 66px; }
.crest--final { width: 90px; height: auto; max-height: 100px; margin: 0 auto 24px; object-fit: contain; }
.foot__brand .crest--foot,
.foot__brand img.crest--foot {
  width: 84px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav__menu { display: flex; gap: 28px; align-items: center; }
.nav__menu > a,
.nav__drop-trigger {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 24px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav__menu > a::after,
.nav__drop-trigger::after {
  content: '';
  position: absolute;
  bottom: 18px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav__menu > a:hover,
.nav__drop-trigger:hover { color: var(--orange); }
.nav__menu > a:hover::after,
.nav__drop-trigger:hover::after { width: 100%; }

.nav__drop { position: relative; }
.nav__drop-menu {
  position: absolute;
  top: 100%; left: -16px;
  background: #0a0a0a;
  border-top: 3px solid var(--orange);
  padding: 16px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all .25s var(--ease);
  z-index: 60;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--orange);
}
.nav__drop:hover .nav__drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-300);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.nav__drop-menu a:hover { color: var(--orange); padding-left: 30px; }

/* Coming Soon tag */
.is-soon { opacity: 0.7; cursor: default; display: inline-flex; align-items: center; gap: 8px; }
.is-soon:hover { color: var(--slate-500) !important; }
.is-soon .soon {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 3px 6px;
  background: rgba(255,102,0,0.15);
  color: var(--orange);
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
}
.nav__link.is-soon::after { display: none; }
.mmenu__nav a.is-soon .soon { font-size: 11px; padding: 4px 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span { width: 22px; height: 2px; background: #fff; transition: all .25s var(--ease); }

.nav__search {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  transition: color .2s var(--ease);
}
.nav__search:hover { color: var(--orange); }

/* -------- Full-screen mobile menu -------- */
.mmenu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__inner {
  height: 100%;
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
}
.mmenu__close { align-self: flex-end; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.mmenu__nav { display: flex; flex-direction: column; gap: 16px; margin: 40px 0; }
.mmenu__nav a {
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color .2s var(--ease);
}
.mmenu__nav a:hover { color: var(--orange); }
.mmenu__cta { margin-bottom: 32px; }
.mmenu__social { display: flex; gap: 24px; flex-wrap: wrap; }
.mmenu__social a { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-500); }
.mmenu__social a:hover { color: var(--orange); }

/* =====================================================
   03 · HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--announce-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
}
.hero__media {
  position: absolute; inset: 0;
  background-image: var(--photo), linear-gradient(135deg, #1a1a1a 0%, #2a1200 100%);
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.1);
  animation: heroZoom 22s ease-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, transparent 30%, transparent 40%, rgba(10,10,10,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero__coords {
  position: absolute;
  top: 120px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
.hero__coords-line {
  display: block;
  width: 60px; height: 1px;
  background: var(--orange);
  animation: expand 3s ease-out infinite alternate;
}
@keyframes expand { from { width: 20px; } to { width: 80px; } }
.hero__coords-num { color: #fff; opacity: 0.7; }

.hero__content { position: relative; max-width: var(--container); margin: 0 auto; padding: 60px var(--gutter) 100px; width: 100%; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,102,0,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(255,102,0,0); }
}
.hero__title {
  font-size: clamp(52px, 9vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title span { display: block; }
.reveal-lines span { opacity: 0; transform: translateY(30px); animation: revealUp .9s var(--ease) forwards; }
.reveal-lines span:nth-child(1) { animation-delay: .1s; }
.reveal-lines span:nth-child(2) { animation-delay: .3s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.hero__sub { max-width: 560px; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.5; color: var(--slate-300); margin-bottom: 40px; }
.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
  color: var(--slate-500); writing-mode: vertical-rl;
}
.hero__scroll .line { width: 1px; height: 60px; background: linear-gradient(180deg, var(--orange), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); } }

/* =====================================================
   04 · STORY (split screen)
   ===================================================== */
.story { background: var(--paper); color: var(--black); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.story__media {
  background-image: var(--photo), linear-gradient(135deg, #333, var(--orange));
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}
.story__badge {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--orange);
  color: var(--black);
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
.story__content { padding: clamp(50px, 8vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.story__content .h-display { color: var(--black); }
.story__content .btn { margin-top: 32px; align-self: flex-start; }

/* =====================================================
   05 · JOURNEY TIMELINE
   ===================================================== */
.journey { background: var(--black); padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.journey::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 20%, transparent 20%); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 30px;
}
.timeline__track {
  position: absolute;
  top: 62px;
  left: 8%; right: 8%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.timeline__track::before {
  content: '';
  position: absolute;
  inset: 0;
  width: calc(var(--journey-progress, 0.06) * 100%);
  background: var(--orange);
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.timeline__step { position: relative; padding-top: 90px; }
.timeline__dot {
  position: absolute;
  top: 20px; left: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--slate-900);
  border: 2px solid var(--slate-700);
  transition: all .3s var(--ease);
  z-index: 1;
}
.timeline__step--active .timeline__dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 6px rgba(255,102,0,0.2); }
.timeline__year { font-size: 40px; font-weight: 900; letter-spacing: -0.02em; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.timeline__step h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline__step p { font-size: 14px; line-height: 1.55; color: var(--slate-300); }

/* =====================================================
   06 · MATCH CENTER
   ===================================================== */
.match { background: var(--slate-100); color: var(--black); padding: clamp(80px, 10vw, 140px) 0; }
.match .h-display { color: var(--black); }

.match__hero {
  background: #fff;
  border-top: 4px solid var(--orange);
  padding: clamp(30px, 5vw, 60px);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.match__hero::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 100%; background: radial-gradient(circle at right center, rgba(255,102,0,0.06), transparent 70%); pointer-events: none; }
.match__comp { text-align: center; margin-bottom: 40px; position: relative; }
.match__comp-tag { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.3em; color: var(--orange); margin-bottom: 8px; }
.match__comp-date { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: var(--slate-700); }

.match__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}
.match__side { text-align: center; }
.match__crest { width: 120px; height: 130px; margin: 0 auto 20px; }
.match__crest svg { width: 100%; height: 100%; }
.match__team-name { font-size: clamp(20px, 2vw, 28px); font-weight: 900; color: var(--black); letter-spacing: -0.01em; }
.match__team-sub { font-size: 11px; font-weight: 800; letter-spacing: 0.3em; color: var(--orange); margin-top: 4px; }

.match__center { text-align: center; }
.match__countdown { display: flex; gap: 16px; justify-content: center; margin-bottom: 16px; }
.match__countdown div { display: flex; flex-direction: column; align-items: center; min-width: 60px; padding: 12px 8px; background: var(--slate-900); color: #fff; }
.match__countdown strong { font-size: 24px; font-weight: 900; line-height: 1; }
.match__countdown span { font-size: 9px; font-weight: 700; letter-spacing: 0.25em; margin-top: 4px; color: var(--orange); }
.match__vs { font-size: 20px; font-weight: 900; color: var(--orange); letter-spacing: 0.2em; margin: 12px 0; }
.match__venue { font-size: 11px; font-weight: 800; letter-spacing: 0.25em; color: var(--slate-500); }

.match__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--slate-300); position: relative; }

/* fixtures scroll */
.fixtures { margin-bottom: 40px; overflow: hidden; }
.fixtures__scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.fixture {
  background: #fff;
  padding: 24px;
  border-top: 3px solid var(--orange);
  scroll-snap-align: start;
  transition: transform .3s var(--ease);
}
.fixture:hover { transform: translateY(-4px); }
.fixture__date { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--slate-500); }
.fixture__comp { font-size: 11px; font-weight: 800; letter-spacing: 0.25em; color: var(--orange); margin: 10px 0; }
.fixture__teams { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 800; color: var(--black); }
.fixture__teams em { font-style: normal; font-size: 10px; color: var(--slate-500); letter-spacing: 0.2em; }
.fixture__venue { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--slate-500); margin-top: 12px; }
.fixture__ticket { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--orange); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--slate-300); }

.match__alerts {
  background: var(--black);
  color: #fff;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 3px solid var(--orange);
}
.match__alerts h4 { font-size: 22px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 6px; }
.match__alerts p { font-size: 14px; color: var(--slate-300); max-width: 500px; }

/* =====================================================
   07 · NEWS
   ===================================================== */
.news { background: var(--black); padding: clamp(80px, 10vw, 140px) 0; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.news-card {
  position: relative;
  overflow: hidden;
  background-image: var(--photo), linear-gradient(135deg, #333, var(--orange));
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 300px;
  transition: transform .4s var(--ease);
  isolation: isolate;
}
.news-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
  z-index: -1;
}
.news-card:hover::before { transform: scale(1.08); }
.news-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%); }
.news-card__body { position: relative; padding: 28px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.news-card h3 { font-size: 20px; font-weight: 800; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 10px; }
.news-card--main { grid-column: span 2; grid-row: span 2; min-height: 620px; }
.news-card--main h3 { font-size: clamp(28px, 3vw, 42px); }
.news-card--main p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 14px; line-height: 1.5; }
.news-card .meta { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); display: flex; justify-content: space-between; align-items: center; }
.news-card .ra { color: var(--orange); font-size: 14px; transition: transform .2s var(--ease); }
.news-card:hover .ra { transform: translateX(6px); }

/* =====================================================
   08 · PATHWAY
   ===================================================== */
.pathway { background: var(--slate-900); padding: clamp(80px, 10vw, 140px) 0; color: #fff; position: relative; }
.pathway::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent 0%, transparent 80%, var(--orange) 80%); }

.path { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin: 60px 0; }
.path__line { position: absolute; top: 30px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0 12px, transparent 12px 20px); }
.path__step { position: relative; padding-top: 60px; text-align: center; }
.path__step::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--slate-900), 0 0 0 6px var(--orange);
}
.path__num { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--orange); margin-bottom: 8px; }
.path__step h4 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.path__step p { font-size: 12px; color: var(--slate-300); line-height: 1.5; }

.pathway__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.pathway__pledge {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255,102,0,0.08);
  border-left: 4px solid var(--orange);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.5;
  color: #fff;
  max-width: 720px;
}
.pathway__pledge strong {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-right: 8px;
}

/* =====================================================
   09 · ACADEMY
   ===================================================== */
.academy { background: var(--black); }
.academy__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.academy__media { background-image: var(--photo), linear-gradient(135deg, var(--navy), var(--orange)); background-size: cover; background-position: center; min-height: 500px; }
.academy__content { padding: clamp(50px, 7vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.feats { list-style: none; margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.feats li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.5;
}
.feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--orange);
}
.academy__cta { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }

/* =====================================================
   10 · ASLA TV
   ===================================================== */
.tv { background: #050505; padding: clamp(80px, 10vw, 140px) 0; }

.tv-hero {
  display: block;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background-image: var(--photo), linear-gradient(135deg, #222, var(--orange));
  background-size: cover;
  background-position: center;
  isolation: isolate;
  margin-bottom: 40px;
  transition: transform .4s var(--ease);
}
.tv-hero:hover { transform: scale(1.005); }
.tv-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%); }
.tv-hero__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  animation: pulseRing 2.4s ease-in-out infinite;
}
.tv-hero__play svg { width: 32px; height: 32px; margin-left: 4px; }
.tv-hero:hover .tv-hero__play { transform: translate(-50%, -50%) scale(1.1); }
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.5); }
  50% { box-shadow: 0 0 0 20px rgba(255,102,0,0); }
}
.tv-hero__body { position: relative; padding: 40px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.tv-hero__body h3 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }

.tv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tv-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-image: var(--photo), linear-gradient(135deg, #222, var(--orange));
  background-size: cover;
  background-position: center;
  color: #fff;
  transition: transform .3s var(--ease);
}
.tv-card:hover { transform: translateY(-4px); }
.tv-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%); }
.tv-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,102,0,0.9);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.tv-card:hover .tv-card__play { opacity: 1; }
.tv-card__play svg { width: 20px; height: 20px; margin-left: 2px; }
.tv-card__body { position: relative; padding: 20px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.tv-card .dur { position: absolute; top: 16px; right: 16px; background: rgba(10,10,10,0.85); padding: 4px 8px; font-size: 10px; font-weight: 800; letter-spacing: 0.15em; color: #fff; }
.tv-card .cat { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--orange); margin-bottom: 6px; }
.tv-card h4 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }

/* =====================================================
   11 · CITY
   ===================================================== */
.city {
  position: relative;
  background-image: var(--photo), linear-gradient(135deg, var(--navy), var(--black));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(100px, 12vw, 180px) 0;
  color: #fff;
  overflow: hidden;
  filter: none;
}
.city__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 100%); }
.city__map {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,102,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mix-blend-mode: screen;
}
.city__content { position: relative; z-index: 1; max-width: 1100px; }
.city__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 50px 0; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
.city__stats h4 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: #fff; margin-top: 10px; line-height: 1.3; }

/* =====================================================
   12 · COMMUNITY
   ===================================================== */
.community { background: var(--paper); padding: clamp(80px, 10vw, 140px) 0; color: var(--black); }
.community .h-display { color: var(--black); }
.community__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.prog { background: #fff; overflow: hidden; border-top: 3px solid var(--orange); transition: transform .3s var(--ease); }
.prog:hover { transform: translateY(-6px); }
.prog__media {
  aspect-ratio: 16/10;
  background-image: var(--photo), linear-gradient(135deg, #ddd, var(--orange));
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.prog:hover .prog__media { transform: scale(1.05); }
.prog__body { padding: 24px; }
.prog__body h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--black); margin-bottom: 8px; }
.prog__body p { font-size: 14px; color: var(--slate-700); line-height: 1.5; margin-bottom: 16px; }
.community__cta { text-align: center; }

/* =====================================================
   13 · LEADERSHIP
   ===================================================== */
.leadership { background: var(--black); padding: clamp(80px, 10vw, 140px) 0; }
.leader-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.leader { background: var(--slate-900); overflow: hidden; transition: transform .3s var(--ease); border-top: 3px solid transparent; }
.leader:hover { transform: translateY(-4px); border-top-color: var(--orange); }
.leader__portrait { aspect-ratio: 5/6; overflow: hidden; filter: grayscale(1) contrast(1.05); transition: filter .3s var(--ease); }
.leader:hover .leader__portrait { filter: grayscale(0.2) contrast(1.05) sepia(0.4) hue-rotate(-20deg) saturate(2.5); }
.leader__portrait svg { width: 100%; height: 100%; display: block; }
.leader__body { padding: 24px; position: relative; }
.leader__role { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--orange); }
.leader__body h4 { font-size: 22px; font-weight: 900; letter-spacing: -0.01em; color: #fff; margin: 8px 0 10px; }
.leader__body p { font-size: 13px; color: var(--slate-300); line-height: 1.5; }
.leader__linkedin { position: absolute; top: 24px; right: 24px; color: var(--slate-500); transition: color .2s var(--ease); }
.leader__linkedin:hover { color: var(--orange); }
.leadership__cta { text-align: center; }

/* =====================================================
   14 · SUPPORTERS
   ===================================================== */
.supporters { position: relative; padding: clamp(80px, 10vw, 140px) 0; overflow: hidden; color: #fff; background: var(--black); }
.supporters__media { position: absolute; inset: 0; background-image: var(--photo), linear-gradient(135deg, var(--navy), var(--orange)); background-size: cover; background-position: center; filter: saturate(1.1); }
.supporters__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 100%); }
.supporters__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.supporters__lead { max-width: 560px; }
.supporters__lead .h-display { font-size: clamp(40px, 6vw, 84px); }

.supporters__form { background: var(--slate-900); border-top: 4px solid var(--orange); padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .short { max-width: 120px; }
.supporters__form label { display: flex; flex-direction: column; gap: 6px; }
.supporters__form span { font-size: 10px; font-weight: 800; letter-spacing: 0.25em; color: var(--slate-500); }
.supporters__form input:not([type="checkbox"]),
.supporters__form select,
.supporters__form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding: 12px 0;
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s var(--ease);
  resize: vertical;
}
.supporters__form textarea {
  border: 2px solid rgba(255,255,255,0.15);
  padding: 12px;
  min-height: 100px;
  line-height: 1.5;
}
.supporters__form input:focus,
.supporters__form select:focus,
.supporters__form textarea:focus { border-color: var(--orange); }
.supporters__form input::placeholder,
.supporters__form textarea::placeholder { color: var(--slate-500); }
.supporters__form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23FF6600' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 8px center; padding-right: 30px; }
.supporters__form select option { background: var(--slate-900); color: #fff; }
.fine { font-size: 11px; color: var(--slate-500); line-height: 1.5; margin-top: 8px; }
.req {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
  font-size: 1.1em;
  margin-left: 2px;
  /* on dark backgrounds the navy needs a subtle glow so it's readable */
  text-shadow: 0 0 12px rgba(11, 37, 69, 0.6);
}
.supporters__form .req {
  /* on the dark form background, brighten to a lighter navy for legibility */
  color: #4A7BC8;
  text-shadow: 0 0 8px rgba(74, 123, 200, 0.4);
}
.req-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--slate-300);
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.req-note .req { margin-right: 4px; }

/* consent checkbox */
.consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  user-select: none;
}
.supporters__form .consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all .2s var(--ease);
  border-radius: 3px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  vertical-align: middle;
  display: inline-block;
}
.consent input[type="checkbox"]:hover { border-color: var(--orange); }
.consent input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px; left: 5px;
  width: 5px; height: 10px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
}
.consent span {
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--slate-300) !important;
  text-transform: none !important;
  line-height: 1.4;
  flex: 1;
}
.consent .req { font-size: 1.05em; }
/* invalid state */
.supporters__form input:invalid:not(:placeholder-shown),
.supporters__form select:invalid:not(:focus) { border-bottom-color: rgba(255,102,0,0.5); }
.form-success { text-align: center; padding: 40px 20px; background: rgba(255,102,0,0.08); border: 1px solid var(--orange); }
.form-success strong { display: block; color: var(--orange); font-size: 18px; margin-bottom: 6px; letter-spacing: -0.01em; }

/* =====================================================
   15 · PARTNERS
   ===================================================== */
.partners { background: var(--paper); padding: clamp(80px, 10vw, 140px) 0; color: var(--black); }
.partners .h-display { color: var(--black); }
.ptypes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.ptype { background: #fff; padding: 32px; border-top: 3px solid var(--orange); transition: transform .3s var(--ease); }
.ptype:hover { transform: translateY(-4px); }
.ptype span { font-size: 36px; font-weight: 900; color: var(--slate-300); line-height: 1; letter-spacing: -0.02em; }
.ptype h4 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: var(--black); margin: 12px 0 10px; }
.ptype p { font-size: 14px; color: var(--slate-700); line-height: 1.5; }
.partners__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   16 · EXPERIENCES
   ===================================================== */
.experiences { background: var(--black); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; }
.exp {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background-image: var(--photo), linear-gradient(135deg, #333, var(--orange));
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
  transition: transform .4s var(--ease);
}
.exp::before {
  content: '';
  position: absolute; inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
  z-index: -1;
}
.exp:hover::before { transform: scale(1.08); }
.exp__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%); }
.exp__body { position: relative; padding: 50px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.exp__body h3 { font-size: clamp(32px, 4vw, 56px); font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin: 12px 0 12px; }
.exp__body p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 20px; max-width: 400px; }
.exp__body .btn { align-self: flex-start; }

/* =====================================================
   17 · SOCIAL
   ===================================================== */
.social { background: var(--black); padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.social::before { content: ''; position: absolute; top: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 70%); pointer-events: none; }
.social__platforms { display: flex; gap: 20px; }
.social__platforms a { color: var(--slate-500); transition: color .2s var(--ease), transform .2s var(--ease); }
.social__platforms a:hover { color: var(--orange); transform: translateY(-3px); }

.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-top: 40px; }
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  background-image: var(--photo), linear-gradient(135deg, var(--slate-900), var(--orange-dim));
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.ig-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.7) 100%); opacity: 0; transition: opacity .3s var(--ease); z-index: 1; }
.ig-tile:hover::before { opacity: 1; }
.ig-tile__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transform: scale(0.85); transition: all .3s var(--ease); z-index: 2; }
.ig-tile__overlay svg { width: 32px; height: 32px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.ig-tile:hover .ig-tile__overlay { opacity: 1; transform: scale(1); }

/* =====================================================
   FOUNDING PARTNERS (simplified · 18V)
   ===================================================== */
.founders { background: #fff; padding: 40px 0 44px; color: var(--black); }
.founders .section-head { text-align: center; max-width: none; margin: 0 auto 16px; }
.founders .eyebrow { color: var(--slate-500); }
.founder-hero {
  max-width: 220px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-18v {
  display: block;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.logo-18v:hover { transform: scale(1.04); opacity: 0.85; }
.logo-18v img,
.logo-18v svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 160px;
}

/* =====================================================
   19 · FINAL CTA
   ===================================================== */
.final { position: relative; padding: clamp(100px, 14vw, 200px) 0; overflow: hidden; text-align: center; color: #fff; background: #000; }
.final::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.4) saturate(1.2);
}
.final__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(10,10,10,0.4), rgba(10,10,10,0.9)); }
.final__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.final__title { font-size: clamp(38px, 6vw, 88px); font-weight: 900; line-height: 1; letter-spacing: -0.03em; margin-bottom: 24px; }
.final__cta { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* =====================================================
   FOOTER (slim)
   ===================================================== */
.foot { background: #050505; padding-top: 40px; color: var(--slate-300); }
.foot__slim {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.foot__brand { display: inline-flex; align-items: center; }
.foot__brand .crest--foot { width: 52px; height: 58px; }
.foot__social { display: flex; gap: 18px; }
.foot__social a { color: var(--slate-500); transition: color .2s var(--ease), transform .2s var(--ease); }
.foot__social a:hover { color: var(--orange); transform: translateY(-2px); }

.foot__bottom { padding: 20px 0; }
.foot__bottom-inner { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--slate-500); text-transform: uppercase; flex-wrap: wrap; align-items: center; }
.foot__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.foot__legal a { transition: color .2s var(--ease); }
.foot__legal a:hover { color: var(--orange); }
.foot__close { text-align: center; padding: 20px 0 32px; font-size: 11px; font-weight: 800; letter-spacing: 0.35em; color: var(--orange); text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 12px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .nav__menu { gap: 18px; }
  .nav__menu > a, .nav__drop-trigger { font-size: 12px; }
  .path { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .path__line { display: none; }
  .path__step::before { display: none; }
  .path__step { padding-top: 30px; text-align: left; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__track { display: none; }
  .timeline__step { padding-top: 30px; padding-left: 44px; }
  .timeline__dot { top: 30px; left: 0; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .news-card--main { grid-column: span 2; min-height: 400px; }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .nav__left .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__right .nav__link { display: none; }
  .story__grid, .academy__grid, .supporters__inner { grid-template-columns: 1fr; }
  .story__media, .academy__media { min-height: 400px; order: -1; }
  .ptypes { grid-template-columns: repeat(2, 1fr); }
  .community__grid { grid-template-columns: repeat(2, 1fr); }
  .tv-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .match__teams { grid-template-columns: 1fr; gap: 24px; }
  .match__center { order: 3; }
  .foot__grid { grid-template-columns: repeat(2, 1fr); }
  .city__stats { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .announce__inner { flex-wrap: wrap; gap: 8px; padding: 10px var(--gutter); }
  .announce__msg { font-size: 10px; white-space: normal; }
  .announce__close { display: block; }
  .nav__inner { grid-template-columns: auto 1fr auto; padding: 10px var(--gutter); gap: 12px; }
  .nav__logo img.crest,
  .nav__logo svg.crest { width: 44px; max-height: 48px; }
  .foot__brand .crest--foot,
  .foot__brand img.crest--foot { width: 64px; max-height: 70px; }
  .nav__right .btn, .nav__right .nav__search { display: flex; }
  .nav__right { gap: 8px; }
  .hero__coords { top: 90px; right: 20px; font-size: 9px; }
  .hero__coords-num { display: none; }
  .hero__scroll { display: none; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .news__grid { grid-template-columns: 1fr; }
  .news-card--main { grid-column: span 1; min-height: 340px; }
  .path { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .community__grid { grid-template-columns: 1fr; }
  .tv-grid { grid-template-columns: 1fr; }
  .ptypes { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .feats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .short { max-width: none; }
  .foot__top { flex-direction: column; align-items: flex-start; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .foot__bottom-inner { flex-direction: column; text-align: center; align-items: center; }
  .match__countdown div { min-width: 52px; padding: 10px 6px; }
  .match__countdown strong { font-size: 20px; }
  .match__alerts { flex-direction: column; align-items: flex-start; }
}
