/*
  ╔══════════════════════════════════════════════════════════════════╗
  ║         EXECUTIVE GREEN NPC — GLOBAL DESIGN SYSTEM              ║
  ║         "The Architecture of Excellence"                        ║
  ╚══════════════════════════════════════════════════════════════════╝

  Index:
  00. Design Tokens
  01. Reset
  02. Typography
  03. Layout
  04. Navigation
  05. Hero
  06. Ticker
  07. Sections & Watermarks
  08. Cards
  09. Buttons
  10. Stat Blocks
  11. Event Cards
  12. Tables
  13. Club Components
  14. Timeline
  15. Media / News Grid
  16. Membership
  17. In-Page Navigation
  18. CTA Banner
  19. Footer
  20. Animations & Reveals
  21. Utilities
  22. Responsive
*/

/* ═══════════════════════════════════════════════════════════════════
   00. DESIGN TOKENS
═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  /* ── Background Surfaces ──────────────────────────────── */
  --void:        #080808;        /* True black — button text, deep accents */
  --bg:          #faf9f6;        /* Body background — warm cream */
  --surface-1:   #faf8f4;        /* Card / panel backgrounds — warm off-white */
  --surface-2:   #f2efe9;        /* Subtle alternate sections */
  --surface-3:   #e8e8e8;        /* Hover states */
  --surface-4:   #d1d1d1;        /* Stronger separators */

  /* ── Green System ────────────────────────────────────── */
  --green-deep:  #072a1f;        /* Deepest forest */
  --green-dark:  #0b3d2e;        /* Primary forest (nav / hero) */
  --green-mid:   #145c44;        /* Mid forest */
  --green:       #1fa463;        /* Action green */
  --green-bright: #2cc47a;       /* Light green */
  --green-muted:  #178a52;       /* Muted action */
  --green-glow:   rgba(31, 164, 99, 0.08);
  --green-glow-md: rgba(31, 164, 99, 0.15);
  --green-glow-lg: rgba(31, 164, 99, 0.25);

  /* ── Gold Accent ─────────────────────────────────────── */
  --gold:        #c9a227;
  --gold-light:  #dbb84a;
  --gold-dark:   #a68521;

  /* ── Text Palette ────────────────────────────────────── */
  --white:   #f0ede8;            /* Warm off-white */
  --chalk:   #2d2d2d;            /* Primary text */
  --silver:  #5a5a5a;            /* Secondary text */
  --fog:     #737373;            /* Tertiary text */
  --ash:     #a3a3a3;            /* Subtle text */

  /* ── Border ──────────────────────────────────────────── */
  --border:       #e8e8e8;
  --border-light: #d1d1d1;

  /* ── Typography ──────────────────────────────────────── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Inter', 'Helvetica Neue', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --text-display:    clamp(4.5rem, 9vw, 10rem);
  --text-headline:   clamp(2.5rem, 5vw, 5.5rem);
  --text-title:      clamp(1.6rem, 2.8vw, 2.8rem);
  --text-subtitle:   clamp(1.2rem, 1.8vw, 1.6rem);
  --text-body:       clamp(0.95rem, 1.1vw, 1.1rem);
  --text-small:      0.875rem;
  --text-label:      0.7rem;

  --weight-light:    300;
  --weight-reg:      400;
  --weight-med:      500;
  --weight-semi:     600;
  --weight-bold:     700;

  --leading-tight:   1.05;
  --leading-head:    1.15;
  --leading-body:    1.7;

  --tracking-tightest: -0.03em;
  --tracking-tight:  -0.02em;
  --tracking-normal: 0em;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.15em;
  --tracking-widest: 0.25em;

  /* ── Spacing ─────────────────────────────────────────── */
  --space-2xs:  0.25rem;
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  7rem;
  --space-3xl:  12rem;

  --section-y:  clamp(5rem, 10vw, 9rem);
  --container-pad: clamp(1.5rem, 5vw, 7rem);
  --grid-max:   1380px;
  --grid-gap:   clamp(1rem, 2vw, 2rem);

  /* ── Motion ─────────────────────────────────────────── */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout:  cubic-bezier(0.83, 0, 0.17, 1);
  --dur-fast:    200ms;
  --dur-base:    380ms;
  --dur-slow:    650ms;
  --dur-reveal:  1000ms;

  /* ── Border Radius ───────────────────────────────────── */
  --radius:    8px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-card:       0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 10px 35px rgba(0, 0, 0, 0.12);
  --shadow-sm:         0 1px 3px rgba(0, 0, 0, 0.06);

  /* ── Misc ────────────────────────────────────────────── */
  --nav-height: 72px;
  --progress:   0%;
}


