:root{
  --forest:#16352C;
  --forest-2:#1F4A3D;
  --forest-soft:#EAF0EC;
  --gold:#D9A441;
  --gold-deep:#B9832C;
  --clay:#B1502D;
  --paper:#FAF6ED;
  --paper-2:#F1EADA;
  --cream:#FFFDF9;
  --ink:#241F1A;
  --ink-soft:#5B5646;
  --line:#E3DAC5;
  --black:#0B0B0A;
  --radius:14px;
  --maxw:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:90px;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  color:var(--forest);
  margin:0 0 .5em 0;
  line-height:1.15;
  letter-spacing:-0.01em;
}
p{margin:0 0 1em 0;}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.eyebrow{
  font-family:'Work Sans',sans-serif;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12.5px;
  font-weight:600;
  color:var(--clay);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--clay);
  box-shadow:0 0 0 3px rgba(177,80,45,0.18);
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{background:var(--gold); color:var(--forest); box-shadow:0 6px 18px rgba(217,164,65,0.35);}
.btn-gold:hover{background:var(--gold-deep);}
.btn-outline{background:transparent; border-color:rgba(255,255,255,0.55); color:#fff;}
.btn-outline:hover{background:rgba(255,255,255,0.12);}
.btn-forest{background:var(--forest); color:var(--cream);}
.btn-forest:hover{background:var(--forest-2);}
.btn-line{background:transparent; border-color:var(--forest); color:var(--forest);}
.btn-line:hover{background:var(--forest); color:var(--cream);}

/* dot motif — signature element referencing community circles */
.dot-divider{display:flex; align-items:center; justify-content:center; gap:10px; margin:0 0 34px 0;}
.dot-divider span{width:6px;height:6px;border-radius:50%;background:var(--gold);}
.dot-divider span:nth-child(2){width:9px;height:9px;background:var(--clay);}
.dot-divider span:nth-child(3){width:6px;height:6px;}

/* ===== HEADER ===== */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,246,237,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none;}

/* Logo mark sits on a solid black badge so the mark is always visible,
   regardless of the logo file's own (often light/transparent) colors. */
.brand-mark{
  height:48px; width:48px; flex:none; border-radius:50%;
  background:var(--black); display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 10px rgba(0,0,0,0.28);
}
.brand-mark img{height:30px; width:30px; object-fit:contain;}

.brand-text{font-family:'Fraunces',serif; font-weight:600; font-size:15px; color:var(--forest); line-height:1.2;}
.brand-text small{display:block; font-family:'Work Sans',sans-serif; font-weight:500; font-size:11px; letter-spacing:.08em; color:var(--ink-soft); text-transform:uppercase; margin-top:2px;}
nav.links{display:flex; align-items:center; gap:30px;}
nav.links a{
  text-decoration:none; color:var(--ink); font-weight:500; font-size:15px;
  padding:6px 0; position:relative;
}
nav.links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--gold);
  transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
