
:root {
  --bg: #fbfaf4;
  --paper: #ffffff;
  --ink: #25372a;
  --muted: #60705f;
  --green: #5f7f4c;
  --green-dark: #2e4631;
  --sand: #d8c894;
  --sand-light: #f4ecd0;
  --line: #e4e1d4;
  --shadow: 0 18px 50px rgba(37, 55, 42, 0.09);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--green-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green); }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--green-dark); color: white; padding: .75rem 1rem; border-radius: 12px;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 250, 244, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand img { width: 154px; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .95rem; }
.nav-links a { text-decoration: none; color: var(--ink); }
.nav-links a:hover { color: var(--green); }
.button, .paypal-button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .88rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--green-dark);
  background: var(--green-dark);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(46, 70, 49, .18);
}
.button.secondary {
  background: transparent;
  color: var(--green-dark) !important;
  box-shadow: none;
}
.button:hover, .paypal-button:hover { transform: translateY(-1px); }

main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  padding: 86px 0 64px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
}
.kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 7vw, 5.5rem); margin: .4rem 0 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 0 0 1rem; }
h3 { font-size: 1.5rem; margin: 0 0 .6rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-card, .card, .callout, .article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 30px; position: relative; overflow: hidden; }
.hero-card:before {
  content: "";
  position: absolute; right: -70px; top: -80px;
  width: 210px; height: 210px; border-radius: 50%;
  background: var(--sand-light);
}
.hero-card > * { position: relative; }
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 20px; }
.stat { padding: 16px; background: #f7f5ea; border-radius: 16px; }
.stat strong { display: block; font-size: 1.55rem; font-family: Georgia, serif; }
.section { padding: 56px 0; }
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid.two { grid-template-columns: repeat(2,1fr); }
.card, .article-card { padding: 26px; }
.icon { font-size: 2rem; margin-bottom: 12px; }
.callout {
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, #ffffff, #f5f0dc);
}
.cta-strip {
  margin: 58px 0 80px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-strip h2, .cta-strip p { color: #fff; margin: 0; }
.cta-strip .button { background: #fff; color: var(--green-dark) !important; }

.page-hero { padding: 72px 0 28px; max-width: 880px; }
.content { max-width: 820px; padding-bottom: 72px; }
.content p, .content li { color: var(--muted); }
.content blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  border-left: 5px solid var(--green);
  background: #fff;
  border-radius: 0 18px 18px 0;
  font-size: 1.2rem;
}
.feature-list { padding-left: 1.2rem; }
.feature-list li { margin-bottom: .55rem; }
.source-note {
  margin-top: 30px;
  padding: 18px;
  border-radius: 16px;
  background: #f7f5ea;
  color: var(--muted);
  font-size: .95rem;
}
.article-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.article-meta { color: var(--green); font-size: .9rem; font-weight: 700; }
.article-card a { text-decoration: none; }
.donate-box {
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.paypal-placeholder {
  padding: 18px;
  background: #f7f5ea;
  border: 1px dashed #b7ad82;
  border-radius: 16px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9rem;
  overflow-wrap: anywhere;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
}
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .nav { align-items: flex-start; padding: 12px 0; flex-direction: column; }
  .brand img { width: 140px; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .grid, .grid.two, .article-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