/* ═══════════════════════════════════════════════════════════════════
   01. RESET
═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--chalk);
  font-family: var(--font-ui);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  overflow-x: hidden;
}

/* ── Dark section scope — restore light text on dark backgrounds ── */
.nav,
.hero__left,
.ticker,
.section--green,
.section--green-deep,
.footer,
.page-hero,
.stat-bar,
.cta-banner,
.img-break,
.nav__links.open {
  --chalk:       #F0EDE8;
  --silver:      #C8C8C8;
  --fog:         #888888;
  --ash:         #555555;
  --border:      rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.18);
  --surface-1:   rgba(255, 255, 255, 0.05);
  --surface-2:   rgba(255, 255, 255, 0.08);
  --surface-3:   rgba(255, 255, 255, 0.14);
  --surface-4:   rgba(255, 255, 255, 0.20);
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  appearance: none;
}

button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
  02. FORM CONTROL FIXES — CHECKBOX / RADIO
═══════════════════════════════════════════════════════════════════ */
  input[type="checkbox"],
  input[type="radio"] {
  appearance: auto;
  -webkit-appearance: auto;
  accent-color: var(--green);
  background: initial;
  border: initial;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}


/* ═══════════════════════════════════════════════════════════════════
   03. TYPOGRAPHY
═══════════════════════════════════════════════════════════════════ */
.t-display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tightest);
}

.t-headline {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  font-weight: var(--weight-light);
  line-height: var(--leading-head);
  letter-spacing: var(--tracking-tight);
}

.t-title {
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-weight: var(--weight-light);
  line-height: var(--leading-head);
  letter-spacing: var(--tracking-tight);
}

.t-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-subtitle);
  font-weight: var(--weight-light);
  font-style: italic;
  line-height: var(--leading-head);
}

.t-body {
  font-family: var(--font-ui);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  max-width: 65ch;
}

.t-label {
  font-family: var(--font-ui);
  font-size: var(--text-label);
  font-weight: var(--weight-med);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--fog);
}

.t-label--green {
  color: var(--green);
}

.t-mono {
  font-family: var(--font-mono);
  font-weight: var(--weight-light);
}

.t-pullquote {
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-weight: var(--weight-light);
  font-style: italic;
  line-height: 1.4;
  padding-left: var(--space-md);
  border-left: 3px solid var(--green);
  color: var(--chalk);
}

h1 { font-family: var(--font-display); font-weight: var(--weight-light); line-height: var(--leading-tight); }
h2 { font-family: var(--font-display); font-weight: var(--weight-light); line-height: var(--leading-head); }
h3 { font-family: var(--font-display); font-weight: var(--weight-light); line-height: var(--leading-head); }
h4 { font-family: var(--font-ui); font-weight: var(--weight-med); }
h5 { font-family: var(--font-ui); font-weight: var(--weight-med); text-transform: uppercase; letter-spacing: var(--tracking-wide); }
strong { font-weight: var(--weight-semi); }


/* ═══════════════════════════════════════════════════════════════════
   04. LAYOUT
═══════════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--grid-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--wide  { max-width: 1600px; }
.container--text  { max-width: 720px; }
.container--narrow { max-width: 560px; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-xs  { gap: var(--space-xs); }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }
.gap-xl  { gap: var(--space-xl); }


/* ═══════════════════════════════════════════════════════════════════
   05. NAVIGATION
═══════════════════════════════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--progress);
  max-width: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--gold));
  z-index: 600;
  pointer-events: none;
  transition: width 0.1s linear;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding-inline: var(--container-pad);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  border-bottom: 1px solid rgba(20, 92, 68, 0.35);
  background: rgba(11, 61, 46, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.nav.scrolled {
  border-bottom-color: rgba(20, 92, 68, 0.5);
  box-shadow: 0 2px 20px rgba(7, 42, 31, 0.25);
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  min-width: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--weight-light);
  letter-spacing: 0.02em;
  color: var(--chalk);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: var(--weight-med);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--fog);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
  padding-block: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width var(--dur-base) var(--ease-out);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link.active,
.nav__link[aria-current="page"] {
  color: var(--green);
}

.nav__link.active::after,
.nav__link[aria-current="page"]::after {
  width: 100%;
  background: var(--green);
}

.nav__cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: var(--weight-med);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green-bright);
  border: 1px solid var(--green);
  padding: 9px 22px;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.nav__cta:hover {
  background: var(--green);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════════
   06. HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl) var(--container-pad) var(--space-xl);
  padding-top: calc(var(--nav-height) + var(--space-xl));
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
}

.hero__overline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero__overline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tightest);
  color: var(--chalk);
  margin-bottom: var(--space-lg);
}

.hero__heading span { display: block; }
.hero__heading .accent { color: var(--green); }

.hero__desc {
  font-size: var(--text-body);
  color: var(--fog);
  max-width: 48ch;
  line-height: var(--leading-body);
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--container-pad);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--ash);
  animation: bob 2.5s ease-in-out infinite;
}

.hero__scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--green), transparent);
}

@keyframes bob {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(5px); }
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(15%) brightness(0.6);
  transform: scale(1.05);
}

.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-deep) 0%, transparent 30%);
  z-index: 1;
}

.hero__right::after {
  display: none;
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat__num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: var(--weight-light);
  color: var(--green);
  line-height: 1;
  display: block;
}

.hero-stat__label {
  font-size: 0.66rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 4px;
  display: block;
}

/* Inner page hero */
.hero--inner {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.hero--inner .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.25);
}

