*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #1a6b3c;
  --green-dk: #124d2b;
  --green-lt: #e8f5ee;
  --gold:     #c8973a;
  --gold-lt:  #fdf3e3;
  --text:     #1e1e1e;
  --muted:    #5c5c5c;
  --border:   #dde3dd;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--green-dk);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: .4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--gold); }

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.logo-icon {
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-icon img { height: 52px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dk);
  line-height: 1.2;
}
.logo-text span { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: .55rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green); background: var(--green-lt); }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: 6px; min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: .4rem 0; z-index: 999; }
.nav-links li:hover .dropdown { display: block; }
.dropdown a { display: block; padding: .55rem 1.2rem; font-size: .85rem; color: var(--text);
  transition: background .15s, color .15s; }
.dropdown a:hover { background: var(--green-lt); color: var(--green); }

.nav-donate {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 6px;
  padding: .5rem 1.2rem !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-donate:hover { background: #a87a2a !important; color: var(--white) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: .3rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 60%, #2d8f55 100%);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  padding: .3rem 1rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 2.2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s, box-shadow .15s, background .2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a87a2a; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dk); }

/* ── STATS ── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--green); font-weight: 700; }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

/* ── SECTION COMMONS ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--green-dk); margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 2.5rem; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--green-lt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  border-radius: 12px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.about-img svg { width: 80px; height: 80px; fill: rgba(255,255,255,.4); }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: .6rem; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: .45rem; flex-shrink: 0; }
.value-item p { font-size: .88rem; color: var(--muted); }
.value-item strong { display: block; font-size: .92rem; color: var(--text); }

/* ── PROGRAMS ── */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.program-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.program-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-4px); }
.program-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--green-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.program-icon svg { width: 26px; height: 26px; fill: var(--green); }
.program-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.program-card p { font-size: .87rem; color: var(--muted); }
.program-link { display: inline-block; margin-top: 1rem; font-size: .85rem; color: var(--green); font-weight: 600; }
.program-link:hover { text-decoration: underline; }

/* ── GET INVOLVED ── */
.get-involved { background: var(--green-lt); }
.involved-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.involved-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.involved-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); }
.involved-card svg { width: 40px; height: 40px; fill: var(--gold); margin-bottom: 1rem; }
.involved-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.involved-card p { font-size: .84rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ── DONATE ── */
.donate-section { background: linear-gradient(135deg, var(--green-dk), var(--green)); color: var(--white); text-align: center; }
.donate-section .section-title { color: var(--white); }
.donate-section p { color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.donate-amounts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.amount-btn {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  border-radius: 8px;
  padding: .7rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.amount-btn:hover, .amount-btn.active { background: var(--gold); border-color: var(--gold); }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.news-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--white); transition: box-shadow .2s; }
.news-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.news-img { height: 160px; background: var(--green-lt); display: flex; align-items: center; justify-content: center; }
.news-img svg { width: 48px; height: 48px; fill: var(--green); opacity: .4; }
.news-body { padding: 1.3rem; }
.news-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 600; margin-bottom: .4rem; }
.news-card h3 { font-size: .97rem; font-weight: 600; margin-bottom: .4rem; line-height: 1.4; }
.news-card p { font-size: .83rem; color: var(--muted); }
.news-date { font-size: .75rem; color: var(--muted); margin-top: .8rem; }

/* ── CONTACT ── */
.contact-section { background: var(--green-lt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.2rem; }
.contact-item { display: flex; gap: .8rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-item svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; margin-top: .15rem; }
.contact-item p { font-size: .88rem; color: var(--muted); }
.contact-item strong { display: block; font-size: .92rem; color: var(--text); margin-bottom: .1rem; }

form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form input, form select, form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--green); }
form textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
footer { background: var(--green-dk); color: rgba(255,255,255,.75); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem 2rem; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .84rem; margin-top: .8rem; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.social-links a:hover { background: var(--gold); }
.social-links svg { width: 16px; height: 16px; fill: var(--white); }

.footer-col h4 { color: var(--white); font-size: .88rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .83rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 2rem; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border); padding: 1rem; gap: .2rem; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links > li > a { padding: .65rem .8rem; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 1rem; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}
