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

:root {
  --bg: #f7f5f2;
  --surface: #fff;
  --text: #2c2a28;
  --muted: #6b6560;
  --accent: #8b7355;
  --accent-soft: #c4b49a;
  --green: #5a6b52;
  --green-soft: #e8ede5;
  --shadow: 0 2px 12px rgba(44, 42, 40, 0.08);
  --radius: 4px;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); }
a:hover { color: var(--text); }

/* Header */

.site-header {
  text-align: center;
  padding: 2.5rem 1.5rem 0;
}

.site-header h1 {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.site-header .tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* Hero carousel */

.hero {
  position: relative;
  max-width: 56rem;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  overflow: hidden;
}

.hero-track {
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: var(--accent-soft);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.hero-dot.active,
.hero-dot:hover { background: var(--accent); }

/* Sections */

.section {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 0;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 0.5rem;
}

.divider {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
  opacity: 0.4;
}

/* Donate */

.donate-card {
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.donate-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.donate-location {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.donate-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.donate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-primary:hover {
  background: #4a5a44;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--accent-soft);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* Responsive */

@media (max-width: 600px) {
  .hero-track { aspect-ratio: 4 / 3; }
  .site-header h1 { font-size: 1.75rem; }
}