/* ═══════════════════════════════════════════════════════════════
   KTJ · KUNLE OLATUNJI FOR GOVERNOR · OYO STATE 2027
   Design System — ADP campaign palette (royal blue + red + coral)
   Light theme default · dark theme opt-in via [data-theme="dark"]
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600..900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

/* ═══════════════════════════════════════════════════════════════
   THEMED TOKEN SYSTEM
   ADP campaign palette — royal blue + campaign red + coral beads.
   Token NAMES kept (--gold→blue, --crimson→red, --adp→coral) so the
   whole design system flips by swapping these values per theme.
   Light is default; [data-theme="dark"] keeps the editorial dark vibe.
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Constant across themes */
  --on-brand:     #ffffff;   /* text/icons sitting on a brand-color fill */
  --on-brand-dim: rgba(255, 255, 255, 0.18);

  /* Fonts */
  --font-d: 'Fraunces', 'Georgia', serif;
  --font-b: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Type scale */
  --hero-name: clamp(3rem, 5vw, 5rem);
  --h1:  clamp(2.5rem, 5vw, 5rem);
  --h2:  clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  --h3:  clamp(1.5rem, 2vw + 0.25rem, 2rem);
  --h4:  clamp(1.125rem, 1.2vw + 0.25rem, 1.5rem);
  --lg:  1.125rem;
  --md:  1rem;
  --sm:  0.875rem;
  --xs:  0.75rem;
  --xxs: 0.6875rem;

  /* Space */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem;
  --s32: 8rem;

  /* Radii */
  --r-sm: 4px; --r: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 28px; --pill: 999px;

  /* Z layers */
  --z-overlay: 300;
  --z-nav:     350;  /* floats above the mobile overlay so the X stays tappable */
  --z-modal:   400;
}

/* ── LIGHT THEME (default) ──────────────────────────────────────
   White ground, ADP royal blue primary, campaign red accent,
   coral beads as warm tertiary. Deep navy ink for body. */
:root,
[data-theme="light"] {
  color-scheme: light;

  --bg:           #ffffff;
  --surface:      #f3f6fd;
  --surface-2:    #e9f0fb;
  --surface-3:    #dbe5f6;

  /* Primary = ADP royal blue (was gold) */
  --gold:         #1a4fbf;
  --gold-light:   #163fa0;   /* deeper — readable as text/headings on white */
  --gold-pale:    #5b82df;
  --gold-dim:     rgba(26, 79, 191, 0.12);

  /* Accent = campaign red (was crimson) */
  --crimson:      #e51e25;
  --crimson-dark: #c2161c;
  --crimson-dim:  rgba(229, 30, 37, 0.10);

  /* Tertiary = coral beads (was adp green) */
  --adp:          #ef6a3b;
  --adp-light:    #e2521f;
  --adp-dim:      rgba(239, 106, 59, 0.14);

  --text:         #0e1a33;
  --text-muted:   #45557a;
  --text-faint:   #8392b0;

  --border:       rgba(14, 26, 51, 0.09);
  --border-hi:    rgba(14, 26, 51, 0.15);
  --border-gold:  rgba(26, 79, 191, 0.30);

  --hero-glow:    rgba(26, 79, 191, 0.10);
  --hero-dot:     rgba(26, 79, 191, 0.16);
  --wm-color:     rgba(26, 79, 191, 0.05);
  --wm-stroke:    rgba(26, 79, 191, 0.10);

  /* Surfaces & glass */
  --glass:        rgba(255, 255, 255, 0.78);
  --overlay-bg:   rgba(244, 247, 253, 0.92);
  --shell:        rgba(14, 26, 51, 0.05);
  --shadow-card:  0 8px 30px rgba(14, 26, 51, 0.08);
  --shadow-nav:   0 6px 28px rgba(14, 26, 51, 0.12);
  --photo-shadow: drop-shadow(0 30px 55px rgba(26, 79, 191, 0.18)) drop-shadow(0 8px 20px rgba(14, 26, 51, 0.10));

  /* Legacy aliases */
  --red: var(--crimson); --red-dark: var(--crimson-dark);
  --blue: var(--gold);   --blue-dark: var(--surface);
  --blue-mid: var(--text-muted);
  --sky: var(--gold-light); --sky-light: var(--gold-pale); --sky-pale: var(--surface-2);
  --ink: var(--text); --muted: var(--text-muted); --border-dk: var(--border-hi);
}

/* ── DARK THEME (opt-in) ────────────────────────────────────────
   Editorial navy-black, brighter blue/red/coral for contrast. */
[data-theme="dark"] {
  color-scheme: dark;

  --bg:           #0a0e1a;
  --surface:      #111729;
  --surface-2:    #161e36;
  --surface-3:    #1e2845;

  --gold:         #4a7ae0;
  --gold-light:   #7ba0ef;
  --gold-pale:    #aec5f7;
  --gold-dim:     rgba(74, 122, 224, 0.18);

  --crimson:      #f2444a;
  --crimson-dark: #d8323a;
  --crimson-dim:  rgba(242, 68, 74, 0.16);

  --adp:          #f47b4f;
  --adp-light:    #ff9266;
  --adp-dim:      rgba(244, 123, 79, 0.18);

  --text:         #eaf0fb;
  --text-muted:   #93a2c0;
  --text-faint:   #56658c;

  --border:       rgba(234, 240, 251, 0.08);
  --border-hi:    rgba(234, 240, 251, 0.14);
  --border-gold:  rgba(74, 122, 224, 0.32);

  --hero-glow:    rgba(74, 122, 224, 0.16);
  --hero-dot:     rgba(74, 122, 224, 0.14);
  --wm-color:     rgba(123, 160, 239, 0.05);
  --wm-stroke:    rgba(123, 160, 239, 0.11);

  --glass:        rgba(17, 23, 41, 0.80);
  --overlay-bg:   rgba(10, 14, 26, 0.92);
  --shell:        rgba(234, 240, 251, 0.04);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-nav:   0 4px 24px rgba(0, 0, 0, 0.45);
  --photo-shadow: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.7)) drop-shadow(0 4px 20px rgba(74, 122, 224, 0.18));
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  font-size: var(--md);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
address { font-style: normal; }

/* ── LAYOUT ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: 800px; }


/* ══════════════════════════════════════════════════════════════
   PILL BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.125rem 0.75rem 1.375rem;
  border-radius: var(--pill);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: var(--sm);
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background-color 260ms cubic-bezier(0.32, 0.72, 0, 1),
              border-color 260ms cubic-bezier(0.32, 0.72, 0, 1),
              transform 120ms cubic-bezier(0.32, 0.72, 0, 1);
}
.btn-pill:active { transform: scale(0.98); }

/* Trailing icon — button-in-button architecture */
.btn-pill__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1);
}
.btn-pill.group:hover .btn-pill__icon {
  transform: translate(1px, -1px) scale(1.08);
}