.hero--inner .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--green-deep) 20%, rgba(7,42,31,0.4) 100%);
}

.hero--inner .hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--container-pad);
  padding-top: calc(var(--nav-height) + var(--space-xl));
  width: 100%;
  max-width: var(--grid-max);
  margin-inline: auto;
}


/* ═══════════════════════════════════════════════════════════════════
   07. TICKER
═══════════════════════════════════════════════════════════════════ */
.ticker {
  overflow: hidden;
  background: var(--green-dark);
  border-top: 1px solid var(--green-mid);
  border-bottom: 1px solid var(--green-mid);
  padding-block: 13px;
}

.ticker__track {
  display: flex;
  animation: ticker-run 180s linear infinite;
  white-space: nowrap;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green-bright);
  flex-shrink: 0;
  padding-inline: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.ticker__sep {
  color: var(--green-muted);
  font-size: 0.5rem;
}

@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════════
   08. SECTIONS & WATERMARKS
═══════════════════════════════════════════════════════════════════ */
.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--dark       { background: var(--bg); }
.section--surface    { background: var(--surface-1); }
.section--mid        { background: var(--surface-2); }
.section--green      { background: var(--green-dark); }
.section--green-deep { background: var(--green-deep); }

.section__wm {
  position: absolute;
  font-family: var(--font-mono);
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  color: var(--green-dark);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  top: var(--space-xl);
  right: var(--container-pad);
}

.section__inner {
  position: relative;
  z-index: 1;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.section__label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--green);
}

.section__header {
  margin-bottom: var(--space-xl);
}

.section__header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════════
   09. CARDS
═══════════════════════════════════════════════════════════════════ */
.card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Top border reveal on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
}

.card:hover::before { transform: scaleX(1); }

.card--flat {
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
  padding: var(--space-md);
}

.card--green {
  border-color: var(--green-mid);
  background: var(--green-deep);
}

.card--green::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.card__image-wrap { overflow: hidden; }

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.82);
  transition: filter var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  display: block;
}

.card:hover .card__image {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.03);
}

.card__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
  display: block;
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: var(--weight-med);
  line-height: 1.3;
  letter-spacing: var(--tracking-tight);
  color: var(--chalk);
  margin-bottom: var(--space-sm);
}

.card__body {
  font-size: var(--text-small);
  color: var(--fog);
  line-height: var(--leading-body);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ash);
  margin-top: var(--space-md);
}

.card__meta span + span::before {
  content: '—';
  margin-right: var(--space-xs);
  opacity: 0.4;
}

/* Vision / manifesto blocks */
.vision-block {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  transition: border-top-color var(--dur-base);
}

.vision-block:hover { border-top-color: var(--green); }

.vision-block__num {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-md);
}

.vision-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  color: var(--chalk);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-head);
}

.vision-block__body {
  font-size: var(--text-small);
  color: var(--fog);
  line-height: var(--leading-body);
  max-width: 48ch;
  margin-bottom: var(--space-md);
}

.vision-block__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--dur-fast);
}

.vision-block__link:hover { gap: var(--space-sm); }


/* ═══════════════════════════════════════════════════════════════════
   10. BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: var(--weight-med);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast);
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(11, 61, 46, 0.25);
}

.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: 0 4px 16px rgba(11, 61, 46, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--chalk);
  border-color: var(--border-light);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost-light:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--text {
  background: transparent;
  color: var(--fog);
  padding-inline: 0;
  border-radius: 0;
}

.btn--text:hover { color: var(--chalk); }

.btn--dark {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn--dark:hover { background: var(--green-mid); }

.btn--sm { padding: 8px 18px; font-size: 0.72rem; }
.btn--lg { padding: 16px 40px; font-size: 0.85rem; }

.btn .arrow { transition: transform var(--dur-fast); }
.btn:hover .arrow { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════════════
   11. STAT BLOCKS
═══════════════════════════════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat-block {
  padding: var(--space-lg);
  border-right: 1px solid var(--border);
  transition: background var(--dur-base);
  background: var(--surface-1);
}

.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--surface-2); }

.stat-block__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--weight-med);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.stat-block__label {
  font-size: 0.82rem;
  font-weight: var(--weight-semi);
  color: var(--chalk);
  margin-bottom: 3px;
}

.stat-block__desc {
  font-size: 0.72rem;
  color: var(--fog);
}


/* ═══════════════════════════════════════════════════════════════════
   12. EVENT CARDS
═══════════════════════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.event-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Top border reveal */
.event-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.event-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: var(--border-light);
}
.event-card:hover::after { transform: scaleX(1); }

