/* =========================================================
   BIG League — Boules in Gwent  |  styles.css
   ========================================================= */

:root {
  --sky:       #2A72B8;
  --sky-mid:   #3D8DD4;
  --sky-light: #6BAEE0;
  --sky-pale:  #D6EAFA;
  --sky-wash:  #EEF6FD;
  --navy:      #122A4A;
  --white:     #FFFFFF;
  --off-white: #F7FAFD;
  --stone:     #EAF0F6;
  --text:      #1C2B3A;
  --text-mid:  #3D5570;
  --text-soft: #6B85A0;
  --accent:    #D4A017;
  --accent2:   #F0C84A;
  --green:     #1E8A4A;
  --red:       #C0392B;
  --border:    rgba(42,114,184,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 62px;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 62px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 1rem;
  overflow: visible;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 900;
  color: var(--navy); cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
  text-decoration: none; flex-shrink: 0; margin-right: 0.5rem;
}

.nav-badge {
  background: var(--sky); color: #fff;
  padding: 2px 6px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em;
}

.nav-links { display: flex; gap: 0; list-style: none; flex: 1; overflow: visible; }

.nav-links li a {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft); text-decoration: none;
  padding: 0 0.45rem; height: 62px; line-height: 62px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s; white-space: nowrap;
}

.nav-links li a:hover { color: var(--sky); }
.nav-links li a.active { color: var(--sky); border-bottom-color: var(--sky); }

.nav-cta { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--sky); transition: all 0.3s; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-dropdown > a {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft); text-decoration: none;
  padding: 0 0.45rem; height: 62px; line-height: 62px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s; white-space: nowrap;
}
.nav-dropdown > a:hover { color: var(--sky); }
.nav-dropdown > a.active { color: var(--sky); border-bottom-color: var(--sky); }

.nav-dropdown-menu {
  display: none;
  position: absolute; top: 62px; left: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-top: 2px solid var(--sky);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  list-style: none; min-width: 160px; z-index: 9999;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-mid); text-decoration: none;
  padding: 0.75rem 1.2rem;
  height: auto; line-height: 1.4;
  border-bottom: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li:not(:last-child) a { border-bottom: 1px solid var(--border); }
.nav-dropdown-menu li a:hover { background: var(--sky-wash); color: var(--sky); }

/* ── MOBILE MENU ── */
.mob-menu {
  position: fixed; top: 62px; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.98); padding: 1.5rem;
  display: none; flex-direction: column; gap: 1px;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mob-menu.open { display: flex; }

.mob-menu a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-mid); text-decoration: none;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-menu a:hover, .mob-menu a.active { color: var(--sky); }

.mob-archive-toggle {
  cursor: pointer;
  user-select: none;
}
.mob-menu #mob-archive-sub {
  display: none;
}
.mob-menu #mob-archive-sub.open {
  display: flex;
  flex-direction: column;
}
.mob-archive-sub a {
  font-size: 0.68rem;
  color: var(--text-soft);
  padding: 0.6rem 0;
}

