  :root {
    --navy: #002B80;
    --navy-2: #001a52;
    --navy-3: #0a3aa8;
    --red: #C30017;
    --red-2: #e51a30;
    --gold: #c9a227;

    --ink: #0a0e1c;
    --ink-2: #2a3142;
    --ink-3: #5a6378;
    --ink-4: #8b94a8;
    --line: #e5e8f0;
    --line-2: #c8d0de;

    --paper: #fbfcfe;
    --paper-2: #ffffff;
    --paper-3: #f3f5fb;

    --grad-hero: linear-gradient(135deg, #002B80 0%, #1248c0 50%, #002B80 100%);
    --grad-hero-soft: linear-gradient(135deg, rgba(0,43,128,0.06) 0%, rgba(18,72,192,0.10) 100%);
    --grad-red: linear-gradient(135deg, #C30017 0%, #e51a30 100%);
    --grad-gold: linear-gradient(135deg, #c9a227 0%, #f3c953 100%);

    --shadow-1: 0 1px 0 rgba(10,14,28,0.04), 0 2px 8px rgba(10,14,28,0.05);
    --shadow-2: 0 4px 24px rgba(10,14,28,0.08), 0 1px 4px rgba(10,14,28,0.04);
    --shadow-3: 0 16px 48px rgba(0,43,128,0.18), 0 4px 12px rgba(10,14,28,0.06);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 28px;

    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    overflow-x: hidden;
  }
  ::selection { background: rgba(0,43,128,0.15); }

  /* ======= Top nav (monday-vibe) ======= */
  nav.top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,252,254,0.85);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid var(--line);
  }
  nav.top .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
  }
  .crest {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--grad-hero);
    display: grid;
    place-items: center;
    color: white;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.04em;
    box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,0.18);
    position: relative;
  }
  .crest::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
  }
  .crest .star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: rotate(45deg);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  }
  .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
  .brand-text .b1 { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
  .brand-text .b2 { font-size: 11px; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; }
  nav.top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    align-items: center;
  }
  nav.top a.link {
    color: var(--ink-2);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 180ms var(--ease), color 180ms var(--ease);
  }
  nav.top a.link:hover { background: var(--paper-3); color: var(--ink); }
  nav.top a.link.active { background: var(--ink); color: white; }
  nav.top .spacer { flex: 1; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 220ms var(--spring), background 200ms var(--ease), box-shadow 200ms var(--ease), color 200ms var(--ease);
    line-height: 1;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
  .btn-ghost { color: var(--ink-2); border-color: var(--line-2); background: transparent; }
  .btn-ghost:hover { background: var(--paper-3); color: var(--ink); }
  .btn-primary { background: var(--ink); color: white; }
  .btn-primary:hover { background: #1a1f33; box-shadow: var(--shadow-2); }
  .btn-cta {
    background: var(--grad-red);
    color: white;
    box-shadow: 0 6px 18px rgba(195,0,23,0.30), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  .btn-cta:hover {
    box-shadow: 0 10px 28px rgba(195,0,23,0.42), inset 0 1px 0 rgba(255,255,255,0.20);
  }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .btn .arrow {
    display: inline-block;
    transition: transform 240ms var(--spring);
  }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ======= Hero ======= */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 80px 24px 56px;
    background:
      radial-gradient(ellipse at 80% 0%, rgba(195,0,23,0.08), transparent 55%),
      radial-gradient(ellipse at 10% 100%, rgba(0,43,128,0.10), transparent 60%),
      var(--paper);
  }
  .hero .wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px 6px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    letter-spacing: 0.01em;
    margin-bottom: 22px;
    box-shadow: var(--shadow-1);
  }
  .hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(195,0,23,0.12);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(195,0,23,0.12); }
    50% { box-shadow: 0 0 0 8px rgba(195,0,23,0.04); }
  }
  .hero h1 {
    font-family: 'Fraunces', 'Inter', serif;
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--ink);
  }
  .hero h1 .grad {
    background: linear-gradient(90deg, #002B80 0%, #1248c0 50%, #C30017 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    padding-right: 0.08em;
    margin-right: -0.04em;
  }
  .hero p.lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 540px;
    margin: 0 0 28px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-trust {
    margin-top: 36px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-trust .t {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .hero-trust .t-num {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .hero-trust .t-lab {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    font-weight: 600;
  }
  .hero-trust .sep {
    width: 1px;
    height: 32px;
    background: var(--line);
  }

  /* ======= Hero barometer card ======= */
  .barometer {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-3);
    position: relative;
    overflow: hidden;
  }
  .barometer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(195,0,23,0.06), transparent 60%);
    pointer-events: none;
  }
  .barometer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    position: relative;
  }
  .barometer-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .pill-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0,200,90,0.12), rgba(0,200,90,0.06));
    color: #057a3a;
    border: 1px solid rgba(0,200,90,0.30);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .pill-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2bb866;
    box-shadow: 0 0 0 3px rgba(43,184,102,0.20);
    animation: pulse-green 2s ease-in-out infinite;
  }
  @keyframes pulse-green {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
  }
  .baro-stat {
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    position: relative;
  }
  .baro-num {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .baro-suffix {
    font-size: 16px;
    color: var(--ink-3);
    font-weight: 500;
  }
  .baro-delta {
    margin-top: 4px;
    font-size: 14px;
    color: #057a3a;
    font-weight: 600;
  }
  .baro-bar {
    margin-top: 22px;
    height: 12px;
    background: var(--paper-3);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }
  .baro-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-3) 60%, var(--red) 100%);
    border-radius: 999px;
    width: 0%;
    transition: width 1400ms var(--ease);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,43,128,0.30);
  }
  .baro-fill::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 18px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
    border-radius: 999px;
  }
  .baro-meta {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 500;
  }
  .baro-meta b { color: var(--ink); font-weight: 700; }

  .baro-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 22px;
  }
  .baro-tier-mini {
    background: var(--paper-3);
    border-radius: var(--r-sm);
    padding: 10px 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 220ms var(--spring), border-color 200ms var(--ease);
  }
  .baro-tier-mini:hover { transform: translateY(-2px); border-color: var(--line-2); }
  .baro-tier-mini .bt-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .baro-tier-mini .bt-count {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    font-family: 'Fraunces', serif;
    letter-spacing: -0.02em;
  }

  /* ======= Section frame ======= */
  section.app {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 24px;
  }
  .sec-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }
  .sec-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 600;
    margin: 0 0 14px;
    max-width: 720px;
  }
  .sec-sub {
    font-size: 17px;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0;
  }

  /* ======= Recognition tier showcase ======= */
  .tiers-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .tier {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    transition: transform 280ms var(--spring), box-shadow 240ms var(--ease), border-color 200ms var(--ease);
    position: relative;
    overflow: hidden;
  }
  .tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
  }
  .tier .tier-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 14px rgba(10,14,28,0.10);
    position: relative;
  }
  .tier .tier-icon svg { width: 28px; height: 28px; }
  .tier .tier-amount {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--ink);
  }
  .tier .tier-amount .per { font-size: 14px; color: var(--ink-3); font-weight: 500; }
  .tier .tier-name {
    margin-top: 6px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .tier .tier-desc {
    margin-top: 10px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.5;
    min-height: 56px;
  }
  .tier .tier-count {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink-3);
  }
  .tier .tier-count b { color: var(--ink); font-size: 14px; font-weight: 700; }
  .tier[data-tier="geen"]   .tier-icon { background: linear-gradient(135deg, #e5e8f0, #c8d0de); }
  .tier[data-tier="bb"]     .tier-icon { background: linear-gradient(135deg, #5a7ad6, #002B80); }
  .tier[data-tier="balkie"] .tier-icon { background: linear-gradient(135deg, #1248c0, #002B80); }
  .tier[data-tier="hk"]     .tier-icon { background: linear-gradient(135deg, #C30017, #8a000f); }
  .tier[data-tier="ek"]     .tier-icon { background: var(--grad-gold); }
  .tier[data-tier="ek"] {
    background: linear-gradient(180deg, rgba(201,162,39,0.06), var(--paper-2) 60%);
    border-color: rgba(201,162,39,0.30);
  }
  .tier[data-tier="ek"] .tier-amount { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .tier .ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--grad-gold);
    color: #4a3a06;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(201,162,39,0.40);
  }

  /* ======= Member directory ======= */
  .directory {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--shadow-2);
    margin-top: 48px;
  }
  .dir-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
  }
  .dir-head h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
  }
  .dir-head p { color: var(--ink-3); margin: 0; font-size: 14px; }
  .dir-filter {
    display: flex;
    gap: 6px;
    background: var(--paper-3);
    padding: 4px;
    border-radius: 999px;
  }
  .dir-filter button {
    background: transparent;
    border: 0;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    cursor: pointer;
    font-family: inherit;
    transition: background 200ms var(--ease), color 200ms var(--ease);
  }
  .dir-filter button.on {
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow-1);
  }
  .dir-filter button:not(.on):hover { color: var(--ink); }
  .members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
  }
  .member {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 18px;
    display: flex;
    gap: 14px;
    transition: transform 240ms var(--spring), border-color 200ms var(--ease), box-shadow 240ms var(--ease);
    position: relative;
  }
  .member:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow: var(--shadow-1);
  }
  .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
  }
  .avatar.c0 { background: linear-gradient(135deg, #5a7ad6, #002B80); }
  .avatar.c1 { background: linear-gradient(135deg, #C30017, #8a000f); }
  .avatar.c2 { background: linear-gradient(135deg, #c9a227, #8a6c10); }
  .avatar.c3 { background: linear-gradient(135deg, #1248c0, #001a52); }
  .avatar.c4 { background: linear-gradient(135deg, #5b3a8a, #2d1c4d); }
  .avatar.c5 { background: linear-gradient(135deg, #057a3a, #024020); }
  .member-info { min-width: 0; flex: 1; }
  .member-name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .member-meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
  .member-tier {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .member-tier.geen   { background: var(--paper-3); color: var(--ink-3); }
  .member-tier.bb     { background: rgba(0,43,128,0.10); color: var(--navy); }
  .member-tier.balkie { background: rgba(0,43,128,0.16); color: var(--navy-2); }
  .member-tier.hk     { background: rgba(195,0,23,0.10); color: var(--red); }
  .member-tier.ek     { background: linear-gradient(135deg, rgba(201,162,39,0.16), rgba(201,162,39,0.30)); color: #6b4a06; border: 1px solid rgba(201,162,39,0.40); }
  .member-tier .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
  }
  .member-tier.geen .dot { background: var(--ink-4); }
  .member-tier.bb .dot { background: var(--navy); }
  .member-tier.balkie .dot { background: var(--navy-2); }
  .member-tier.hk .dot { background: var(--red); }
  .member-tier.ek .dot { background: var(--gold); }

  /* ======= Donation flow ======= */
  .donate {
    background:
      radial-gradient(ellipse at 90% 10%, rgba(195,0,23,0.07), transparent 50%),
      radial-gradient(ellipse at 10% 90%, rgba(0,43,128,0.10), transparent 50%),
      var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 40px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2);
  }
  .donate-copy h3 {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin: 0 0 10px;
    line-height: 1.05;
  }
  .donate-copy h3 .grad {
    background: var(--grad-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    padding-right: 0.08em;
    margin-right: -0.04em;
  }
  .donate-copy p {
    color: var(--ink-2);
    font-size: 15px;
    margin: 0 0 22px;
    max-width: 460px;
  }
  .donate-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .donate-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--ink-2);
  }
  .donate-bullets li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--navy);
    margin-top: 2px;
  }
  .donate-bullets li b { color: var(--ink); font-weight: 700; }

  /* Donation form mockup */
  .form {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px;
    box-shadow: var(--shadow-1);
  }
  .form-step {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 8px;
  }
  .form h4 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
  }
  .amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }
  .amounts button {
    background: var(--paper-2);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 16px 8px;
    font-family: inherit;
    cursor: pointer;
    transition: transform 220ms var(--spring), border-color 200ms var(--ease), background 200ms var(--ease);
    text-align: center;
  }
  .amounts button:hover { transform: translateY(-2px); border-color: var(--line-2); }
  .amounts button.on {
    border-color: var(--navy);
    background: linear-gradient(180deg, rgba(0,43,128,0.06), rgba(0,43,128,0.02));
    box-shadow: inset 0 0 0 1.5px var(--navy);
  }
  .amounts .amt {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .amounts .tier {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
  }
  .amounts button.on .tier { color: var(--navy); }
  .amounts .input-amt {
    background: var(--paper-2);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 14px 10px;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    width: 100%;
    transition: border-color 200ms var(--ease);
  }
  .amounts .input-amt:focus { outline: none; border-color: var(--navy); }
  .frequency {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    background: var(--paper-3);
    padding: 4px;
    border-radius: 999px;
  }
  .frequency button {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    cursor: pointer;
    font-family: inherit;
    transition: background 200ms var(--ease), color 200ms var(--ease);
  }
  .frequency button.on {
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow-1);
  }
  .pay-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }
  .pay-methods button {
    background: var(--paper-2);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 14px 12px;
    font-family: inherit;
    cursor: pointer;
    transition: transform 220ms var(--spring), border-color 200ms var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
  }
  .pay-methods button:hover { transform: translateY(-1px); border-color: var(--line-2); }
  .pay-methods button.on {
    border-color: var(--navy);
    background: linear-gradient(180deg, rgba(0,43,128,0.06), rgba(0,43,128,0.02));
    box-shadow: inset 0 0 0 1.5px var(--navy);
  }
  .pay-methods .pm-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
  }
  .pay-methods .pm-sub { font-size: 11px; color: var(--ink-3); }
  .allocation {
    margin-bottom: 22px;
  }
  .allocation-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .alloc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
  .alloc-chip {
    background: var(--paper-3);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    font-family: inherit;
    transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  }
  .alloc-chip:hover { background: var(--paper); border-color: var(--line-2); }
  .alloc-chip.on {
    background: rgba(0,43,128,0.10);
    color: var(--navy);
    border-color: rgba(0,43,128,0.30);
  }
  .donate-cta {
    width: 100%;
    background: var(--grad-red);
    color: white;
    padding: 16px;
    border: 0;
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.005em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(195,0,23,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 240ms var(--spring), box-shadow 240ms var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .donate-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(195,0,23,0.42), inset 0 1px 0 rgba(255,255,255,0.20);
  }
  .donate-cta .arrow { transition: transform 240ms var(--spring); }
  .donate-cta:hover .arrow { transform: translateX(4px); }

  /* ======= Footer ======= */
  footer.foot {
    border-top: 1px solid var(--line);
    background: var(--paper);
    padding: 56px 24px 28px;
    margin-top: 80px;
  }
  footer.foot .wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }
  footer.foot h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    font-weight: 700;
    margin: 0 0 14px;
  }
  footer.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  footer.foot a { color: var(--ink-2); text-decoration: none; font-size: 14px; }
  footer.foot a:hover { color: var(--ink); }
  footer.foot .legal {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--ink-3);
  }
  footer.foot .legal a { font-size: 12px; color: var(--ink-3); }

  /* Design notes overlay (helps Stephan walk through visual rationale) */
  .notes {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: var(--ink);
    color: white;
    border-radius: var(--r-md);
    padding: 14px 16px 14px 14px;
    box-shadow: var(--shadow-3);
    max-width: 320px;
    font-size: 12px;
    line-height: 1.5;
    z-index: 100;
    animation: slide-in 600ms var(--spring) 400ms backwards;
  }
  @keyframes slide-in {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .notes b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 6px; }
  .notes button {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 14px;
  }

  /* ====== Language toggle ====== */
  .lang-toggle {
    display: flex;
    background: var(--paper-3);
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    border: 1px solid var(--line);
  }
  .lang-toggle button {
    background: transparent;
    border: 0;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-3);
    cursor: pointer;
    transition: background 200ms var(--ease), color 200ms var(--ease);
    letter-spacing: 0.06em;
  }
  .lang-toggle button.on {
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow-1);
  }

  /* ====== Social icons ====== */
  .social {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper-3);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink-2);
    text-decoration: none;
    transition: transform 220ms var(--spring), background 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  }
  .social-link:hover { transform: translateY(-2px); border-color: transparent; }
  .social-link.fb:hover {
    background: #1877f2;
    color: white;
    box-shadow: 0 6px 16px rgba(24,119,242,0.40);
  }
  .social-link.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(220,39,67,0.30);
  }
  .social-link svg { width: 18px; height: 18px; }
  .social-foot {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
  }
  .social-foot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    font-weight: 700;
    margin-right: 4px;
  }

  @media (max-width: 900px) {
    .hero { padding: 56px 20px 36px; }
    .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
    .tiers-grid { grid-template-columns: 1fr 1fr; }
    .tiers-grid .tier:nth-child(5) { grid-column: 1 / 3; }
    .donate { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
    .baro-tiers { grid-template-columns: repeat(2, 1fr); }
    footer.foot .wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
    nav.top ul.nav-links { display: none; }
    nav.top .social { display: none; }
  }

  /* Phone breakpoint */
  @media (max-width: 640px) {
    html, body { overflow-x: hidden; }

    /* Nav: tight, brand subline hidden, sign-in hidden, join shrinks */
    nav.top .wrap { padding: 10px 14px; gap: 8px; }
    .brand { gap: 8px; font-size: 15px; }
    .crest { width: 32px; height: 32px; font-size: 14px; }
    .brand-text .b1 { font-size: 14px; }
    .brand-text .b2 { display: none; }
    .lang-toggle { padding: 2px; }
    .lang-toggle button { padding: 5px 10px; font-size: 11px; }
    nav.top .btn-ghost { display: none; }
    nav.top .btn-cta { padding: 8px 14px; font-size: 13px; }
    nav.top .btn-cta .arrow { display: none; }

    /* Section padding */
    section.app { padding: 56px 16px; }

    /* Hero */
    .hero { padding: 44px 16px 28px; }
    .hero h1 { font-size: clamp(34px, 9vw, 44px); line-height: 1.05; }
    .hero .lede { font-size: 15px; }
    .hero-actions { flex-wrap: wrap; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 18px 22px; }
    .hero-trust .t-num { font-size: 28px; }
    .barometer { padding: 22px 20px; }
    .baro-num { font-size: 56px; }
    .baro-tiers { grid-template-columns: repeat(2, 1fr); gap: 6px; }

    /* Tiers single column */
    .tiers-grid { grid-template-columns: 1fr; gap: 14px; }
    .tiers-grid .tier:nth-child(5) { grid-column: auto; }
    .sec-h2 { font-size: 26px; }

    /* Donate panel: tighter, 2-up amount grid, looser labels */
    .donate { padding: 20px; gap: 22px; border-radius: 18px; }
    .donate-copy h3 { font-size: 26px; }
    .donate-copy p { font-size: 14px; }
    .form { padding: 18px; }
    .form-step { font-size: 11px; }
    .form h4 { font-size: 17px; }
    .amounts { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .amounts button { padding: 14px 6px; }
    .amounts .amt { font-size: 20px; }
    .amounts .tier { font-size: 9px; word-spacing: 0; }
    .pay-methods { grid-template-columns: 1fr; }
    .donate-cta { font-size: 14px; padding: 14px; }

    /* Directory header stacks; chips wrap */
    .dir-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .dir-filter { flex-wrap: wrap; }

    /* Footer single column */
    footer.foot .wrap { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px; }
    footer.foot .legal { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Floating notes: shrink, sit out of the way */
    .notes { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 10px 30px 10px 12px; font-size: 11px; line-height: 1.45; }
  }

  /* Very small phones (iPhone SE width) */
  @media (max-width: 380px) {
    nav.top .wrap { padding: 9px 12px; }
    nav.top .btn-cta { padding: 7px 12px; font-size: 12px; }
    .lang-toggle button { padding: 4px 8px; font-size: 10px; }
    .hero h1 { font-size: clamp(30px, 9vw, 38px); }
    .amounts .tier { font-size: 8px; letter-spacing: 0.04em; }
  }

/* ===== Real school crest replaces the CSS-OR badge ===== */
.crest-img {
  width: 44px; height: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ===== Mobile: burger + drop-down sheet ===== */
.burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--ink-soft, #E4E8EF);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink-1, #0E1726);
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-sheet {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--ink-soft, #E4E8EF);
  box-shadow: 0 12px 28px rgba(14,23,38,0.08);
  padding: 12px 0;
  z-index: 50;
}
.mobile-sheet:not([hidden]) { display: flex; flex-direction: column; }
.mobile-sheet a {
  display: block;
  padding: 12px 24px;
  color: var(--ink-1, #0E1726);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid #F2F4F7;
}
.mobile-sheet a:last-child { border-bottom: none; }
.mobile-sheet a:hover, .mobile-sheet a:focus-visible { background: #F8F9FB; }
.mobile-sheet .mob-cta {
  background: linear-gradient(135deg, #002B80, #1248c0);
  color: white;
  margin: 8px 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}

@media (max-width: 900px) {
  nav.top .nav-links,
  nav.top .social,
  nav.top .lang-toggle,
  nav.top .btn-ghost,
  nav.top .btn-cta { display: none; }
  .burger { display: flex; }
  .crest-img { width: 36px; height: 36px; }
  nav.top .b1 { font-size: 14px; }
  nav.top .b2 { font-size: 10.5px; }
}

/* ===== Page primitives reused by every module ===== */
.section {
  padding: clamp(36px, 6vw, 72px) 0;
}
.section > .wrap,
.page-hero > .wrap {
  padding-left: 20px;
  padding-right: 20px;
}
.page-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, #F8F9FB 0%, #FFFFFF 100%);
  border-bottom: 1px solid #E4E8EF;
}
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 12px;
  color: #0E1726;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero p {
  color: #3D4757;
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
}
.page-hero.with-image {
  background-size: cover;
  background-position: center;
  color: white;
  border-bottom: none;
}
.page-hero.with-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,43,128,0.65) 0%, rgba(14,23,38,0.85) 100%);
  z-index: 1;
}
.page-hero.with-image > .wrap { position: relative; z-index: 2; }
.page-hero.with-image h1 { color: white; }
.page-hero.with-image p  { color: rgba(255,255,255,0.85); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid #E4E8EF;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(14,23,38,0.06); }
.card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #002B80 0%, #1248c0 60%, #C30017 100%);
  background-size: cover;
  background-position: center;
}
.card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6F7A8C;
  margin-bottom: 6px;
}
.card-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  margin: 0 0 8px;
  color: #0E1726;
  line-height: 1.25;
}
.card-body p {
  color: #3D4757;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  flex-grow: 1;
}
.card-cta {
  font-weight: 600;
  color: #002B80;
  text-decoration: none;
  font-size: 13.5px;
}
.card-cta:hover { text-decoration: underline; }

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stack > * { width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12.5px;
  font-weight: 500;
  color: #3D4757;
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  padding: 11px 12px;
  border: 1px solid #E4E8EF;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  background: white;
  color: #0E1726;
  transition: border 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: #002B80;
  box-shadow: 0 0 0 3px rgba(0,43,128,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 18px;
}
.alert.ok    { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert.warn  { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.alert.err   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #EDF1F7;
  color: #3D4757;
}
.tag.success { background: #D1FAE5; color: #065F46; }
.tag.warn    { background: #FEF3C7; color: #92400E; }
.tag.err     { background: #FEE2E2; color: #991B1B; }

/* ===== Admin layout ===== */
.admin-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: calc(100vh - 80px);
  gap: 0;
}
.admin-sidebar {
  background: #0E1726;
  color: rgba(255,255,255,0.85);
  padding: 24px 16px;
}
.admin-sidebar h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 18px 8px 8px;
}
.admin-sidebar a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 8px;
}
.admin-sidebar a:hover { background: rgba(255,255,255,0.06); }
.admin-sidebar a.active { background: rgba(255,255,255,0.1); color: white; font-weight: 600; }
.admin-main { padding: clamp(20px, 3vw, 36px); background: #F8F9FB; }
.admin-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 18px;
  color: #0E1726;
}
.admin-card {
  background: white;
  border: 1px solid #E4E8EF;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #F2F4F7;
}
.admin-table th { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #6F7A8C; }
.admin-table tr:hover td { background: #FAFBFC; }

@media (max-width: 720px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    display: flex; flex-wrap: wrap; gap: 4px;
    padding: 14px 16px;
  }
  .admin-sidebar h4 { display: none; }
  .admin-sidebar a {
    flex: 1 1 auto; padding: 8px 12px; font-size: 12.5px; text-align: center;
    background: rgba(255,255,255,0.06);
  }
  .admin-table thead { display: none; }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td { display: block; }
  .admin-table tr {
    border: 1px solid #E4E8EF; border-radius: 10px;
    padding: 12px; margin-bottom: 10px; background: white;
  }
  .admin-table td { border: none; padding: 4px 0; }
  .admin-table td::before {
    content: attr(data-label);
    display: block; font-size: 11px; color: #6F7A8C;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px;
  }
}

/* ===== School-image hero overlays for module pages ===== */
.hero-events { background-image: url('/static/img/kultuur.jpg'); }
.hero-stories { background-image: url('/static/img/akademie.jpg'); }
.hero-shop { background-image: url('/static/img/sport.jpg'); }
.hero-honour { background-image: url('/static/img/alumni-hero.jpg'); }
.hero-mentor { background-image: url('/static/img/matriek-seuns.webp'); }
.hero-join { background-image: url('/static/img/matriek-dogters.webp'); }
.hero-contact { background-image: url('/static/img/alumni-hero.jpg'); }
