/* ═══════════════════════════════════════════
   AL-KARMA SPORT CLUB — style.css
   ═══════════════════════════════════════════ */

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

:root {
  --orange:       #E8600A;
  --orange-bright:#FF7A2F;
  --orange-dim:   rgba(232, 96, 10, 0.18);
  --dark:         #080808;
  --dark-2:       #0f0f0f;
  --dark-3:       #161616;
  --text:         #F2EDE6;
  --text-mid:     #B0A89E;
  --text-dim:     #6E6560;
  --font-display: 'Bebas Neue', sans-serif;
  --font-alt:     'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.22s var(--ease-out);
}
.btn-primary:hover { background: var(--orange-bright); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid rgba(232, 96, 10, 0.45);
  color: var(--text);
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.22s, color 0.22s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-bright); }

/* ─── TYPE HELPERS ─── */
.section-eyebrow {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 520px;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 80px;
  display: flex;
  align-items: center;
  background: var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  transition: background 0.3s;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  direction: rtl;          /* RTL layout */
  padding: 0 2.5vw;
  gap: 0;
}

/* Logo — far right in RTL = visually far LEFT */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 2rem;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.nav-link {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  padding: 0.5rem 1.1rem;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: #fff;
  transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after { left: 1.1rem; right: 1.1rem; }

.nav-link:hover { color: rgba(255,255,255,0.85); }

/* Social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-right: 1rem;
}

.nav-social-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: opacity 0.2s;
}
.nav-social-icon svg { width: 20px; height: 20px; }
.nav-social-icon:hover { opacity: 0.75; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-right: auto; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: #0a0a0a;
  border-top: 2px solid var(--orange);
  padding: 0.5rem 6vw 2rem;
  display: flex; flex-direction: column;
  z-index: 198;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.38s var(--ease-out), opacity 0.3s;
  pointer-events: none;
  direction: rtl;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.nav-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-link {
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-right 0.2s;
  display: block;
}
.nav-mobile-link:hover { color: var(--orange); padding-right: 0.5rem; }
.nav-mobile-link:last-of-type { border-bottom: none; }
.nav-mobile-socials {
  display: flex; gap: 1rem; margin-top: 1.25rem;
  padding-top: 1rem; border-top: 1px solid rgba(232,96,10,0.15);
}

/* ═══════════════════════════════════════════
   HERO — full-stage video
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

/* Subtle grid texture */
.hero-bg-texture {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,96,10,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,96,10,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* ── Giant centered video stage ── */
.hero-video-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86vw;     /* nearly full page width */
  z-index: 1;
}

.video-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 96, 10, 0.52) 0%,
    rgba(232, 96, 10, 0.14) 38%,
    transparent 65%
  );
  filter: blur(75px);
  pointer-events: none; z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8;  transform: scale(1);    }
  50%       { opacity: 1;   transform: scale(1.06); }
}

.hero-video {
  width: 100%; height: auto;
  display: block; position: relative; z-index: 1;
}

/* Four-directional gradient fades — video melts into the dark background */
.vfade {
  position: absolute; z-index: 2; pointer-events: none;
}
.vfade--left   { inset: 0 auto 0 0;   width: 10%;  background: linear-gradient(to right, var(--dark), transparent); }
.vfade--right  { inset: 0 0 0 auto;   width: 10%;  background: linear-gradient(to left,  var(--dark), transparent); }
.vfade--top    { inset: 0 0 auto 0;   height: 14%; background: linear-gradient(to bottom, var(--dark), transparent); }
.vfade--bottom { inset: auto 0 0 0;   height: 22%; background: linear-gradient(to top,   var(--dark), transparent); }

/* Decorative corner accents */
.video-corner { position: absolute; width: 28px; height: 28px; z-index: 4; }
.video-corner--tl { top: -6px; left: -6px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.video-corner--br { bottom: -6px; right: -6px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }

/* ── Content overlaid at bottom ── */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 5vw 5.5rem;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 80px;
}

/* ── Left: Club text ── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 440px;
  /* subtle backing so text pops over video */
  background: linear-gradient(135deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.2) 100%);
  padding: 2rem 2.5rem 2rem 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-badge { display: flex; align-items: center; gap: 0.9rem; }

.hero-badge-img {
  width: 48px; height: 48px; border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-badge-lines { display: flex; flex-direction: column; gap: 0.1rem; }

.hero-eyebrow {
  display: block; font-family: var(--font-alt);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
}

.hero-eyebrow-sub {
  display: block; font-size: 0.75rem;
  color: var(--text-dim); letter-spacing: 0.04em;
  font-family: var(--font-body);
}

.hero-heading {
  display: flex; flex-direction: column;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 7.5vw, 10rem);
  line-height: 1; letter-spacing: 0;
  direction: rtl;
}
.hero-heading .hero-line.accent { color: var(--orange); }

