:root {
  --navy: #0A3D62;
  --navy-dark: #0a2e4a;
  --navy-light: #2F4B99;
  --sky: #9DBBE2;
  --gold: #E0B252;
  --fg: #333;
  --muted: #6b7a8a;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --border: #e5e9f0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
h1, h2, h3, h4 { font-weight: 700; color: var(--navy-dark); line-height: 1.25; margin: 0 0 0.75em; letter-spacing: -0.01em; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; }
p { margin: 0 0 1em; }
a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 1.25rem; gap: 1rem; }
.brand img { height: 44px; width: auto; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.25rem; flex-wrap: nowrap; }
.site-nav a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--navy-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { background: var(--bg-alt); color: var(--navy); text-decoration: none; }
.site-nav a.is-active { color: var(--navy); border-bottom: 2px solid var(--gold); border-radius: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy-dark); border-radius: 1px; }

/* Page hero (about-us, committee, etc.) */
.page-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Home hero (bigger, imagined) */
.home-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(10,46,74,0.6),rgba(10,61,98,0.85)), url('/assets/img/hero-agm.jpg') center/cover;
  text-align: center;
}
.home-hero .container { position: relative; z-index: 1; padding: 4rem 1.25rem; }
.home-hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 900px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.home-hero p.lede { font-size: 1.2rem; max-width: 720px; margin: 0 auto 2rem; opacity: 0.95; }
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.04em;
  border: 2px solid var(--gold);
  transition: all 0.15s;
}
.btn:hover { background: transparent; color: var(--gold); text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; margin-left: 0.5rem; }
.btn-outline:hover { background: #fff; color: var(--navy-dark); }

/* Sections */
section { padding: 4rem 0; }
section.alt { background: var(--bg-alt); }
section.navy { background: var(--navy); color: #fff; }
section.navy h2, section.navy h3 { color: #fff; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title .eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

/* Card grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: start; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10,61,98,0.12); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: #eef3f8; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* Vision / mission band */
.vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10,61,98,0.08);
}
.vm > div { padding: 2.5rem; color: #fff; }
.vm-vision { background: var(--navy); }
.vm-mission { background: var(--navy-light); }
.vm h3 { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 1rem; margin-bottom: 0.75rem; }
.vm p { margin: 0; font-size: 1.1rem; line-height: 1.5; }

/* Content prose (for inner pages) */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; color: var(--navy); }
.prose ul { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  color: var(--muted);
  margin: 1.5rem 0;
  font-style: italic;
}

/* Footer */
.site-footer { background: var(--navy-dark); color: #cfd9e4; margin-top: 4rem; }
.site-footer h4 { color: #fff; }
.site-footer a { color: var(--sky); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; font-size: 0.85rem; opacity: 0.75; }
.footer-bottom p { margin: 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Leader section (president) */
.leader {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(10,61,98,0.08);
  align-items: start;
}
.leader-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
}
.leader h3 { color: var(--navy); margin-bottom: 0.25rem; }
.leader-role { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--navy-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(47,75,153,0.1); }

/* Responsive */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; padding: 0.5rem 1rem 1rem; gap: 0; flex-wrap: nowrap; }
  .site-nav a { padding: 0.75rem 0.5rem; }
  .leader { grid-template-columns: 1fr; }
  .leader-img { aspect-ratio: 16/9; max-width: 200px; margin: 0 auto; }
  .vm { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
}