.btn-pill--gold {
  background: var(--gold);
  color: var(--on-brand);
  border-color: var(--gold);
}
.btn-pill--gold .btn-pill__icon { background: var(--on-brand-dim); }
.btn-pill--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-pill--crimson {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-pill--crimson .btn-pill__icon { background: rgba(255,255,255,0.12); }
.btn-pill--crimson:hover { background: var(--crimson-dark); border-color: var(--crimson-dark); }

.btn-pill--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn-pill--outline .btn-pill__icon { background: var(--surface-2); }
.btn-pill--outline:hover {
  background: var(--surface-2);
  border-color: var(--border-hi);
}

.btn-pill--sm {
  padding: 0.5625rem 0.875rem 0.5625rem 1.125rem;
  font-size: var(--xs);
}
.btn-pill--sm .btn-pill__icon { width: 24px; height: 24px; }

/* Legacy btn compat (used in inner pages) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--pill);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: var(--md);
  line-height: 1;
  border: 1.5px solid transparent;
  transition: background-color 200ms cubic-bezier(0.32, 0.72, 0, 1),
              border-color 200ms cubic-bezier(0.32, 0.72, 0, 1);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--lg { padding: 0.9375rem 2rem; font-size: var(--lg); }
.btn--sm { padding: 0.5rem 1rem; font-size: var(--sm); }
.btn--red, .btn--crimson {
  background: var(--crimson); color: #fff; border-color: var(--crimson);
}
.btn--red:hover, .btn--crimson:hover { background: var(--crimson-dark); border-color: var(--crimson-dark); }
.btn--blue, .btn--gold {
  background: var(--gold); color: var(--on-brand); border-color: var(--gold);
}
.btn--blue:hover, .btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--outline-blue {
  border-color: var(--border-hi); color: var(--text); background: transparent;
}
.btn--outline-blue:hover { background: var(--surface-2); }
.btn--outline-white {
  border-color: rgba(240,234,224,0.4); color: var(--text); background: transparent;
}
.btn--outline-white:hover { background: var(--surface-2); }
.btn--outline-red {
  border-color: var(--crimson); color: var(--crimson); background: transparent;
}
.btn--outline-red:hover { background: var(--crimson); color: #fff; }


/* ══════════════════════════════════════════════════════════════
   FLOATING NAV ISLAND
   ══════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  width: 100%;
  max-width: 960px;
  padding-inline: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
}

.nav-island {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-hi);
  border-radius: var(--pill);
  padding: 7px 7px 7px 20px;
  box-shadow: var(--shadow-nav);
  pointer-events: all;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: var(--s2);
}
.nav-logo__text {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-inline-end: auto;
}
.nav-link {
  padding: var(--s2) var(--s3);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--pill);
  transition: color 200ms cubic-bezier(0.32, 0.72, 0, 1),
              background-color 200ms cubic-bezier(0.32, 0.72, 0, 1);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--surface-3); }
.nav-link.active { color: var(--text); }

/* CTA pill inside nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 9px 9px 16px;
  background: var(--gold);
  color: var(--on-brand);
  border-radius: var(--pill);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 260ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta__arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--on-brand-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-cta:hover .nav-cta__arrow { transform: translate(1px, -1px); }

/* Theme toggle — sun/moon crossfade */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--surface-2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: var(--s1);
  transition: background-color 200ms cubic-bezier(0.32, 0.72, 0, 1),
              color 200ms cubic-bezier(0.32, 0.72, 0, 1),
              transform 120ms cubic-bezier(0.32, 0.72, 0, 1);
}
.theme-toggle:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) {
  .theme-toggle:hover { color: var(--gold); background: var(--surface-3); }
}
.theme-toggle svg {
  position: absolute;
  width: 17px;
  height: 17px;
  transition: opacity 220ms cubic-bezier(0.32, 0.72, 0, 1),
              transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
/* Light mode → show moon (action: go dark) */
.theme-toggle__moon { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle__sun  { opacity: 0; transform: rotate(-90deg) scale(0.6); }
/* Dark mode → show sun (action: go light) */
[data-theme="dark"] .theme-toggle__moon { opacity: 0; transform: rotate(90deg) scale(0.6); }
[data-theme="dark"] .theme-toggle__sun  { opacity: 1; transform: rotate(0) scale(1); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--surface-2);
  flex-shrink: 0;
  margin-left: var(--s1);
}
.nav-burger__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1),
              opacity 200ms ease;
}
.nav-burger.open .nav-burger__bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.open .nav-burger__bar:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-island { padding: 6px 6px 6px 16px; gap: var(--s2); }
  .nav-logo { margin-right: 0; }
  /* Push the controls cluster to the right so the pill isn't half-empty */
  .theme-toggle { margin-left: auto; }
  .theme-toggle, .nav-burger { width: 38px; height: 38px; }
}
@media (max-width: 420px) {
  .nav-wrap { top: 12px; padding-inline: 0.75rem; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY — fullscreen glass expansion
   ══════════════════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  visibility: hidden;
  pointer-events: none;
}
.nav-overlay.open {
  visibility: visible;
  pointer-events: all;
}

.nav-overlay__bg {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  opacity: 0;
  transition: opacity 380ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-overlay.open .nav-overlay__bg { opacity: 1; }

.nav-overlay__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s24) clamp(2rem, 8vw, 5rem);
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s16);
}

.overlay-link {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 400ms cubic-bezier(0.32, 0.72, 0, 1),
              transform 400ms cubic-bezier(0.32, 0.72, 0, 1),
              color 160ms ease;
}
.overlay-link:hover { color: var(--gold); }
/* Staggered reveal by CSS variable */
.nav-overlay.open .overlay-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 55ms + 80ms);
}

.overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-b);
  font-size: var(--lg);
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms cubic-bezier(0.32, 0.72, 0, 1) 380ms,
              transform 400ms cubic-bezier(0.32, 0.72, 0, 1) 380ms;
  margin-bottom: var(--s4);
}
.nav-overlay.open .overlay-cta { opacity: 1; transform: translateY(0); }

.overlay-tag {
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  transition: opacity 400ms ease 460ms;
}
.nav-overlay.open .overlay-tag { opacity: 1; }


