:root {
  --orange: #e8613d;
  --mint: #9ee0c4;
  --black: #131313;
  --off-white: #fafaf8;
  --gray: #555;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 12px 24px;
  position: relative;
  z-index: 20;
}
.logo { font-weight: 800; font-size: 1.4rem; text-decoration: none; }
.logo span { display: block; font-size: 0.95rem; font-weight: 500; }
.header-actions { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 18px 26px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-mint { background: var(--mint); color: var(--black); }
.btn-black { background: var(--black); color: #fff; }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.menu-btn {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #cfc7d6, #b7c9c2 60%, #8e8b6c);
  color: var(--black);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.eyebrow { display: inline-block; background: var(--mint); width: 140px; height: 22px; margin-bottom: 16px; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 .accent { color: #fff; -webkit-text-stroke: 0; }
.hero p.tagline { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 20px 0 30px; }

/* ---- Sections ---- */
section { padding: 70px 0; }
.section-orange-mark { display: inline-block; background: var(--orange); width: 90px; height: 18px; margin-bottom: 14px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; text-transform: uppercase; margin: 0 0 20px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: var(--black); color: #fff; }
.stats .wrap { display: contents; }
.stat { padding: 40px 24px; text-align: center; }
.stat .num { font-size: 2.6rem; font-weight: 800; color: var(--mint); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.card { border: 1px solid #e3e3e3; padding: 28px; background: #fff; }
.card h3 { margin-top: 0; text-transform: uppercase; font-size: 1.1rem; }

/* ---- Forms ---- */
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  font-family: var(--font);
  font-size: 1rem;
}
.radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 400; margin-bottom: 6px; }
.radio-group input { width: auto; }

/* ---- Footer ---- */
.site-footer { background: #fff; padding: 60px 0 30px; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.social-icons { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.social-icons a { border: 1px solid #ddd; padding: 14px; }
.fine-print { margin-top: 40px; font-size: 0.8rem; color: var(--gray); }

/* ---- Donate lightbox ---- */
.donate-overlay {
  position: fixed; inset: 0; background: #fff; z-index: 100;
  overflow-y: auto; padding: 40px 24px;
}
.donate-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.6rem; cursor: pointer; }
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-top: 40px; }
.pay-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.pay-buttons a { background: var(--orange); color: #fff; padding: 10px 18px; text-decoration: none; font-weight: 700; }
[hidden] { display: none !important; }


/* ---- Post images ---- */
.logo img { height: 44px; width: auto; display: block; }
.card img { width: calc(100% + 56px); margin: -28px -28px 20px; height: 160px; object-fit: cover; }
.social-icons svg { width: 22px; height: 22px; display: block; }
