:root {
  --bg: #fbf6ee;
  --bg-alt: #f2e8d8;
  --ink: #2b2118;
  --ink-soft: #6b5d4f;
  --line: #e2d3ba;
  --accent: #c2703d;
  --accent-dark: #a25a2c;
  --hope: #2f6f62;
  --hope-light: #eaf3f0;
  --white: #fff;
  --radius: 10px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.eyebrow { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.eyebrow.center { text-align: center; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.2; margin-bottom: 18px; }
.section-title.center { text-align: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 0.92rem; border: 2px solid transparent; transition: all 0.2s ease; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-outline { border-color: var(--hope); color: var(--hope); }
.btn-outline:hover { background: var(--hope); color: #fff; }

/* Header */
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 32px; position: sticky; top: 0; z-index: 50; background: rgba(251,246,238,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.logo img { height: 96px; width: auto; }
.nav { display: flex; gap: 28px; font-weight: 600; font-size: 0.9rem; }
.nav a:hover { color: var(--accent); }
.btn-donate { background: var(--hope); color: #fff; padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 0.85rem; }
.btn-donate:hover { background: #24564c; }
@media (max-width: 780px) { .nav { display: none; } }

/* Hero */
.hero { position: relative; margin: 16px; border-radius: var(--radius); overflow: hidden; min-height: 70vh; display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,10,0.92), rgba(20,15,10,0.55) 55%, rgba(20,15,10,0.15)); }
.hero-content { position: relative; color: #fff; padding: 48px 40px; max-width: 640px; }
.hero-content .eyebrow { color: #f0d3b8; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 600; line-height: 1.1; margin-bottom: 20px; }
.hero-lede { font-size: 1.02rem; color: #f1e9dc; margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; padding: 56px 32px; text-align: center; }
.stat span { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--hope); }
.stat small { color: var(--ink-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* About */
.about { display: grid; gap: 40px; max-width: 1120px; margin: 0 auto; padding: 64px 32px; align-items: start; }
.about-text p { color: var(--ink-soft); margin-bottom: 14px; }
.about-media { position: sticky; top: 96px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(43,33,24,0.15); }
.about-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (min-width: 900px) { .about { grid-template-columns: 1.1fr 0.9fr; } }

/* Projects */
.projects { max-width: 1120px; margin: 0 auto; padding: 64px 32px; }
.projects-head { max-width: 620px; margin: 0 auto 40px; text-align: center; }
.projects-head .eyebrow { text-align: center; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.project-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.project-card img { aspect-ratio: 4/3; object-fit: cover; }
.project-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 16px 20px 8px; }
.project-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 20px 20px; }
@media (min-width: 700px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

/* CTA band */
.cta-band { background: var(--hope); color: #fff; display: grid; gap: 32px; padding: 64px 32px; max-width: 1120px; margin: 0 auto; border-radius: var(--radius); }
.cta-band-item h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; }
.cta-band-item p { color: rgba(255,255,255,0.85); margin-bottom: 18px; font-size: 0.92rem; }
.cta-band .btn-outline { border-color: #fff; color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--hope); }
@media (min-width: 900px) { .cta-band { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; padding: 64px 32px; }
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--accent); font-size: 1.2rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--ink-soft); margin-top: 12px; font-size: 0.92rem; }

/* Donate */
.donate { background: var(--bg-alt); text-align: center; padding: 72px 32px; }
.donate-lede { color: var(--ink-soft); max-width: 560px; margin: 0 auto 32px; }

/* Contact */
.contact { display: grid; gap: 32px; max-width: 1120px; margin: 0 auto; padding: 64px 32px; }
.contact-info dl { margin-top: 24px; display: grid; gap: 18px; }
.contact-info dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; margin-bottom: 4px; }
.contact-info dd a:hover { color: var(--accent); }
.contact-map iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); }
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1fr; } }

/* Footer */
.site-footer { background: var(--ink); color: #d8c9b8; text-align: center; padding: 48px 32px 100px; }
.footer-logo { height: 60px; margin: 0 auto 20px; filter: brightness(1.1); }
.footer-copy { font-size: 0.78rem; opacity: 0.7; margin-top: 12px; }

/* Mobile CTA */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--hope); color: #fff; text-align: center; padding: 16px; font-weight: 700; }
@media (max-width: 780px) { .mobile-cta { display: block; } }