.event-card__date {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.event-card__day {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--weight-med);
  color: var(--gold);
  line-height: 1;
}

.event-card__month {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--fog);
}

.event-card__type {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green-muted);
}

.event-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  color: var(--chalk);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.event-card__location {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fog);
  position: relative;
  z-index: 1;
}

.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: var(--weight-med);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
}

.badge--open {
  color: var(--green-bright);
  border-color: var(--green-mid);
  background: var(--green-glow);
}

.badge--closed {
  color: var(--ash);
  border-color: var(--border);
}

.badge--upcoming {
  color: #C8A96E;
  border-color: rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.06);
}


/* ═══════════════════════════════════════════════════════════════════
   13. TABLES
═══════════════════════════════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-small);
}

.table thead tr {
  border-bottom: 2px solid var(--border-light);
  background: var(--surface-2);
}

.table th {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--fog);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  white-space: nowrap;
}

.table th:last-child { text-align: right; }

.table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast);
  cursor: default;
}

.table tbody tr:hover { background: var(--green-glow); }
.table tbody tr:hover td { color: var(--chalk); }

.table td {
  padding: 13px var(--space-md);
  color: var(--silver);
  vertical-align: middle;
}

.table td:last-child { text-align: right; color: var(--fog); }

.table__pos {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--green) !important;
  width: 48px;
}

.table__row--top { border-left: 2px solid var(--green); }
.table__player { font-weight: var(--weight-med); color: var(--chalk) !important; }
.table__club { color: var(--fog) !important; }

.table__data {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.table__change {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  width: 40px;
  text-align: center !important;
}

.change--up   { color: var(--green) !important; }
.change--down { color: var(--fog) !important; }
.change--same { color: var(--ash) !important; }


/* ═══════════════════════════════════════════════════════════════════
   14. CLUB COMPONENTS
═══════════════════════════════════════════════════════════════════ */
.club-region {
  margin-bottom: var(--space-xl);
}

.club-region__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-md);
}

.club-region__name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
}

.club-region__count {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--fog);
  margin-left: auto;
}

.club-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: var(--space-xs);
}

.club-item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px var(--space-md);
  font-size: 0.85rem;
  color: var(--silver);
  transition: background var(--dur-fast), color var(--dur-fast),
              border-color var(--dur-fast), box-shadow var(--dur-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.club-item:hover {
  background: var(--surface-2);
  color: var(--chalk);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
}

.club-item--premier {
  color: var(--chalk);
  border-left: 2px solid var(--green);
}

.club-item--premier::before {
  content: '◆';
  font-size: 0.45rem;
  color: var(--green);
  flex-shrink: 0;
}

.venue-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base),
              transform var(--dur-base);
}

.venue-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.venue-card__image-wrap { overflow: hidden; }

.venue-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.82);
  transition: filter var(--dur-slow), transform var(--dur-slow);
}

.venue-card:hover .venue-card__image {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.04);
}

.venue-card__body { padding: var(--space-lg); }

.venue-card__label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-xs);
}

.venue-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  color: var(--chalk);
  margin-bottom: var(--space-sm);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.step-item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  transition: background var(--dur-base), box-shadow var(--dur-base),
              transform var(--dur-base);
}

.step-item:hover {
  background: var(--surface-2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.step-item__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: var(--weight-light);
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-light);
  color: var(--chalk);
  margin-bottom: var(--space-xs);
}

.step-item__body {
  font-size: var(--text-small);
  color: var(--fog);
  line-height: var(--leading-body);
}


/* ═══════════════════════════════════════════════════════════════════
   15. TIMELINE
═══════════════════════════════════════════════════════════════════ */
.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--green-mid) 10%, var(--green-mid) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: 57px;
  top: calc(var(--space-xl) + 12px);
  width: 7px;
  height: 7px;
  background: var(--green);
  border: 2px solid var(--bg);
  border-radius: 50%;
}

.timeline-item:hover::before {
  box-shadow: 0 0 14px var(--green-glow-lg);
}

.timeline-item__year {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--green);
  padding-top: 8px;
  text-align: right;
  padding-right: var(--space-md);
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: var(--weight-light);
  color: var(--chalk);
  margin-bottom: var(--space-xs);
}

.timeline-item__body {
  font-size: var(--text-small);
  color: var(--fog);
  line-height: var(--leading-body);
  max-width: 60ch;
}


/* ═══════════════════════════════════════════════════════════════════
   16. MEDIA / NEWS GRID
═══════════════════════════════════════════════════════════════════ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.media-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base),
              border-color var(--dur-base);
}

.media-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: var(--border-light);
}
.media-card__image-wrap { overflow: hidden; }

.media-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.85);
  transition: filter var(--dur-slow), transform var(--dur-slow);
  display: block;
}

.media-card:hover .media-card__image {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.04);
}

.media-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.media-card__category {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

.media-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  color: var(--chalk);
  line-height: 1.35;
  flex: 1;
}

.media-card__meta {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ash);
}

/* Feature article */
.feature-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base),
              transform var(--dur-base);
}

