/* =====================================================================
   CLUB CRICKET CONFERENCE — v5 (monochrome editorial)
   Ink + paper. Hero retains the video; everything else is neutral.
   ===================================================================== */

:root {
  /* Green + white palette — every brand token aliased to a green tone */
  --red:        #0a3b2c;   /* primary mark (was red/black) → CCC green */
  --red-deep:   #062318;
  --red-bright: #14543f;
  --sky:        #0a3b2c;
  --sky-light:  #eef4f0;
  --yellow:     #2d6e4f;   /* mid-green replaces gold accent */
  --yellow-deep:#0a3b2c;
  --black:      #0a3b2c;   /* dark surfaces lean green, not black */
  --ink:        #1a1a18;
  --ink-soft:   #3a4a42;
  --ink-mute:   #5a6c63;
  --grey-line:  #d6e2db;
  --grey-bg:    #f4f8f5;
  --grey-card:  #ffffff;
  --gold:       #2d6e4f;   /* green token alias */

  /* Hero palette — outfield green + cricket-white cream */
  --turf:        #14543f;
  --turf-deep:   #062318;
  --sage:        #2d6e4f;
  --wheat:       #d6e2db;
  --cream:       #f4f8f5;
  --cream-soft:  #f4f8f5;
  /* legacy blue tokens repointed to the new palette so older selectors keep working */
  --blue:        var(--turf-deep);
  --blue-deep:   var(--turf-deep);
  --blue-bright: var(--cream);
  --blue-pale:   var(--cream-soft);
  --brick:       #8a5a3a;

  --font-display: 'Anton', 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-cond:    'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Montserrat', system-ui, -apple-system, sans-serif;

  --max:    1280px;
  --gutter: clamp(20px, 3.5vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
p { font-size: 18px; line-height: 1.7; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

.skip {
  position: absolute; top: -100px; left: 12px; z-index: 999;
  background: var(--red); color: #fff;
  padding: 10px 16px; border-radius: 4px;
  font-size: 12px; font-weight: 700;
}
.skip:focus { top: 12px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
  min-height: 48px;
}
.btn--sm { padding: 11px 20px; font-size: 13.5px; min-height: 44px; }
.btn--red {
  background: var(--red);
  color: #fff;
}
.btn--red:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.matches .btn--red, .nav .btn--ghost {}
.nav .btn--ghost { color: var(--ink); border-color: var(--grey-line); }
.nav .btn--ghost:hover { background: var(--grey-bg); }

/* =========================================================
   TOP SPONSOR STRIP — hidden in v5 for a calmer first impression
   ========================================================= */
.topstrip { display: none; }
.topstrip--legacy {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 8px 0;
}
.topstrip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topstrip__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.topstrip__logo {
  color: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  height: 18px;
}
.topstrip__logo svg { height: 18px; width: auto; }
.topstrip__logo:hover { color: #fff; }
.topstrip__divider {
  width: 1px; height: 14px; background: rgba(255,255,255,0.18);
}
@media (max-width: 720px) {
  .topstrip { font-size: 10px; padding: 7px 0; }
  .topstrip__divider { display: none; }
  .topstrip__label { display: none; }
  .topstrip__inner { gap: 18px; justify-content: center; }
}

/* =========================================================
   MAIN NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(10, 59, 44, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.25s, border-color 0.25s;
}
.nav::before { display: none; }
/* Reserve space so non-hero pages don't slide under the fixed nav */
body:not(.has-hero) main { padding-top: 112px; }

/* Homepage (hero video pages) — let the nav melt away into the video */
body.has-hero .nav {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero .nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,35,24,0.45) 0%, rgba(6,35,24,0) 100%);
  pointer-events: none;
  z-index: -1;
}
/* Once scrolled past the hero, the nav fills back in so links stay readable */
body.has-hero.is-scrolled .nav {
  background: rgba(10, 59, 44, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
body.has-hero.is-scrolled .nav::after { display: none; }
.nav .nav__logo { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4)); }
.nav .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.nav .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.nav__inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 112px;
  gap: 40px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  display: block;
  height: 96px;
  width: 228px;
  max-width: 54vw;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}
.badge { width: 44px; height: 44px; flex-shrink: 0; }
.badge svg { width: 100%; height: 100%; }
.badge--lg { width: 56px; height: 56px; }
.nav__name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.5px;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.nav__name small {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--yellow);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: visible;
}
.nav__links a {
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 22px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -1px;
  height: 2px;
  background: var(--cream);
  transition: right 0.25s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: #fff; }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }

/* Dropdown panels */
.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav__item > a .nav__chev { font-size: 9px; color: rgba(255,255,255,0.5); transition: color 0.2s, transform 0.2s; }
.nav__item:hover > a .nav__chev,
.nav__item:focus-within > a .nav__chev { color: var(--cream); transform: translateY(1px); }
.nav__item::after {
  /* Invisible hover bridge between trigger and panel so the dropdown stays open while the cursor crosses the gap */
  content: '';
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 14px;
}
.nav__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 240px;
  background: rgba(20,20,18,0.97);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--cream);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
  z-index: 110;
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__panel a {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.88);
  text-transform: none;
  text-decoration: none;
  position: static;
  transition: background 0.15s, color 0.15s;
}
.nav__panel a::after { display: none; }
.nav__panel a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav__panel-label {
  display: block;
  padding: 8px 18px 6px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.7;
}
.nav__panel-divider {
  display: block;
  height: 1px;
  margin: 6px 14px;
  background: var(--grey-line);
}
.nav__panel--wide { min-width: 260px; right: -16px; left: auto; }

