/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --aptos:      'Aptos','Aptos Display','Lato','Segoe UI',system-ui,sans-serif;
  --red:        #C8102E;
  --red-dark:   #8B0A1F;
  --red-light:  rgba(200,16,46,0.08);
  --black:      #0A0A0A;
  --off-black:  #111111;
  --grey-dark:  #1C1C1C;
  --grey-mid:   #444;
  --grey-text:  #888;
  --off-white:  #F5F2ED;
  --cream:      #EDE8DF;
  --white:      #FFFFFF;
  --border:     rgba(255,255,255,0.07);
  --border-red: rgba(200,16,46,0.25);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--aptos);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CURSOR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#cur {
  width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
}
#cur-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(200,16,46,.45); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; gap: 18px;
  height: 68px; padding: 0 32px;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  animation: fadeDown .7s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hamburger button (left of logo, always visible) ── */
.nav-hamburger {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5.5px;
  width: 40px; height: 40px; flex-shrink: 0;
  background: none; border: none; cursor: none; padding: 0;
  z-index: 310;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.75);
  transition: transform .32s cubic-bezier(.77,0,.18,1),
              opacity  .2s ease,
              width    .2s ease,
              background .2s ease;
  transform-origin: center;
}
.nav-hamburger:hover span { background: var(--white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }

/* ── Brand ── */
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-badge { width: 42px; height: 42px; object-fit: contain; }
.nav-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-text strong { font-family: var(--aptos); font-size: 15px; font-weight: 700; letter-spacing: .04em; color: var(--white); }
.nav-text span   { font-family: var(--aptos); font-size: 10px; font-weight: 400; letter-spacing: .18em; color: var(--red); text-transform: uppercase; }

/* ── Contact CTA (right side) ── */
.nav-contact-cta {
  margin-left: auto;
  background: var(--red); color: #fff;
  padding: 9px 20px;
  font-family: var(--aptos); font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; transition: background .2s; flex-shrink: 0;
}
.nav-contact-cta:hover { background: var(--red-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MENU OVERLAY (darkens page behind menu)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 290;
  background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLYOUT MENU PANEL
   Two-column: primary list on left, sub-list on right
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-menu {
  position: fixed;
  top: 68px; left: 0; bottom: 0;
  width: 520px;               /* primary col + sub col */
  z-index: 295;
  display: flex;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
}
.nav-menu.open { transform: translateX(0); }

/* Primary column */
.nav-menu-primary {
  width: 220px; flex-shrink: 0;
  background: var(--off-black);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

/* Sub column */
.nav-menu-sub {
  flex: 1;
  background: rgba(14,14,14,.98);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

/* Primary items */
.menu-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px;
  font-family: var(--aptos); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none; background: none; border: none;
  cursor: none; width: 100%;
  transition: color .15s, background .15s;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.menu-item:hover,
.menu-item.active {
  color: var(--white);
  background: rgba(200,16,46,.07);
  border-left-color: var(--red);
}

/* Arrow on items that have sub-links */
.menu-item-arrow {
  width: 6px; height: 6px; flex-shrink: 0;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .4; transition: opacity .15s;
}
.menu-item:hover .menu-item-arrow,
.menu-item.active .menu-item-arrow { opacity: 1; }

/* Sub-items */
.sub-group { display: none; flex-direction: column; }
.sub-group.active { display: flex; }

.sub-heading {
  font-family: var(--aptos); font-size: 9px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--red); padding: 16px 22px 8px;
}
.sub-item {
  display: block; padding: 11px 22px;
  font-family: var(--aptos); font-size: 13px; font-weight: 400;
  letter-spacing: .03em; color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s, background .15s, padding-left .15s;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.sub-item:hover {
  color: var(--white); background: rgba(200,16,46,.07);
  padding-left: 26px; border-left-color: var(--red);
}

/* Direct links (no sub) */
.menu-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Footer of primary col */
.nav-menu-footer {
  margin-top: auto; padding: 20px 22px;
  border-top: 1px solid var(--border); flex-shrink: 0;
}
.nav-menu-footer a {
  display: block; text-align: center;
  background: var(--red); color: #fff;
  padding: 12px; font-family: var(--aptos);
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: background .2s;
}
.nav-menu-footer a:hover { background: var(--red-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section { padding: 88px 60px; }
.sec-tag {
  font-family: var(--aptos); font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.sec-tag::before { content: ''; width: 22px; height: 1px; background: var(--red); }
.sec-h2 {
  font-family: var(--aptos); font-size: clamp(32px,3.5vw,48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.view-all {
  font-family: var(--aptos); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--grey-text);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.view-all:hover { color: #fff; border-color: var(--red); }

.btn-red {
  background: var(--red); color: #fff; padding: 15px 34px;
  font-family: var(--aptos); font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255,255,255,.7); font-family: var(--aptos); font-size: 14px;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: #fff; border-color: var(--red); }
.btn-wh {
  background: #fff; color: var(--red); padding: 14px 30px;
  font-family: var(--aptos); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: background .2s;
}
.btn-wh:hover { background: rgba(255,255,255,.9); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('https://kirkintillochcommunitysportsclub.org.uk/wp-content/uploads/2024/07/20240727_175153-scaled.jpg'), linear-gradient(135deg,#0a1a0a,#0f2e14);
  background-size: cover; background-position: center 30%;
  transform: scale(1.04);
  animation: zoomOut 8s ease both;
}
@keyframes zoomOut { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.97) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.25) 100%);
}
.hero-overlay-red {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,.12) 0%, transparent 60%);
}
.hero-topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform-origin: left;
  animation: barIn 1s .2s cubic-bezier(.77,0,.18,1) both;
}
@keyframes barIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 88px; max-width: 860px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--aptos); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red);
  margin-bottom: 22px;
  opacity: 0; animation: up .6s .5s ease both;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--red); }
.hero-h1 {
  font-family: var(--aptos); font-size: clamp(56px,7.5vw,96px);
  font-weight: 900; line-height: .95; letter-spacing: -.02em; margin-bottom: 28px;
  opacity: 0; animation: up .7s .65s ease both;
}
.hero-h1 em { display: block; color: var(--red); font-style: normal; }
.hero-sub {
  font-family: var(--aptos); font-weight: 300; font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.65); max-width: 480px; margin-bottom: 44px;
  opacity: 0; animation: up .6s .8s ease both;
}
.hero-btns {
  display: flex; gap: 14px; align-items: center;
  opacity: 0; animation: up .6s .95s ease both;
}
.hero-stats {
  position: absolute; bottom: 88px; right: 60px; z-index: 2;
  display: flex; opacity: 0; animation: up .6s 1.1s ease both;
}
.hero-stat { padding: 0 28px; border-left: 1px solid rgba(255,255,255,.1); text-align: right; }
.hero-stat-n { display: block; font-family: var(--aptos); font-size: 34px; font-weight: 900; line-height: 1; }
.hero-stat-l { display: block; font-family: var(--aptos); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 4px; }
@keyframes up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker { background: var(--red); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tick 30s linear infinite; }
.ticker-item {
  font-family: var(--aptos); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 0 36px;
  color: rgba(255,255,255,.9); display: inline-flex; align-items: center; gap: 36px;
}
.ticker-item::after { content: '◆'; font-size: 5px; color: rgba(255,255,255,.4); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESULT BAND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.result-band {
  background: var(--grey-dark); padding: 32px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.result-label {
  font-family: var(--aptos); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--grey-text);
}
.result-score-wrap { display: flex; align-items: center; gap: 20px; }
.result-team-name {
  font-family: var(--aptos); font-size: 20px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.score-box { display: flex; align-items: stretch; }
.score-n { font-family: var(--aptos); font-size: 38px; font-weight: 900; line-height: 1; padding: 6px 18px; }
.score-n.home { background: var(--red); }
.score-n.away { background: rgba(255,255,255,.08); }
.score-sep { font-family: var(--aptos); font-size: 24px; font-weight: 300; color: rgba(255,255,255,.2); display: flex; align-items: center; padding: 0 3px; }
.result-meta { font-family: var(--aptos); font-size: 13px; font-weight: 300; color: var(--grey-text); text-align: right; line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEWS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.news-sect { background: var(--off-black); }
.news-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.news-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto; gap: 3px;
}
.news-card {
  position: relative; overflow: hidden;
  background: var(--grey-dark); text-decoration: none;
  color: inherit; display: block;
}
.news-card:first-child { grid-row: span 2; }
.news-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .4s ease; background: var(--grey-mid); }
.news-card:first-child .news-img { height: 100%; aspect-ratio: unset; position: absolute; inset: 0; }
.news-card:hover .news-img { transform: scale(1.03); }
.news-body { padding: 22px 26px 26px; }
.news-card:first-child .news-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top,rgba(0,0,0,.96) 0%,transparent 100%);
  padding: 56px 32px 32px;
}
.news-cat { font-family: var(--aptos); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 8px; }
.news-title { font-family: var(--aptos); font-weight: 700; line-height: 1.3; color: #fff; margin-bottom: 8px; }
.news-card:first-child .news-title { font-size: clamp(20px,2vw,26px); }
.news-card:not(:first-child) .news-title { font-size: 15px; }
.news-date { font-family: var(--aptos); font-size: 12px; font-weight: 300; color: var(--grey-text); }
/* Placeholder image colours */
.img-p1 { background: linear-gradient(135deg,#180811 0%,#3a0e1a 50%,#200812 100%); }
.img-p2 { background: linear-gradient(135deg,#081220 0%,#0e1f42 50%,#0a1528 100%); }
.img-p3 { background: linear-gradient(135deg,#0f1808 0%,#1e3f0e 50%,#122008 100%); }
.img-p4 { background: linear-gradient(135deg,#18150a 0%,#3a2e10 50%,#201508 100%); }
.news-img-placeholder { width: 100%; aspect-ratio: 16/10; position: relative; overflow: hidden; }
.news-card:first-child .news-img-placeholder { height: 100%; aspect-ratio: unset; position: absolute; inset: 0; }
.img-pitch-lines {
  position: absolute; inset: 0; opacity: .08;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 17%, rgba(255,255,255,.7) 17.5%, transparent 18%),
    linear-gradient(to bottom, transparent 49.5%, rgba(255,255,255,.7) 49.5%, rgba(255,255,255,.7) 50.5%, transparent 50.5%);
}
.img-corner-arc {
  position: absolute; bottom: 0; right: 0; width: 60%; height: 60%;
  border-top-left-radius: 100%; border: 1.5px solid rgba(255,255,255,.06);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STADIUM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stadium-sect {
  background: var(--black); padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
}
.stadium-img-wrap { position: relative; overflow: hidden; min-height: 420px; }
.stadium-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stadium-img-wrap .stadium-fallback {
  width: 100%; height: 100%; min-height: 420px;
  background: linear-gradient(135deg,#0a1a0a 0%,#0f2e14 40%,#081a0a 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--aptos); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
}
.stadium-copy {
  padding: 72px 56px; display: flex;
  flex-direction: column; justify-content: center;
  background: var(--off-black);
}
.stadium-copy .sec-tag { margin-bottom: 18px; }
.stadium-copy .sec-h2 { margin-bottom: 16px; }
.stadium-copy p { font-family: var(--aptos); font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.stadium-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { font-family: var(--aptos); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 7px 14px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.55); }
.pill.red-pill { background: var(--red); border-color: var(--red); color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FIXTURE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fixture-sect { background: var(--black); }
.fixture-card {
  border: 1px solid var(--border); padding: 52px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden; background: var(--grey-dark);
}
.fixture-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.fix-team { display: flex; flex-direction: column; gap: 10px; }
.fix-team.away { align-items: flex-end; text-align: right; }
.fix-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--aptos); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.4); overflow: hidden;
}
.fix-badge img { width: 100%; height: 100%; object-fit: contain; }
.fix-badge.home-badge { background: rgba(200,16,46,.12); border-color: rgba(200,16,46,.3); }
.fix-name { font-family: var(--aptos); font-size: 24px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.fix-loc { font-family: var(--aptos); font-size: 12px; font-weight: 300; color: var(--grey-text); }
.fix-mid { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fix-vs { font-family: var(--aptos); font-size: 12px; font-weight: 300; color: var(--grey-text); letter-spacing: .12em; text-transform: uppercase; }
.fix-date { font-family: var(--aptos); font-size: 20px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.fix-time { font-family: var(--aptos); font-size: 52px; font-weight: 900; color: var(--red); line-height: 1; }
.fix-comp { font-family: var(--aptos); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMMUNITY BAND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.community-sect { background: var(--red); padding: 80px 60px; }
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.com-h2 { font-family: var(--aptos); font-size: clamp(36px,3.5vw,52px); font-weight: 900; line-height: 1.05; letter-spacing: -.02em; color: #fff; margin-bottom: 16px; }
.com-h2 span { color: rgba(255,255,255,.55); }
.com-p { font-family: var(--aptos); font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.com-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.com-stat { background: rgba(0,0,0,.18); padding: 30px 24px; }
.com-n { display: block; font-family: var(--aptos); font-size: 40px; font-weight: 900; color: #fff; line-height: 1; }
.com-l { display: block; font-family: var(--aptos); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LEAGUE TABLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.table-sect { background: var(--off-black); }
.ltable { width: 100%; border-collapse: collapse; font-family: var(--aptos); margin-top: 36px; }
.ltable thead th { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-text); padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.ltable thead th:not(:nth-child(1)):not(:nth-child(2)) { text-align: center; }
.ltable tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; }
.ltable tbody tr:hover { background: rgba(255,255,255,.03); }
.ltable tbody tr.hl { background: rgba(200,16,46,.09); border-bottom-color: rgba(200,16,46,.18); }
.ltable td { padding: 13px 14px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); }
.ltable td:not(:nth-child(1)):not(:nth-child(2)) { text-align: center; }
.pos { font-size: 12px; font-weight: 400; color: var(--grey-text); }
.tname { font-weight: 700; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; }
.pts { font-family: var(--aptos); font-weight: 900; font-size: 17px; color: #fff !important; }
.hl .pts { color: var(--red) !important; }
.form { display: flex; gap: 3px; justify-content: center; }
.fd { width: 8px; height: 8px; border-radius: 50%; }
.fw { background: #2d7a3e; } .fd2 { background: #7a7a2e; } .fl { background: #7a2e2e; }
.table-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.table-note { font-family: var(--aptos); font-size: 11px; font-weight: 400; color: rgba(255,255,255,.2); letter-spacing: .04em; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PARTNERS STRIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.partners-sect {
  background: var(--grey-dark); padding: 52px 60px;
  border-top: 1px solid var(--border);
}
.partners-inner { display: flex; align-items: center; gap: 60px; }
.partners-label {
  font-family: var(--aptos); font-size: 10px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.2); white-space: nowrap; flex-shrink: 0;
}
.partners-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.partners-row { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; flex: 1; }
.partner-slot {
  font-family: var(--aptos); font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.15); padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.06);
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.partner-slot:hover { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.15); }
.partners-cta {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--aptos); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red);
  text-decoration: none; border-bottom: 1px solid rgba(200,16,46,.35);
  padding-bottom: 2px; transition: border-color .2s;
  white-space: nowrap;
}
.partners-cta:hover { border-color: var(--red); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer { background: var(--black); padding: 60px 60px 36px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer-brand-text { font-family: var(--aptos); font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--grey-text); margin-top: 16px; max-width: 260px; }
.fcol h4 { font-family: var(--aptos); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.fcol ul { list-style: none; }
.fcol li { margin-bottom: 9px; }
.fcol a { font-family: var(--aptos); font-size: 14px; font-weight: 300; color: var(--grey-text); text-decoration: none; transition: color .2s; }
.fcol a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 24px;
}
.footer-copy-wrap { display: flex; align-items: center; gap: 20px; }
.footer-copy { font-family: var(--aptos); font-size: 12px; font-weight: 300; color: rgba(255,255,255,.2); }
.footer-privacy {
  font-family: var(--aptos); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.2); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-privacy:hover { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.3); }
.footer-soc { display: flex; gap: 18px; }
.footer-soc a { font-family: var(--aptos); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.22); text-decoration: none; transition: color .2s; }
.footer-soc a:hover { color: var(--red); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .nav-text strong { font-size: 13px; }
  .nav-text span { display: none; }
  .nav-menu { width: 100vw; }
  .nav-menu-primary { width: 48%; }
}
@media (max-width: 900px) {
  .hero-content { padding: 0 24px 64px; }
  .hero-stats { display: none; }
  .section { padding: 64px 24px; }
  .result-band { padding: 24px; flex-wrap: wrap; gap: 12px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:first-child { grid-row: span 1; }
  .news-card:first-child .news-body { position: relative; background: var(--grey-dark); padding: 22px 26px 26px; }
  .news-card:first-child .news-img-placeholder { position: relative; height: auto; aspect-ratio: 16/10; }
  .stadium-sect { grid-template-columns: 1fr; }
  .stadium-img-wrap { min-height: 280px; }
  .fixture-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; text-align: center; }
  .fix-team.away { align-items: center; }
  .fix-mid { order: -1; }
  .community-inner { grid-template-columns: 1fr; }
  .partners-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .partners-divider { display: none; }
  .partners-cta { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .com-grid { grid-template-columns: 1fr 1fr; }
}
.partner-logo {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}