.feature-article:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.feature-article__image-wrap { overflow: hidden; }

.feature-article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.8);
  transition: filter var(--dur-slow), transform var(--dur-slow);
}

.feature-article:hover .feature-article__image {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.03);
}

.feature-article__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface-1);
}

/* News list items */
.news-list-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: start;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--dur-fast);
}

.news-list-item:hover { border-bottom-color: var(--green-mid); }

.news-list-item__date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fog);
  white-space: nowrap;
  padding-top: 4px;
}

.news-list-item__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: var(--weight-light);
  color: var(--chalk);
  line-height: 1.35;
  letter-spacing: var(--tracking-tight);
}

.news-list-item__body {
  font-size: 0.8rem;
  color: var(--fog);
  margin-top: 4px;
  max-width: 70ch;
  line-height: 1.55;
}

/* Filter pills */
.filter-strip {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.filter-pill {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--fog);
  background: var(--surface-1);
  cursor: pointer;
  transition: all var(--dur-fast);
  text-decoration: none;
  display: inline-flex;
}

.filter-pill:hover { border-color: var(--green-mid); color: var(--green-dark); background: var(--surface-2); }
.filter-pill.active { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }


/* ═══════════════════════════════════════════════════════════════════
   17. MEMBERSHIP
═══════════════════════════════════════════════════════════════════ */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.membership-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base),
              transform var(--dur-base);
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.membership-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
}

.membership-card:hover::before { transform: scaleX(1); }

.membership-card--featured {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
  border-color: var(--green-mid);
  border-top: 4px solid var(--green);
}

.membership-card--featured::before { display: none; }

.membership-card--featured:hover {
  border-color: var(--green);
  box-shadow: 0 10px 35px rgba(11, 61, 46, 0.35);
}

.membership-card__label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-md);
}

.membership-card--featured .membership-card__label {
  color: var(--green-bright);
}

.membership-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-head);
  color: var(--chalk);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.membership-card--featured .membership-card__title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.membership-card__body {
  font-size: 0.9rem;
  color: var(--fog);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.membership-card--featured .membership-card__body {
  color: rgba(240, 237, 232, 0.85);
}

.membership-benefits {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.membership-benefits li {
  font-size: var(--text-small);
  color: var(--fog);
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.membership-card--featured .membership-benefits li {
  color: rgba(240, 237, 232, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.membership-benefits li:last-child { border-bottom: none; }

.membership-benefits li::before {
  content: '→';
  color: var(--green);
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 1px;
}

.membership-card--featured .membership-benefits li::before {
  color: var(--green-bright);
}

.membership-card__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ash);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  line-height: 1.75;
}

.membership-card--featured .membership-card__meta {
  color: rgba(31, 164, 99, 0.85);
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Benefits comparison table */
.benefits-table {
  width: 100%;
  border-collapse: collapse;
}

.benefits-table th {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--fog);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.benefits-table th:not(:first-child) { text-align: center; }

.benefits-table td {
  padding: 11px var(--space-md);
  font-size: var(--text-small);
  color: var(--silver);
  border-bottom: 1px solid var(--border);
}

.benefits-table td:not(:first-child) {
  text-align: center;
  font-family: var(--font-mono);
}

.benefits-table tbody tr:hover td { background: var(--green-glow); }

.benefit-yes  { color: var(--green); }
.benefit-no   { color: var(--ash); }
.benefit-cond { font-size: 0.68rem; color: var(--fog); }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--chalk);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: var(--weight-light);
  padding: var(--space-lg) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color var(--dur-fast);
  letter-spacing: var(--tracking-tight);
}

.faq-question:hover { color: var(--green); }

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--fog);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}

.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after  { width: 1px; height: 10px; }

.faq-item.open .faq-icon { background: var(--green-dark); border-color: var(--green-dark); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { opacity: 0; }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  font-size: var(--text-small);
  color: var(--fog);
  line-height: var(--leading-body);
  max-width: 70ch;
}


/* ═══════════════════════════════════════════════════════════════════
   18. IN-PAGE NAVIGATION STRIP
═══════════════════════════════════════════════════════════════════ */
.page-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.page-nav__inner {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--container-pad);
  max-width: var(--grid-max);
  margin-inline: auto;
}

.page-nav__inner::-webkit-scrollbar { display: none; }

.page-nav__link {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--fog);
  padding: 15px var(--space-md);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  text-decoration: none;
}

.page-nav__link:hover { color: var(--chalk); border-bottom-color: var(--border-light); }
.page-nav__link.active { color: var(--green); border-bottom-color: var(--green); }


