:root {
  --green-deep: #2f4a3c;
  --green-mid: #3f6b54;
  --cream: #f7f4ec;
  --gold: #c9a14a;
  --ink: #24302a;
  --line: #d8d2c2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans Pro', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--green-deep);
  margin-top: 0;
}

a {
  color: var(--green-mid);
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--green-deep);
  border-bottom: 4px solid var(--gold);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.brand:hover,
.brand:focus {
  text-decoration: none;
  opacity: 0.92;
}

.brand img {
  height: 56px;
  width: auto;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  border: 2px solid var(--gold);
}

.brand-text h1 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.2;
}

.brand-text span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  gap: 4px;
}

nav.main-nav a {
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

nav.main-nav a:hover,
nav.main-nav a:focus {
  background: var(--green-mid);
  text-decoration: none;
}

nav.main-nav a.active {
  background: var(--gold);
  color: var(--green-deep);
}

/* ---------- Layout ---------- */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.hero {
  text-align: center;
  padding: 50px 20px 30px;
}

.hero-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  max-width: 760px;
  margin: 28px auto 0;
}

.hero-photos img {
  height: 160px;
  width: auto;
  border-radius: 4px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transform: rotate(-1.5deg);
}

.hero-photos img:nth-child(even) {
  transform: rotate(1.5deg);
}

.hero-photos img:nth-child(3n) {
  transform: rotate(0.5deg);
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.hero p.tagline {
  color: var(--green-mid);
  font-size: 1.1rem;
  font-style: italic;
}

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

.signature {
  margin-top: 24px;
  font-style: italic;
  color: var(--green-mid);
}

/* ---------- Footer ---------- */

footer {
  background: var(--green-deep);
  color: #f1ede1;
  text-align: center;
  padding: 22px 20px;
  font-size: 0.9rem;
}

footer .tag {
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

/* ---------- Board members ---------- */

.board-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.board-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.board-list li:last-child {
  border-bottom: none;
}

.role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 8px;
}

/* ---------- Forms ---------- */

form.contact-form label {
  display: block;
  font-weight: 600;
  margin: 16px 0 6px;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
}

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

form.contact-form button {
  margin-top: 22px;
  background: var(--green-deep);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

form.contact-form button:hover {
  background: var(--green-mid);
}

.required-note {
  font-size: 0.85rem;
  color: #6b6256;
  margin-top: 4px;
}

/* Honeypot field - hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav.main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 10px;
  }

  nav.main-nav a {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