.nav__cta { display: flex; gap: 8px; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 4px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--ink);
}
.nav__burger:hover { background: var(--grey-bg); }

@media (max-width: 1500px) {
  .nav__name { font-size: 16px; }
  .nav__links { gap: 10px; }
  .nav__links a { font-size: 11px; }
  .nav__cta .btn { padding: 8px 12px; font-size: 11px; }
}
@media (max-width: 1080px) {
  .nav__links { gap: 10px; }
  .nav__links a { font-size: 11px; }
  .nav__name { font-size: 13px; }
  .badge { width: 36px; height: 36px; }
  .nav__inner { gap: 14px; }
}
@media (max-width: 880px) {
  /* Hide the cluttered top sponsor strip on mobile */
  .topstrip { display: none; }

  /* Sticky floating nav — follows scroll so menu is always reachable */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    border-bottom: 0;
    z-index: 80;
  }
  .nav__inner { height: 88px; }
  /* On hero pages, fill the nav background once the user scrolls past the hero */
  body.has-hero.is-scrolled .nav {
    background: rgba(10, 59, 44, 0.96);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  /* Non-hero pages need a solid bg from the start (no hero behind) */
  body:not(.has-hero) .nav {
    background: rgba(10, 59, 44, 0.96);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__inner {
    grid-template-columns: 1fr auto;
    height: 104px;
    padding: 12px 18px;
    gap: 12px;
  }
  /* Bigger logo on phones — owners' logo is the brand mark */
  .nav__brand { gap: 0; }
  .nav__name { display: none; }
  .nav .nav__logo, .nav__logo {
    /* Stepped sizing — explicit width/height, no clamp or aspect-ratio so
       older mobile Safari and unusual phone widths can't blow it up. */
    height: 88px;
    width: 209px;
    max-width: 56vw;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
  }
  @media (max-width: 359px) {
    .nav__logo { height: 60px; width: 142px; }
  }
  .badge { width: 36px; height: 36px; }

  /* Burger pinned to top-right corner */
  .nav__burger {
    display: flex;
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.32);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s;
  }
  .nav__burger:hover,
  .nav__burger:focus-visible { background: rgba(0,0,0,0.55); }
  .nav__burger span { background: #fff; }

  .nav__sectionlabel {
    display: block;
    color: var(--cream);
    opacity: 0.55;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 0 20px 18px;
  }
  /* Full-page editorial drawer with categorised, numbered sections */
  .nav__links {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(12,12,11,0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 8px 32px;
    transform: translateY(-110%);
    transition: transform 0.32s ease;
    border-bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__chev { display: none; }
  .nav__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 16px;
    width: 36px;
    color: var(--cream);
    opacity: 0.6;
    flex-shrink: 0;
    text-transform: lowercase;
  }
  .nav__item--alt .nav__num { color: var(--cream); opacity: 0.9; }

  .nav__cta { display: none; }
  .nav__item { display: block; width: 100%; }
  .nav__item::after { display: none; }
  .nav__item > a {
    display: flex !important;
    align-items: center;
    gap: 16px;
    width: 100%;
    color: #fff;
    padding: 22px 20px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.01em;
    text-align: left;
    background: transparent;
    min-height: 64px;
  }
  .nav__item > a:hover,
  .nav__item > a:focus-visible { background: rgba(255,255,255,0.04); }
  .nav__item > a::after { display: none; }
  .nav__label { flex: 1; }

  .nav__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 4px 0 14px 48px;
    margin-right: 20px;
    border-left: 1px solid rgba(241,234,215,0.18);
    margin-left: 34px;
  }
  .nav__panel a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.4;
    padding: 12px 0;
    text-align: left;
    background: transparent;
    border: 0;
    display: block;
  }
  .nav__panel a:hover {
    background: transparent;
    color: var(--cream);
    padding-left: 4px;
  }
  .nav__panel-label {
    display: block;
    color: var(--cream);
    opacity: 0.65;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 0 6px;
  }
  .nav__panel-divider { display: none; }
  .nav__panel--wide { right: auto; left: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 780px);
  background: var(--black);
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__media img,
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  filter: brightness(0.68) saturate(1.08);
  display: block;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,30,10,0.30) 0%, rgba(15,30,10,0.05) 35%, rgba(10,20,8,0.94) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(31,58,23,0.35), transparent 60%);
}
.hero__veil::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cream) 50%, transparent 100%);
  opacity: 0.55;
}
.hero__content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px var(--gutter) 56px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  max-width: 720px;
}
.hero h1 + .hero__sub { margin-top: 6px; }
.hero__pill {
  display: inline-block;
  background: rgba(10,59,44,0.32);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  margin-bottom: 22px;
  align-self: flex-start;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 6px 20px -10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--cream); text-shadow: 0 2px 12px rgba(31,58,23,0.6); }