/* ═══════════════════════════════════════════════════════════════════
   19. CTA BANNER
═══════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--green-dark);
  padding-block: var(--space-xl);
}

.cta-banner__inner {
  text-align: center;
  max-width: var(--grid-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.cta-banner__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: var(--space-sm);
}

.cta-banner h2 {
  font-size: var(--text-headline);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tightest);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  font-size: var(--text-body);
  color: rgba(240, 237, 232, 0.72);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-body);
}

.cta-banner .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════════
   20. FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(20, 92, 68, 0.3);
}

.footer__top-line {
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--green-mid), transparent);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--border);
  max-width: var(--grid-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--weight-light);
  letter-spacing: 0.02em;
  color: var(--chalk);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--fog);
  line-height: var(--leading-body);
  max-width: 34ch;
  margin-bottom: var(--space-lg);
}

.footer__address {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ash);
  line-height: 1.9;
}

.footer__email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  margin-top: var(--space-sm);
  transition: color var(--dur-fast);
}

.footer__email:hover { color: var(--green-bright); }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.82rem;
  color: var(--fog);
  transition: color var(--dur-fast);
}

.footer__link:hover { color: var(--green); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: var(--grid-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--ash);
  letter-spacing: var(--tracking-wide);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-link {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--ash);
  transition: color var(--dur-fast);
}

.footer__legal-link:hover { color: var(--fog); }


/* ═══════════════════════════════════════════════════════════════════
   21. ANIMATIONS & REVEALS
═══════════════════════════════════════════════════════════════════ */
/* ── Core reveal: gentle lift, long glide ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease-luxury),
              transform 1s var(--ease-luxury);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Lateral reveal: used sparingly ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s var(--ease-luxury),
              transform 1s var(--ease-luxury);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Scale reveal: kept as utility, not auto-applied ── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(10px);
  transition: opacity 1s var(--ease-luxury),
              transform 1s var(--ease-luxury);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Parallax containers ── */
.img-break { overflow: hidden; }
.img-break img {
  transform: scale(1.12) translateY(0);
  transition: none;
  will-change: transform;
}

/* ── Stagger delays — unhurried ── */
.delay-1 { transition-delay: 130ms !important; }
.delay-2 { transition-delay: 260ms !important; }
.delay-3 { transition-delay: 390ms !important; }
.delay-4 { transition-delay: 520ms !important; }
.delay-5 { transition-delay: 650ms !important; }
.delay-6 { transition-delay: 780ms !important; }


/* ═══════════════════════════════════════════════════════════════════
   22. UTILITIES
═══════════════════════════════════════════════════════════════════ */
.text-green  { color: var(--green) !important; }
.text-chalk  { color: var(--chalk) !important; }
.text-fog    { color: var(--fog) !important; }
.text-white  { color: var(--white) !important; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-void   { color: var(--void) !important; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

.pt-nav { padding-top: var(--nav-height); }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.no-select { user-select: none; }


/* ═══════════════════════════════════════════════════════════════════
   23. INNER PAGE — HERO WITH CSS VARIABLE BACKGROUND
       Used by rankings.html, membership.html, news.html
═══════════════════════════════════════════════════════════════════ */
.hero.hero--inner {
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero--inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--green-deep) 15%, rgba(7,42,31,0.55) 100%);
  z-index: 0;
}

.hero__inner-content {
  position: relative;
  z-index: 2;
  padding-inline: var(--container-pad);
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  width: 100%;
  max-width: var(--grid-max);
  margin-inline: auto;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-md);
}

.hero__inner-title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tightest);
  color: var(--chalk);
  margin-bottom: var(--space-md);
}

.hero__inner-title em {
  font-style: italic;
  color: var(--green);
}

.hero__inner-sub {
  font-size: var(--text-body);
  color: var(--fog);
  line-height: var(--leading-body);
  max-width: 60ch;
}


/* ═══════════════════════════════════════════════════════════════════
   24. SECTION HEADER VARIANTS
═══════════════════════════════════════════════════════════════════ */
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  font-weight: var(--weight-light);
  line-height: var(--leading-head);
  letter-spacing: var(--tracking-tight);
  color: var(--chalk);
  margin-bottom: var(--space-sm);
}

.section__title em { font-style: italic; }

.section__sub {
  font-size: var(--text-body);
  color: var(--fog);
  line-height: var(--leading-body);
  max-width: 65ch;
  margin-top: var(--space-sm);
}


/* ═══════════════════════════════════════════════════════════════════
   25. BUTTON ALIASES
═══════════════════════════════════════════════════════════════════ */
.btn--green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn--green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn--outline {
  background: transparent;
  color: var(--chalk);
  border-color: var(--border-light);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}


/* ═══════════════════════════════════════════════════════════════════
   26. NAV CTA ALIAS (.nav__link--cta)
═══════════════════════════════════════════════════════════════════ */
.nav__link--cta {
  color: var(--green-bright) !important;
  border: 1px solid var(--green) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-md) !important;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out) !important;
}

