:root{
  --bg:#f6f4ee;
  --paper:#fbfaf7;
  --surface:#ffffff;

  --ink:#1f2a33;
  --muted:#4a5964;
  --muted2:#60717d;

  --green:#2f5f49;
  --green2:#3e6a56;
  --accent:#b57651;

  --border:#e4dfd3;
  --shadow:0 12px 28px rgba(20,33,41,0.07);
  --shadow2:0 18px 40px rgba(20,33,41,0.10);

  --r:14px;
  --max:1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  line-height:1.62;
  color:var(--ink);
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(47,95,73,0.08), transparent 58%),
    radial-gradient(700px 360px at 100% 30%, rgba(181,118,81,0.06), transparent 55%),
    linear-gradient(180deg, var(--bg), #efece3);
}

.wrap{width:min(var(--max), calc(100% - 44px)); margin:0 auto;}
a{color:inherit; text-decoration:none;}
.muted{color:var(--muted);}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}

h1,h2,h3{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing:-0.01em;
  margin:0;
}
h1{font-size:clamp(2.1rem, 3.4vw, 3.2rem); line-height:1.14;}
h2{font-size:1.95rem;}
h3{font-size:1.25rem;}

.section{padding:76px 0;}
.section.alt{
  background:rgba(255,255,255,0.45);
  border-top:1px solid rgba(228,223,211,0.95);
  border-bottom:1px solid rgba(228,223,211,0.95);
}
.section-head{max-width:80ch; margin-bottom:18px;}
.section-head p{margin:10px 0 0; color:var(--muted); font-weight:650;}

/* Utility bar */
.utility{
  background:rgba(47,95,73,0.10);
  border-bottom:1px solid rgba(47,95,73,0.16);
}
.utility-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 0;
  font-weight:750;
}
.utility-left{display:flex; align-items:center; gap:10px; min-width:0;}
.dot{width:10px;height:10px;border-radius:999px;background:var(--green); box-shadow:0 0 0 4px rgba(47,95,73,0.14);}
.utility-msg{white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.utility-right{display:flex; align-items:center; gap:10px; white-space:nowrap;}
.sep{opacity:0.55;}
.utility-link{font-weight:900; color:var(--green);}
.utility-link:hover{text-decoration:underline;}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,244,238,0.96);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(228,223,211,0.95);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0;}
.brand-logo{width:46px;height:46px;object-fit:contain;}
.brand-text{min-width:0;}
.brand-name{font-weight:950; font-size:1.12rem; line-height:1.05;}
.brand-sub{margin-top:4px; color:var(--muted2); font-size:.92rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}

.nav{display:flex; align-items:center; gap:10px;}
.nav a{
  font-weight:850;
  color:var(--muted);
  padding:8px 9px;
  border-radius:10px;
}
.nav a:hover{background:rgba(0,0,0,0.03); color:var(--ink);}

.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:9px 10px;
  cursor:pointer;
  font-weight:900;
  box-shadow:var(--shadow);
  align-items:center;
  gap:10px;
}
.menu-icon{
  width:18px;height:14px;
  display:inline-block;
  background:
    linear-gradient(var(--ink),var(--ink)) 0 0/100% 2px,
    linear-gradient(var(--ink),var(--ink)) 0 50%/100% 2px,
    linear-gradient(var(--ink),var(--ink)) 0 100%/100% 2px;
  background-repeat:no-repeat;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:11px 14px;
  font-weight:900;
  cursor:pointer;
}
.btn:hover{background:rgba(0,0,0,0.03);}
.btn.primary{
  background:var(--green);
  border-color:var(--green);
  color:#fff;
}
.btn.primary:hover{background:var(--green2); border-color:var(--green2);}
.btn.ghost{
  background:transparent;
  border-color:rgba(0,0,0,0.07);
}
.btn.small{padding:8px 12px; font-size:.95rem;}

