/* =========================================================
   BORGATA — Elite Sports Management
   Design tokens, base, layout, components, animations
   ========================================================= */

:root{
  --bg: #111111;
  --bg-alt: #1D1D1D;
  --gold: #C8A15A;
  --gold-dark: #8E6A32;
  --white: #FFFFFF;
  --gray: #AFAFAF;

  --gold-rgb: 200,161,90;

  --font-head: "Oswald", sans-serif;
  --font-body: "Montserrat", sans-serif;

  --container: 1200px;
  --gap: 24px;
  --radius: 2px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input, textarea{ font-family: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

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

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

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

/* ---------- Eyebrow / section headings ---------- */
.eyebrow{
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  margin: 0 0 14px;
}
.eyebrow--light{ color: var(--gold); }

.section-head{ max-width: 640px; margin: 0 auto 56px; text-align:center; }
.section-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-lede{
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-texture{ display:none; }

section{ position: relative; padding: 120px 0; }
section#home.hero{ padding:0; }

/* =========================================================
   LOADER
   ========================================================= */
.loader{
  position: fixed; inset:0; z-index: 9999;
  background: var(--bg);
  display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 22px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.loader__mark{
  width: 64px; height:64px; border: 1px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  transform: rotate(45deg);
  animation: loaderSpin 1.6s var(--ease) infinite;
}
.loader__letter{
  transform: rotate(-45deg);
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.6rem;
}
@keyframes loaderSpin{
  0%,100%{ transform: rotate(45deg); }
  50%{ transform: rotate(225deg); }
}
.loader__bar{
  width: 180px; height:2px; background: rgba(255,255,255,0.08); overflow:hidden;
}
.loader__bar span{
  display:block; height:100%; width:40%; background: var(--gold);
  animation: loaderBar 1.2s ease-in-out infinite;
}
@keyframes loaderBar{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(350%); }
}

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position: fixed; top:0; left:0; height: 2px; width:0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  z-index: 1001;
  transition: width .1s linear;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 900;
  height: var(--nav-h);
  display:flex; align-items:center;
  background: transparent;
  transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled{
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(10px);
  height: 68px;
  box-shadow: 0 1px 0 rgba(200,161,90,0.15);
}
.nav__inner{
  width:100%; max-width: var(--container); margin:0 auto; padding: 0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav__logo{
  font-family: var(--font-head);
  font-size: 1.3rem; letter-spacing: 0.12em; color: var(--white);
  display:flex; align-items:center; gap:2px;
}
.nav__logo-mark{ height: 28px; width:auto; display:block; margin-right: 6px; }

.nav__menu{ display:flex; gap: 40px; }
.nav__link{
  position:relative;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 0;
}
.nav__link::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover::after, .nav__link:focus-visible::after{ width:100%; }

.nav__toggle{
  display:none; flex-direction: column; gap:5px; background:none; border:none; padding: 6px;
}
.nav__toggle span{ width: 24px; height:2px; background: var(--white); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2){ opacity:0; }
.nav__toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative; height: 100vh; min-height: 640px;
  display:flex; align-items:center; justify-content:center; text-align:center;
  overflow:hidden;
  background: #0c0c0c;
}
.hero__bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  object-position: center;
  z-index:0;
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.12); }
}
.hero__particles{
  position:absolute; inset:0; width:100%; height:100%;
  z-index:1;
}
.hero__scrim{
  position:absolute; inset:0;
  z-index:2;
  background:
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(0,0,0,0.55) 78%),
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.8));
}
.hero__gradient{
  position:absolute; left:0; right:0; bottom:0; height: 220px;
  z-index:3;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.hero__content{ position:relative; z-index:4; padding: 0 24px; }
.hero__eyebrow{
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  margin-bottom: 22px;
}
.hero__title{
  font-size: clamp(3.2rem, 12vw, 8rem);
  line-height: 0.95;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.hero__subtitle{
  font-family: var(--font-head);
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 42px;
}
.hero__actions{ display:flex; gap: 20px; justify-content:center; flex-wrap: wrap; }

.hero__scroll{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:12px;
  color: var(--gray); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index:4;
}
.hero__scroll-line{
  position:relative;
  width:1px; height: 46px;
  background: rgba(255,255,255,0.14);
  overflow:hidden;
}
.hero__scroll-line-fill{
  position:absolute; left:0; top:-100%; width:100%; height:100%;
  background: linear-gradient(180deg, transparent, var(--gold) 45%, var(--gold) 55%, transparent);
  animation: scrollFlow 2.2s ease-in-out infinite;
}
@keyframes scrollFlow{
  0%{ top:-100%; }
  100%{ top:100%; }
}

/* ---------- Buttons ---------- */
.btn{
  position: relative;
  display:inline-flex; align-items:center; justify-content:center;
  padding: 16px 38px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  border: 1px solid transparent;
}
.btn--primary{
  background: var(--gold);
  color: #141414;
}
.btn--primary:hover{
  background: var(--white);
  box-shadow: 0 0 28px rgba(var(--gold-rgb),0.45);
  transform: translateY(-2px);
}
.btn--secondary{
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn--secondary:hover{
  background: var(--gold);
  color: #141414;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(var(--gold-rgb),0.35);
}
.btn .ripple-dot{
  position:absolute; border-radius:50%;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: rippleAnim .6s ease-out;
  pointer-events:none;
}
@keyframes rippleAnim{ to{ transform: scale(1); opacity:0; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about{ background: var(--bg-alt); }

.stats-row{
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: var(--gap);
  margin-bottom: 90px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.stat{ text-align:center; }
.stat__number{
  display:block; font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem);
  color: var(--gold); font-weight: 600;
}
.stat__label{
  display:block; color: var(--gray); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px;
}

.exec-grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.exec-card{
  background: var(--bg);
  border: 1px solid rgba(200,161,90,0.25);
  padding: 34px 28px 32px;
  text-align:center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.exec-card:hover{
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--gold-rgb),0.2);
}
.exec-card__photo{
  width: 108px; height:108px; border-radius:50%; margin: 0 auto 22px;
  object-fit: cover;
  border: 1px solid var(--gold-dark);
  background: linear-gradient(155deg, #2a2a2a, #161616);
}
.exec-card__name{ font-size: 1.15rem; margin-bottom: 4px; }
.exec-card__title{ color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.exec-card__desc{ color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.exec-card__social{ display:flex; gap: 16px; justify-content:center; }
.exec-card__social a{ color: var(--gray); transition: color .25s; }
.exec-card__social a:hover{ color: var(--gold); }

/* =========================================================
   FIGHTERS
   ========================================================= */
.fighter-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.fighter-card{
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.fighter-card:hover{
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 32px rgba(var(--gold-rgb),0.18);
}
.fighter-card__media{
  position:relative; aspect-ratio: 3/4; overflow:hidden;
  background: linear-gradient(160deg, #232323, #131313);
}
.fighter-card__photo{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  background: #1a1a1a;
  transition: transform .6s var(--ease);
}
.fighter-card:hover .fighter-card__photo{ transform: scale(1.08); }
.fighter-card__record{
  position:absolute; top:14px; left:14px;
  font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.05em;
  color: var(--gold); background: rgba(17,17,17,0.75); border: 1px solid var(--gold-dark);
  padding: 4px 10px;
}
.fighter-card__body{ padding: 20px 22px 24px; }
.fighter-card__name{ font-size: 1.05rem; margin-bottom: 10px; }
.fighter-card__meta{
  color: var(--gray); font-size: 0.8rem; margin: 0 0 6px; display:flex; align-items:center; gap:8px;
}
.fighter-card__meta i{ color: var(--gold); width: 14px; }
.fighter-card__social{ display:flex; gap:14px; margin-top: 14px; }
.fighter-card__social a{ color: var(--gray); transition: color .25s; }
.fighter-card__social a:hover{ color: var(--gold); }

/* =========================================================
   VIDEO SECTION
   ========================================================= */
.video-section{ background: var(--bg-alt); }
.video-frame{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(200,161,90,0.3);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  background: #000;
  aspect-ratio: 16/9;
  overflow:hidden;
}
.video-frame__el{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  cursor: pointer;
}
.video-frame__play{
  position:absolute; inset:0;
  margin:auto;
  width: 84px; height: 84px;
  border-radius:50%;
  background: rgba(17,17,17,0.55);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.6rem;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.video-frame__play:hover{
  background: var(--gold);
  color: #141414;
  transform: scale(1.06);
}
.video-frame__play.is-playing{ opacity:0; pointer-events:none; }
.video-frame:hover .video-frame__play.is-playing{ opacity:1; pointer-events:auto; }

/* =========================================================
   NEXT EVENT / VIEW UPCOMING EVENTS TEASER
   ========================================================= */
.next-event{
  padding: 70px 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.6), rgba(17,17,17,0.85)),
    repeating-linear-gradient(120deg, #1a1a1a, #1a1a1a 3px, #151515 3px, #151515 6px);
  border-top: 1px solid rgba(200,161,90,0.15);
  border-bottom: 1px solid rgba(200,161,90,0.15);
}
.next-event__inner{
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap: wrap;
}
.next-event__name{
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--white);
  margin: 4px 0 12px;
}
.next-event__meta{
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0 0 8px;
}
.next-event__meta i{ color: var(--gold); margin-right: 4px; }
.next-event__card{
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  margin:0;
}

/* =========================================================
   EVENTS
   ========================================================= */
.events-table-wrap{
  overflow-x:auto;
  border: 1px solid rgba(200,161,90,0.2);
}
.events-table{
  width:100%; border-collapse: collapse; min-width: 760px;
}
.events-table thead th{
  background: var(--bg-alt);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-align:left; padding: 18px 22px;
  border-bottom: 1px solid var(--gold-dark);
}
.events-table tbody td{
  padding: 20px 22px;
  font-size: 0.92rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.events-table tbody tr{ background: var(--bg); transition: background .25s; }
.events-table tbody tr:nth-child(even){ background: #161616; }
.events-table tbody tr:hover{ background: rgba(var(--gold-rgb),0.08); }
.event-name{ font-family: var(--font-head); letter-spacing: 0.03em; }

.btn-ticket{
  display:inline-flex; align-items:center; justify-content:center;
  white-space: nowrap;
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.btn-ticket:hover{
  background: var(--gold);
  color: #141414;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(var(--gold-rgb),0.35);
  transform: translateY(-1px);
}

.events-cta{
  text-align:center;
  margin-top: 34px;
}
.events-cta p{
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* =========================================================
   APPLY BANNER
   ========================================================= */
.apply{
  position: relative;
  padding: 140px 0;
  text-align:center;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.55), rgba(17,17,17,0.88)),
    repeating-linear-gradient(120deg, #1c1c1c, #1c1c1c 3px, #151515 3px, #151515 6px);
  overflow:hidden;
}
.apply::before{
  content:"";
  position:absolute; inset:-20%;
  background: radial-gradient(circle at 30% 30%, rgba(var(--gold-rgb),0.14), transparent 55%);
  animation: applyGlow 10s ease-in-out infinite;
}
@keyframes applyGlow{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(4%,3%) scale(1.08); }
}
.apply__inner{ position:relative; z-index:1; }
.apply__headline{
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 18px;
}
.apply__subhead{
  color: var(--gold);
  font-family: var(--font-head);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.apply__box{
  display:inline-flex; flex-direction:column; align-items:center; gap: 26px;
  border: 1px solid var(--gold);
  padding: 40px 46px;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(6px);
}
.apply__box-title{ font-size: 1rem; letter-spacing: 0.1em; }
.apply__reqs{ display:flex; flex-wrap:wrap; gap: 26px; justify-content:center; }
.apply__reqs li{ display:flex; flex-direction:column; align-items:center; gap:8px; font-size: 0.76rem; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }
.apply__reqs i{ color: var(--gold); font-size: 1.3rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{ background: var(--bg-alt); }
.testimonial-carousel{ position:relative; max-width: 720px; margin: 0 auto; text-align:center; }
.testimonial-track{ position:relative; min-height: 180px; }
.testimonial{
  position:absolute; inset:0;
  opacity:0; transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  margin:0; padding:0;
}
.testimonial.is-active{ opacity:1; transform: translateY(0); position:relative; }
.testimonial p{
  font-family: var(--font-head); font-weight:400; font-size: clamp(1.1rem,2.4vw,1.5rem);
  color: var(--white); margin-bottom: 20px;
}
.testimonial cite{ color: var(--gold); font-style: normal; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.testimonial-dots{ display:flex; gap:10px; justify-content:center; margin-top: 30px; }
.testimonial-dots button{
  width:8px; height:8px; border-radius:50%; border:none; background: rgba(255,255,255,0.25);
  transition: background .3s;
}
.testimonial-dots button.is-active{ background: var(--gold); }

/* =========================================================
   INSTAGRAM
   ========================================================= */
.instagram-cta{
  display:inline-flex; align-items:center; gap:10px;
  margin-top: 6px;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .25s;
}
.instagram-cta i{ font-size: 1rem; }
.instagram-cta:hover{ border-color: var(--gold); color: var(--white); }
.instagram-grid{
  display:grid; grid-template-columns: repeat(6,1fr); gap: 4px;
}
.instagram-tile{
  aspect-ratio: 1;
  background: linear-gradient(150deg, #232323, #141414);
  display:flex; align-items:center; justify-content:center;
  color: rgba(var(--gold-rgb),0.55); font-size: 1.4rem;
  position: relative; overflow:hidden;
  transition: color .3s;
}
.instagram-tile::before{
  content:""; position:absolute; inset:0; background: rgba(var(--gold-rgb),0.12); opacity:0; transition: opacity .3s;
}
.instagram-tile:hover::before{ opacity:1; }
.instagram-tile:hover{ color: var(--gold); }

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors{ padding: 70px 0; text-align:center; }
.sponsor-track-wrap{ overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sponsor-track{
  display:flex; gap: 64px; width: max-content;
  animation: scrollSponsors 30s linear infinite;
}
.sponsor-track span{
  font-family: var(--font-head); letter-spacing: 0.14em; color: var(--gray);
  font-size: 0.95rem; white-space:nowrap;
}
@keyframes scrollSponsors{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* =========================================================
   SHOP
   ========================================================= */
.shop-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 44px;
}
.shop-card{
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.shop-card:hover{
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 32px rgba(var(--gold-rgb),0.16);
}
.shop-card__media{
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(155deg, #232323, #141414);
}
.shop-card__media img{
  width:100%; height:100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.shop-card:hover .shop-card__media img{ transform: scale(1.06); }
.shop-card__fallback-icon{
  position:absolute; inset:0;
  display:none; align-items:center; justify-content:center;
  font-size: 2.6rem; color: var(--gold-dark);
}
.shop-card__media.img-error img{ display:none; }
.shop-card__media.img-error .shop-card__fallback-icon{ display:flex; }
.shop-card__badge{
  position:absolute; top:12px; left:12px; z-index:1;
  font-family: var(--font-head); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(17,17,17,0.82); border: 1px solid var(--gold-dark);
  padding: 4px 10px;
}
.shop-card__body{ padding: 20px 22px 24px; }
.shop-card__brand{ color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px; }
.shop-card__tier{
  display:inline-block; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); border: 1px solid rgba(255,255,255,0.15); padding: 3px 9px; margin-bottom: 10px;
}
.shop-card__name{ font-size: 1rem; margin-bottom: 8px; }
.shop-card__desc{ color: var(--gray); font-size: 0.82rem; line-height: 1.55; margin: 0 0 14px; }
.shop-card__price{ color: var(--gold); font-family: var(--font-head); font-size: 0.92rem; margin: 0 0 16px; }
.shop-cta{ text-align:center; }
.shop-cta .btn{ width:100%; font-size: 0.72rem; padding: 13px 18px; }
.shop-cta .btn.is-added{ background: var(--gold); color:#141414; border-color: var(--gold); }

/* =========================================================
   SPONSORSHIP TIERS
   ========================================================= */
.tier-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 30px;
  align-items: stretch;
}
.tier-card{
  position: relative;
  display:flex; flex-direction:column;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 26px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.tier-card:hover{
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 32px rgba(var(--gold-rgb),0.16);
}
.tier-card--featured{
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 32px rgba(var(--gold-rgb),0.25);
}
.tier-card--featured:hover{ transform: translateY(-10px); }
.tier-card__ribbon{
  position:absolute; top:0; right: 26px;
  background: var(--gold); color:#141414;
  font-family: var(--font-head); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px;
  transform: translateY(-50%);
}
.tier-card__head{ text-align:center; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tier-card__name{ font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.tier-card__price{ font-family: var(--font-head); font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.tier-card__price span{ font-size: 0.9rem; color: var(--gray); font-family: var(--font-body); margin-left: 2px; }
.tier-card__tagline{ color: var(--gray); font-size: 0.82rem; }
.tier-card__list{ flex:1; display:flex; flex-direction:column; gap: 14px; margin-bottom: 26px; }
.tier-card__list li{ display:flex; align-items:flex-start; gap: 10px; font-size: 0.85rem; color: var(--gray); line-height: 1.4; }
.tier-card__list i{ color: var(--gold); margin-top: 3px; font-size: 0.8rem; }
.tier-cta .btn{ width:100%; font-size: 0.74rem; padding: 14px 18px; }
.tier-cta .btn.is-added{ background: var(--gold); color:#141414; border-color: var(--gold); }
.tier-custom-link{ color: var(--gold); text-decoration: underline; }

.tier-select{
  max-width: 480px; margin: 0 auto 44px;
  display:flex; flex-direction:column; gap:8px;
  text-align:center;
}
.tier-select label{
  font-family: var(--font-head); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray);
}
.tier-select select{
  width:100%; background: var(--bg-alt); color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C8A15A'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5H5.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  transition: border-color .25s;
}
.tier-select select:focus{ outline:none; border-color: var(--gold); }
.tier-select select option{ background: var(--bg-alt); color: var(--white); }
.tier-select__error{ display:none; color:#e0836f; font-size: 0.78rem; }
.tier-select.is-invalid select{ border-color:#e0836f; }
.tier-select.is-invalid .tier-select__error{ display:block; }

@media (max-width: 1080px){
  .tier-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .tier-grid{ grid-template-columns: 1fr; }
  .tier-card--featured{ order:-1; }
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter{ background: var(--bg-alt); padding: 90px 0; }
.newsletter__inner{
  display:flex; align-items:center; justify-content:space-between; gap: 40px; flex-wrap:wrap;
}
.newsletter__title{ font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 10px; }
.newsletter__lede{ color: var(--gray); max-width: 440px; }
.newsletter__form{ display:flex; gap: 12px; flex-wrap:wrap; }
.newsletter__form input{
  background: var(--bg); border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  padding: 15px 20px; min-width: 260px;
}
.newsletter__form input:focus{ border-color: var(--gold); outline:none; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 70px;
  align-items:start;
}
.contact__map{ margin: 30px 0; border: 1px solid rgba(200,161,90,0.25); background: var(--bg-alt); }
.contact__map-svg{ width:100%; height:auto; display:block; }
.contact__list{ margin: 26px 0; display:flex; flex-direction:column; gap: 16px; }
.contact__list li{ display:flex; align-items:center; gap: 14px; color: var(--gray); font-size: 0.94rem; }
.contact__list i{ color: var(--gold); width: 18px; }
.contact__list a:hover{ color: var(--gold); }
.contact__social{ display:flex; gap: 18px; }
.contact__social a{
  width: 40px; height:40px; border: 1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; color: var(--gray);
  transition: border-color .25s, color .25s;
}
.contact__social a:hover{ border-color: var(--gold); color: var(--gold); }

.contact__form{ background: var(--bg-alt); padding: 40px; border: 1px solid rgba(255,255,255,0.06); }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row{ margin-bottom: 20px; display:flex; flex-direction:column; gap:8px; position: relative; }
.form-row label{ font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.form-row input, .form-row textarea{
  background: var(--bg); border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  padding: 14px 16px; resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}
.form-row input:focus, .form-row textarea:focus{
  outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.15);
}
.form-error{ display:none; color: #e0836f; font-size: 0.76rem; }
.form-row.is-invalid input, .form-row.is-invalid textarea{ border-color: #e0836f; }
.form-row.is-invalid .form-error{ display:block; }
.form-success{ display:none; margin-top: 16px; color: var(--gold); font-size: 0.88rem; }
.form-success.is-visible{ display:block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background: #0a0a0a; padding-top: 60px; }
.footer__divider{ height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 50px; }
.footer__inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 30px; padding-bottom: 40px; }
.footer__logo{ font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 0.1em; display:inline-flex; align-items:center; }
.footer__logo-mark{ height: 24px; width:auto; display:block; margin-right: 6px; }
.footer__nav{ display:flex; gap: 28px; flex-wrap:wrap; }
.footer__nav a{ font-size: 0.82rem; color: var(--gray); transition: color .25s; }
.footer__nav a:hover{ color: var(--gold); }
.footer__social{ display:flex; gap: 18px; }
.footer__social a{ color: var(--gray); transition: color .25s; }
.footer__social a:hover{ color: var(--gold); }
.footer__copy{
  text-align:center; color: var(--gray); font-size: 0.78rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0; margin:0;
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top{
  position: fixed; right: 26px; bottom: 26px; z-index: 500;
  width: 46px; height:46px; border-radius:50%;
  background: var(--gold); color:#141414; border:none;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.scroll-top.is-visible{ opacity:1; visibility:visible; transform: translateY(0); }
.scroll-top:hover{ background: var(--white); }

/* =========================================================
   CART TOGGLE + DRAWER
   ========================================================= */
.cart-toggle{
  position: fixed; left: 26px; bottom: 26px; z-index: 500;
  width: 52px; height:52px; border-radius:50%;
  background: var(--gold); color:#141414; border:none;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.cart-toggle:hover{ background: var(--white); transform: translateY(-2px); }
.cart-toggle__count{
  position:absolute; top:-4px; right:-4px;
  min-width: 20px; height:20px; padding: 0 4px;
  border-radius: 50%;
  background: #141414; color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-head); font-size: 0.68rem;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform: scale(0.6);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.cart-toggle__count.is-visible{ opacity:1; transform: scale(1); }

body.cart-open{ overflow: hidden; }

.cart-drawer{
  position: fixed; inset:0; z-index: 2100;
  visibility: hidden; opacity:0;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.cart-drawer.is-open{ visibility: visible; opacity:1; }
.cart-drawer__backdrop{
  position:absolute; inset:0;
  background: rgba(8,8,8,0.86);
  backdrop-filter: blur(6px);
}
.cart-drawer__panel{
  position:absolute; top:0; right:0; bottom:0;
  width: 100%; max-width: 420px;
  background: var(--bg-alt);
  border-left: 1px solid var(--gold);
  box-shadow: -30px 0 60px rgba(0,0,0,0.5);
  display:flex; flex-direction:column;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.cart-drawer.is-open .cart-drawer__panel{ transform: translateX(0); }
.cart-drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 26px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer__head h3{ font-size: 1.05rem; color: var(--white); display:flex; align-items:center; gap:4px; }
.cart-drawer__head h3 i{ color: var(--gold); }
.cart-drawer__close{
  width: 36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  transition: border-color .25s, color .25s, transform .25s;
}
.cart-drawer__close:hover{ border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.cart-drawer__body{ padding: 22px 26px 30px; overflow-y:auto; flex:1; }

.cart-items{ display:flex; flex-direction:column; gap:16px; margin-bottom: 20px; }
.cart-item{
  display:grid; grid-template-columns: 1fr auto; gap: 4px 12px;
  align-items:center;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-item__name{ font-family: var(--font-head); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.02em; }
.cart-item__price{ color: var(--gold); font-size: 0.82rem; }
.cart-item__remove{
  justify-self:end; background:transparent; border:none; color: var(--gray);
  font-size: 0.78rem; transition: color .2s;
}
.cart-item__remove:hover{ color: #e0836f; }
.cart-item__qty{
  grid-column: 1 / -1;
  display:flex; align-items:center; gap: 10px;
}
.cart-item__qty button{
  width: 26px; height:26px; border: 1px solid rgba(255,255,255,0.2); background:transparent; color: var(--white);
  display:flex; align-items:center; justify-content:center; font-size: 0.8rem;
  transition: border-color .2s, color .2s;
}
.cart-item__qty button:hover{ border-color: var(--gold); color: var(--gold); }
.cart-item__qty span{ min-width: 18px; text-align:center; font-size: 0.86rem; }

.cart-empty{ color: var(--gray); font-size: 0.88rem; text-align:center; padding: 30px 0; }
.cart-empty a{ color: var(--gold); text-decoration: underline; }

.cart-summary{ border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }
.cart-summary__row{
  display:flex; justify-content:space-between; align-items:center;
  font-family: var(--font-head); font-size: 1rem; color: var(--white);
  margin-bottom: 16px;
}
.cart-summary__row span:last-child{ color: var(--gold); }
.cart-summary .btn{ width:100%; }

.checkout-form{ display:none; margin-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.checkout-form.is-open{ display:block; }
.checkout-form__note{ color: var(--gray); font-size: 0.8rem; margin: 0 0 18px; }
.checkout-form .form-row input{
  width:100%; background: var(--bg); border: 1px solid rgba(255,255,255,0.14); color: var(--white);
  padding: 12px 14px; font-size: 0.88rem; transition: border-color .25s;
}
.checkout-form .form-row input:focus{ outline:none; border-color: var(--gold); }
.checkout-form .btn{ width:100%; }

@media (max-width: 480px){
  .cart-toggle{ left: 16px; bottom: 16px; width: 46px; height:46px; }
  .cart-drawer__panel{ max-width: 100%; }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-up, .fade-left, .fade-right{
  opacity:0; transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up{ transform: translateY(36px); }
.fade-left{ transform: translateX(-36px); }
.fade-right{ transform: translateX(36px); }
.fade-up.is-visible, .fade-left.is-visible, .fade-right.is-visible{
  opacity:1; transform: translate(0,0);
}
[data-delay="1"]{ transition-delay: .1s; }
[data-delay="2"]{ transition-delay: .22s; }
[data-delay="3"]{ transition-delay: .34s; }

/* =========================================================
   FIGHTER BIO MODAL — TALE OF THE TAPE
   ========================================================= */
.fighter-card{ cursor: pointer; }
.fighter-card:focus-visible{ outline: 2px solid var(--gold); outline-offset: 4px; }

body.modal-open{ overflow: hidden; }

.fighter-modal{
  position: fixed; inset:0; z-index: 2000;
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.fighter-modal.is-open{ visibility: visible; opacity:1; }

.fighter-modal__backdrop{
  position:absolute; inset:0;
  background: rgba(8,8,8,0.86);
  backdrop-filter: blur(6px);
}

.fighter-modal__panel{
  position: relative;
  z-index:1;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  overflow-y: auto;
  display:grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(var(--gold-rgb),0.15);
  transform: scale(0.94) translateY(16px);
  opacity:0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.fighter-modal.is-open .fighter-modal__panel{
  transform: scale(1) translateY(0);
  opacity:1;
}

.fighter-modal__close{
  position:absolute; top: 16px; right: 16px; z-index:2;
  width: 40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(17,17,17,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  transition: border-color .25s, color .25s, transform .25s;
}
.fighter-modal__close:hover{ border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

.fighter-modal__media{
  position: relative;
  min-height: 260px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
}
.fighter-modal__media-top{
  position: relative;
  flex: 1 1 60%;
  min-height: 180px;
  overflow: hidden;
}
.fighter-modal__media-top img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.fighter-modal__record{
  position:absolute; bottom:16px; left:16px;
  font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.05em;
  color: var(--gold); background: rgba(17,17,17,0.8); border: 1px solid var(--gold-dark);
  padding: 5px 12px;
}

/* ---------- Fighter modal sponsor list (bottom half of left column) ---------- */
.fighter-modal__sponsors{
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  background: #141414;
  border-top: 1px solid rgba(200,161,90,0.3);
  padding: 16px 20px 20px;
  overflow-y: auto;
}
.fighter-modal__sponsors-label{
  font-family: var(--font-head);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 12px;
}
.fighter-modal__sponsors-list{
  display: flex;
  flex-direction: column;
}
.fighter-modal__sponsors-list a{
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .25s var(--ease), border-color .25s var(--ease), padding-left .25s var(--ease);
}
.fighter-modal__sponsors-list a:last-child{ border-bottom: none; }
.fighter-modal__sponsors-list a:hover{
  color: var(--gold);
  border-color: var(--gold);
  padding-left: 4px;
}

.fighter-modal__body{ padding: 44px 40px 40px; }
.fighter-modal__name{
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 4px 0 2px;
}
.fighter-modal__nickname{
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin: 0 0 26px;
}

.tale-of-tape{ margin-bottom: 26px; }
.tale-of-tape__title{
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--gray);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 10px 0;
  margin: 0 0 4px;
}
.tale-of-tape__list{ display:flex; flex-direction:column; }
.tale-of-tape__list li{
  display:flex; align-items:center; justify-content:space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.tale-of-tape__list li:last-child{ border-bottom:none; }
.tale-of-tape__label{
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.tale-of-tape__value{
  color: var(--white);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

.fighter-modal__bio{
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 26px;
}

/* ---------- Highlight video ---------- */
.fighter-modal__video{
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(200,161,90,0.3);
  overflow: hidden;
  margin: 0 0 26px;
}
.fighter-modal__video-el{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  cursor: pointer;
}
.fighter-modal__video-play{
  position:absolute; inset:0;
  margin:auto;
  width: 56px; height:56px;
  border-radius:50%;
  background: rgba(17,17,17,0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.05rem;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.fighter-modal__video-play:hover{ background: var(--gold); color: #141414; transform: scale(1.06); }
.fighter-modal__video-play.is-playing{ opacity:0; pointer-events:none; }
.fighter-modal__video:hover .fighter-modal__video-play.is-playing{ opacity:1; pointer-events:auto; }
.fighter-modal__video-label{
  position:absolute; bottom:12px; left:14px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(17,17,17,0.7);
  padding: 4px 10px;
}

/* ---------- Next event teaser ---------- */
.fighter-modal__next-event{
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  margin: 0 0 22px;
}
.fighter-modal__next-event-label{
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.fighter-modal__next-event-name{
  font-size: 0.9rem;
  color: var(--white);
  margin: 0 0 10px;
}
.fighter-modal__events-link{
  display:inline-flex; align-items:center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .25s;
}
.fighter-modal__events-link:hover{ border-color: var(--gold); color: var(--white); }

/* ---------- Actions ---------- */
.fighter-modal__actions{
  display:flex;
  gap: 12px;
  margin: 0 0 26px;
}
.fighter-modal__actions .btn{ flex: 1 1 0; text-align:center; }
@media (max-width: 480px){
  .fighter-modal__actions{ flex-direction: column; }
}

.fighter-modal__social{ display:flex; gap: 16px; }
.fighter-modal__social a{
  width: 38px; height:38px; border: 1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; color: var(--gray);
  transition: border-color .25s, color .25s;
}
.fighter-modal__social a:hover{ border-color: var(--gold); color: var(--gold); }

@media (max-width: 760px){
  .fighter-modal__panel{ grid-template-columns: 1fr; }
  .fighter-modal__media{ min-height: 380px; }
  .fighter-modal__media-top{ min-height: 220px; }
  .fighter-modal__body{ padding: 30px 26px 32px; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .fighter-grid{ grid-template-columns: repeat(3,1fr); }
  .instagram-grid{ grid-template-columns: repeat(4,1fr); }
  .shop-grid{ grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px){
  .exec-grid{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-row{ grid-template-columns: repeat(2,1fr); row-gap: 30px; }
  .contact__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .nav__menu{
    position: fixed; top: var(--nav-h); left:0; right:0;
    background: rgba(13,13,13,0.98);
    flex-direction: column; gap:0;
    max-height:0; overflow:hidden;
    transition: max-height .4s var(--ease);
  }
  .nav.is-scrolled .nav__menu{ top: 68px; }
  .nav__menu.is-open{ max-height: 480px; }
  .nav__link{ padding: 18px 24px; width:100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__link::after{ display:none; }
  .nav__toggle{ display:flex; }

  .fighter-grid{ grid-template-columns: repeat(2,1fr); }
  .instagram-grid{ grid-template-columns: repeat(3,1fr); }
  .shop-grid{ grid-template-columns: repeat(2,1fr); }

  .hero__actions{ flex-direction: column; width:100%; }
  .btn{ width:100%; }

  .events-table thead th, .events-table tbody td{ padding: 14px; font-size: 0.82rem; }

  .next-event__inner{ flex-direction: column; align-items: flex-start; }
  .next-event .btn{ width:100%; }

  .newsletter__inner{ flex-direction:column; align-items:flex-start; }
  .newsletter__form{ width:100%; }
  .newsletter__form input{ flex:1; min-width: 0; }
}

@media (max-width: 520px){
  section{ padding: 80px 0; }
  .fighter-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-row{ grid-template-columns: 1fr 1fr; }
  .apply__box{ padding: 30px 22px; }
  .apply__reqs{ gap: 18px; }
  .contact__form{ padding: 26px; }
  .form-grid{ grid-template-columns: 1fr; gap: 0; }
}