:root {
  --green: #1f6f54;
  --green-dark: #14442f;
  --green-pale: #eef4ee;
  --cream: #faf8f4;
  --ink: #22302a;
  --muted: #5f6f66;
  --line: #e3e9e2;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 68, 47, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--green); }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.brand img.logo {
  width: 42px; height: 42px;
  border-radius: 10px;
  object-fit: contain;
}
nav.main { display: flex; align-items: center; gap: 6px; }
nav.main a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
nav.main a:hover { background: var(--green-pale); color: var(--green-dark); }
nav.main a.active { background: var(--green); color: #fff; }
nav.main a.donate {
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
}
nav.main a.donate:hover { background: var(--green); }
#menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--green-dark);
}

/* ---------- Blocks ---------- */
section.block { padding: 72px 20px; }
section.block.tight { padding: 48px 20px; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner.narrow { max-width: 820px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; color: var(--green-dark); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.18; color: var(--green-dark); font-weight: 700; margin-bottom: 14px; }
h3 { color: var(--green-dark); font-weight: 700; }
p.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 90px 20px;
  background: linear-gradient(rgba(16, 48, 35, 0.62), rgba(16, 48, 35, 0.72)), var(--hero-img) center/cover no-repeat;
}
.hero h1 { color: #fff; }
.hero .tagline {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-style: italic;
  font-weight: 600;
  color: #d9ecdf;
  margin: 12px 0 18px;
}
.hero p.sub { max-width: 620px; margin: 0 auto 28px; color: #e8f1ea; font-size: 1.08rem; }
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.solid { background: #fff; color: var(--green-dark); }
.btn.ghost { border: 2px solid rgba(255,255,255,0.7); color: #fff; margin-left: 10px; }
.btn.green { background: var(--green); color: #fff; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card.stat { text-align: center; background: var(--green); color: #fff; border: none; }
.card.stat .big { font-size: 2.2rem; font-weight: 800; line-height: 1.1; }
.card.stat .small { font-size: 0.92rem; opacity: 0.92; margin-top: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split .photo img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Story cards ---------- */
.story {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
}
.story:nth-child(even) { grid-template-columns: 1fr 340px; }
.story:nth-child(even) .photo { order: 2; }
.story .photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.story .body { padding: 34px 36px; align-self: center; }
.story .body .name { font-size: 1.35rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.story .body .who { color: var(--green); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.story .body blockquote {
  border-left: 3px solid var(--green);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
  margin: 14px 0;
}

/* ---------- Tables ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.costs { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.96rem; }
table.costs th, table.costs td { padding: 11px 14px; text-align: right; }
table.costs th:first-child, table.costs td:first-child { text-align: left; }
table.costs thead tr { background: var(--green); color: #fff; }
table.costs tbody tr:nth-child(even) { background: var(--green-pale); }
table.costs tbody td { border-bottom: 1px solid var(--line); }
table.costs tfoot tr { background: #dcead f; background: var(--green-pale); font-weight: 800; color: var(--green-dark); border-top: 2px solid var(--green); }
table.costs tfoot td { border-top: 2px solid var(--green); }

/* ---------- News ---------- */
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 18px;
}
.news-card .src { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); font-weight: 700; margin-bottom: 8px; }
.news-card h3 a { color: var(--green-dark); text-decoration: none; }
.news-card h3 a:hover { text-decoration: underline; }
.news-card p { color: var(--muted); margin: 8px 0 12px; }
.news-card .more { font-weight: 700; text-decoration: none; }

/* ---------- Banner / CTA ---------- */
.banner {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.banner h2 { color: #fff; }
.banner p { max-width: 560px; margin: 8px auto 24px; color: #e2efe6; }

/* ---------- Info strip ---------- */
.info-strip { background: var(--green-pale); }
.info-strip .grid { align-items: stretch; }
.info-item { text-align: center; padding: 10px; }
.info-item .icon { font-size: 2rem; }
.info-item .label { font-weight: 700; color: var(--green-dark); margin-top: 6px; }
.info-item .val { color: var(--muted); }

/* ---------- Map ---------- */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--green-dark);
  color: #cfe0d6;
  padding: 46px 20px 30px;
  font-size: 0.95rem;
}
footer.site .inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
footer.site h4 { color: #fff; margin-bottom: 10px; }
footer.site a { color: #cfe0d6; text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 6px; }
footer.site .fineprint { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; margin-top: 10px; font-size: 0.82rem; color: #9fb7aa; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid.cols-3, .grid.cols-2, .split { grid-template-columns: 1fr; }
  .story, .story:nth-child(even) { grid-template-columns: 1fr; }
  .story:nth-child(even) .photo { order: 0; }
  .story .photo img { min-height: 260px; max-height: 340px; }
  footer.site .inner { grid-template-columns: 1fr; }
  #menu-btn { display: block; }
  nav.main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    align-items: stretch;
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 14px; }
}

/* ---------- Recipes ---------- */
.recipe-grid { display: grid; gap: 22px; }
.card.recipe h3 { font-size: 1.3rem; margin-bottom: 2px; }
.card.recipe .serves { color: var(--green); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.rec-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 26px; }
.rec-cols h4 { color: var(--green-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.rec-cols ul, .rec-cols ol { padding-left: 20px; color: var(--muted); }
.rec-cols li { margin-bottom: 5px; }
@media (max-width: 700px) { .rec-cols { grid-template-columns: 1fr; gap: 12px; } }

.card.recipe { padding: 0; overflow: hidden; }
.card.recipe .rec-body { padding: 26px; }
.rec-photo { width: 100%; height: 260px; object-fit: cover; }