.hero-tagline {
  font-size: 0.85rem; color: var(--text-dim);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Right: Stats ── */
.hero-stats {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid rgba(232, 96, 10, 0.22);
  padding-left: 2rem;
  background: linear-gradient(135deg, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0.15) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-stat { padding: 1.4rem 0; display: flex; flex-direction: column; gap: 0.3rem; }
.hero-stat-divider { height: 1px; background: rgba(232, 96, 10, 0.1); }
.hero-stat-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--orange-bright); line-height: 1; letter-spacing: 0.02em; }
.hero-stat-label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 5;
}
.scroll-cue-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }
.scroll-cue-track { width: 1px; height: 54px; background: rgba(110, 101, 96, 0.25); position: relative; overflow: hidden; }
.scroll-cue-dot { position: absolute; top: 0; width: 1px; height: 18px; background: var(--orange); animation: scrollDrop 1.7s ease-in-out infinite; }

@keyframes scrollDrop {
  0%   { top: -18px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 54px;  opacity: 0; }
}

/* ═══════════════════════════════════════════
   TEAM BANNER
   ═══════════════════════════════════════════ */
.band-section {
  position: relative; height: 58vh; min-height: 360px; overflow: hidden;
}
.band-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.55) saturate(0.8);
  transform: scale(1.06); will-change: transform;
}
.band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.5) 50%, rgba(232,96,10,0.06) 100%);
  display: flex; align-items: flex-end; padding: 4rem 8vw;
}
.band-content { max-width: 600px; }
.band-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.band-body { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════
   SPLIT SECTIONS
   ═══════════════════════════════════════════ */
.split-section { padding: 7rem 8vw; background: var(--dark-2); }
.split-section--dark { background: var(--dark); }

.split-inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 6rem; align-items: center; }
.split-inner--text-left  { grid-template-columns: 1fr 1.15fr; }
.split-inner--text-right { grid-template-columns: 1.15fr 1fr; }
.split-inner--text-right .split-text  { order: 2; }
.split-inner--text-right .split-media { order: 1; }

.split-text { display: flex; flex-direction: column; gap: 1rem; }
.split-text .section-body { margin-bottom: 0.75rem; }

.split-media { position: relative; }
.media-frame { position: relative; overflow: hidden; }
.split-img {
  width: 100%; filter: brightness(0.82) saturate(0.85);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.media-frame:hover .split-img { filter: brightness(0.9) saturate(1); transform: scale(1.02); }

.media-accent-border {
  position: absolute; bottom: -12px; right: -12px;
  width: 65%; height: 65%;
  border: 1.5px solid rgba(232, 96, 10, 0.3); pointer-events: none;
  transition: border-color 0.3s;
}
.media-accent-border--right { bottom: -12px; left: -12px; right: auto; }
.split-media:hover .media-accent-border { border-color: rgba(232, 96, 10, 0.6); }

.inline-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(232, 96, 10, 0.1); }
.inline-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.inline-stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--orange-bright); line-height: 1; }
.inline-stat span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }

/* ═══════════════════════════════════════════
   MATCH DAY SECTION
   ═══════════════════════════════════════════ */
.match-section { padding: 7rem 8vw; background: var(--dark-3); }

.match-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center;
}

.match-gallery { display: grid; grid-template-rows: auto auto; gap: 0.9rem; }

.match-img-primary { position: relative; overflow: hidden; }
.match-img-primary img { width: 100%; filter: brightness(0.78) saturate(0.9); transition: transform 0.55s var(--ease-out), filter 0.4s; }
.match-img-primary:hover img { transform: scale(1.03); filter: brightness(0.88) saturate(1); }
.match-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--orange); color: #fff;
  font-family: var(--font-alt); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem;
}

.match-img-player { overflow: hidden; }
.match-img-player img { width: 100%; filter: brightness(0.72) saturate(0.85); transition: transform 0.55s var(--ease-out), filter 0.4s; }
.match-img-player:hover img { transform: scale(1.03); filter: brightness(0.85) saturate(1); }

.match-text { display: flex; flex-direction: column; gap: 1rem; }

/* ═══════════════════════════════════════════
   VIDEO SHOWCASE — full-width second video
   ═══════════════════════════════════════════ */
.video-showcase {
  padding: 6rem 0 7rem;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.showcase-header {
  text-align: center;
  padding: 0 5vw 3.5rem;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.showcase-stage {
  position: relative;
  width: 84vw;          /* nearly full page width */
  margin: 0 auto;
}

.showcase-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 96, 10, 0.48) 0%,
    rgba(232, 96, 10, 0.12) 42%,
    transparent 68%
  );
  filter: blur(70px);
  pointer-events: none; z-index: 0;
  animation: glowPulse 4.5s ease-in-out infinite;
}

.showcase-video {
  width: 100%; height: auto;
  display: block; position: relative; z-index: 1;
}