/* ══════════════════════════════════════════════════════════════
   HERO — Dark editorial full-viewport
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Flyer-style backdrop: blue glow + dot matrix behind the figure.
   Crucial in light mode so the white agbada reads against white. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Soft blue glow anchored toward the photo (right side) */
  background:
    radial-gradient(60% 70% at 78% 55%, var(--hero-glow) 0%, transparent 70%),
    radial-gradient(45% 55% at 95% 90%, var(--hero-glow) 0%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Dot-matrix, fading in toward the right where the figure sits */
  background-image: radial-gradient(var(--hero-dot) 1.1px, transparent 1.2px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(105deg, transparent 30%, #000 78%, transparent 100%);
          mask-image: linear-gradient(105deg, transparent 30%, #000 78%, transparent 100%);
  opacity: 0.9;
}

/* Gold vertical spine */
.hero__spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* "NEW LEVEL" watermark texture */
.hero__wm {
  position: absolute;
  inset: -40% -10%;
  transform: rotate(-18deg);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.hero__wm-row {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: 0.08em;
  color: var(--wm-color);
  opacity: 1;
  white-space: nowrap;
  line-height: 1.2;
}
/* KTJ rows: outlined "ghost" letters — echoes the campaign flyer,
   gives the texture rhythm against the solid NEW LEVEL rows */
.hero__wm-row--ktj {
  color: transparent;
  letter-spacing: 0.16em;
  -webkit-text-stroke: 1.5px var(--wm-stroke);
          text-stroke: 1.5px var(--wm-stroke);
}

/* Two-column layout — both columns stretch to full hero height */
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(0rem, 2vw, 2rem);
  align-items: stretch;
  padding-block: 0; /* keep .container's horizontal gutter; only zero top/bottom */
  width: 100%;
  min-height: 100dvh;
}

/* ── Left: Typography — flex-centered vertically ── */
.hero__text {
  position: relative;
  z-index: 2; /* stay above the overflowing photo */
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(90px, 12vh, 120px);
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.hero__adp {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1.05) contrast(1.1);
}
.hero__eyebrow-tag {
  font-size: var(--xxs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Candidate name — reduced, with (KTJ) */
.hero__name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw + 0.5rem, 2.375rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--gold-light);
  margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}
.hero__ktj {
  color: var(--gold);
  white-space: nowrap;
}

/* Office — the dominant display line */
.hero__office {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}

/* Slogan */
.hero__slogan {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  max-width: 38ch;
  font-style: normal;
}
.hero__slogan em {
  font-style: italic;
  color: var(--text);
}

/* CTA group */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

/* Year badge */
.hero__year-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: var(--s2) var(--s4);
  font-size: var(--xxs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__year-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Right: Frameless floating photo — fills full hero height ── */
.hero__frame-wrap {
  position: relative;
  min-width: 0;
  overflow: visible; /* let photo break out of column */
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
}

/* Prominent party logo beside the photo — the ballot mark voters look for.
   Anchored top-right, above the shoulder, clear of the candidate's face. */
.hero__party {
  position: absolute;
  top: clamp(84px, 11vh, 120px);
  right: 0;
  left: auto;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  pointer-events: none;
}
.hero__party-logo {
  width: clamp(76px, 9vw, 124px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(14, 26, 51, 0.18));
}
.hero__party-tag {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
}

/* Shell and core are transparent structural wrappers */
.hero__frame-shell {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero__frame-core {
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* The cutout photo — width:auto lets the full 96dvh height drive the size */
.hero__photo {
  display: block;
  width: auto;
  max-width: none;
  height: 96dvh;
  object-fit: contain;
  object-position: right bottom;
  filter: var(--photo-shadow);
}

/* Unused — removed from HTML */
.hero__aspirant-badge,
.hero__aspirant-pulse,
.hero__photo-bar,
.hero__float-stat,
.hero__float-shell,
.hero__float-core,
.hero__float-n,
.hero__float-l,
.hero__oyomap { display: none; }

/* ── Inline stats bar — 33 LGAs | 2027 | ADP ── */
.hero__stats-bar {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-top: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid var(--border-hi);
}
.hero__stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero__stat-n {
  font-family: var(--font-d);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat-l {
  font-size: var(--xxs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  line-height: 1.35;
  white-space: nowrap;
}
.hero__stat-sep {
  width: 1px;
  height: 2.25rem;
  background: var(--border-hi);
  flex-shrink: 0;
}

/* Scroll nudge */
.hero__scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: var(--text-faint);
  font-size: var(--xxs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-track {
  width: 1.5px;
  height: 28px;
  background: var(--border);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.hero__scroll-thumb {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  border-radius: 1px;
  animation: scroll-thumb 2.4s ease-in-out infinite;
}
@keyframes scroll-thumb {
  0%   { top: -50%; }
  100% { top: 150%; }
}

/* ── Hero responsive ── */
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    min-height: auto;
  }
  .hero__text {
    padding-top: 100px;
    padding-bottom: var(--s8);
    justify-content: flex-start;
  }
  .hero__frame-wrap { max-width: 480px; margin-inline: auto; align-self: auto; overflow: hidden; justify-content: center; }
  .hero__frame-shell { height: auto; justify-content: center; }
  .hero__frame-core { justify-content: center; }
  .hero__scroll { display: none; }
  .hero__name { font-size: clamp(2.75rem, 9.5vw, 4.5rem); }
  .hero__photo { width: 100%; max-width: 100%; height: auto; max-height: 60vh; }
}
@media (max-width: 540px) {
  .hero__text { padding-top: 90px; }
  .hero__name { font-size: clamp(2.25rem, 10.5vw, 3.25rem); line-height: 0.92; }
  .hero__adp { width: 34px; height: 34px; }
  .hero__eyebrow-tag { font-size: 0.5625rem; letter-spacing: 0.12em; }
  .hero__gov-text { font-size: 0.5625rem; }
  .hero__slogan { font-size: 1rem; }
  .hero__ctas { gap: var(--s2); }
  .hero__ctas .btn-pill { flex: 1; justify-content: center; }
  /* Stats as a tidy 3-up grid, no separators, labels allowed to wrap */
  .hero__stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
  .hero__stat-sep { display: none; }
  .hero__stat-n { font-size: 1.375rem; }
  .hero__stat-l { white-space: normal; font-size: 0.5625rem; }
  .hero__photo { width: 100%; max-width: 100%; height: auto; max-height: 54vh; }
}


/* ══════════════════════════════════════════════════════════════
   VISION QUOTE BAND
   ══════════════════════════════════════════════════════════════ */
.vision {
  background: var(--surface);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gold) 25%,
    var(--gold) 75%,
    transparent 100%
  );
}
.vision::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--crimson) 25%,
    var(--crimson) 75%,
    transparent 100%
  );
}
.vision__inner { text-align: center; position: relative; }

.vision__open-mark {
  font-family: var(--font-d);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: var(--s6);
  user-select: none;
  pointer-events: none;
}
.vision__q {
  font-family: var(--font-d);
  font-size: clamp(1.625rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 44ch;
  margin: 0 auto var(--s8);
  text-wrap: balance;
}
.vision__q em {
  color: var(--gold-light);
  font-style: italic;
}
.vision__cite {
  font-size: var(--sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}


/* ══════════════════════════════════════════════════════════════
   SECTION BASE + HELPERS
   ══════════════════════════════════════════════════════════════ */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--surface { background: var(--surface); }
.section--alt { background: var(--surface); }
.section--dark { background: var(--bg); }

.sec-hdr {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: var(--s4);
}
.sec-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.sec-eyebrow--gold { color: var(--gold); }
.sec-title {
  font-size: var(--h2);
  color: var(--text);
  margin-bottom: var(--s5);
}
.sec-sub {
  font-size: var(--lg);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 58ch;
}

/* Section label compat for inner pages */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s4);
}
.sec-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.sec-body {
  font-size: var(--lg);
  line-height: 1.70;
  color: var(--text-muted);
  max-width: 64ch;
  text-wrap: pretty;
}


/* ══════════════════════════════════════════════════════════════
   BENTO GRID — 12-column asymmetric
   ══════════════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  margin-bottom: var(--s12);
}

/* Grid placement */
.bcard--economy  { grid-column: 1 / span 8;  grid-row: 1 / span 2; }
.bcard--edu      { grid-column: 9 / span 4;  grid-row: 1; }
.bcard--sec      { grid-column: 9 / span 4;  grid-row: 2; }
.bcard--health   { grid-column: 1 / span 4;  grid-row: 3; }
.bcard--infra    { grid-column: 5 / span 4;  grid-row: 3; }
.bcard--gov      { grid-column: 9 / span 4;  grid-row: 3; }

/* Double-bezel card */
.bcard { min-height: 0; }
.bcard--economy { min-height: 380px; }

.bcard__shell {
  height: 100%;
  background: var(--shell);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: var(--r-xl);
  transition: border-color 320ms cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
.bcard:hover .bcard__shell {
  border-color: var(--border-hi);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.bcard__core {
  position: relative;
  height: 100%;
  background: var(--surface-2);
  border-radius: calc(var(--r-xl) - 3px);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.05);
  transition: background-color 320ms cubic-bezier(0.32, 0.72, 0, 1);
}

.bcard__core--ink {
  background: var(--surface);
}
.bcard__core--gold-tint {
  background: linear-gradient(140deg, rgba(40,95,200,0.08) 0%, var(--surface-2) 60%);
}
.bcard__core--crimson-tint {
  background: linear-gradient(140deg, rgba(229,30,37,0.08) 0%, var(--surface-2) 60%);
}
.bcard__core--adp-tint {
  background: linear-gradient(140deg, rgba(239,106,59,0.10) 0%, var(--surface-2) 60%);
}

/* Card header: icon + number */
.bcard__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--s5);
}
.bcard__icon-shell {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}
.bcard--economy .bcard__icon-shell { color: var(--gold); border-color: var(--gold-dim); background: rgba(40,95,200,0.08); }
.bcard--edu     .bcard__icon-shell { color: var(--text-muted); }
.bcard--sec     .bcard__icon-shell { color: var(--gold-light); border-color: var(--gold-dim); background: rgba(40,95,200,0.06); }
.bcard--health  .bcard__icon-shell { color: var(--crimson); border-color: var(--crimson-dim); background: rgba(229,30,37,0.06); }
.bcard--infra   .bcard__icon-shell { color: var(--text-muted); }
.bcard--gov     .bcard__icon-shell { color: var(--adp-light); border-color: var(--adp-dim); background: rgba(239,106,59,0.08); }

.bcard__num {
  font-family: var(--font-d);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--text-faint);
}

.bcard__title {
  font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s3);
  line-height: 1.15;
}
.bcard--economy .bcard__title { font-size: clamp(1.375rem, 2vw + 0.25rem, 2rem); }

