:root {
  --bg: #f9f3e8;
  --bg-alt: #fef9f1;
  --text: #2a2420;
  --muted: #685f56;
  --accent: #c44519;
  --accent-soft: #f5e6d3;
  --accent-dark: #8b2f10;
  --teal: #1a8f8f;
  --teal-soft: #d4eded;
  --gold: #e6b85c;
  --gold-soft: #f9efd4;
  --border: #e8dcc8;
  --shadow-soft: 0 6px 24px rgba(139, 47, 16, 0.12);
  --shadow-warm: 0 4px 16px rgba(230, 184, 92, 0.15);
  --radius-lg: 24px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Palatino", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(230, 184, 92, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(26, 143, 143, 0.03) 0%, transparent 50%);
}

/* Layout */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav */

.site-header {
  background: var(--bg-alt);
  border-bottom: 4px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-warm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.nav-brand a {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--accent);
  font-size: 1.1rem;
  font-family: "Georgia", serif;
  text-shadow: 2px 2px 0px rgba(230, 184, 92, 0.2);
}

.nav-brand span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: none;
  color: var(--teal);
  font-family: "Georgia", serif;
  font-style: italic;
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: "Georgia", serif;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent);
  background: var(--gold-soft);
  transform: translateY(-1px);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--accent);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background: var(--gold-soft);
  color: var(--accent-dark);
  transform: scale(1.1);
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, rgba(230, 184, 92, 0.08) 0%, rgba(26, 143, 143, 0.08) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: system-ui, sans-serif;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "Georgia", serif;
  font-weight: 800;
  text-shadow: 3px 3px 0px rgba(230, 184, 92, 0.15);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Georgia", serif;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border: 3px solid var(--accent-dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  background: var(--gold-soft);
  color: var(--accent-dark);
  border: 3px solid var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--accent-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.hero-image-wrap {
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: 32px;
  box-shadow: 8px 8px 0px var(--teal), 0 12px 32px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--gold);
}

.hero-image {
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-family: system-ui, sans-serif;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-family: "Georgia", serif;
  font-weight: 800;
  text-shadow: 2px 2px 0px rgba(230, 184, 92, 0.15);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

/* Cards & grid */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem;
  box-shadow: 6px 6px 0px var(--accent-soft), 0 8px 24px rgba(139, 47, 16, 0.08);
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--gold-soft), 0 12px 32px rgba(139, 47, 16, 0.12);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: var(--accent);
  font-family: "Georgia", serif;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* Impact photos */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.impact-photo {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 6px 6px 0px var(--teal-soft), 0 8px 24px rgba(26, 143, 143, 0.12);
  border: 3px solid var(--teal);
  transition: all 0.3s ease;
}

.impact-photo:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--accent-soft), 0 12px 32px rgba(26, 143, 143, 0.18);
}

.impact-photo img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.impact-photo-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.impact-photo-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-family: "Georgia", serif;
  font-weight: 700;
}

.impact-photo-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

/* Simple lists */

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--accent-dark);
  border: 2px solid var(--gold);
  font-weight: 600;
  font-family: system-ui, sans-serif;
}

/* Forms */

.form {
  max-width: 540px;
}

.form-row {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
  font-family: "Georgia", serif;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 3px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-alt);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

/* Footer */

.site-footer {
  margin-top: auto;
  background: var(--bg-alt);
  border-top: 4px solid var(--teal);
  padding: 1.75rem 0;
  font-size: 0.85rem;
  color: var(--muted);
  box-shadow: 0 -4px 16px rgba(26, 143, 143, 0.08);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Utility */

.text-center {
  text-align: center;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Decorative retro elements */
.section-header::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--gold), var(--teal));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* Link styling */
a {
  color: var(--accent);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

/* Strong text */
strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* Responsive */

@media (max-width: 768px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .nav {
    padding: 0.85rem 1.5rem;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--bg-alt);
    border-bottom: 3px solid var(--accent);
    padding: 1rem 1.5rem 1.2rem;
    gap: 0.8rem;
    flex-direction: column;
    align-items: center;
    display: none;
    box-shadow: 0 8px 16px rgba(139, 47, 16, 0.1);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .section-title {
    font-size: 1.6rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
}