.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255,255,255,0.92);
  max-width: 58ch;
  margin: 22px 0 32px;
  line-height: 1.6;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(31,58,23,0.85);
  color: var(--cream);
  width: 60px; height: 60px;
  border-radius: 4px;
  justify-content: center;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,0.55);
  border: 1px solid rgba(241,234,215,0.22);
  backdrop-filter: blur(4px);
}
.hero__date strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.hero__date span {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero__next {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 280px;
  background: rgba(10,59,44,0.32);
  color: #fff;
  padding: 24px 26px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero__next-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.hero__next-when {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
}
.hero__next-teams {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}
.hero__next-teams span {
  font-family: var(--font-cond);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 0 4px;
}
.hero__next-where {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}
.hero__next-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}

@media (max-width: 980px) {
  .hero__next {
    position: static;
    transform: none;
    width: auto;
    max-width: 360px;
    margin: 24px var(--gutter) 0;
  }
  .hero { height: auto; padding-bottom: 0; }
  .hero__content { padding-bottom: 32px; }
}
@media (max-width: 640px) {
  /* Mobile hero stack order (top → bottom):
       1. £50 BACK FOR EVERY £1 INVESTED   (headline first)
       2. MEMBERSHIP VALUE                 (pill, with breathing room)
       3. Intro paragraph                  (auto-pushed near the bottom)
       4. JOIN THE CCC button              (lands near the bottom edge) */
  .hero__next { display: none; }
  .hero__date { display: none; }
  .hero {
    height: 100svh;
    height: 100vh;
    min-height: 600px;
  }
  .hero__content {
    height: 100%;
    padding-top: 132px;
    padding-bottom: 32px;
    justify-content: flex-start;
  }
  .hero h1     { order: 1; margin: 0; }
  .hero__pill  { order: 2; margin: 28px 0 4px; }
  .hero__sub,
  .hero h1 + .hero__sub { order: 3; margin-top: auto; margin-bottom: 22px; }
  .hero__meta  { order: 4; gap: 0; }
  .hero__sub {
    font-size: 17px;
    line-height: 1.55;
    max-width: 36ch;
  }
}

/* =========================================================
   SECTION HEAD (consistent across sections)
   ========================================================= */
.section-head {
  max-width: var(--max);
  margin: 0 auto 32px;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 16px;
  gap: 6px;
}
.section-head__more {
  align-self: flex-start;
  margin-top: 6px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
}
.section-head__more {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.section-head__more:hover { color: var(--red-deep); }
.section-head__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 8px;
  flex-basis: 100%;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
  border-top: 3px solid var(--red);
  padding-top: 22px;
}
.section-head--center h2 { margin-bottom: 4px; }

/* =========================================================
   NEWS
   ========================================================= */
.news,
.matches,
.media,
.sponsors,
.bands {
  padding: 64px 0;
}
.media { display: none; }

@media (max-width: 640px) {
  .news, .matches, .sponsors, .bands { padding: 36px 0; }
  .affiliations { padding-top: 22px; padding-bottom: 22px; }
  .section-head { margin-bottom: 22px; padding-bottom: 12px; }
  .card__body { padding: 20px 22px 22px; }
  .card__media { aspect-ratio: 16 / 10; }
  /* Show only the first two news cards on phones */
  #news .news__grid .card:nth-child(n+3) { display: none; }
  /* Match list: trim to the next four fixtures only */
  .match-list li:nth-child(n+5) { display: none; }
  /* Solutions: 4 of six on the home page is plenty */
  .solutions__grid > a:nth-child(n+5) { display: none; }
  .band { padding: 28px 24px; }
  .band h3 { font-size: 22px; }
  .band p { font-size: 14px; }
}
.section--alt { background: var(--grey-bg); }

.news__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(26,26,46,0.18);
}
.card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--grey-bg);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.card__cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.card__date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 980px) { .news__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .news__grid { grid-template-columns: 1fr; } }

/* =========================================================
   MATCHES
   ========================================================= */
.matches__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.match {
  background: #fff;
  border: 1px solid var(--grey-line);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.match__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.match__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.match__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.match__crest { width: 60px; height: 60px; }
.match__crest svg { width: 100%; height: 100%; }
.match__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.match__form {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.match__vs {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
}
.match__meta {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  display: flex; gap: 8px; justify-content: center;
}

.match-list {
  list-style: none;
  background: #fff;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  overflow: hidden;
}
.match-list li {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 14px;
  padding: 14px 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-line);
  transition: background 0.2s;
  font-size: 13px;
}
.match-list li:last-child { border-bottom: 0; }
.match-list li:hover { background: var(--grey-card); }
.match-list__date { font-size: 11.5px; color: var(--ink-mute); line-height: 1.3; }
.match-list__date strong {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--black);
  font-size: 13px;
  text-transform: uppercase;
}
.match-list__teams { font-weight: 500; color: var(--ink); }
.match-list__teams strong { color: var(--red); font-weight: 700; }
.match-list__league {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .matches__grid { grid-template-columns: 1fr; }
  .match-list li { grid-template-columns: 80px 1fr; }
  .match-list__league { display: none; }
}