.bcard__body {
  font-size: var(--sm);
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: var(--s6);
}

.bcard__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--xs);
  font-weight: 600;
  color: var(--text-faint);
  transition: color 220ms cubic-bezier(0.32, 0.72, 0, 1);
  margin-top: auto;
}
.bcard__link:hover, .bcard:hover .bcard__link { color: var(--gold); }

.bcard__link-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1),
              background-color 260ms ease;
}
.bcard__link.group:hover .bcard__link-arrow,
.bcard:hover .bcard__link-arrow {
  transform: translate(1px, -1px);
  background: var(--gold-dim);
}

/* ── Economy featured card: key figures + chart band ──────────── */
/* Body no longer stretches; the stats strip takes the slack instead */
.bcard--economy .bcard__body { flex: 0 0 auto; margin-bottom: 0; max-width: 92%; }

.econ-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: auto;            /* push figures + chart to the lower half */
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}
.econ-stat__n {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 2.4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-light);
}
.econ-stat__n small {
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 2px;
}
.econ-stat__l {
  display: block;
  margin-top: 10px;
  font-size: var(--xs);
  line-height: 1.4;
  color: var(--text-muted);
}

.econ-chart {
  margin: 0;
  margin-top: var(--s8);
}
.econ-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.econ-chart__cap {
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.bcard--economy .bcard__link { margin-top: 0; }  /* it lives in the chart head now */
.econ-chart__svg {
  width: 100%;
  height: clamp(96px, 12vw, 150px);
  display: block;
  color: var(--gold);
}
.econ-chart__labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--s2);
}
.econ-chart__labels span {
  font-size: var(--xxs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-align: center;
}

/* Bento CTA row */
.bento-cta {
  display: flex;
  justify-content: center;
}

/* ── Bento responsive ── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .bcard--economy  { grid-column: 1 / span 6; grid-row: 1; min-height: 300px; }
  .bcard--edu      { grid-column: 1 / span 3; grid-row: 2; }
  .bcard--sec      { grid-column: 4 / span 3; grid-row: 2; }
  .bcard--health   { grid-column: 1 / span 2; grid-row: 3; }
  .bcard--infra    { grid-column: 3 / span 2; grid-row: 3; }
  .bcard--gov      { grid-column: 5 / span 2; grid-row: 3; }
}
@media (max-width: 680px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--economy  { grid-column: 1 / -1; grid-row: auto; min-height: 0; }
  .bcard--edu      { grid-column: span 1; grid-row: auto; }
  .bcard--sec      { grid-column: span 1; grid-row: auto; }
  .bcard--health   { grid-column: span 1; grid-row: auto; }
  .bcard--infra    { grid-column: span 1; grid-row: auto; }
  .bcard--gov      { grid-column: 1 / -1; grid-row: auto; }
  .econ-stats { gap: var(--s3); }
  .econ-stat__l { font-size: 0.6875rem; }
  .econ-chart__head { flex-direction: column; align-items: flex-start; gap: var(--s3); }
  .bcard--economy .bcard__link { white-space: nowrap; }
}
@media (max-width: 440px) {
  .bento { grid-template-columns: 1fr; gap: 8px; }
  .bcard--edu, .bcard--sec, .bcard--health, .bcard--infra { grid-column: 1; }
}


/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION — Editorial split
   ══════════════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* Photo column */
.about-photo-col { position: relative; }

.about-frame-shell {
  background: linear-gradient(135deg,
    rgba(40,95,200,0.20) 0%,
    rgba(40,95,200,0.06) 50%,
    rgba(40,95,200,0.12) 100%
  );
  border: 1px solid var(--border-gold);
  padding: 4px;
  border-radius: var(--r-2xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 2px 8px rgba(40,95,200,0.08);
  margin-bottom: var(--s5);
}
.about-frame-core {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--r-2xl) - 4px);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.05);
}
.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Watermark backdrop inside framed cutouts ───────────────────
   Blue glow + dot matrix + faint diagonal KTJ rows, showing through
   the transparent areas of the figure. Echoes the hero texture. */
.frame-wm {
  position: absolute;
  inset: -18% -12%;
  z-index: 0;
  transform: rotate(-18deg);
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 0.18em;
  align-items: center;
  justify-content: center;
}
.frame-wm__row {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.10em;
  color: var(--wm-color);
  white-space: nowrap;
  line-height: 1.25;
}
.frame-wm__row--ktj {
  color: transparent;
  letter-spacing: 0.18em;
  -webkit-text-stroke: 1.2px var(--wm-stroke);
          text-stroke: 1.2px var(--wm-stroke);
}
/* Glow + dots layer */
.about-frame-core::before,
.bio-photo__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(72% 58% at 50% 32%, var(--hero-glow) 0%, transparent 72%),
    radial-gradient(var(--hero-dot) 1px, transparent 1.3px);
  background-size: auto, 15px 15px;
}
.about-photo-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--crimson), var(--gold), var(--adp-light));
}

/* Stats grid — 2x2 double-bezel */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.astat-shell {
  background: var(--shell);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: var(--r-lg);
  transition: border-color 280ms ease;
}
.astat-shell:hover { border-color: var(--border-gold); }
.astat-core {
  background: var(--surface-2);
  border-radius: calc(var(--r-lg) - 3px);
  padding: var(--s4) var(--s5);
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.04);
}
.astat__n {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.astat__l {
  font-size: var(--xxs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  line-height: 1.45;
}

/* Text column */
.about-body {
  font-size: var(--lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--s5);
}
.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s8);
}

