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

:root {
  --blue:    #1a3a6b;
  --gold:    #c8922a;
  --light:   #f5f7fa;
  --text:    #1c1c1c;
  --muted:   #5a5a6e;
  --border:  #dde2ea;
  --max-w:   860px;
}

body {
  font-family: 'Georgia', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

/* â”€â”€ Header â”€â”€ */
header {
  background: var(--blue);
  color: #fff;
  padding: 48px 24px 40px;
  text-align: center;
}

header .org-name {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

header .tagline {
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* â”€â”€ Gold rule accent â”€â”€ */
.accent-rule {
  height: 4px;
  background: var(--gold);
}

/* â”€â”€ Main layout â”€â”€ */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 72px;
}

section {
  margin-bottom: 56px;
}

h2 {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 20px;
}

p {
  color: var(--text);
  margin-bottom: 12px;
}

/* â”€â”€ Mission â”€â”€ */
.mission p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* â”€â”€ Board â”€â”€ */
.board-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.board-list li {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 20px;
}

.board-list .name {
  font-weight: bold;
  color: var(--blue);
  display: block;
  margin-bottom: 2px;
}

.board-list .role {
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* â”€â”€ Links â”€â”€ */
.links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-list a {
  color: var(--blue);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}

.links-list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.links-list .link-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 2px;
}

/* â”€â”€ Donate CTA â”€â”€ */
.donate {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  padding: 28px 28px;
}

.donate p {
  margin-bottom: 18px;
  color: var(--muted);
}

.donate-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}

.donate-btn:hover {
  background: #a97420;
}

/* â”€â”€ Footer â”€â”€ */
footer {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}

footer p {
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 600px) {
  header .org-name {
    font-size: 1.5rem;
  }

  main {
    padding: 36px 16px 56px;
  }
}