/* =========================================================
   MEDIA TILES
   ========================================================= */
.media__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
  display: block;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.78;
}
.tile:hover img { transform: scale(1.05); opacity: 0.9; }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,0.85) 100%);
  pointer-events: none;
}
.tile__type {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
}
.tile__title {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  z-index: 2;
}

@media (max-width: 880px) { .media__grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   AFFILIATIONS
   ========================================================= */
.affiliations {
  background: #fff;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  padding: 28px 0;
}
.affiliations__label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.affiliations__row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 28px;
}
.aff-logo {
  display: inline-flex;
  align-items: center;
  height: 46px;
  color: var(--ink);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.aff-logo svg { height: 100%; width: auto; }
.aff-logo:hover { opacity: 1; color: var(--red); }

/* =========================================================
   SPONSORS WALL
   ========================================================= */
.sponsors { background: #fff; }
.sponsors__grid {
  margin: 28px auto 0;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  padding: 0 var(--gutter, 24px);
}
.sp-tile {
  flex: 0 1 200px;
  min-width: 168px;
  height: 116px;
  display: grid;
  place-items: center;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(10,59,44,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sp-tile img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* per-brand tile backgrounds so each logo sits seamlessly */
.sp-tile--ecb  { background: #04428b; border-color: rgba(255,255,255,.14); box-shadow: 0 4px 16px rgba(4,66,139,.22); }
.sp-tile--ace  { background: #000000; border-color: rgba(255,255,255,.12); box-shadow: 0 4px 16px rgba(0,0,0,.26); }
.sp-tile--grey { background: #efefef; border-color: rgba(0,0,0,.07); }
.sp-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10,59,44,.16);
}

@media (max-width: 600px) {
  .sponsors__grid { gap: 12px; }
  .sp-tile { flex: 0 1 calc(50% - 12px); min-width: 0; height: 96px; padding: 16px 18px; border-radius: 14px; }
  .sp-tile img { max-height: 46px; }
}

/* =========================================================
   BANDS (Shop / Academy / Hire)
   ========================================================= */
.bands {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--black);
  padding: 0;
}
.band {
  padding: 40px 32px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease;
}
.band:last-child { border-right: 0; }
.band:hover { background: var(--red); }
.band--shop { background: var(--red); }
.band--shop:hover { background: var(--red-deep); }
.band__cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.band--shop .band__cat { color: rgba(255,255,255,0.85); }
.band h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.band p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  max-width: 38ch;
}
.band__arrow {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.band:hover .band__arrow { color: #fff; transform: translateX(4px); }

/* =========================================================
   WATCH — Facebook reel CTA card
   ========================================================= */
.watch {
  max-width: var(--max);
  margin: 56px auto;
  padding: 0 var(--gutter);
}
.watch__card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.2fr;
  align-items: stretch;
  background: var(--black);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.4);
}
.watch__card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.55); }
.watch__media {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(10,59,44,0.55), rgba(6,35,24,0.85)),
    url('/assets/media/hero-poster.jpg') center/cover no-repeat;
}
.watch__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform 0.25s ease;
}
.watch__card:hover .watch__play { transform: scale(1.08); }
.watch__body {
  padding: 40px clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.watch__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}
