:root {
  --green:#006b3f;
  --green-dark:#004529;
  --green-deep:#00351f;
  --green-soft:#e9f6ef;
  --white:#ffffff;
  --cream:#fbfbf4;
  --ink:#142d21;
  --muted:#64786d;
  --line:rgba(0,107,63,.18);
  --shadow:0 18px 48px rgba(0,53,31,.13);
  --radius:22px;
  --site-max:1400px;
  --page-pad:clamp(14px,3vw,48px);
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0,107,63,.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f4fbf7 48%, #ffffff 100%);
  line-height:1.55;
}
body::before {
  content:"";
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  background-image:url('union-history-silhouette.png');
  background-repeat:no-repeat;
  background-position:center top;
  background-size:cover;
  opacity:.55;
  pointer-events:none;
  z-index:-2;
}
body::after {
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.45) 22%, rgba(244,251,247,.5) 55%, rgba(255,255,255,.6) 100%);
  pointer-events:none;
  z-index:-1;
}
/* Keep the marchers visible as the viewport narrows and reflows */
@media (max-width:1100px) {
  body::before { background-position:center 15%; }
}
@media (max-width:700px) {
  body::before { background-position:58% top; opacity:.45; }
}
@media (max-width:420px) {
  body::before { background-position:62% top; opacity:.40; }
}
a { color:inherit; }
.page { position:relative; z-index:1; width:100%; max-width:var(--site-max); margin:0 auto; padding:var(--page-pad); }
.topbar {
  position:sticky; top:0; z-index:20;
  margin:0 calc(var(--page-pad) * -1) 26px;
  padding:14px var(--page-pad);
  background:#ffffff;
  box-shadow:0 2px 12px rgba(0,53,31,.12);
}
.topbar-inner { max-width:var(--site-max); margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:clamp(10px,2vw,16px); }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; min-width:0; flex:0 0 auto; }
.brand img { width:clamp(40px,4vw,54px); height:clamp(40px,4vw,54px); object-fit:contain; }
.brand strong { display:block; color:var(--green-dark); text-transform:uppercase; letter-spacing:.02em; font-size:clamp(.85rem,1vw,.98rem); }
.brand span { display:block; color:var(--muted); font-size:clamp(.74rem,.85vw,.84rem); }
nav { display:flex; align-items:center; justify-content:flex-end; gap:clamp(3px,.6vw,7px); flex-wrap:wrap; }
nav a { text-decoration:none; color:var(--green-dark); font-weight:800; padding:clamp(6px,.9vw,9px) clamp(8px,1.1vw,12px); border-radius:999px; font-size:clamp(.78rem,.9vw,.93rem); white-space:nowrap; }
nav a:hover, nav a:focus { background:var(--green-soft); outline:none; }
.hero {
  display:grid; grid-template-columns:minmax(180px,300px) 1fr; align-items:center; gap:30px;
  padding:40px; border:1px solid var(--line); border-radius:30px; background:#fff; box-shadow:var(--shadow); overflow:hidden;
  background-image:linear-gradient(135deg, rgba(0,107,63,.09), rgba(255,255,255,.94));
}
.hero-logo { width:100%; max-width:285px; margin:0 auto; display:block; filter:drop-shadow(0 18px 20px rgba(0,62,37,.16)); }
.eyebrow { color:var(--green-dark); font-weight:900; letter-spacing:.11em; text-transform:uppercase; font-size:.8rem; }
h1 { margin:8px 0 12px; color:var(--green-deep); font-size:clamp(2.25rem, 6vw, 4.7rem); line-height:.98; letter-spacing:-.04em; }
.slogan { margin:0 0 18px; color:var(--green); font-size:clamp(1.12rem, 2.3vw, 1.55rem); font-weight:900; }
.hero p { margin:0 0 24px; color:#315243; font-size:1.04rem; max-width:650px; }
.button-row { display:flex; flex-wrap:wrap; gap:12px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:12px 17px; border:2px solid var(--green); border-radius:999px; font-weight:900; text-decoration:none; transition:.16s ease; }
.button.primary { background:var(--green); color:#fff; box-shadow:0 10px 26px rgba(0,107,63,.23); }
.button.secondary { background:#fff; color:var(--green-dark); }
.button:hover, .button:focus { transform:translateY(-1px); outline:none; box-shadow:0 14px 30px rgba(0,107,63,.2); }
section { padding:54px 0 0; }
.section-head { max-width:780px; margin:0 0 24px; }
.section-label { display:inline-block; margin-bottom:8px; color:var(--green); text-transform:uppercase; letter-spacing:.12em; font-size:.78rem; font-weight:900; }
h2 { margin:0 0 10px; color:var(--green-deep); font-size:clamp(1.85rem, 4vw, 3rem); line-height:1.05; }
.section-head p { margin:0; color:#405d50; font-size:1.02rem; }
.card { background:rgba(255,255,255,.95); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); backdrop-filter: blur(4px); }
.about-card { padding:28px; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.about-card p { margin:0; }
.officer-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.officer-card {
  display:flex; gap:14px; align-items:center; min-height:150px;
  padding:16px; background:rgba(255,255,255,.96); border:1px solid var(--line); border-radius:20px; box-shadow:0 10px 28px rgba(0,53,31,.09); backdrop-filter: blur(4px);
}
.photo-wrap {
  flex:0 0 108px; width:108px; height:108px; border-radius:16px; overflow:hidden; background:var(--green-soft);
  border:3px solid rgba(0,107,63,.16); display:flex; align-items:center; justify-content:center;
}
.photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.initials {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--green), var(--green-dark)); color:#fff; font-weight:900; font-size:2rem; letter-spacing:.02em;
}
.officer-text { min-width:0; }
.officer-text h3 { margin:0 0 4px; color:var(--green-deep); font-size:1.12rem; line-height:1.15; }
.role { margin:0 0 6px; color:var(--green); font-weight:900; }
.term { margin:0; color:var(--muted); font-size:.92rem; }
.officer-email { display:inline-block; margin-top:8px; color:var(--green-dark); font-weight:800; font-size:.9rem; word-break:break-word; }
.info-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:18px; }
.panel { padding:26px; }
.panel h3 { margin:0 0 10px; color:var(--green-deep); font-size:1.45rem; }
.panel p { margin:0 0 18px; color:#405d50; }
.newsletter-box { display:grid; grid-template-columns:1fr auto; gap:12px; align-items:center; margin-top:10px; }
.newsletter-note { background:var(--green-soft); border:1px solid var(--line); border-radius:18px; padding:16px; color:#315243; }

.newsletter-feature {
  margin-top:18px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 28px rgba(0,53,31,.08);
}
.newsletter-feature h4 {
  margin:0 0 8px;
  color:var(--green-deep);
  font-size:1.1rem;
}
.newsletter-feature p {
  margin:0 0 14px;
  color:#405d50;
}
.newsletter-feature img:not(.flyer-image) {
  width:100%;
  max-height:380px;
  object-fit:contain;
  display:block;
  border-radius:16px;
  border:1px solid var(--line);
  background:#f7fbf8;
}
.newsletter-feature .caption {
  margin-top:10px;
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
}


.mou-extract {
  margin-top:16px;
  padding:18px;
  border-left:6px solid var(--green);
  border-radius:18px;
  background:linear-gradient(135deg, rgba(233,246,239,.96), rgba(255,255,255,.98));
  color:#254839;
}
.mou-extract h5 {
  margin:0 0 10px;
  color:var(--green-deep);
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.mou-extract p { margin:0 0 12px; }
.mou-points {
  margin:12px 0 0;
  padding-left:20px;
}
.mou-points li { margin:8px 0; }
.mou-note {
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(0,107,63,.08);
  font-weight:800;
  color:var(--green-dark);
}

.contact-list { display:grid; gap:12px; }
.contact-item { padding:14px; border:1px solid var(--line); border-radius:16px; background:#fbfffd; }
.contact-item strong { display:block; color:var(--green-deep); }
footer { margin-top:54px; padding:24px 0; color:#5c7067; text-align:center; border-top:1px solid var(--line); }
@media (max-width:900px) {
  .topbar-inner { align-items:flex-start; flex-direction:column; }
  nav { justify-content:flex-start; }
  .hero { grid-template-columns:1fr; text-align:center; padding:30px 22px; }
  .button-row { justify-content:center; }
  .about-card, .info-grid { grid-template-columns:1fr; }
  .officer-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:620px) {
  nav a { background:#f5fbf8; }
  .hero-logo { max-width:230px; }
  .officer-grid { grid-template-columns:1fr; gap:14px; }
  .officer-card { min-height:130px; padding:14px; }
  .photo-wrap { flex-basis:92px; width:92px; height:92px; border-radius:14px; }
  .newsletter-box { grid-template-columns:1fr; }
}

.flyer-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.flyer-image {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #f7fbf8;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
  cursor: zoom-in;
}

.flyer-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}