.nav__link--cta:hover {
  background: var(--green) !important;
  color: var(--white) !important;
}

.nav__link--cta::after { display: none !important; }

.nav__links.open .nav__link--cta {
  font-size: 1rem !important;
  font-family: var(--font-ui) !important;
  text-transform: uppercase !important;
  letter-spacing: var(--tracking-wider) !important;
  border-width: 1px !important;
  padding: 14px 32px !important;
  margin-top: var(--space-md);
  align-self: flex-start;
  width: auto !important;
}


/* ═══════════════════════════════════════════════════════════════════
   27. CTA BANNER VARIANTS
═══════════════════════════════════════════════════════════════════ */
.cta-banner .container { text-align: center; }

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tightest);
  line-height: var(--leading-head);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__sub {
  font-size: var(--text-body);
  color: rgba(240, 237, 232, 0.72);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-body);
}


/* ═══════════════════════════════════════════════════════════════════
   28. FOOTER INNER VARIANT
       Used by rankings.html, membership.html, news.html
═══════════════════════════════════════════════════════════════════ */
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-xl);
  max-width: var(--grid-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-title {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: var(--space-md);
}

.footer__nav a {
  font-size: 0.82rem;
  color: var(--fog);
  transition: color var(--dur-fast);
}

.footer__nav a:hover { color: var(--green); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ash);
  line-height: 1.9;
}

.footer__contact a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  transition: color var(--dur-fast);
}

.footer__contact a:hover { color: var(--green-bright); }


/* ═══════════════════════════════════════════════════════════════════
   29. RESPONSIVE
═══════════════════════════════════════════════════════════════════ */

  @media (max-width: 1100px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 55fr 45fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .membership-grid { grid-template-columns: 1fr; }

  /* Nav: collapse to hamburger before links overflow */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: var(--container-pad);
    right: var(--container-pad);
    bottom: auto;
    background: rgba(7, 42, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    align-items: stretch;
    gap: 0.35rem;
    z-index: 400;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  }

  .nav__links.open .nav__link {
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--chalk);
    padding: 0.95rem 1rem;
    border-bottom: none;
    width: 100%;
    font-family: var(--font-ui);
    font-weight: var(--weight-med);
    text-transform: none;
    border-radius: 12px;
  }

  .nav__links.open .nav__link::after {
    display: none;
  }

  .nav__links.open .nav__link:hover,
  .nav__links.open .nav__link.active,
  .nav__links.open .nav__link[aria-current="page"] {
    background: rgba(255,255,255,0.06);
    color: var(--white);
  }

  .nav__links.open .nav__cta,
  .nav__links.open .nav__link--cta {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    padding: 14px 18px !important;
    align-self: stretch;
    width: 100% !important;
    text-align: center;
    border-radius: 12px !important;
  }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 85svh; }
  .hero__right { display: none; }
  .hero__left { padding-top: calc(var(--nav-height) + var(--space-xl)); }

  .events-grid     { grid-template-columns: 1fr; }
  .media-grid      { grid-template-columns: 1fr; }
  .feature-article { grid-template-columns: 1fr; }
  .feature-article__image { aspect-ratio: 16/8; height: auto; }

  .grid .col-5, .grid .col-7,
  .grid .col-6, .grid .col-8 { grid-column: span 12; }

  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: var(--space-xs); }
  .timeline-item::before { display: none; }
  .timeline-item__year { text-align: left; padding: 0; }

  .steps-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .news-list-item { grid-template-columns: 1fr; gap: var(--space-xs); }
}

@media (max-width: 600px) {
  :root {
    --container-pad: 1.25rem;
    --section-y: clamp(3rem, 8vw, 5.5rem);
  }

  .nav__logo-name {
    font-size: 0.95rem;
    max-width: 150px;
    white-space: normal;
    line-height: 1.1;
  }

  .nav__links.open {
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-height) + 8px);
    padding: 0.85rem;
  }

  .nav__links.open .nav__link {
    font-size: 0.98rem;
    padding: 0.9rem 0.95rem;
  }

  .hero__heading { font-size: clamp(3rem, 13vw, 5rem); }
  .ticker { display: none; }
  .stats-strip { grid-template-columns: 1fr; }
  .media-grid  { grid-template-columns: 1fr; }
  .news-list-item__date { display: none; }

  .footer__main { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-wrap: wrap; }

  .cta-banner h2 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .section__wm { font-size: clamp(4rem, 22vw, 8rem); opacity: 0.025; }

  .hero__stats { flex-wrap: wrap; gap: var(--space-md); }
}