.watch__body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.watch__body p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 50ch;
}
.watch__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.6);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.watch__card:hover .watch__cta { border-color: #fff; }
@media (max-width: 760px) {
  .watch__card { grid-template-columns: 1fr; }
  .watch__media { min-height: 220px; }
  .watch__body { padding: 32px 24px; }
}
@media (max-width: 880px) {
  .bands { grid-template-columns: 1fr; }
  .band { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
  font-size: 13px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }
.footer__brand p { line-height: 1.7; margin-bottom: 12px; }
.footer__brand .badge { margin-bottom: 14px; }
.footer__map { color: #fff !important; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.footer__social { display: flex; gap: 8px; margin: 0; }
.footer__social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  margin: 0;
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover { background: var(--red); color: #fff; }
.footer__bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 20px var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
@media (max-width: 980px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer__inner { grid-template-columns: 1fr; } }

/* =========================================================
   CCC additions — solo membership-value cards, solutions grid
   ========================================================= */

.section-head--center { text-align: center; display: block; }
.section-head--center h2 { margin: 0 auto; }
.section-head__sub {
  max-width: 60ch;
  margin: 8px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.card__body--solo {
  padding: 28px 28px 30px;
  background: var(--grey-card);
  border-top: 4px solid var(--red);
  height: 100%;
}
.card__body--solo .card__cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.card__body--solo h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin: 14px 0 12px;
  color: var(--red);
  text-transform: uppercase;
}
.card__body--solo p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.sol-card {
  background: #fff;
  border: 1px solid var(--grey-line);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 24px 24px 22px;
  display: block;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.sol-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--red);
  box-shadow: 0 12px 24px -16px rgba(10,59,44,0.25);
}
.sol-card__num {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.sol-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sol-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 900px) { .solutions__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .solutions__grid { grid-template-columns: 1fr; } }

/* =========================================================
   READABILITY PASS — type sized for 60+ readers.
   Bumps small interface text to a minimum legible scale,
   strengthens body copy, generous line-height and spacing.
   Hero retains its display scale.
   ========================================================= */
@media (min-width: 881px) {
  .nav__num { display: none; }
  .nav__sectionlabel { display: none; }
}
@media (min-width: 881px) and (max-width: 1500px) {
  .nav__panel a { font-size: 13px; }
  .nav__links a { font-size: 12px; }
  .nav__links { gap: 12px; }
  .nav__name { font-size: 14px; }
  .nav .btn--sm { padding: 8px 12px; font-size: 11.5px; min-height: 36px; }
}
@media (min-width: 1501px) {
  .nav__panel a { font-size: 14px; }
  .nav__links a { font-size: 15px; }
  .nav__links { gap: 28px; }
}
.nav__chev { font-size: 9px; color: var(--ink-mute); margin-left: 4px; }
@media (min-width: 881px) { .nav__chev { display: inline-block; } }
@media (min-width: 881px) and (max-width: 1180px) {
  .nav__name { display: none; }
  .nav__inner { gap: 16px; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .nav__links a { font-size: 11.5px; }
  .nav__links { gap: 10px; }
}
.section-head__more { font-size: 15px; }
.sol-card p { font-size: 16px; line-height: 1.6; }
.sol-card h3 { font-size: 26px; }
.match__tag { font-size: 14px; letter-spacing: 0.1em; }
.match__name { font-size: 18px; }
.match__form { font-size: 14px; }
.match__meta { font-size: 15px; line-height: 1.55; }
.match-list li { padding: 18px 0; gap: 18px; }
.match-list__date { font-size: 13.5px; }
.match-list__date strong { font-size: 16px; }
.match-list__teams { font-size: 16px; }
.match-list__teams strong { font-size: 17px; }
.match-list__league { font-size: 13.5px; }
.band__cat { font-size: 13px; letter-spacing: 0.16em; }
.band h3 { font-size: 30px; line-height: 1.1; }
.band p { font-size: 16px; line-height: 1.55; margin-top: 6px; }
.footer__col a,
.footer h4 + a,
.footer__col p { font-size: 16px; line-height: 1.7; }
.footer h4 { font-size: 15px; letter-spacing: 0.14em; }
.footer__bottom { font-size: 14px; }
.footer__map { font-size: 14px !important; }
.tile__title { font-size: 16px; line-height: 1.3; }
.tile__type { font-size: 12px; letter-spacing: 0.14em; }
.aff-logo svg text { font-size: inherit; }
.topstrip { font-size: 12px; }
.topstrip__label { font-size: 12px; }
.hero__sub { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; }
.hero__pill { font-size: 13px; letter-spacing: 0.16em; }
.hero__next-tag { font-size: 12px; }
.hero__next-when { font-size: 14px; }
.hero__next-where { font-size: 14px; }
.hero__next-link { font-size: 13px; }
.hero__date span { font-size: 10.5px; }
.nav__panel-label { font-size: 12px; }

/* Larger touch targets across interactive elements */
a, button { -webkit-tap-highlight-color: rgba(0,0,0,0.05); }
.card__cat { padding: 6px 11px; }
.match-list li { min-height: 56px; }

/* Stronger paragraph contrast */
.card p, .sol-card p, .band p, .section-head__sub { color: var(--ink-soft); }

/* Mobile-specific bumps — phones tend to need an extra notch */
@media (max-width: 640px) {
  body { font-size: 18px; line-height: 1.7; }
  .card h3 { font-size: 23px; }
  .card p { font-size: 17px; line-height: 1.6; }
  .section-head h2 { font-size: 34px; }
  .band h3 { font-size: 26px; }
  .band p { font-size: 16px; }
  .footer__col a, .footer__col p { font-size: 17px; }
  .btn { font-size: 16px; padding: 16px 26px; }
  .btn--sm { font-size: 15px; padding: 13px 22px; }
  .hero__sub { font-size: 18px !important; line-height: 1.6; }
  .hero__pill { font-size: 13px; }
}

/* ============================== v5 SPEC ADDITIONS */

.section-head__label {
  display: block;
  flex-basis: 100%;
  order: -1;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--red, #0a3b2c);
  margin-bottom: 8px;
}
.section-head--center .section-head__label {
  flex-basis: auto;
  margin-bottom: 12px;
}

.hero__caption {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  max-width: 60ch;
}
/* Override default 60x60 date badge for the membership stat — needs space for "Average return per £1 invested" */
.hero__date {
  width: auto !important;
  height: auto !important;
  padding: 10px 14px !important;
  min-width: 130px;
  text-align: center;
}
.hero__date strong { font-size: 28px !important; margin-bottom: 4px; }
.hero__date span { font-size: 10px !important; max-width: 110px; line-height: 1.25; }

/* Membership intro / summary / Top 10 */
.membership__intro {
  max-width: 880px;
  margin: 0 auto 32px;
}
.membership__intro p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--ink-soft, #4a4a48);
}
.membership__summary {
  max-width: 880px;
  margin: 32px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.membership__summary p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #0a3b2c;
  margin-bottom: 22px;
}
.membership__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.membership__top10 {
  margin: 36px auto 0;
  max-width: 980px;
  background: #f7f5ef;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px 32px;
}
.membership__top10 h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #0a3b2c;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.membership__top10 ol {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding-left: 22px;
}
.membership__top10 ol li {
  font-size: 15px;
  line-height: 1.5;
  padding: 4px 0;
  break-inside: avoid;
  color: var(--ink, #1c1c1a);
}
@media (max-width: 720px) {
  .membership__top10 ol { columns: 1; }
}

/* Event category links */
.event-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.event-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.event-category:hover {
  border-color: var(--red, #0a3b2c);
  transform: translateY(-2px);
}
.event-category__num {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--red, #0a3b2c);
  min-width: 32px;
}
.event-category h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Section centred CTA */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 12px;
  flex-wrap: wrap;
}

/* Revenue & sponsorship */
.revenue__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .revenue__layout { grid-template-columns: 1fr; }
}
.revenue__copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--ink-soft, #4a4a48);
}
.revenue__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.revenue__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat {
  background: #f7f5ef;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  letter-spacing: -1px;
  color: #0a3b2c;
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink-soft, #4a4a48);
}

/* Community */
.community__layout { max-width: 820px; margin: 0 auto; }
.community__copy > p:first-child {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink-soft, #4a4a48);
}
.community__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.community__list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
}
.community__list li span {
  font-family: 'Anton', sans-serif;
  color: var(--red, #0a3b2c);
  min-width: 28px;
  font-size: 18px;
}

/* Footer sub-item */
.footer__sub, .v3-shell-footer__sub {
  padding-left: 14px !important;
  opacity: 0.75;
  font-size: 14px;
}

/* ============================== REVISED IA SECTIONS */

/* CCC Overview stat row */
.overview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 720px) {
  .overview__stats { grid-template-columns: repeat(2, 1fr); }
}