nav.links a:hover::after, nav.links a.active::after{transform:scaleX(1);}
nav.links a.active{color:var(--forest); font-weight:600;}
.nav-right{display:flex; align-items:center; gap:18px;}
.burger{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
.burger span{width:24px; height:2px; background:var(--forest); border-radius:2px;}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero{
  background:var(--forest); color:#fff; padding:64px 0 56px; position:relative; overflow:hidden;
}
.page-hero .eyebrow{color:var(--gold);}
.page-hero .eyebrow::before{background:var(--gold); box-shadow:0 0 0 3px rgba(217,164,65,0.25);}
.page-hero h1{color:#fff; font-size:clamp(30px,4vw,46px); max-width:720px; margin-bottom:14px;}
.page-hero p{color:rgba(255,255,255,0.82); max-width:560px; font-size:17px; margin:0;}
.crumb{font-size:13px; color:rgba(255,255,255,0.6); margin-bottom:16px;}
.crumb a{color:rgba(255,255,255,0.85); text-decoration:none;}
.crumb a:hover{text-decoration:underline;}

/* ===== HOME HERO ===== */
.hero{
  position:relative;
  min-height:88vh;
  display:flex; align-items:center;
  overflow:hidden;
  background:var(--forest);
}
.hero-bg{
  position:absolute; inset:0;
  background:url('https://static.wixstatic.com/media/9c0307_14fdb088dc4a41999fdbd013b1b9b737f002.jpg/v1/fill/w_1600,h_900,enc_auto/file.jpeg') center 30%/cover no-repeat;
  opacity:0.5;
}
.hero-gradient{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(22,53,44,0.97) 15%, rgba(22,53,44,0.72) 55%, rgba(22,53,44,0.4) 100%);
}
.hero-rings{position:absolute; right:-60px; bottom:-60px; width:340px; height:340px; opacity:.35; pointer-events:none;}
.hero-inner{position:relative; z-index:2; padding:120px 0 90px;}
.hero-inner .eyebrow{color:var(--gold);}
.hero-inner .eyebrow::before{background:var(--gold); box-shadow:0 0 0 3px rgba(217,164,65,0.25);}
.hero h1{
  color:#fff;
  font-size:clamp(38px, 5.4vw, 66px);
  max-width:820px;
  margin-bottom:22px;
}
.hero h1 em{font-style:italic; color:var(--gold);}
.hero p.lead{
  color:rgba(255,255,255,0.86);
  font-size:19px;
  max-width:560px;
  margin-bottom:34px;
}
.hero-ctas{display:flex; flex-wrap:wrap; gap:14px;}

/* ===== IMPACT STRIP ===== */
.impact{
  background:var(--cream);
  border-bottom:1px solid var(--line);
  margin-top:-64px;
  position:relative; z-index:5;
}
.impact .wrap{
  background:var(--cream);
  border-radius:var(--radius);
  box-shadow:0 20px 50px rgba(22,53,44,0.14);
  padding:38px 28px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat{text-align:center; padding:6px 10px; border-right:1px solid var(--line);}
.stat:last-child{border-right:none;}
.stat .num{
  font-family:'Fraunces',serif; font-weight:700; font-size:clamp(26px,3vw,38px);
  color:var(--clay); display:block; margin-bottom:4px;
}
.stat .label{font-size:13.5px; color:var(--ink-soft); font-weight:500; letter-spacing:.01em;}

section{padding:100px 0;}
section:not(.hero){content-visibility:auto; contain-intrinsic-size:900px;}
.section-head{max-width:640px; margin:0 auto 56px; text-align:center;}
.section-head p{color:var(--ink-soft); font-size:17.5px;}
.alt{background:var(--paper-2);}
.dark{background:var(--forest); color:var(--cream);}
.dark h2, .dark h3, .dark h4{color:#fff;}
.dark p{color:rgba(255,255,255,0.82);}

/* ===== ABOUT ===== */
.about-copy .lede{font-size:19px; color:var(--ink); margin-bottom:22px;}
.vm-row{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:28px;}
.vm-card{background:var(--cream); border:1px solid var(--line); border-radius:12px; padding:22px;}
.vm-card h4{font-size:16px; margin-bottom:8px;}
.vm-card p{font-size:14.5px; color:var(--ink-soft); margin:0;}

/* Founder spotlight — a normal, human portrait size, not a stretched hero image */
.founder-card{
  display:flex; align-items:center; gap:34px; margin-top:52px;
  background:var(--cream); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px;
}
.founder-photo{
  flex:none; width:220px; height:260px; border-radius:12px; overflow:hidden;
  box-shadow:0 14px 30px rgba(22,53,44,0.16);
}
.founder-photo img{width:100%; height:100%; object-fit:cover;}
.founder-copy .eyebrow{margin-bottom:10px;}
.founder-copy h3{font-size:22px; margin-bottom:4px;}
.founder-copy .role{font-size:14px; color:var(--clay); font-weight:600; margin-bottom:14px; display:block;}
.founder-copy p{font-size:15.5px; color:var(--ink-soft); margin:0;}

/* ===== PROGRAMS ===== */
.prog-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px;}
.prog-card{
  background:var(--cream); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px; transition:transform .25s ease, box-shadow .25s ease;
}
.prog-card:hover{transform:translateY(-6px); box-shadow:0 20px 40px rgba(22,53,44,0.1);}
.prog-icon{width:56px; height:56px; border-radius:14px; background:var(--forest-soft); display:flex; align-items:center; justify-content:center; margin-bottom:18px; overflow:hidden;}
.prog-icon img{width:34px; height:34px; object-fit:contain;}
.prog-card h3{font-size:22px; margin-bottom:14px;}
.prog-card ul{margin:0; padding:0; list-style:none;}
.prog-card li{
  position:relative; padding-left:22px; margin-bottom:11px; font-size:15px; color:var(--ink-soft);
}
.prog-card li::before{
  content:""; position:absolute; left:0; top:8px; width:7px; height:7px; border-radius:50%; background:var(--gold);
}

.collab-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:56px;}
.collab-card{text-align:center; padding:26px 16px;}
.collab-card .ic{
  width:76px; height:76px; margin:0 auto 16px; border-radius:50%;
  background:var(--cream); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.collab-card .ic img{width:40px; height:40px; object-fit:contain;}
.collab-card h4{font-size:15.5px; margin-bottom:6px;}
.collab-card p{font-size:13.5px; color:var(--ink-soft); margin:0;}

/* ===== TEAM ===== */
.team-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:18px;}
.team-card{text-align:center;}
.team-photo{
  border-radius:12px; overflow:hidden; aspect-ratio:3/3.4; margin-bottom:12px;
  box-shadow:0 10px 24px rgba(22,53,44,0.1);
}
.team-photo img{width:100%; height:100%; object-fit:cover; transition:transform .35s ease;}
.team-card:hover .team-photo img{transform:scale(1.06);}
.team-card h4{font-size:15px; margin-bottom:2px; color:var(--forest);}
.team-card span{font-size:12.5px; color:var(--ink-soft);}

/* ===== GET INVOLVED ===== */
.invol-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.invol-card{
  background:var(--cream); border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line); display:flex; flex-direction:column;
}
.invol-img{aspect-ratio:4/3; overflow:hidden;}
.invol-img img{width:100%; height:100%; object-fit:cover;}
.invol-body{padding:24px; display:flex; flex-direction:column; flex:1;}
.invol-body .eyebrow{margin-bottom:10px;}
.invol-body p{font-size:14.5px; color:var(--ink-soft); flex:1;}
.invol-body .btn{align-self:flex-start; margin-top:14px;}