/* ── TICKER ── */
.ticker {
  background: var(--sky); overflow: hidden;
  height: 42px; display: flex; align-items: center;
}
.ticker-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--navy); color: #fff;
  padding: 0 1.4rem; height: 100%;
  display: flex; align-items: center; flex-shrink: 0; font-weight: 700;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tick 30s linear infinite;
}
.ticker-item {
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem; color: #fff; letter-spacing: 0.08em;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.25);
  height: 42px; line-height: 42px;
}
.ticker-item strong { color: var(--accent2); }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.8rem 1.8rem; border: 2px solid var(--sky);
  color: var(--sky); background: none; cursor: pointer;
  transition: all 0.22s; text-decoration: none;
}
.btn:hover { background: var(--sky); color: #fff; }
.btn-solid { background: var(--sky); color: #fff; }
.btn-solid:hover { background: #1e5ea0; border-color: #1e5ea0; }
.btn-hero {
  background: var(--sky); color: #fff; border: 2px solid var(--sky);
  font-family: 'Courier Prime', monospace; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.85rem 2rem; cursor: pointer; transition: all 0.22s; text-decoration: none;
}
.btn-hero:hover { background: #1e5ea0; border-color: #1e5ea0; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: 'Courier Prime', monospace; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.85rem 2rem; cursor: pointer; transition: all 0.22s; text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── SECTIONS ── */
.section { padding: 5.5rem 2.5rem; }
.bg-light  { background: var(--off-white); }
.bg-stone  { background: var(--stone); }
.bg-sky    { background: var(--sky-wash); }
.bg-navy   { background: var(--navy); }

.section-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sky); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-tag::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--border), transparent); }
.section-tag.on-navy { color: var(--sky-light); }
.section-tag.on-navy::after { background: linear-gradient(to right, rgba(255,255,255,0.15), transparent); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--navy); margin-bottom: 0.8rem;
}
.section-title.white { color: #fff; }
.section-sub { color: var(--text-soft); font-size: 1rem; max-width: 520px; margin-bottom: 3rem; font-weight: 300; }
.section-sub.white { color: rgba(255,255,255,0.6); }

/* ── PAGE BANNERS ── */
.page-banner {
  height: 240px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,42,74,0.88) 0%, rgba(18,42,74,0.35) 100%);
  z-index: 1;
}
.banner-text { position: relative; z-index: 2; padding: 2rem 2.5rem; }
.banner-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sky-light); margin-bottom: 0.5rem;
}
.banner-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; color: #fff; line-height: 1;
}

