   :root {
      --bg: #faf7f2;
      --surface: #ffffff;
      --border: #e8e0d4;
      --accent: #b05e3a;
      --accent-light: #f5ece6;
      --text: #1c1814;
      --text-muted: #7a6e63;
      --text-dim: #b0a89e;
      --green: #4a7c59;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    header {
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .logo {
      font-family: 'Lora', serif;
      font-size: 20px;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.3px;
    }

    .logo span { color: var(--accent); }

    nav a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      margin-left: 28px;
      font-weight: 400;
      transition: color 0.15s;
    }

    nav a:hover { color: var(--text); }
    nav a.active { color: var(--text); font-weight: 500; }

    .nav-auth {
      font-size: 14px;
      text-decoration: none;
      margin-left: 24px;
      font-weight: 500;
      color: var(--accent);
    }
    .nav-auth:hover { opacity: 0.8; }

    /* ── Page layout ── */
    .content {
      max-width: 680px;
      margin: 0 auto;
      padding: 64px 40px 100px;
    }

    /* ── Hero section ── */
    .page-label {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--accent);
      margin-bottom: 14px;
    }

    h1 {
      font-family: 'Lora', serif;
      font-size: 42px;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 20px;
    }

    p {
      margin-bottom: 16px;
    }

    .mission {
      font-size: 18px;
      line-height: 1.65;
      color: var(--text-muted);
      margin-bottom: 48px;
      max-width: 580px;
    }

    /* ── 501c3 badge ── */
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 20px;
      margin-bottom: 64px;
    }

    .status-icon {
      font-size: 22px;
      flex-shrink: 0;
    }

    .status-text {
      font-size: 13.5px;
      line-height: 1.5;
      color: var(--text-muted);
    }

    .status-text strong {
      display: block;
      font-weight: 500;
      color: var(--text);
      font-size: 14px;
      margin-bottom: 2px;
    }

    .status-text a {
      color: var(--accent);
      text-decoration: none;
      font-size: 12px;
    }

    .status-text a:hover { text-decoration: underline; }

    /* ── Section headings ── */
    .section-label {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-dim);
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    /* ── What we do ── */
    .what-we-do {
      margin-bottom: 64px;
    }

    .what-we-do p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .what-we-do p:last-child { margin-bottom: 0; }

    /* ── Board ── */
    .board {
      margin-bottom: 64px;
    }

    .board-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
      align-items: start;
    }

    .board-member {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px;
    }

    .member-name {
      font-family: 'Lora', serif;
      font-size: 16px;
      color: var(--text);
      margin-bottom: 4px;
    }

    .member-title {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ── Footer ── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--surface);
      padding: 28px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-left {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    .footer-left a {
      color: var(--text-dim);
      text-decoration: none;
    }

    .footer-left a:hover { color: var(--text-muted); }

    .footer-right {
      display: flex;
      gap: 20px;
    }

    .footer-right a {
      font-size: 13px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-right a:hover { color: var(--text-muted); }

    @media (max-width: 600px) {
      header { padding: 0 20px; }
      .content { padding: 48px 20px 80px; }
      h1 { font-size: 30px; }
      .mission { font-size: 16px; }
      footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
    }