@media (max-width: 840px) {
  .about-split { grid-template-columns: 1fr; gap: var(--s12); }
  .about-photo-col { max-width: 420px; }
}


/* ══════════════════════════════════════════════════════════════
   JOIN SECTION — Dark CTA with form
   ══════════════════════════════════════════════════════════════ */
.join-section {
  background: var(--bg);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

/* ADP Nigerian flag stripe at top */
.join-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
}
.join-stripe span { flex: 1; }
.join-stripe span:nth-child(1) { background: var(--crimson); }
.join-stripe span:nth-child(2) { background: var(--text); opacity: 0.5; }
.join-stripe span:nth-child(3) { background: var(--adp); }

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* Intro */
.join-title {
  font-size: var(--h2);
  color: var(--text);
  margin-bottom: var(--s5);
}
.join-body {
  font-size: var(--lg);
  font-weight: 300;
  line-height: 1.70;
  color: var(--text-muted);
  margin-bottom: var(--s8);
}
.join-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.jbullet {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--md);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}
.jbullet__dot {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

/* Form double-bezel card */
.form-shell {
  background: var(--shell);
  border: 1px solid var(--border-hi);
  padding: 4px;
  border-radius: var(--r-2xl);
}
.form-core {
  background: var(--surface);
  border-radius: calc(var(--r-2xl) - 4px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.05);
}
.form-title {
  font-size: var(--h3);
  color: var(--text);
  margin-bottom: var(--s6);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4) var(--s5);
  margin-bottom: var(--s5);
}
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group--full { grid-column: 1 / -1; }
label {
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.form-req { color: var(--crimson); }
.form-ctrl {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  font-size: var(--sm);
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-ctrl::placeholder { color: var(--text-faint); }
.form-ctrl:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(40, 95, 200, 0.12);
}
.form-ctrl.invalid { border-color: var(--crimson); }
select.form-ctrl {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238A7A65' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-ctrl option { background: var(--surface-2); color: var(--text); }
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: var(--md);
  padding: 0.9375rem 1.5rem;
  margin-top: var(--s2);
}
.form-submit .btn-pill__icon { margin-left: auto; }
.form-note {
  text-align: center;
  font-size: var(--xxs);
  color: var(--text-faint);
  margin-top: var(--s4);
  line-height: 1.6;
}
.form-note a { color: var(--gold); }
.form-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s12) var(--s8);
  gap: var(--s4);
}
.form-success.show { display: flex; }
.form-success__icon {
  width: 52px;
  height: 52px;
  background: rgba(239, 106, 59, 0.15);
  border: 1px solid rgba(239, 106, 59, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--adp-light);
}
.form-success__title {
  font-size: var(--h3);
  color: var(--text);
}
.form-success__body {
  font-size: var(--md);
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .join-inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
}


/* ══════════════════════════════════════════════════════════════
   UPDATES — News cards
   ══════════════════════════════════════════════════════════════ */
.updates-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.updates-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
}

/* News card double-bezel */
.ucard { }
.ucard__shell {
  height: 100%;
  background: var(--shell);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: var(--r-xl);
  transition: border-color 280ms cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.ucard:hover .ucard__shell {
  border-color: var(--border-hi);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.ucard__core {
  height: 100%;
  background: var(--surface-2);
  border-radius: calc(var(--r-xl) - 3px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.04);
}
.ucard__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}
.ucard--feat .ucard__img-wrap { aspect-ratio: 16 / 9; }
.ucard:not(.ucard--feat) .ucard__img-wrap { aspect-ratio: 16 / 9; }
.ucard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.32, 0.72, 0, 1);
}
.ucard:hover .ucard__img { transform: scale(1.04); }
.ucard__body {
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ucard__cat {
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s2);
}
.ucard__title {
  font-family: var(--font-d);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: var(--s3);
  text-wrap: balance;
  flex: 1;
}
.ucard--feat .ucard__title { font-size: 1.25rem; }
.ucard__excerpt {
  font-size: var(--sm);
  line-height: 1.60;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.ucard__date {
  font-size: var(--xxs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .ucard--feat { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .updates-grid { grid-template-columns: 1fr; }
  .ucard--feat { grid-column: 1; }
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  padding-bottom: var(--s16);
}
.footer__bar {
  height: 3px;
  background: linear-gradient(to right,
    var(--crimson) 0%,
    var(--gold) 45%,
    var(--adp-light) 100%
  );
  margin-bottom: var(--s20);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s16);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s8);
}
.footer__name {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--s2);
}
.footer__tagline {
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}
.footer__desc {
  font-size: var(--sm);
  line-height: 1.65;
  color: var(--text-faint);
  max-width: 34ch;
  margin-bottom: var(--s6);
}
.footer__social { display: flex; gap: var(--s2); }
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  transition: background-color 200ms ease,
              color 200ms ease,
              border-color 200ms ease;
}
.footer__social-link:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--border-gold);
}
.footer__col-head {
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer__link {
  font-size: var(--sm);
  color: var(--text-faint);
  transition: color 160ms ease;
  line-height: 1.45;
}
.footer__link:hover { color: var(--gold-light); }
.footer__address {
  margin-top: var(--s6);
  font-size: var(--xs);
  color: var(--text-faint);
  line-height: 1.7;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
  padding-bottom: var(--s6);
}
.footer__copy {
  font-size: var(--xs);
  color: var(--text-faint);
  line-height: 1.6;
}
.footer__copy a { color: var(--text-faint); }
.footer__copy a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer__disc {
  font-size: 0.625rem;
  color: var(--text-faint);
  opacity: 0.55;
  text-align: center;
  line-height: 1.7;
  padding-top: var(--s5);
  border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* ══════════════════════════════════════════════════════════════
   INNER PAGES — about, agenda, join, contact
   ══════════════════════════════════════════════════════════════ */

/* Page header */
.pg-header {
  background: var(--surface);
  padding-top: calc(var(--s20) + 80px); /* extra room for fixed floating nav */
  padding-bottom: var(--s16);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.pg-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.pg-header__inner { position: relative; z-index: 1; }
.pg-header__bc { font-size: var(--sm); color: var(--text-faint); margin-bottom: var(--s4); }
.pg-header__bc a { color: var(--gold); transition: color 140ms ease; }
.pg-header__bc a:hover { color: var(--gold-light); }
.pg-header__title {
  font-size: var(--h1);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: var(--s4);
}
.pg-header__sub {
  font-size: var(--lg);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.65;
}

/* About page */
.bio-grid { display: grid; grid-template-columns: 1fr 2fr; gap: var(--s16); align-items: start; }
.bio-photo { position: sticky; top: 100px; }
.bio-photo__frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
  margin-bottom: var(--s4);
  border: 1px solid var(--border-gold);
}
.bio-photo__frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-photo__bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--crimson), var(--gold), var(--adp-light)); }
.bio-photo__name { font-family: var(--font-d); font-size: 1.125rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; text-align: center; }
.bio-photo__role { font-size: var(--sm); color: var(--text-muted); text-align: center; font-weight: 500; }
.bio-facts { margin-top: var(--s8); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.bio-facts__head { background: var(--surface-2); padding: var(--s3) var(--s5); font-size: var(--xxs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.bio-fact { display: grid; grid-template-columns: auto 1fr; gap: var(--s4); padding: var(--s4) var(--s5); border-bottom: 1px solid var(--border); }
.bio-fact:last-child { border-bottom: none; }
.bio-fact__label { font-size: var(--xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); white-space: nowrap; }
.bio-fact__val { font-size: var(--sm); font-weight: 500; color: var(--text); }
.bio-content h2 { font-size: var(--h3); color: var(--text); letter-spacing: -0.025em; margin: var(--s10) 0 var(--s4); }
.bio-content h2:first-child { margin-top: 0; }
.bio-content p { font-size: var(--lg); font-weight: 300; line-height: 1.75; color: var(--text-muted); margin-bottom: var(--s5); max-width: 68ch; }
.bio-content p strong { color: var(--text); font-weight: 600; }
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; } .bio-photo { position: static; } .bio-photo__frame { max-width: 320px; } }

/* Timeline */
.timeline { position: relative; padding-left: var(--s12); }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: var(--border-hi); }
.titem { display: flex; gap: var(--s8); padding-bottom: var(--s10); position: relative; }
.titem:last-child { padding-bottom: 0; }
.titem__dot { position: relative; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; margin-top: 3px; z-index: 1; }
.titem__dot svg { width: 17px; height: 17px; color: var(--gold); }
.titem--red .titem__dot { border-color: var(--crimson-dim); }
.titem--red .titem__dot svg { color: var(--crimson); }
.titem__yr { font-size: var(--xxs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s2); }
.titem__title { font-family: var(--font-d); font-size: var(--h4); font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: var(--s3); }
.titem__body { font-size: var(--md); line-height: 1.65; color: var(--text-muted); }