/* ── ILLUSTRATED CSS SCENES ── */
.scene-hero {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120px 50px at 20% 20%, rgba(255,255,255,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 80px 35px at 30% 18%, rgba(255,255,255,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 150px 60px at 70% 15%, rgba(255,255,255,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 90px 40px at 80% 12%, rgba(255,255,255,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 95%, #2d6e2d 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 20% 100%, #3a7a3a 0%, transparent 55%),
    radial-gradient(ellipse 70% 30% at 50% 100%, #4a8c40 0%, transparent 45%),
    radial-gradient(ellipse 200px 200px at 85% 25%, rgba(255,200,80,0.3) 0%, transparent 60%),
    linear-gradient(175deg, #1a5fa8 0%, #3a8fd4 30%, #62aee8 60%, #a8d4f5 80%, #c8e8f0 100%);
}
.scene-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18,42,74,0.82) 0%, rgba(18,42,74,0.6) 50%, rgba(18,42,74,0.1) 100%);
}
.scene-boules {
  background:
    radial-gradient(circle 22px at 42% 58%, #c0c0c0 0%, #888 35%, #555 100%),
    radial-gradient(circle 22px at 57% 42%, #d0d0d0 0%, #999 35%, #666 100%),
    radial-gradient(circle 22px at 32% 38%, #b8b8b8 0%, #808080 35%, #505050 100%),
    radial-gradient(circle 22px at 65% 62%, #c8c8c8 0%, #909090 35%, #585858 100%),
    radial-gradient(circle 13px at 50% 50%, #e8c840 0%, #b09010 45%, #806808 100%),
    repeating-radial-gradient(circle 3px at 15% 25%, rgba(140,110,80,0.25) 0%, transparent 4px),
    repeating-radial-gradient(circle 2px at 70% 30%, rgba(120,90,60,0.2) 0%, transparent 3px),
    linear-gradient(155deg, #d0bc9a 0%, #c0a880 30%, #d8c4a0 60%, #c8b090 100%);
}
.scene-grass {
  background:
    radial-gradient(ellipse 40% 30% at 15% 100%, #1a5c1a 0%, transparent 60%),
    radial-gradient(ellipse 50% 25% at 85% 100%, #228822 0%, transparent 55%),
    radial-gradient(ellipse 60% 20% at 50% 100%, #2a7a2a 0%, transparent 45%),
    radial-gradient(circle 70px at 80% 25%, rgba(255,215,80,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 160px 80px at 20% 18%, rgba(255,255,255,0.5) 0%, transparent 70%),
    linear-gradient(180deg, #4a9ad8 0%, #72b8e8 35%, #9ed0f2 60%, #c4e4d8 80%, #a8d898 100%);
}
.scene-navy-grid {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(255,255,255,0.04) 38px, rgba(255,255,255,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,0.03) 120px, rgba(255,255,255,0.03) 122px),
    linear-gradient(135deg, #1a3a6a 0%, #2255a0 40%, #1a4a8a 70%, #0e2850 100%);
}
.scene-midnight {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(42,114,184,0.5) 0%, transparent 65%),
    radial-gradient(circle 3px at 20% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(circle 2px at 40% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(circle 3px at 65% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(circle 2px at 80% 70%, rgba(255,255,255,0.4) 0%, transparent 100%),
    linear-gradient(155deg, #0e2244 0%, #1a3a70 45%, #2255a4 80%, #1a4a8a 100%);
}
.scene-forest {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px),
    linear-gradient(160deg, #1a2a1a 0%, #1e3e1e 30%, #1a3a2a 60%, #0e2218 100%);
}
.scene-wales {
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, #2a5a2a 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 15% 80%, #3a7a3a 0%, transparent 50%),
    radial-gradient(ellipse 35% 55% at 80% 75%, #2e682e 0%, transparent 45%),
    radial-gradient(ellipse 180px 100px at 25% 18%, rgba(255,255,255,0.45) 0%, transparent 70%),
    radial-gradient(circle 80px at 75% 20%, rgba(255,215,80,0.3) 0%, transparent 60%),
    linear-gradient(170deg, #3a8aba 0%, #5aaad8 25%, #7ec0e8 45%, #a8d8f4 65%, #c0e4d8 80%, #a0c898 100%);
}

/* ── VENUE CARD IMAGES ── */
.vimg { width: 100%; height: 180px; display: block; position: relative; overflow: hidden; flex-shrink: 0; }
.vimg-wheatsheaf {
  background:
    radial-gradient(ellipse 50% 30% at 25% 100%, #1a5c1a 0%, transparent 60%),
    radial-gradient(ellipse 40% 25% at 75% 100%, #228822 0%, transparent 55%),
    radial-gradient(circle 60px at 80% 25%, rgba(255,210,80,0.4) 0%, transparent 65%),
    radial-gradient(ellipse 150px 80px at 15% 20%, rgba(255,255,255,0.45) 0%, transparent 70%),
    linear-gradient(180deg, #5aaae0 0%, #82c0e8 50%, #b0d8f0 75%, #d0e8d0 100%);
}
.vimg-rfc {
  background:
    linear-gradient(to bottom, transparent 10%, rgba(255,255,255,0.15) 10%, rgba(255,255,255,0.15) 12%, transparent 12%) 50% 0/4px 50% no-repeat,
    linear-gradient(to right, transparent 35%, rgba(255,255,255,0.15) 35%, rgba(255,255,255,0.15) 65%, transparent 65%) 50% 25%/100% 3px no-repeat,
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px),
    linear-gradient(180deg, #4a90c8 0%, #6aaad8 30%, #2a7e2a 55%, #1e6e1e 100%);
}
.vimg-redlion {
  background:
    radial-gradient(ellipse 40% 20% at 50% 100%, #5c3a1a 0%, transparent 60%),
    radial-gradient(circle 50px at 78% 30%, rgba(255,200,60,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 100px 60px at 25% 20%, rgba(255,255,255,0.4) 0%, transparent 70%),
    linear-gradient(180deg, #c04020 0%, #d06030 20%, #e08040 35%, #f0c080 55%, #c89050 70%, #a06828 100%);
}
.vimg-starinn {
  background:
    radial-gradient(ellipse 70% 30% at 50% 100%, #3a7a3a 0%, transparent 55%),
    radial-gradient(circle 80px at 70% 20%, rgba(255,215,80,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 130px 70px at 20% 15%, rgba(255,255,255,0.5) 0%, transparent 70%),
    linear-gradient(175deg, #5ab0e8 0%, #78c0f0 40%, #a0d4f8 65%, #c8ecd8 85%, #a8d898 100%);
}
.vimg-ponthir {
  background:
    radial-gradient(ellipse 80% 25% at 50% 100%, #555 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.05) 28px, rgba(255,255,255,0.05) 30px),
    linear-gradient(170deg, #8a7060 0%, #a08070 30%, #b89080 55%, #d0b8a0 100%);
}
.vimg-rising {
  background:
    radial-gradient(circle 70px at 75% 30%, rgba(255,180,40,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 20% 100%, #2a6e2a 0%, transparent 55%),
    radial-gradient(ellipse 180px 80px at 30% 18%, rgba(255,255,255,0.4) 0%, transparent 70%),
    linear-gradient(180deg, #e08020 0%, #f0a840 30%, #80b850 55%, #3a8830 80%, #2a6820 100%);
}
.vimg-ffrwd {
  background:
    radial-gradient(ellipse 40% 20% at 50% 100%, #2a4a8a 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 12px),
    linear-gradient(160deg, #8a2010 0%, #a83020 20%, #c04828 40%, #d86030 55%, #e8784a 70%, #c06030 100%);
}
.vimg-pilcs {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.06) 30px, rgba(255,255,255,0.06) 32px),
    linear-gradient(175deg, #2244a0 0%, #3358b8 25%, #4472cc 50%, #2a5aaa 100%);
}
.vimg-monmouth {
  background:
    radial-gradient(ellipse 60% 35% at 50% 100%, #2a5a2a 0%, transparent 55%),
    radial-gradient(ellipse 120px 80px at 70% 30%, rgba(100,140,100,0.4) 0%, transparent 60%),
    linear-gradient(165deg, #4a9a60 0%, #62aa70 25%, #80bc88 45%, #78a870 80%, #508050 100%);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: calc(100vh - 62px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; padding: 5rem 4rem; max-width: 700px; }
.hero-eyebrow {
  font-family: 'Courier Prime', monospace; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky-light); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sky-light); display: inline-block; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 900;
  line-height: 0.92; letter-spacing: -0.01em; color: #fff; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--sky-light); display: block; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-lbl { font-family: 'Courier Prime', monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── SCENE STRIP ── */
.scene-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 260px; gap: 4px; }
.scene-strip-item { position: relative; overflow: hidden; }
.scene-strip-item .scene-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(18,42,74,0.7), transparent);
  font-family: 'Courier Prime', monospace; font-size: 0.58rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.9);
}
.strip-boules {
  background:
    radial-gradient(circle 22px at 42% 58%, #c0c0c0 0%, #888 35%, #555 100%),
    radial-gradient(circle 22px at 57% 42%, #d0d0d0 0%, #999 35%, #666 100%),
    radial-gradient(circle 22px at 32% 38%, #b8b8b8 0%, #808080 35%, #505050 100%),
    radial-gradient(circle 13px at 50% 50%, #e8c840 0%, #b09010 45%, #806808 100%),
    linear-gradient(155deg, #d0bc9a 0%, #c0a880 30%, #d8c4a0 60%, #c8b090 100%);
}
.strip-grass {
  background:
    radial-gradient(ellipse 40% 30% at 15% 100%, #1a5c1a 0%, transparent 60%),
    radial-gradient(ellipse 60% 20% at 50% 100%, #2a7a2a 0%, transparent 45%),
    radial-gradient(circle 70px at 80% 25%, rgba(255,215,80,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 160px 80px at 20% 18%, rgba(255,255,255,0.5) 0%, transparent 70%),
    linear-gradient(180deg, #4a9ad8 0%, #72b8e8 35%, #9ed0f2 60%, #c4e4d8 80%, #a8d898 100%);
}
.strip-wales {
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, #2a5a2a 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 15% 80%, #3a7a3a 0%, transparent 50%),
    radial-gradient(ellipse 180px 100px at 25% 18%, rgba(255,255,255,0.45) 0%, transparent 70%),
    radial-gradient(circle 80px at 75% 20%, rgba(255,215,80,0.3) 0%, transparent 60%),
    linear-gradient(170deg, #3a8aba 0%, #5aaad8 25%, #7ec0e8 45%, #a8d8f4 65%, #a0c898 100%);
}

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: 1.6fr 1fr; border: 1px solid var(--border); }
.news-right { display: flex; flex-direction: column; }
.news-card { padding: 2.2rem; transition: background 0.2s; cursor: pointer; border-bottom: 1px solid var(--border); }
.news-card:last-child { border-bottom: none; }
.news-card.featured { border-right: 1px solid var(--border); border-bottom: none; }
.news-card:hover { background: var(--sky-wash); }
.news-pill {
  display: inline-block; font-family: 'Courier Prime', monospace;
  font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--sky-pale); color: var(--sky);
  padding: 3px 9px; margin-bottom: 0.9rem; border-radius: 2px;
}
.news-date { font-family: 'Courier Prime', monospace; font-size: 0.58rem; color: var(--text-soft); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.news-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; line-height: 1.1; color: var(--navy); margin-bottom: 0.6rem; }
.news-card.featured h3 { font-size: 1.9rem; }
.news-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ── QUICK LINKS ── */
.ql-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2rem; }
.ql-card {
  background: #fff; border: 1px solid var(--border); padding: 2rem 1.6rem;
  cursor: pointer; transition: all 0.22s; box-shadow: 0 2px 10px rgba(42,114,184,0.06);
  text-decoration: none; display: block;
}
.ql-card:hover { border-color: var(--sky-mid); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(42,114,184,0.13); }
.ql-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.ql-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.ql-desc { font-size: 0.82rem; color: var(--text-soft); }

/* ── DIVISIONS ── */
.div-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.div-card {
  background: #fff; border: 1px solid var(--border); padding: 2rem 1.6rem;
  position: relative; overflow: hidden; transition: all 0.25s; cursor: pointer;
  box-shadow: 0 2px 8px rgba(42,114,184,0.05);
}
.div-card:hover { border-color: var(--sky-mid); box-shadow: 0 8px 28px rgba(42,114,184,0.13); transform: translateY(-4px); }
.div-card-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--sky), var(--sky-light)); }
.div-bg { position: absolute; right: -8px; bottom: -10px; font-family: 'Playfair Display', serif; font-size: 6.5rem; font-weight: 900; line-height: 1; color: rgba(42,114,184,0.05); pointer-events: none; user-select: none; }
.div-lbl { font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.4rem; }
.div-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 1.3rem; }
.div-teams { list-style: none; display: flex; flex-direction: column; gap: 0.38rem; }
.div-teams li { font-size: 0.84rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; }
.div-teams li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--sky-light); flex-shrink: 0; }
.div-footer { margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--border); font-family: 'Courier Prime', monospace; font-size: 0.58rem; color: var(--text-soft); }

/* ── CUPS ── */
.cups-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.cup-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 2rem; }
.cup-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.cup-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.cup-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.cup-winner { font-family: 'Courier Prime', monospace; font-size: 0.62rem; color: var(--accent2); }

/* ── LEAGUE TABLES ── */
.tab-bar { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.tab-btn {
  font-family: 'Courier Prime', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; background: none; border: none; color: var(--text-soft);
  cursor: pointer; position: relative; transition: color 0.2s;
}
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--sky); transform: scaleX(0); transition: transform 0.3s; }
.tab-btn.active { color: var(--sky); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--sky-mid); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.league-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.league-table th {
  text-align: left; padding: 0.7rem 1rem; color: var(--sky);
  font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: 2px solid var(--border); font-weight: 700; background: var(--sky-wash);
}
.league-table th.c, .league-table td.c { text-align: center; }
.league-table th.r, .league-table td.r { text-align: right; }
.league-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.league-table tbody tr:hover { background: var(--sky-wash); }
.league-table td { padding: 0.8rem 1rem; color: var(--text-mid); vertical-align: middle; }
.td-pos { color: var(--text-soft); width: 2.2rem; font-family: 'Courier Prime', monospace; }
.td-team { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.td-pts { color: var(--sky) !important; font-weight: 700; font-family: 'Courier Prime', monospace; font-size: 0.88rem; }
.row-promo { border-left: 4px solid var(--green); }
.row-relg  { border-left: 4px solid var(--red); }
.t-legend { display: flex; gap: 2rem; margin-top: 1.2rem; font-size: 0.78rem; color: var(--text-soft); }
.tleg { display: flex; align-items: center; gap: 0.5rem; }
.tleg-bar { width: 16px; height: 14px; border-left: 4px solid; }
.tleg-bar.g { border-color: var(--green); }
.tleg-bar.r { border-color: var(--red); }

/* ── FIXTURES & RESULTS ── */
.fix-filters { display: flex; gap: 0.5rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.ffbtn {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--border); background: #fff; color: var(--text-soft);
  cursor: pointer; transition: all 0.2s;
}
.ffbtn.active, .ffbtn:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-pale); }

.fix-list { border: 1px solid var(--border); overflow: hidden; }
.fix-row {
  display: grid; grid-template-columns: 150px 1fr 80px 1fr 110px;
  align-items: center; padding: 0.95rem 1.5rem;
  border-bottom: 1px solid var(--border); background: #fff; transition: background 0.15s;
}
.fix-row:last-child { border-bottom: none; }
.fix-row:hover { background: var(--sky-wash); }
.fix-row.fix-head { background: var(--sky-wash); cursor: default; }
.fix-row.fix-head div { font-family: 'Courier Prime', monospace; font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sky); font-weight: 700; }
.fix-date { font-family: 'Courier Prime', monospace; font-size: 0.6rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.fix-home { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); text-align: right; padding-right: 1rem; }
.fix-away { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); text-align: left; padding-left: 1rem; }
.fix-vs { font-family: 'Courier Prime', monospace; font-size: 0.58rem; color: var(--sky); text-align: center; letter-spacing: 0.12em; border: 1px solid var(--border); padding: 4px 0; background: var(--sky-pale); }
.fix-score { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--sky); text-align: center; }
.fix-divlbl { font-family: 'Courier Prime', monospace; font-size: 0.58rem; color: var(--text-soft); text-align: right; }
.res-row { background: var(--sky-wash); }
.res-row:hover { background: var(--sky-pale) !important; }
.fix-note { margin-top: 1.2rem; font-family: 'Courier Prime', monospace; font-size: 0.62rem; color: var(--text-soft); }
.fix-note a { color: var(--sky); }

/* ── VENUES ── */
.venues-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.venue-card {
  background: #fff; border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 2px 10px rgba(42,114,184,0.06); transition: all 0.25s;
  display: flex; flex-direction: column;
}
.venue-card:hover { box-shadow: 0 8px 28px rgba(42,114,184,0.14); transform: translateY(-3px); }
.venue-body { padding: 1.5rem; flex: 1; }
.venue-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.venue-loc { font-family: 'Courier Prime', monospace; font-size: 0.57rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sky); margin-bottom: 0.8rem; }
.venue-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.8rem; }
.venue-detail { font-family: 'Courier Prime', monospace; font-size: 0.6rem; color: var(--text-soft); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; }
.venue-detail strong { color: var(--text); }

/* ── NEWS FULL PAGE ── */
.nf-card { background: #fff; border: 1px solid var(--border); padding: 2.2rem; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(42,114,184,0.04); }
.nf-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.nf-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.nf-card p + p { margin-top: 0.6rem; }
.nf-card a { color: var(--sky); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.cp-card { background: #fff; border: 1px solid var(--border); padding: 1.8rem; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(42,114,184,0.05); }
.cp-role { font-family: 'Courier Prime', monospace; font-size: 0.57rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sky); margin-bottom: 0.3rem; }
.cp-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.cp-detail { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.25rem; }
.cp-detail a { color: var(--sky); text-decoration: none; }
.cp-detail a:hover { text-decoration: underline; }
.cp-note { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.7rem; font-style: italic; }
.contact-box { background: var(--sky-wash); border: 1px solid var(--border); padding: 2rem; margin-bottom: 1.2rem; }
.contact-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.contact-box p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.2rem; }
.contact-box .note { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.8rem; font-family: 'Courier Prime', monospace; line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 3.5rem 2.5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 0.5rem; }
.footer-tag { font-style: italic; color: rgba(255,255,255,0.35); font-size: 0.95rem; margin-bottom: 1.4rem; }
.footer-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-nav a { font-family: 'Courier Prime', monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--sky-light); }
.footer-right { font-family: 'Courier Prime', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.35); text-align: right; line-height: 2; }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.sr.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 3rem 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { border-right: none; }
  .div-grid { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .ql-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cups-row { grid-template-columns: 1fr; }
  .scene-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .scene-strip-item { height: 200px; }
  footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .fix-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 1rem; }
  .fix-home { text-align: left; padding-right: 0; }
}
@media (max-width: 600px) {
  .div-grid, .venues-grid, .ql-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.5rem; }
  .scene-strip { grid-template-columns: 1fr; }
  .scene-strip-item { height: 180px; }
}
