@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

:root {
  --green-dark: #0a3d2e;
  --green-mid: #145c42;
  --green-accent: #1e8a61;
  --green-light: #e8f5ef;
  --green-xlight: #f2faf6;
  --gold: #c9a84c;
  --gold-light: #f5e9c8;
  --gold-dim: rgba(201,168,76,0.15);
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --white: #ffffff;
  --off-white: #faf9f6;
  --border: #e0ddd5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex; gap: 1.6rem; list-style: none; align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-donate {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 500 !important;
  padding: 0.38rem 1rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-donate:hover { background: #ddb95a !important; }

/* ── PAGE HEADER ── */
.page-hero {
  background: var(--green-dark);
  color: white;
  padding: 4rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% -10%, rgba(30,138,97,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.page-hero .breadcrumb a { color: var(--gold); text-decoration: none; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: white;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
}

/* ── SECTION SHELL ── */
section { padding: 4.5rem 2.5rem; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--green-accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.divider {
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-accent);
  color: white;
  padding: 0.7rem 1.75rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.7rem 1.75rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.2s;
}
.btn-gold:hover { background: #ddb95a; }

.btn-outline {
  border: 1.5px solid var(--green-accent);
  color: var(--green-accent);
  padding: 0.65rem 1.6rem;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--green-light); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(20,92,66,0.25);
  box-shadow: 0 4px 18px rgba(10,61,46,0.06);
}

/* ── FOOTER ── */
footer {
  background: #071f17;
  color: rgba(255,255,255,0.45);
  padding: 3rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.7; }

.footer-col h4 {
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.45); font-size: 0.84rem; text-decoration: none; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1080px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── DONATE BANNER ── */
.donate-banner {
  background: var(--green-dark);
  color: white;
  text-align: center;
  padding: 4rem 2.5rem;
}
.donate-banner .section-title { color: white; }
.donate-banner .section-label { color: var(--gold); }
.donate-banner p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 2rem; font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  section { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