/* Mobile nav */
.mobile-nav{
  display:none;
  border-top:1px solid rgba(228,223,211,0.95);
  padding:12px 0 16px;
  gap:10px;
}
.mobile-nav.open{display:grid;}
.mobile-nav a{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface);
  font-weight:900;
}

/* Hero */
.hero{padding:44px 0 28px;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap:18px;
  align-items:start;
}
.hero-card{
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow2);
  padding:24px;
  position:relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:240px;height:240px;
  background:radial-gradient(circle at 30% 30%, rgba(47,95,73,0.18), transparent 60%);
  transform:rotate(18deg);
  pointer-events:none;
}
.kicker{
  margin:0 0 10px;
  color:var(--green);
  font-weight:950;
  font-size:.92rem;
  letter-spacing:.02em;
}
.lead{margin:12px 0 0; max-width:75ch; color:var(--muted); font-weight:650;}
.hero-actions{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap;}
.hero-facts{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(228,223,211,0.95);
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.fact{
  background:var(--paper);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:12px;
  padding:12px;
}
.fact-title{font-weight:950; color:var(--green);}
.fact-text{margin-top:4px; color:var(--muted); font-weight:650; font-size:.95rem;}

/* Noticeboard */
.noticeboard{
  background:rgba(255,255,255,0.95);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow2);
  padding:16px;
  position:relative;
}
.noticeboard::before{
  content:"";
  position:absolute;
  left:14px; top:14px; bottom:14px;
  width:4px;
  border-radius:999px;
  background:var(--green);
  opacity:.9;
}
.noticeboard-head{padding-left:16px; display:flex; justify-content:space-between; align-items:flex-start; gap:10px;}
.notice-kicker{margin:0; font-weight:950; color:var(--green); font-size:.92rem;}
.notice-title{margin:4px 0 0; font-size:1.35rem;}

.badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:6px 10px;
  font-weight:950;
  border:1px solid rgba(228,223,211,0.95);
  background:var(--paper);
  white-space:nowrap;
}
.badge-warn{
  background:rgba(181,118,81,0.12);
  border-color:rgba(181,118,81,0.18);
  color:var(--accent);
}

.noticeboard-body{margin-top:12px; padding-left:6px;}
.noticeboard-footer{margin-top:12px; padding-left:6px; display:flex; gap:10px; flex-wrap:wrap;}

/* Event list (noticeboard) */
.event-list{display:flex; flex-direction:column; gap:10px;}
.event-item{
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(228,223,211,0.95);
  background:var(--paper);
}
.event-item.urgent{
  background:rgba(47,95,73,0.06);
  border-color:rgba(47,95,73,0.18);
}
.datebox{
  min-width:60px;
  text-align:center;
  background:#fff;
  border:1px solid rgba(228,223,211,0.95);
  border-radius:10px;
  padding:9px 8px;
}
.datebox .m{
  display:block;
  font-weight:950;
  font-size:.72rem;
  color:var(--muted2);
  letter-spacing:.06em;
}
.datebox .d{
  display:block;
  font-weight:950;
  font-size:1.22rem;
  color:var(--green);
  line-height:1;
  margin-top:2px;
}
.event-body strong{display:block;}
.event-body span{display:block; margin-top:2px; color:var(--muted); font-weight:650; font-size:.95rem;}

/* Panels */
.panel{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel.emphasis{
  border-color:rgba(47,95,73,0.20);
  background:linear-gradient(180deg, rgba(47,95,73,0.06), rgba(255,255,255,0.96));
}
.mission-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap:14px;
  align-items:start;
}
.cta-stack{display:grid; gap:10px; margin-top:12px;}
.fineprint{margin:12px 0 0; color:var(--muted); font-weight:650; font-size:.95rem;}

/* Lists */
.checklist{margin:12px 0 0; padding-left:0; list-style:none;}
.checklist li{
  padding-left:26px;
  margin:10px 0;
  position:relative;
  color:var(--muted);
  font-weight:650;
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0; top:.35em;
  width:16px;height:16px;
  border-radius:6px;
  border:2px solid rgba(47,95,73,0.26);
  background:rgba(47,95,73,0.08);
}
.steps{margin:12px 0 0; padding-left:18px; color:var(--muted); font-weight:650;}
.steps li{margin:10px 0;}
.steps strong{color:var(--ink);}