/* Edge fades — same principle as hero */
.svfade {
  position: absolute; z-index: 2; pointer-events: none;
}
.svfade--left   { inset: 0 auto 0 0;  width: 8%;   background: linear-gradient(to right, var(--dark), transparent); }
.svfade--right  { inset: 0 0 0 auto;  width: 8%;   background: linear-gradient(to left,  var(--dark), transparent); }
.svfade--bottom { inset: auto 0 0 0;  height: 18%; background: linear-gradient(to top,   var(--dark), transparent); }

/* ═══════════════════════════════════════════
   PLAYER / TRANSFERS
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   SQUAD SECTION
   ═══════════════════════════════════════════ */
.squad-section { padding: 7rem 8vw; background: var(--dark-2); }

.squad-header { max-width: 1200px; margin: 0 auto 4rem; }

.squad-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: center; }

.squad-img-wrap { position: relative; overflow: hidden; }
.squad-img-wrap img { width: 100%; filter: brightness(0.8) saturate(0.85); transition: filter 0.4s; }
.squad-img-wrap:hover img { filter: brightness(0.9) saturate(1); }
.squad-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 40%); pointer-events: none; }

.squad-crest-wrap { position: relative; display: flex; align-items: center; justify-content: center; padding: 3rem; }

.squad-crest-glow {
  position: absolute; inset: -15%;
  background: radial-gradient(ellipse at center, rgba(232, 96, 10, 0.28) 0%, transparent 65%);
  filter: blur(35px); pointer-events: none; animation: glowPulse 4s ease-in-out infinite;
}

.squad-crest {
  width: 260px; height: 260px; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 30px rgba(232, 96, 10, 0.35));
  transition: transform 0.5s var(--ease-out), filter 0.4s;
}
.squad-crest-wrap:hover .squad-crest { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(232, 96, 10, 0.55)); }

.squad-crest-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(232, 96, 10, 0.15);
  animation: ringPulse 3s ease-in-out infinite; pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50%       { transform: scale(1.02); opacity: 0.9; }
}

/* ═══════════════════════════════════════════
   COMMUNITY SECTION
   ═══════════════════════════════════════════ */
.community-section { padding: 7rem 8vw; background: var(--dark-3); }

.community-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.community-img-wrap { overflow: hidden; }
.community-img-wrap img { width: 100%; filter: brightness(0.82) saturate(0.85); transition: transform 0.55s var(--ease-out), filter 0.4s; }
.community-img-wrap:hover img { transform: scale(1.03); filter: brightness(0.92) saturate(1); }

.community-text { display: flex; flex-direction: column; gap: 1.25rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer { background: #040404; border-top: 1px solid rgba(232, 96, 10, 0.08); padding: 5rem 8vw 0; }

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo { width: 64px; height: 64px; border-radius: 8px; object-fit: contain; margin-bottom: 0.25rem; }
.footer-name { font-family: var(--font-alt); font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); }
.footer-name-ar { font-size: 0.9rem; color: var(--text-mid); }
.footer-tagline { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.06em; margin-top: 0.25rem; }

.footer-col-title { font-family: var(--font-alt); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.4rem; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links-col a { font-size: 0.875rem; color: var(--text-mid); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.75rem 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.06em;
}
.footer-bottom-ar { font-size: 0.75rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-stats { display: none; }

  .split-inner--text-left,
  .split-inner--text-right { grid-template-columns: 1fr; gap: 3.5rem; }
  .split-inner--text-right .split-text  { order: 1; }
  .split-inner--text-right .split-media { order: 2; }

  .match-inner, .squad-layout, .community-inner { grid-template-columns: 1fr; gap: 3rem; }
  .squad-crest-wrap { padding: 2rem; }
  .squad-crest { width: 200px; height: 200px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-inner {
    align-items: flex-end;
    padding-bottom: 4rem;
    justify-content: flex-start;
  }

  .hero-text { max-width: 100%; padding-right: 0; }

  .hero-video-stage { width: 100vw; }
  .vfade--left  { width: 5%; }
  .vfade--right { width: 5%; }

  .showcase-stage { width: 96vw; }

  .nav-links, .nav-cta, .nav-social { display: none; }
  .nav-hamburger { display: flex; }

  .split-section, .match-section, .squad-section, .community-section { padding: 5rem 6vw; }
  .video-showcase { padding: 4rem 0 5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .inline-stats { flex-wrap: wrap; gap: 1.5rem; }

  .band-overlay { padding: 2.5rem 6vw; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { text-align: center; }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .hero-inner {
    padding-bottom: 5rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero-text {
    padding: 1.2rem 1.5rem 1.2rem 0;
    gap: 1rem;
  }

  .nav-logo-img { height: 50px; }

  .section-heading { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .band-heading    { font-size: clamp(2.2rem, 9vw, 4rem); }
  .showcase-title  { font-size: clamp(2.2rem, 9vw, 4rem); }

  .split-section, .match-section, .squad-section, .community-section { padding: 4rem 5vw; }

  .squad-crest { width: 160px; height: 160px; }

  .footer-inner { padding-bottom: 2.5rem; }
  .site-footer  { padding: 3.5rem 5vw 0; }
}