/* ===== PARTNERS ===== */
.partner-strip{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:36px;
}
/* Partner marks sit on solid black badges — same fix as the header logo,
   so every logo stays visible no matter its own colors/transparency. */
.partner-strip a{
  height:88px; width:88px; border-radius:50%; background:var(--black);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  transition:transform .2s ease;
}
.partner-strip a:hover{transform:translateY(-4px) scale(1.06);}
.partner-strip img{
  height:52px; width:52px; object-fit:contain;
}

/* ===== DONATE BANNER / PAGE ===== */
.donate-banner{
  background:linear-gradient(120deg, var(--clay), #8f3d20);
  border-radius:22px; padding:56px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  color:#fff;
}
.donate-banner h2{color:#fff; font-size:32px; max-width:480px; margin-bottom:10px;}
.donate-banner p{color:rgba(255,255,255,0.85); max-width:460px; margin:0;}
.donate-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:start;}
.donate-copy .lede{font-size:19px; color:var(--ink); margin-bottom:18px;}
.donate-list{margin:0; padding:0; list-style:none;}
.donate-list li{position:relative; padding-left:24px; margin-bottom:14px; font-size:15.5px; color:var(--ink-soft);}
.donate-list li::before{content:""; position:absolute; left:0; top:8px; width:8px; height:8px; border-radius:50%; background:var(--gold);}
.donate-card{background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); padding:30px;}
.donate-card h4{font-size:15px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px;}
.donate-row{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); font-size:14.5px;}
.donate-row:last-of-type{border-bottom:none;}
.donate-row span:first-child{color:var(--ink-soft);}
.donate-row span:last-child{font-weight:600; color:var(--ink);}
.donate-card .btn{width:100%; justify-content:center; margin-top:20px;}

/* ===== FOOTER ===== */
footer{background:var(--forest); color:rgba(255,255,255,0.82); padding:70px 0 26px;}
.foot-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.14);}
.foot-brand{display:flex; align-items:center; gap:12px; margin-bottom:16px;}
.foot-brand .brand-mark{background:var(--black); box-shadow:none;}
.foot-brand span{font-family:'Fraunces',serif; color:#fff; font-weight:600; font-size:15px;}
footer h4{color:#fff; font-size:14px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px;}
footer ul{list-style:none; margin:0; padding:0;}
footer li{margin-bottom:10px; font-size:14.5px;}
footer a{text-decoration:none; color:rgba(255,255,255,0.78); transition:color .2s;}
footer a:hover{color:var(--gold);}
.foot-social{display:flex; gap:12px; margin-top:16px;}
.foot-social a{
  width:36px; height:36px; border-radius:50%; background:var(--black);
  display:flex; align-items:center; justify-content:center;
}
.foot-social img{height:16px; width:16px; filter:brightness(0) invert(1);}
.newsletter{display:flex; gap:8px; margin-top:14px;}
.newsletter input{
  flex:1; border-radius:999px; border:1px solid rgba(255,255,255,0.25); background:rgba(255,255,255,0.06);
  padding:11px 16px; color:#fff; font-size:14px;
}
.newsletter input::placeholder{color:rgba(255,255,255,0.5);}
.bottom-bar{display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:24px; font-size:13px; color:rgba(255,255,255,0.55);}

.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

@media (max-width:980px){
  nav.links{
    display:none; flex-direction:column; align-items:flex-start; gap:4px;
    position:absolute; top:100%; left:0; right:0;
    background:var(--paper); padding:16px 28px 22px;
    box-shadow:0 14px 28px rgba(22,53,44,0.12);
    border-bottom:1px solid var(--line);
  }
  nav.links.open{display:flex;}
  nav.links a{padding:10px 0; width:100%;}
  .burger{display:flex;}
  .impact .wrap{grid-template-columns:repeat(2,1fr); gap:26px;}
  .stat{border-right:none; border-bottom:1px solid var(--line); padding-bottom:18px;}
  .prog-grid{grid-template-columns:1fr;}
  .collab-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(3,1fr);}
  .invol-grid{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr 1fr;}
  .founder-card{flex-direction:column; text-align:center;}
  .donate-grid{grid-template-columns:1fr;}
}
@media (max-width:560px){
  section{padding:70px 0;}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .donate-banner{padding:36px 26px;}
  .foot-grid{grid-template-columns:1fr;}
  .founder-photo{width:180px; height:210px;}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1; transform:none; transition:none;}
}