/* Upcoming Event */
.upcoming__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 860px) {
  .upcoming__layout { grid-template-columns: 1fr; }
}
.upcoming__feature {
  background: #0a3b2c;
  color: #fff;
  padding: 28px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upcoming__feature h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.upcoming__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2d6e4f;
}
.upcoming__when {
  font-size: 14px;
  opacity: 0.85;
}
.upcoming__feature p:not(.upcoming__when) {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
}
.upcoming__feature .btn { align-self: flex-start; margin-top: 4px; }

.upcoming__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.upcoming__list li {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
}
.upcoming__list li:last-child { border-bottom: none; }
.upcoming__date {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto Condensed', sans-serif;
}
.upcoming__date strong {
  font-size: 13px;
  color: #0a3b2c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.upcoming__title strong { display: block; }
.upcoming__cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft, #4a4a48);
  white-space: nowrap;
}

/* Deals table */
.deals__intro {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 0 var(--gutter);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft, #4a4a48);
}
.deals__table-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  overflow-x: auto;
}
.deals__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}
.deals__table thead {
  background: #0a3b2c;
  color: #fff;
}
.deals__table th {
  text-align: left;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.deals__table td {
  padding: 14px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
  line-height: 1.5;
}
.deals__table td a {
  color: #0a3b2c;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Feedback */
.feedback__layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.feedback__copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink-soft, #4a4a48);
}
.feedback__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.feedback__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.feedback__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0a3b2c;
  font-weight: 700;
}

/* Opportunity */
.opportunity__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.opportunity__card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}
.opportunity__card:hover {
  transform: translateY(-2px);
  border-color: #0a3b2c;
}
.opportunity__num {
  font-family: 'Anton', sans-serif;
  color: #0a3b2c;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.opportunity__card h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.opportunity__card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft, #4a4a48);
}

/* Page hero (for membership-value / club-events-solution pages) */
.page-hero {
  background: linear-gradient(180deg, #0a3b2c 0%, #14543f 100%);
  color: #fff;
  padding: 120px 0 80px;
}
.page-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.page-hero__pill {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 60ch;
  margin: 0 auto;
}

/* Workflow summary steps list */
.workflow__steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  counter-reset: step;
}
.workflow__steps li {
  position: relative;
  padding: 14px 0 14px 50px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  line-height: 1.5;
  counter-increment: step;
}
.workflow__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  background: #0a3b2c;
  color: #fff;
  border-radius: 50%;
}
.workflow__steps li:last-child { border-bottom: none; }

/* Club Events Solution page helpers */
.why__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.why__list li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  line-height: 1.55;
}
.why__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0a3b2c;
  font-weight: 700;
}

.when__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 820px) {
  .when__layout { grid-template-columns: 1fr; }
}
.when__copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--ink-soft, #4a4a48);
}
.when__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.how__copy {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 0 var(--gutter);
  text-align: center;
}
.how__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft, #4a4a48);
}
.how__form {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .how__row { grid-template-columns: 1fr; }
}
.how__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink, #1c1c1a);
}
.how__form input,
.how__form select,
.how__form textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  background: #fff;
}
.how__form input:focus,
.how__form select:focus,
.how__form textarea:focus {
  outline: none;
  border-color: #0a3b2c;
}
.how__form button { align-self: flex-start; margin-top: 8px; }