/* Agenda page */
.agenda-pg { display: grid; grid-template-columns: 220px 1fr; gap: var(--s12); align-items: start; }
.agenda-sidenav { position: sticky; top: 100px; }
.agenda-sidenav__head { font-size: var(--xxs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s4); padding-left: var(--s4); }
.snav-item { display: flex; align-items: center; gap: var(--s3); padding: var(--s3) var(--s4); border-radius: var(--r-md); font-size: var(--sm); font-weight: 500; color: var(--text-muted); text-decoration: none; transition: background 140ms ease, color 140ms ease; width: 100%; }
.snav-item:hover { background: var(--surface-2); color: var(--text); }
.snav-item.active { background: var(--gold-dim); color: var(--gold-light); border: 1px solid var(--border-gold); }
.snav-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.agsec { padding-block: var(--s10); border-bottom: 1px solid var(--border); }
.agsec:first-child { padding-top: 0; }
.agsec:last-child { border-bottom: none; }
.agsec__hdr { display: flex; align-items: center; gap: var(--s5); margin-bottom: var(--s6); }
.agsec__icon { width: 52px; height: 52px; background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.agsec__icon svg { width: 25px; height: 25px; }
.agsec__eyebrow { font-size: var(--xxs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.agsec__title { font-family: var(--font-d); font-size: var(--h3); font-weight: 800; letter-spacing: -0.025em; color: var(--text); line-height: 1.1; }
@media (max-width: 540px) { .agsec__hdr { gap: var(--s4); } .agsec__icon { width: 44px; height: 44px; } }
.agsec__intro { font-size: var(--lg); font-weight: 300; line-height: 1.70; color: var(--text-muted); margin-bottom: var(--s6); max-width: 68ch; }
.agpoints { display: flex; flex-direction: column; gap: var(--s3); }
.agpoint { display: flex; align-items: flex-start; gap: var(--s3); font-size: var(--md); color: var(--text-muted); line-height: 1.55; }
.agpoint__ck { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.agpoint__ck svg { width: 10px; height: 10px; }
@media (max-width: 900px) { .agenda-pg { grid-template-columns: 1fr; } .agenda-sidenav { display: none; } }

/* Join/volunteer page ways grid */
.ways-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s5); }
.wcard { padding: var(--s6); border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--surface-2); transition: border-color 200ms ease, transform 200ms ease; }
.wcard:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.wcard__n { font-family: var(--font-d); font-size: 2.25rem; font-weight: 900; color: var(--gold); opacity: .3; line-height: 1; margin-bottom: var(--s3); }
.wcard__title { font-family: var(--font-d); font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: var(--s2); }
.wcard__body { font-size: var(--sm); line-height: 1.60; color: var(--text-muted); }

/* Donate / account details box */
.donate-box { margin-top: var(--s8); max-width: 560px; padding: var(--s6); border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--surface-2); position: relative; overflow: hidden; }
.donate-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--gold), var(--crimson)); }
.donate-box__head { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s5); }
.donate-box__icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--r-md); background: var(--gold-dim); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.donate-box__icon svg { width: 18px; height: 18px; }
.donate-box__title { font-family: var(--font-d); font-size: 1.125rem; font-weight: 800; letter-spacing: -0.01em; color: var(--text); margin: 0; }
.donate-box__rows { display: grid; gap: var(--s4); margin-bottom: var(--s5); }
.donate-box__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); padding-bottom: var(--s4); border-bottom: 1px solid var(--border); }
.donate-box__row:last-child { border-bottom: none; padding-bottom: 0; }
.donate-box__label { font-size: var(--xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.donate-box__value { font-size: 1.0625rem; font-weight: 700; color: var(--text); font-family: var(--font-d); letter-spacing: 0.01em; }
.donate-box__acct { display: flex; align-items: center; gap: var(--s3); }
.donate-box__copy { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-size: var(--xs); font-weight: 700; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: var(--pill); padding: 5px 12px; cursor: pointer; transition: background 160ms ease; }
.donate-box__copy:hover { background: var(--gold); color: var(--on-brand); }
.donate-box__copy svg { width: 12px; height: 12px; }
.donate-box__note { font-size: var(--xs); line-height: 1.55; color: var(--text-muted); margin: 0; padding-top: var(--s4); border-top: 1px dashed var(--border); }
@media (max-width: 560px) {
  .donate-box { max-width: 100%; padding: var(--s5); }
  .donate-box__row { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .donate-box__acct { width: 100%; justify-content: space-between; }
}

/* Donate banner — full-width callout (join page) */
.donate-banner { width: 100%; background: linear-gradient(135deg, var(--crimson), var(--crimson-dark)); padding-block: clamp(3.5rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.donate-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 55%), radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08), transparent 55%); pointer-events: none; }
.donate-banner__inner { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.donate-banner__icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: var(--s5); }
.donate-banner__icon svg { width: 26px; height: 26px; }
.donate-banner__title { font-family: var(--font-d); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.01em; color: #fff; margin: 0 0 var(--s2); }
.donate-banner__sub { font-size: var(--md); color: rgba(255,255,255,0.85); margin: 0 0 var(--s10); max-width: 480px; }
.donate-banner__rows { display: flex; flex-direction: column; align-items: center; gap: var(--s8); margin-bottom: var(--s8); }
.donate-banner__row { display: flex; flex-direction: column; align-items: center; gap: var(--s2); position: relative; }
.donate-banner__subrows { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s6) var(--s12); }
.donate-banner__subrows .donate-banner__row + .donate-banner__row::before { content: ''; position: absolute; left: calc(var(--s12) / -2 - 1px); top: 50%; transform: translateY(-50%); width: 1px; height: 30px; background: rgba(255,255,255,0.25); }
.donate-banner__label { font-size: var(--xs); color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.donate-banner__value { font-family: var(--font-d); font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: 0.01em; }
.donate-banner__value--acct { font-size: clamp(2.5rem, 6vw, 3.75rem); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.donate-banner__row--acct { gap: var(--s3); }
.donate-banner__copy { display: inline-flex; align-items: center; gap: 7px; font-size: var(--sm); font-weight: 700; color: var(--crimson); background: #fff; border: none; border-radius: var(--pill); padding: 8px 18px; cursor: pointer; transition: transform 160ms ease, background 160ms ease; }
.donate-banner__copy:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
.donate-banner__copy svg { width: 14px; height: 14px; }
.donate-banner__note { font-size: var(--xs); line-height: 1.6; color: rgba(255,255,255,0.75); margin: 0; max-width: 520px; padding-top: var(--s6); border-top: 1px dashed rgba(255,255,255,0.25); }
@media (max-width: 700px) {
  .donate-banner__subrows { gap: var(--s5); }
  .donate-banner__subrows .donate-banner__row + .donate-banner__row::before { display: none; }
}

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--s16); align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.cinfo-item { display: flex; gap: var(--s4); padding: var(--s5) 0; border-bottom: 1px solid var(--border); }
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.cinfo-icon svg { width: 17px; height: 17px; }
.cinfo-label { font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-faint); margin-bottom: 3px; }
.cinfo-val { font-size: var(--md); color: var(--text); font-weight: 500; line-height: 1.5; }

/* Old nav — used on inner pages that haven't been updated yet */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 200ms ease;
}
.nav--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav__inner { display: flex; align-items: center; height: 68px; gap: var(--s6); }
.nav__brand { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }
.nav__logo { width: 40px; height: 40px; flex-shrink: 0; }
.nav__wordmark { font-family: var(--font-d); font-weight: 800; font-size: 0.9375rem; line-height: 1.15; color: var(--gold); letter-spacing: -0.01em; }
.nav__wordmark em { display: block; font-style: normal; font-family: var(--font-b); font-weight: 600; font-size: 0.5625rem; color: var(--crimson); letter-spacing: 0.08em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 0; margin-inline-start: auto; }
.nav__link { position: relative; padding: var(--s2) var(--s3); font-size: var(--sm); font-weight: 500; color: var(--text-muted); transition: color 140ms ease; border-radius: var(--r-md); }
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__link.active { color: var(--gold); }
.nav__cta { margin-inline-start: var(--s5); }
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: var(--s2); margin-inline-start: auto; width: 36px; height: 36px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 1px; transition: transform 220ms ease, opacity 160ms ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav__links { position: fixed; inset: 71px 0 auto; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: var(--s3) var(--s5) var(--s5); gap: 0; transform: translateY(-110%); opacity: 0; transition: transform 240ms cubic-bezier(.4,0,.2,1), opacity 200ms ease; z-index: var(--z-nav); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__link { font-size: var(--md); padding: var(--s3) var(--s4); }
  .nav__cta.btn { display: none; }
  .nav__burger { display: flex; }
}

/* Agenda card grid (old class names — inner pages) */
.agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.acard { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s8); transition: transform 200ms ease, border-color 180ms ease; }
.acard:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.acard--feat { grid-column: 1 / -1; background: var(--surface); border-color: var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: var(--s10); align-items: center; }
.acard__icon { width: 46px; height: 46px; background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: var(--s5); color: var(--gold); }
.acard__icon svg { width: 22px; height: 22px; }
.acard__title { font-family: var(--font-d); font-size: var(--h4); font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: var(--s3); }
.acard--feat .acard__title { font-size: var(--h3); }
.acard__body { font-size: var(--md); line-height: 1.65; color: var(--text-muted); }
.acard__link { display: inline-flex; align-items: center; gap: 4px; margin-top: var(--s5); font-size: var(--sm); font-weight: 600; color: var(--gold); transition: gap 130ms ease; }
.acard__link:hover { gap: var(--s2); }
.acard__link svg { width: 14px; height: 14px; }
@media (max-width: 960px) { .agenda-grid { grid-template-columns: 1fr 1fr; } .acard--feat { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .agenda-grid { grid-template-columns: 1fr; } }

/* Old form styles (inner pages) */
.form-card { background: var(--surface-2); border-radius: var(--r-xl); padding: var(--s10); border: 1px solid var(--border); }
.form-card__title { font-family: var(--font-d); font-size: var(--h3); font-weight: 800; color: var(--text); letter-spacing: -0.025em; margin-bottom: var(--s6); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s5); }
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group--full { grid-column: 1 / -1; }
.form-submit { width: 100%; margin-top: var(--s4); justify-content: center; font-size: var(--lg); padding: 1rem; }
.form-note { text-align: center; font-size: var(--xs); color: var(--text-faint); margin-top: var(--s3); line-height: 1.6; }
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) {
  .form-card { padding: var(--s6); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
}

/* Old join layout (join.html inner page) */
.join-wrap { background: var(--bg); position: relative; overflow: hidden; padding-block: var(--s24); }
.join-inner-pg { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s20); align-items: start; }
.join-intro-pg .sec-title { color: var(--text); }
.join-bullets-pg { margin-top: var(--s8); display: flex; flex-direction: column; gap: var(--s4); }
@media (max-width: 900px) { .join-inner-pg { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.reveal {
  transition:
    opacity 680ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 680ms cubic-bezier(0.32, 0.72, 0, 1),
    filter 680ms cubic-bezier(0.32, 0.72, 0, 1);
}
.reveal.js-ready {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
}
.reveal.js-ready.from-left  { transform: translateX(-22px); }
.reveal.js-ready.from-right { transform: translateX(22px); }
.reveal.js-ready.vis {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.js-ready {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  @keyframes pulse-dot { to {} }
  @keyframes scroll-thumb { to {} }
  .hero__scroll-thumb { animation: none; }
  .hero__aspirant-pulse { animation: none; }
}


/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.text-center { text-align: center; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ══════════════════════════════════════════════════════════════
   VALUES — About page commitments (double-bezel triplet)
   ══════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: var(--s12);
}
.vcard__shell {
  background: var(--shell);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: var(--r-xl);
  height: 100%;
  transition: border-color 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
.vcard:hover .vcard__shell { border-color: var(--border-hi); }
.vcard__core {
  background: var(--surface-2);
  border-radius: calc(var(--r-xl) - 3px);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.05);
}
.vcard__core--gold {
  background: linear-gradient(140deg, rgba(40,95,200,0.10) 0%, var(--surface-2) 60%);
}
.vcard__n {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin-bottom: var(--s5);
}
.vcard__title {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: var(--s4);
}
.vcard__body {
  font-size: var(--md);
  line-height: 1.65;
  color: var(--text-muted);
}
.values-cta {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; gap: 8px; }
}


/* ══════════════════════════════════════════════════════════════
   AGENDA PAGE — Closing CTA band (double-bezel)
   ══════════════════════════════════════════════════════════════ */
.agenda-cta {
  margin-top: var(--s16);
}
.agenda-cta__shell {
  background: var(--shell);
  border: 1px solid var(--border-hi);
  padding: 4px;
  border-radius: var(--r-2xl);
}
.agenda-cta__core {
  background: linear-gradient(140deg, rgba(40,95,200,0.10) 0%, var(--surface) 55%);
  border-radius: calc(var(--r-2xl) - 4px);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(240,234,224,0.05);
}
.agenda-cta__title {
  font-family: var(--font-d);
  font-size: var(--h3);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s4);
}
.agenda-cta__body {
  font-size: var(--lg);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto var(--s8);
}
.agenda-cta__actions {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════
   THEME TRANSITION — applied only during a toggle, then removed
   ══════════════════════════════════════════════════════════════ */
.theme-anim,
.theme-anim *,
.theme-anim *::before,
.theme-anim *::after {
  transition: background-color 260ms cubic-bezier(0.23, 1, 0.32, 1),
              border-color 260ms cubic-bezier(0.23, 1, 0.32, 1),
              color 200ms cubic-bezier(0.23, 1, 0.32, 1),
              fill 200ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 260ms cubic-bezier(0.23, 1, 0.32, 1) !important;
}
@media (prefers-reduced-motion: reduce) {
  .theme-anim, .theme-anim *, .theme-anim *::before, .theme-anim *::after {
    transition: none !important;
  }
}


/* ══════════════════════════════════════════════════════════════
   BLOG / UPDATES
   ══════════════════════════════════════════════════════════════ */
.section--tight { padding-top: clamp(2rem, 4vw, 3rem); }

/* Index grid reuses .updates-grid / .ucard; make cards full links */
.blog-grid { grid-template-columns: repeat(3, 1fr); }
a.ucard { text-decoration: none; color: inherit; display: block; }
.ucard__img-wrap--empty {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--gold-dim) 0%, var(--surface-3) 70%);
}
.ucard__img-wrap--empty span {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.5;
}
.blog-empty {
  text-align: center;
  padding: var(--s20) var(--s4);
  color: var(--text-muted);
  font-size: var(--lg);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* Post meta line in the header */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2);
  font-size: var(--sm);
  color: var(--text-muted);
  margin-bottom: var(--s4);
}
.post-meta__cat {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--xs);
  color: var(--gold);
}
.post-meta__dot { opacity: 0.5; }
.post-title { text-wrap: balance; }

