:root {
  --green: #006B3F;
  --green-dark: #024529;
  --gold: #D4AF37;
  --cream: #F7F4EA;
  --ink: #1D1D1D;
  --muted: #666;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 5vw;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--green-dark);
}
.brand-logo { width: 38px; height: 38px; object-fit: contain; }
.site-nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-dark);
}
.site-nav a:hover { color: var(--gold); }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: url('images/1.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.62));
}
.hero-content {
  position: relative;
  max-width: 900px;
  padding: 3rem 5vw;
}
.hero-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  color: var(--gold);
  font-size: .8rem;
  margin: 0 0 .6rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green-dark); }
h3 { font-size: 1.35rem; color: var(--green-dark); }
.hero-text { font-size: clamp(1.1rem, 2vw, 1.45rem); margin: 0 auto 1.6rem; max-width: 700px; }
.hero-actions, .social-links { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button.primary { background: var(--gold); color: #1b1b1b; }
.button.secondary { border: 2px solid rgba(255,255,255,.85); color: var(--white); }
.button.secondary.dark { border-color: rgba(255,255,255,.85); color: var(--white); background: rgba(255,255,255,.08); }
.button.secondary.dark:visited, .button.secondary.dark:hover, .button.secondary.dark:focus { color: var(--white); }

.section { padding: 5rem 5vw; }
.container { max-width: 1120px; margin: 0 auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.intro-section { background: var(--cream); }
.cards-section { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.card, .info-box, .archive-panel {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card { border-top: 6px solid var(--green); }

.image-band {
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  background-position: center;
  background-size: cover;
}
.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.16));
}
.band-content { position: relative; }
.band-content h2 { color: var(--white); max-width: 650px; }
.pride-band { background-image: url('images/2.webp'); }
.heritage-band { background-image: url('images/3.webp'); }
.legacy-band { background-image: url('images/4.webp'); }

.events-section { background: var(--green-dark); color: var(--white); }
.connect-section {
  position: relative;
  color: var(--white);
  background: linear-gradient(rgba(2,69,41,.82), rgba(2,69,41,.86)), url('images/5.webp') center/cover no-repeat;
}
.events-section h2, .connect-section h2 { color: var(--white); }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.info-box { background: var(--cream); color: var(--ink); }
.small-note { color: var(--muted); font-size: .92rem; }
.events-section .small-note { color: #555; }

.committee-section { background: var(--cream); }
.section-note { color: var(--muted); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(0,0,0,.08); }
th { background: var(--green); color: var(--white); }

.archive-section { background: var(--white); }
.archive-panel { margin-top: 1.2rem; }
.archive-panel summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.15rem;
}
.chair-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .35rem 1.5rem; margin-top: 1rem; }
.chair-grid p { margin: .25rem 0; }

.site-footer {
  text-align: center;
  padding: 2.5rem 5vw;
  background: #111;
  color: var(--white);
}
.footer-logo { width: 52px; height: 52px; object-fit: contain; }
.site-footer .small-note { color: #bbb; }

@media (max-width: 780px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { gap: .7rem; }
  .site-nav a { font-size: .88rem; }
  .cards, .split, .chair-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 5vw; }
  .hero { min-height: 72vh; }
}

.social-links a, .social-links a:visited, .social-links a:hover, .social-links a:focus { text-decoration: none; }