/* List + search (shop, news) */
.list-search {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0 auto 28px;
  width: 100%;
  max-width: 720px;
  padding: 0 8px;
  box-sizing: border-box;
}
.list-search__field input { min-width: 220px; }
.list-search__field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  padding: 0 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.list-search__field:focus-within {
  border-color: #0a3b2c;
  box-shadow: 0 0 0 3px rgba(10,59,44,0.12);
}
.list-search__icon {
  font-size: 18px;
  color: #777;
  margin-right: 8px;
}
.list-search__field input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  width: 100%;
}
.list-search__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-soft, #4a4a48);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .list-search { flex-direction: column; align-items: stretch; }
  .list-search__count { text-align: right; }
}

/* ============================== TOP 10 LEADERBOARD STYLING */
.membership__top10 {
  margin: 36px auto 0 !important;
  max-width: 980px !important;
  background: linear-gradient(180deg, #0a3b2c 0%, #14543f 100%) !important;
  color: #f4f8f5 !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 16px !important;
  padding: 32px 32px 28px !important;
  box-shadow: 0 20px 50px -30px rgba(10,59,44,0.5);
}
.membership__top10 h3 {
  font-family: 'Anton', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 1.5px !important;
  color: #f4f8f5 !important;
  margin: 0 0 18px !important;
  text-transform: uppercase !important;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding-bottom: 14px;
}
.membership__top10 ol {
  columns: 2;
  column-gap: 36px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  counter-reset: lb;
}
.membership__top10 ol li {
  counter-increment: lb;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  break-inside: avoid;
  color: #f4f8f5;
  font-weight: 600;
}
.membership__top10 ol li::before {
  content: counter(lb, decimal-leading-zero);
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  min-width: 38px;
  text-align: right;
  opacity: 1;
}
.membership__top10 ol li:nth-child(-n+3)::before { color: #fff; opacity: 1; }
.membership__top10 ol li:nth-child(-n+3) { font-weight: 600; }
@media (max-width: 720px) {
  .membership__top10 ol { columns: 1; }
}

/* ============================== COMMERCIAL POLISH — cards, CTAs */
.card {
  background: #fff;
  border: 1px solid rgba(10, 59, 44, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 3px rgba(10, 59, 44, 0.04);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(10, 59, 44, 0.25);
  border-color: rgba(10, 59, 44, 0.18);
}
/* Make summary section h2 a hyperlink visually */
.section-head h2 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.section-head h2 a:hover { border-color: #0a3b2c; }
.section-head h2 a::after { content: ' →'; font-size: 0.75em; opacity: 0.55; color: #0a3b2c; }

/* ============================== MOBILE / RESPONSIVE TIGHTEN */
html, body { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 720px) {
  :root { --gutter: 16px; }
  .nav__inner { padding: 0 14px; gap: 12px; height: 100px; }
  .nav__logo { height: 88px; width: 209px; max-width: 56vw; }
  body:not(.has-hero) main { padding-top: 100px; }

  .section-head { padding-left: 16px !important; padding-right: 16px !important; }
  .section-head h2 { font-size: clamp(26px, 7vw, 32px) !important; line-height: 1.1; }

  .news__grid,
  .solutions__grid,
  .event-categories,
  .opportunity__grid {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
    gap: 12px;
  }

  .upcoming__layout,
  .revenue__layout,
  .when__layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Centered copy blocks that have a max-width but no gutter —
     give them the same 16px inset as everything else on phones */
  .membership__intro,
  .membership__summary,
  .overview__stats {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Stop single-column grid items from blowing past the viewport on the
     right: min-width:0 lets the 1fr track shrink below its content's
     min-content size (desktop is unaffected). */
  .revenue__layout > *,
  .upcoming__layout > *,
  .when__layout > *,
  .revenue__stats .stat {
    min-width: 0;
  }

  .stat strong { font-size: 28px; }
  .overview__stats, .revenue__stats, .when__stats { gap: 10px; }

  .deals__table-wrap { padding: 0 8px; }
  .deals__table { font-size: 13px; }
  .deals__table th, .deals__table td { padding: 10px 8px; }

  .membership__top10 {
    margin-left: 12px !important;
    margin-right: 12px !important;
    padding: 22px 18px !important;
  }
  .feedback__layout { padding: 0 16px; }

  .hero__content { padding-bottom: 36px; }
  .hero__next { width: calc(100% - 32px); right: 16px; left: 16px; }

  .bands { padding: 36px 16px; }
  .band { padding: 22px 18px; }
}

/* On tablet, ease the gutter a bit too */
@media (max-width: 1080px) and (min-width: 721px) {
  :root { --gutter: 28px; }
}

/* ============================== UPCOMING FEATURE PHOTO */
.upcoming__feature--photo {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.upcoming__feature-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,59,44,0.20) 0%, rgba(10,59,44,0.95) 90%),
    url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.upcoming__feature-body {
  position: relative;
  z-index: 1;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.upcoming__feature--photo h3 { color: #fff; }
.upcoming__feature--photo p { color: rgba(255,255,255,0.92); }
.upcoming__feature--photo .btn { align-self: flex-start; }

/* ============================== ACCESSIBILITY — high-contrast text */
/* Boost body text colour to near-black and bump base size slightly */
body {
  color: #111111 !important;
  font-size: 17px;
  line-height: 1.65;
}
p, li {
  color: #1a1a18;
  font-size: 17px;
}
.card p, .sol-card p, .section-head__sub,
.feedback__copy p, .community__copy > p:first-child,
.revenue__copy p, .membership__intro p,
.opportunity__card p {
  color: #2a3530 !important;
  font-weight: 500;
}
/* Dark-background regions — keep text light & high-contrast */
.band, .band p, .band h3, .band__cat,
.footer, .footer p, .footer__col a, .footer__col h4,
.footer__brand p, .footer__brand strong,
.v3-shell-footer, .v3-shell-footer p, .v3-shell-footer a,
.v3-shell-footer h4, .v3-shell-footer__brand strong,
.upcoming__feature--photo *,
.page-hero, .page-hero * {
  color: #ffffff !important;
}
.band p, .footer p, .footer__col a, .v3-shell-footer p, .v3-shell-footer a {
  color: #ffffff !important;
}
.footer__bottom, .footer__bottom *,
.v3-shell-footer__bottom, .v3-shell-footer__bottom * {
  color: #ffffff !important;
}
.band__cat, .footer__col h4, .v3-shell-footer h4 { color: #ffffff !important; }
.footer__col a:hover, .v3-shell-footer a:hover { color: #ffffff !important; }
.upcoming__feature--photo p:not(.upcoming__when) { color: rgba(255,255,255,0.94) !important; }
.upcoming__feature--photo .upcoming__when { color: rgba(255,255,255,0.78) !important; }
.page-hero__sub { color: rgba(255,255,255,0.94) !important; }
/* Section labels: stronger green */
.section-head__label { color: #0a3b2c !important; }
/* Card category labels: white on green pill */
.card__cat { color: #ffffff !important; background: #0a3b2c !important; font-weight: 700 !important; }
/* Deals table: stronger borders + bigger text */
.deals__table { font-size: 15px; }
.deals__table td { color: #1a1a18; font-weight: 500; }
/* Footer headers — white, matching body text */
.v3-shell-footer h4, .footer__col h4 { color: #ffffff !important; }

/* Buttons — clearer hover state */
.btn--red { background: #0a3b2c !important; color: #fff !important; font-weight: 700; }
.btn--red:hover { background: #062318 !important; }
.btn--ghost { color: #0a3b2c !important; border: 2px solid #0a3b2c !important; background: transparent !important; }
.btn--ghost:hover { background: #0a3b2c !important; color: #fff !important; }

/* Nav banner CTAs — both rendered "white" against the dark-green banner */
.nav .btn--ghost { color: #fff !important; border-color: rgba(255,255,255,0.55) !important; background: transparent !important; }
.nav .btn--ghost:hover { background: rgba(255,255,255,0.12) !important; border-color: #fff !important; color: #fff !important; }
.nav .btn--red { background: #fff !important; color: #0a3b2c !important; border: 2px solid #fff !important; }
.nav .btn--red:hover { background: #eef4f0 !important; color: #062318 !important; }

/* ===== Impact cards (ticks-and-benefits) — used on Transform Your Club ===== */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
}
.impact-card {
  display: block;
  padding: 22px 24px;
  background: var(--cream, #f4f8f5);
  border: 1px solid var(--line, rgba(10, 59, 44, 0.18));
  border-left: 4px solid var(--gold, #2d6e4f);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
a.impact-card:hover { border-left-color: var(--oxblood, #0a3b2c); transform: translateY(-1px); }
.impact-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.impact-card-name {
  font-family: 'Fraunces', 'Anton', serif;
  font-weight: 500;
  color: var(--green, #0a3b2c);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.impact-card-link {
  font-family: 'Public Sans', 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green, #0a3b2c);
  font-weight: 700;
}
.impact-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.impact-benefits li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink, #1a1a18);
  line-height: 1.5;
}
.impact-benefits li::before {
  content: '✓';
  color: var(--green, #0a3b2c);
  font-weight: 700;
  font-size: 14px;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--paper, #ffffff);
  border: 1.5px solid var(--gold, #2d6e4f);
  border-radius: 50%;
}

/* ===== Alert pills on get-involved cards (red = unapproved, amber = needs check) ===== */
.alert-pill {
  display: inline-block;
  margin-top: 10px;
  margin-right: 8px;
  padding: 4px 10px;
  font-family: 'Public Sans', 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
}
.alert-pill--red { background: #c0392b; }
.alert-pill--amber { background: #d68910; }
.get-involved-card--alert-red { border-left-color: #c0392b !important; }
.get-involved-card--alert-amber { border-left-color: #d68910 !important; }