/* Cover image */
.post-cover {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: var(--s10);
  box-shadow: var(--shadow-card);
}
.post-cover img { width: 100%; height: auto; display: block; }

/* Article body (Markdown) */
.post-content { font-size: var(--lg); }
.post-content h2 {
  font-size: var(--h3);
  color: var(--text);
  letter-spacing: -0.025em;
  margin: var(--s10) 0 var(--s4);
}
.post-content h3 {
  font-size: var(--h4);
  color: var(--text);
  margin: var(--s8) 0 var(--s3);
}
.post-content p { margin-bottom: var(--s5); }
.post-content ul, .post-content ol { margin: 0 0 var(--s5) var(--s6); display: flex; flex-direction: column; gap: var(--s2); }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { padding-left: var(--s1); }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--gold-light); }
.post-content img { width: 100%; height: auto; border-radius: var(--r-lg); margin: var(--s6) 0; border: 1px solid var(--border); }
.post-content blockquote {
  margin: var(--s8) 0;
  padding: var(--s2) 0 var(--s2) var(--s6);
  border-left: 3px solid var(--gold);
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
}
.post-content strong { color: var(--text); font-weight: 700; }
.post-content hr { border: none; border-top: 1px solid var(--border); margin: var(--s10) 0; }

/* Prev / next + back */
/* ── Share buttons (individual post) ── */
.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s4) var(--s5);
  margin-top: var(--s10);
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}
.post-share__label {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.post-share__btns { display: flex; gap: var(--s3); flex-wrap: wrap; }
.share-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease,
              border-color 200ms ease, transform 200ms ease;
}
.share-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
}
.share-btn--wa:hover    { background: #25d366; }
.share-btn--fb:hover    { background: #1877f2; }
.share-btn--x:hover     { background: #000; }
.share-btn--li:hover    { background: #0a66c2; }
.share-btn--email:hover { background: #ea4335; }
.share-btn--ig:hover    { background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 75%, #bc1888); }
.share-btn--copy:hover  { background: var(--gold); }

/* Compact share row shown under the post title */
.post-share--top {
  margin-top: var(--s6);
  padding-top: 0;
  border-top: 0;
}
.post-share--top .share-btn { width: 38px; height: 38px; }

/* Copy / Instagram confirmation toast */
.share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  z-index: 200;
  max-width: min(90vw, 420px);
  padding: 12px 18px;
  border-radius: var(--pill);
  background: var(--text);
  color: var(--bg);
  font-size: var(--sm);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.32,0.72,0,1);
}
.share-toast.is-on { opacity: 1; transform: translate(-50%, 0); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s16);
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s5);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color 220ms ease, transform 220ms cubic-bezier(0.32,0.72,0,1);
}
.post-nav__link:last-child { text-align: right; }
.post-nav__link:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.post-nav__dir { font-size: var(--xs); font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.post-nav__title { font-family: var(--font-d); font-weight: 700; color: var(--text); letter-spacing: -0.02em; line-height: 1.2; }
.post-back { margin-top: var(--s10); }
@media (max-width: 560px) { .post-nav { grid-template-columns: 1fr; } .post-nav__link:last-child { text-align: left; } }


/* ══════════════════════════════════════════════════════════════
   SEVEN PILLARS — homepage agenda grid
   ══════════════════════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: var(--s12);
}
/* Reset any grid placement leaking from the old .bento card rules */
.pillars > .bcard { grid-column: auto; grid-row: auto; }
.pillars > .bcard--feat2 { grid-column: 1 / -1; }
.bcard--feat2 .bcard__core {
  flex-direction: row;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.feat2__text { flex: 1.5; display: flex; flex-direction: column; min-width: 0; }
.feat2__stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-content: center;
  border-left: 1px solid var(--border);
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}
/* Pillar icon accents */
.bcard--feat2 .bcard__icon-shell { color: var(--gold); border-color: var(--gold-dim); background: var(--gold-dim); }
.bcard--health .bcard__icon-shell  { color: var(--crimson); border-color: var(--crimson-dim); background: rgba(229,30,37,0.06); }
.bcard--commerce .bcard__icon-shell{ color: var(--gold-light); border-color: var(--gold-dim); background: rgba(40,95,200,0.06); }
.bcard--security .bcard__icon-shell { color: var(--gold-light); border-color: var(--gold-dim); background: rgba(40,95,200,0.06); }
.bcard--agric .bcard__icon-shell   { color: var(--adp-light); border-color: var(--adp-dim); background: rgba(239,106,59,0.08); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .bcard--feat2 .bcard__core { flex-direction: column; }
  .feat2__stats {
    grid-template-columns: repeat(3, 1fr);
    border-left: none; padding-left: 0;
    border-top: 1px solid var(--border); padding-top: var(--s6); margin-top: var(--s6);
  }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .feat2__stats { grid-template-columns: 1fr 1fr; gap: var(--s4); }
}


/* ══════════════════════════════════════════════════════════════
   ABOUT — "In His Own Words" first-person statement
   ══════════════════════════════════════════════════════════════ */
.statement__inner { text-align: center; max-width: 56ch; margin-inline: auto; }
.statement .sec-eyebrow { justify-content: center; }
.statement__lead {
  font-family: var(--font-d);
  font-size: var(--h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--s8);
}
.statement__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.statement__body p {
  font-size: var(--lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.statement__body p strong { color: var(--text); font-weight: 600; }
.statement__cite {
  display: block;
  margin-top: var(--s8);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: var(--lg);
  letter-spacing: -0.01em;
  color: var(--gold-light);
}
.statement .values-cta { margin-top: var(--s10); display: flex; justify-content: center; }