/* Programs */
.program-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.program-card{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:18px;
}
.program-top{display:flex; gap:12px; align-items:flex-start;}
.program-icon{
  width:46px;height:46px;
  border-radius:12px;
  border:1px solid rgba(47,95,73,0.16);
  background:rgba(47,95,73,0.06);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.program-icon svg{width:30px;height:30px;}
.pill-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px;}
.pill{
  border:1px solid rgba(228,223,211,0.95);
  background:var(--paper);
  color:var(--muted);
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  font-size:.9rem;
}
.program-actions{margin-top:12px; display:flex; justify-content:space-between; align-items:center; gap:10px;}
.link{
  font-weight:950;
  color:var(--green);
}
.link:hover{text-decoration:underline;}
.link-btn{
  border:none;
  background:transparent;
  padding:0;
  color:var(--muted);
  font-weight:900;
  cursor:pointer;
}
.link-btn:hover{text-decoration:underline; color:var(--ink);}
.program-note{
  margin-top:16px;
  padding:14px;
  border-radius:var(--r);
  border:1px solid rgba(228,223,211,0.95);
  background:rgba(255,255,255,0.7);
  display:flex;
  gap:10px;
  align-items:baseline;
  flex-wrap:wrap;
}
.program-note strong{color:var(--green);}

/* Impact */
.impact-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.impact-card{
  background:var(--paper);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:16px;
}
.impact-card.emphasis{
  background:linear-gradient(180deg, rgba(47,95,73,0.08), rgba(251,250,247,1));
  border-color:rgba(47,95,73,0.18);
}
.impact-number{font-weight:950; font-size:1.65rem; color:var(--green);}
.impact-label{margin-top:4px; font-weight:900; color:var(--ink);}
.impact-desc{margin-top:8px; color:var(--muted); font-weight:650; font-size:.95rem;}
.transparency{margin-top:18px;}

/* Events */
.events-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:14px;
  align-items:start;
}
.events-panel{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:16px;
}
.events-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.events-tools{display:flex; gap:10px; flex-wrap:wrap;}
.events-list{margin-top:12px; display:flex; flex-direction:column; gap:10px;}
.event-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(228,223,211,0.95);
  background:var(--paper);
}
.event-row strong{display:block;}
.event-row .meta{color:var(--muted); font-weight:650; margin-top:2px;}
.event-row .right{margin-left:auto; display:flex; gap:8px; align-items:center; flex-wrap:wrap; justify-content:flex-end;}
.chip{
  border:1px solid rgba(47,95,73,0.18);
  background:rgba(47,95,73,0.06);
  color:var(--green);
  font-weight:900;
  border-radius:999px;
  padding:6px 10px;
  font-size:.9rem;
}
.events-side{display:grid; gap:14px;}

/* Stories */
.story-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.story{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:16px;
}
.story-meta{margin:0 0 10px; color:var(--green); font-weight:950; font-size:.92rem;}
.story p{margin:10px 0 0;}

/* Get involved */
.action-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.action-card{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:18px;
}
.bullets{margin:10px 0 14px; padding-left:18px; color:var(--muted); font-weight:650;}
.bullets li{margin:8px 0;}
.needs{margin-top:10px; display:grid; gap:10px;}
.need{
  background:var(--paper);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:12px;
  padding:12px;
  color:var(--muted);
  font-weight:650;
}
.need strong{color:var(--ink); font-weight:950;}