/* ═══════════════════════════════════════════════════════════════════
   30. PAGE HERO — Inner pages with background image
═══════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transition: transform 8s ease;
  will-change: transform;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(7, 42, 31, 0.6) 0%,
    rgba(7, 42, 31, 0.45) 35%,
    rgba(7, 42, 31, 0.92) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--space-3xl) + 100px) 0 var(--space-3xl);
}
.page-hero__label {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--green-bright);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: block;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  font-weight: var(--weight-semi);
  color: var(--white);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-md);
}
.page-hero__desc {
  font-family: var(--font-ui);
  font-size: var(--text-body);
  color: rgba(240,237,232,0.7);
  max-width: 55ch;
  line-height: var(--leading-body);
}

/* ═══════════════════════════════════════════════════════════════════
   31. IMAGE BREAK — Full-width cinematic image dividers
═══════════════════════════════════════════════════════════════════ */
.img-break {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.75);
  transition: transform 12s ease;
  will-change: transform;
}
.img-break:hover img { transform: scale(1.03); }
.img-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,42,31,0.88) 0%,
    rgba(7,42,31,0.35) 55%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 var(--container-pad);
  padding-left: max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad)));
}
.img-break__quote {
  max-width: 28ch;
}
.img-break__quote span {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--green-bright);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-md);
}
.img-break__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: var(--weight-light);
  color: var(--chalk);
  font-style: italic;
  line-height: var(--leading-head);
}

/* ═══════════════════════════════════════════════════════════════════
   32. STAT BAR — Green statistics strip
═══════════════════════════════════════════════════════════════════ */
.stat-bar {
  background: var(--green-dark);
  border-top: 1px solid var(--green-muted);
  border-bottom: 1px solid var(--green-muted);
  padding: var(--space-xl) 0;
}
.stat-bar__inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.stat-bar__item { text-align: center; }
.stat-bar__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: var(--weight-semi);
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: var(--tracking-tight);
}
.stat-bar__label {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--green-bright);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: var(--space-xs);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   33. IMAGE CARDS — Cards with photo headers
═══════════════════════════════════════════════════════════════════ */
.img-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.img-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 220ms ease, transform 220ms ease,
              box-shadow 220ms ease;
  text-decoration: none;
}
.img-card:hover {
  border-color: var(--border-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.img-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 300ms ease, transform 400ms ease;
  display: block;
}
.img-card:hover .img-card__img { filter: brightness(0.96) saturate(1); transform: scale(1.03); }
.img-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}
.img-card__tag {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--green);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.img-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: var(--weight-semi);
  color: var(--chalk);
  line-height: var(--leading-head);
}
.img-card__desc {
  font-family: var(--font-ui);
  font-size: var(--text-body);
  color: var(--fog);
  line-height: var(--leading-body);
  flex: 1;
}
.img-card__arrow {
  font-family: var(--font-ui);
  font-size: var(--text-small);
  color: var(--green);
  margin-top: var(--space-sm);
}

@media (max-width: 600px) {
  .page-hero { min-height: 320px; }
  .img-break { height: 260px; }
  .stat-bar__num { font-size: clamp(2rem, 10vw, 3.5rem); }
}

/* ═══════════════════════════════════════════════════════════════════
   FORM CONTROL FIXES — CHECKBOX / RADIO
═══════════════════════════════════════════════════════════════════ */
input[type="checkbox"],
input[type="radio"] {
  appearance: auto;
  -webkit-appearance: auto;
  accent-color: var(--green);
  background: initial;
  border: initial;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════
   PRIVACY MODAL
═══════════════════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  max-width: 760px;
  width: calc(100% - 2rem);
  margin: 4vh auto;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-card-hover);
  z-index: 2;
  max-height: 88vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--fog);
  cursor: pointer;
}

.modal__close:hover {
  color: var(--chalk);
}

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: var(--weight-semi);
  color: var(--chalk);
  line-height: var(--leading-head);
  margin-bottom: var(--space-md);
  padding-right: 2rem;
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.modal__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-semi);
  color: var(--chalk);
  margin-top: var(--space-sm);
}

.modal__body p {
  font-family: var(--font-ui);
  font-size: var(--text-body);
  color: var(--fog);
  line-height: var(--leading-body);
}

.modal__body ul {
  padding-left: 1.2rem;
  margin: 0;
}

.modal__body li {
  font-family: var(--font-ui);
  font-size: var(--text-body);
  color: var(--fog);
  line-height: var(--leading-body);
  margin-bottom: 0.5rem;
}

.link-button {
  background: none;
  border: none;
  color: var(--green-bright);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
  padding: 0;
}

.link-button:hover {
  color: var(--green);
}

.reg-consent {
  margin-top: var(--space-md);
}

.reg-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--fog);
  line-height: 1.5;
  cursor: pointer;
}

.reg-consent__text a {
  color: var(--green-bright);
  text-decoration: underline;
}

.reg-consent__note {
  font-size: 0.75rem;
  color: var(--fog);
  margin-top: 10px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .modal__content {
    width: calc(100% - 1rem);
    margin: 2vh auto;
    max-height: 92vh;
    padding: 1rem;
  }

  .modal__title {
    padding-right: 1.8rem;
  }
}
