:root {
  --bg: #0b0b0c;
  --ink: #f6f1e8;
  --muted: #c9c0b3;
  --gold: #d4b483;
  --gold-deep: #b8924a;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

a { color: var(--gold); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: #000 url("hero-dawn.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.58) 50%, rgba(11,11,12,.92) 100%);
}

.hero-inner { position: relative; max-width: 42rem; }

.org-name {
  font-size: .78rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  color: rgba(246,241,232,.88);
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1.12;
  font-style: italic;
  margin-bottom: 1.1rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  max-width: 28rem;
}

.donate {
  display: inline-block;
  background: linear-gradient(180deg, #ead7b0, var(--gold) 40%, var(--gold-deep));
  color: #1a140c;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: .95rem 2.4rem;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(212,180,131,.28), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(212,180,131,.4);
}

.donate-large { padding: 1.1rem 2.8rem; font-size: .9rem; }
.donate-small { padding: .7rem 1.6rem; font-size: .72rem; }

main { max-width: 40rem; margin: 0 auto; padding: 1rem 1.5rem 4rem; }

.block { padding: 2.6rem 0; border-bottom: 1px solid rgba(246,241,232,.08); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}

.body { font-size: 1.08rem; color: rgba(246,241,232,.92); }

.serve ul {
  list-style: none;
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
}

.serve li {
  border: 1px solid rgba(212,180,131,.28);
  padding: .9rem 1.1rem;
  border-radius: .6rem;
  background: rgba(255,255,255,.03);
}

.cta {
  text-align: center;
  padding: 3.4rem 0 2.4rem;
}

.cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  font-style: italic;
  margin-bottom: .8rem;
}

.cta p { color: var(--muted); margin-bottom: 1.6rem; }
.fine { margin-top: 1rem; font-size: .82rem; }

.mail { font-size: 1.15rem; }

footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  color: #8a8278;
  font-size: .82rem;
}

footer p { margin-top: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  .donate { transition: none; }
  .donate:hover { transform: none; }
}
