:root {
  --ink: #2b2420;
  --paper: #faf6ef;
  --rust: #a34c2e;
  --gold: #c99a3c;
  --line: #e3d9c6;
  --muted: #6d6459;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

header.site {
  border-bottom: 3px solid var(--rust);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

header.site .brand {
  font-size: 1.35rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

header.site .brand small {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--muted);
  letter-spacing: 0.05em;
}

nav.site a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav.site a:hover, nav.site a:focus {
  border-bottom-color: var(--gold);
}

main {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  text-align: center;
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p.tagline {
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: var(--rust);
  border: 1px solid var(--rust);
}

.button:hover { opacity: 0.88; }

section { margin-bottom: 2.5rem; }

section h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.2rem;
  margin-bottom: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: #fff;
}

.card .when {
  color: var(--rust);
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card h3 { margin: 0.25rem 0 0.4rem; font-size: 1.1rem; }

.card p { margin: 0; color: var(--muted); }

.card.tbd { opacity: 0.85; border-style: dashed; }

table.officers {
  width: 100%;
  border-collapse: collapse;
}

table.officers td {
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--line);
}

table.officers td.role { color: var(--muted); width: 40%; }

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 480px;
}

form.contact-form input,
form.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

form.contact-form textarea { min-height: 120px; resize: vertical; }

form.contact-form button {
  align-self: flex-start;
  cursor: pointer;
  font-family: inherit;
}

footer.site {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer.site a { color: var(--rust); }

.note {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}