/* Newsletter */
.newsletter{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:var(--shadow2);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.newsletter-form{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.newsletter-form input{
  width:min(340px, 70vw);
  padding:11px 12px;
  border-radius:12px;
  border:1px solid rgba(228,223,211,0.95);
  background:var(--surface);
  outline:none;
}
.newsletter-form input:focus{
  border-color:rgba(47,95,73,0.30);
  box-shadow:0 0 0 4px rgba(47,95,73,0.10);
}
.fineprint{color:var(--muted); font-weight:650; font-size:.92rem; min-width:220px;}

/* FAQ */
.faq{display:grid; gap:10px; max-width:900px;}
.faq-q{
  text-align:left;
  width:100%;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:12px;
  padding:12px 14px;
  font-weight:950;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.faq-q:hover{background:rgba(0,0,0,0.02);}
.faq-a{
  display:none;
  margin-top:-6px;
  background:var(--paper);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:12px;
  padding:12px 14px;
  color:var(--muted);
  font-weight:650;
}
.faq-a.open{display:block;}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:var(--paper);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:12px;
  padding:12px;
  margin-top:12px;
}
.label{color:var(--muted2); font-weight:900; font-size:.92rem;}
.value{font-weight:950; margin-top:4px;}
.contact-note{margin-top:12px; font-weight:650;}
.partner-logos{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
.partner{
  border:1px dashed rgba(228,223,211,0.95);
  background:rgba(255,255,255,0.55);
  border-radius:12px;
  padding:14px;
  text-align:center;
  color:var(--muted);
  font-weight:900;
}

/* Forms */
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px;}
label{display:grid; gap:8px; margin-top:12px; font-weight:850; color:var(--muted);}
input,select,textarea{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid rgba(228,223,211,0.95);
  background:var(--surface);
  outline:none;
}
textarea{min-height:120px; resize:vertical;}
input:focus,select:focus,textarea:focus{
  border-color:rgba(47,95,73,0.30);
  box-shadow:0 0 0 4px rgba(47,95,73,0.10);
}
.form-actions{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:14px;}

/* Footer */
.footer{
  border-top:1px solid rgba(228,223,211,0.95);
  background:rgba(255,255,255,0.35);
  padding:28px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links{display:flex; gap:10px; flex-wrap:wrap;}
.footer-links a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  font-weight:900;
}
.footer-links a:hover{background:rgba(0,0,0,0.03); color:var(--ink);}
.footer-small{margin-top:6px;}

/* Back to top */
.to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid rgba(228,223,211,0.95);
  background:var(--surface);
  box-shadow:var(--shadow);
  cursor:pointer;
  display:none;
}
.to-top.show{display:block;}

/* Toast */
.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  background:var(--surface);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:12px;
  box-shadow:var(--shadow);
  padding:12px 14px;
  font-weight:950;
  display:none;
}
.toast.show{display:block;}

/* Modal */
.modal{border:none; padding:0; background:transparent;}
.modal::backdrop{background:rgba(17,24,39,0.55);}
.modal-card{
  width:min(740px, calc(100% - 28px));
  margin:10vh auto 0;
  background:var(--surface);
  border:1px solid rgba(228,223,211,0.95);
  border-radius:var(--r);
  box-shadow:0 22px 70px rgba(17,24,39,0.18);
  padding:16px;
}
.modal-head{display:flex; justify-content:space-between; align-items:flex-start; gap:12px;}
.icon-btn{
  border:1px solid rgba(228,223,211,0.95);
  background:var(--surface);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.modal-box{
  margin-top:10px;
  border:1px solid rgba(47,95,73,0.18);
  background:rgba(47,95,73,0.08);
  border-radius:12px;
  padding:12px;
  font-weight:900;
  color:var(--green);
}
.modal-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-facts{grid-template-columns:1fr;}
  .mission-grid{grid-template-columns:1fr;}
  .program-grid{grid-template-columns:1fr;}
  .impact-grid{grid-template-columns: repeat(2, minmax(0,1fr));}
  .events-grid{grid-template-columns:1fr;}
  .story-grid{grid-template-columns:1fr;}
  .action-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}
@media (max-width: 760px){
  .nav{display:none;}
  .menu-btn{display:inline-flex;}
  .utility-right{display:none;}
}
