/* Foundation for Sustainable Environment — styles */

:root {
  --forest: #2d5f3f;
  --forest-dark: #1e4a32;
  --leaf: #3d7a52;
  --leaf-light: #4a9463;
  --amber: #e08a1e;
  --amber-bright: #f7941d;
  --amber-hover: #c97412;
  --donate: #c94a3a;
  --donate-hover: #a83d30;
  --ink: #1a2e22;
  --ink-muted: #4a5f52;
  --paper: #f4f7f2;
  --paper-warm: #eef3ea;
  --sage: #dce8dc;
  --white: #ffffff;
  --shadow: none;
  --shadow-lg: none;
  --radius: 2px;
  --radius-sm: 2px;
  --header-h: auto;
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: #f2f0ea;
  min-height: 100vh;
}

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

a {
  color: var(--leaf);
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--forest-dark);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #2d5f3f;
}

.header-brand-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 3.5rem 1rem;
  background: #2d5f3f;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  max-width: 920px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
}

.brand-tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  width: 100%;
  background: #3d7a52;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  max-width: 1280px;
  margin-inline: auto;
}

.nav-link {
  display: block;
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: #2d5f3f;
  color: var(--white);
}

.nav-link[data-page="donate"] {
  background: var(--amber);
  color: var(--white);
  margin-left: 0;
}

.nav-link[data-page="donate"]:hover,
.nav-link[data-page="donate"].active {
  background: var(--amber-hover);
  color: var(--white);
}

/* Main & pages */


.main-content {
  min-height: calc(100vh - var(--header-h));
}

.page {
  display: none;
  opacity: 0;
  animation: none;
}

.page.active {
  display: block;
  animation: pageFadeIn 0.45s var(--ease) forwards;
}

.page.page-exit {
  animation: pageFadeOut 0.25s var(--ease) forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/big.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 51, 37, 0.35) 0%, rgba(20, 51, 37, 0.55) 45%, rgba(14, 36, 26, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  padding: 2.5rem 1.5rem 2.25rem;
  margin-left: max(1.25rem, calc((100% - 1140px) / 2));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  max-width: 18ch;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.65rem;
  opacity: 0.95;
  max-width: 40ch;
}

.hero-lead {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 52ch;
  margin: 0 0 1.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  background: #f7941d;
  color: #fff !important;
  padding: 0.75rem 1.4rem;
  text-decoration: none !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #d67c15;
  color: #fff !important;
}

.donate-btn {
  background: #c94a3a;
}

.donate-btn:hover {
  background: #a83d30;
}

.hero-cta .btn {
  color: #fff !important;
  text-decoration: none !important;
}

/* Stat strip */
.stat-strip {
  background: var(--forest-dark);
  color: var(--white);
  padding: 2.5rem 1.25rem;
  border-bottom: 3px solid var(--amber);
}

.stat-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--amber-bright);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.35rem 0 0.75rem;
  opacity: 0.85;
}

.stat-item p {
  font-size: 0.92rem;
  opacity: 0.82;
  line-height: 1.55;
}

/* Sections */
.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--leaf);
}

.section h3 {
  font-family: var(--font-display);
  color: var(--leaf);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.85rem;
}

.section h4 {
  color: var(--forest);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.section p {
  margin-bottom: 1rem;
}

.section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.section li {
  margin-bottom: 0.35rem;
}

/* Content blocks */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
  margin-top: 1.75rem;
}

.card {
  background: transparent;
  border: none;
  border-top: 3px solid var(--forest);
  padding: 1rem 0 0.25rem;
  border-radius: 0;
  box-shadow: none;
}

.card:hover {
  transform: none;
  box-shadow: none;
}

.card h3 {
  color: var(--forest-dark);
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.card h4 {
  color: var(--forest-dark);
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.card p,
.card ul {
  color: var(--ink-muted);
  margin-bottom: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 2rem;
  margin-top: 1.5rem;
}

.principle-item {
  padding-top: 1rem;
  border-top: 3px solid var(--forest);
}

.principle-item h3 {
  color: var(--forest-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.principle-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.target-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem 1.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.target-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-muted);
  margin: 0;
}

.target-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .cards,
  .principles-grid,
  .target-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cards,
  .principles-grid,
  .target-list {
    grid-template-columns: 1fr;
  }
}

.highlight-box {
  background: transparent;
  padding: 1.25rem 0 1.25rem 1.15rem;
  margin: 1.75rem 0;
  border-radius: 0;
  border: none;
  border-left: 3px solid var(--forest);
  box-shadow: none;
}

.highlight-box h3,
.highlight-box h4 {
  color: var(--forest-dark);
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
}

.highlight-box h3 + h3 {
  margin-top: 1.25rem;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 74, 50, 0.18);
}

.value-item {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.value-item h4 {
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.value-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.priority-projects {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(30, 74, 50, 0.18);
  padding-top: 1.5rem;
}

.project-list {
  list-style: none;
  counter-reset: project-counter;
  padding: 0;
}

.project-list li {
  counter-increment: project-counter;
  margin-bottom: 1.25rem;
  padding: 0 0 1.25rem 2.75rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(30, 74, 50, 0.12);
  position: relative;
  box-shadow: none;
}

.project-list li::before {
  content: counter(project-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--forest-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.team-member {
  text-align: left;
  padding: 0 0 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(30, 74, 50, 0.15);
  border-radius: 0;
  box-shadow: none;
}

.team-member h4 {
  color: var(--forest-dark);
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.team-member .role {
  color: var(--leaf);
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.team-member .contact {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.contact-info {
  background: transparent;
  padding: 0;
  margin-top: 1.5rem;
  border: none;
  box-shadow: none;
}

.story-block {
  background: transparent;
  padding: 0 0 1.75rem;
  margin-bottom: 1.75rem;
  border: none;
  border-bottom: 1px solid rgba(30, 74, 50, 0.15);
}

.stat-strip {
  background: var(--forest-dark);
  color: var(--white);
  padding: 2rem 1.25rem;
}

.stat-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: left;
  padding: 0;
  border: none;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.stat-item p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Gallery */
.gallery-intro,
.gallery-more-note {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.gallery-more-title {
  margin: 2.5rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest-dark);
  border-top: 1px solid rgba(30, 74, 50, 0.18);
  padding-top: 1.5rem;
}

.gallery-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem 1.5rem;
  margin: 1.5rem 0 0.5rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-item {
  margin: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  cursor: pointer;
  border: 1px solid rgba(30, 74, 50, 0.15);
  transition: none;
}

.gallery-item:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--forest);
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: #dfe8e1;
}

.gallery-item.is-featured img {
  height: 220px;
}

.gallery-caption {
  display: block;
  padding: 0.7rem 0.8rem 0.85rem;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.45;
  background: #faf9f5;
  border-top: 1px solid rgba(30, 74, 50, 0.1);
}

.gallery-item.is-featured .gallery-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.gallery-item.is-featured .gallery-caption span {
  display: block;
  color: var(--ink-muted);
}

.gallery-container .gallery-caption {
  font-size: 0.75rem;
  color: var(--ink-muted);
  padding: 0.45rem 0.55rem;
}

/* Contact form */

.contact-form {
  max-width: 560px;
  margin-top: 1rem;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--forest-dark);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(45, 95, 63, 0.2);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(61, 122, 82, 0.15);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

table th,
table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(45, 95, 63, 0.08);
}

table th {
  background: var(--leaf);
  color: var(--white);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--forest-dark) 0%, #163828 100%);
  color: var(--white);
  padding: 2.5rem 0 0;
  margin-top: 0;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-section h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--amber-bright);
  font-size: 1.1rem;
}

.footer-section p {
  opacity: 0.88;
  line-height: 1.65;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.45rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  padding: 1.75rem 1.25rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.75;
  font-size: 0.9rem;
}

.copyright p + p {
  margin-top: 0.35rem;
  font-style: italic;
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 46, 34, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  margin: 0;
}

.lightbox-figure img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}



/* ========== Modern layout components ========== */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.65rem;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--forest-dark);
}

.container.narrow {
  max-width: 820px;
}

/* Split image + copy */
.split-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
}

.split-media {
  min-height: 420px;
  background: #1e4a32;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.split-copy {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  border: none;
  padding: 0;
}

.split-copy p {
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.about-intro {
  margin: 0 0 2rem;
  border: 1px solid rgba(30, 74, 50, 0.12);
}

.about-intro .split-media,
.about-intro .split-media img {
  min-height: 360px;
}

.about-intro .split-copy {
  padding: 2.25rem 1.75rem;
}

/* Vision / mission band */
.vision-band {
  background:
    linear-gradient(105deg, rgba(20, 51, 37, 0.92), rgba(45, 95, 63, 0.88)),
    url("../assets/7.png") center / cover no-repeat;
  color: #fff;
  padding: 3.5rem 1.5rem;
}

.vision-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
}

.vision-block h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-bottom: 0.85rem;
}

.vision-block p {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* Photo mosaic */
.photo-band {
  padding: 3.5rem 1.5rem;
  background: #f7f5f0;
}

.photo-band-head {
  max-width: 1140px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.photo-band-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--forest-dark);
  margin: 0;
  border: none;
  padding: 0;
}

.photo-mosaic {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
}

.mosaic-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #1e4a32;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-large {
  grid-row: 1 / span 2;
}

.mosaic-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.85rem 0.7rem;
  background: linear-gradient(transparent, rgba(14, 36, 26, 0.88));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Values list */
.home-values {
  padding: 3.5rem 0;
  background: #fff;
}

.home-values h2 {
  color: var(--forest-dark);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1.75rem;
  border: none;
  padding: 0;
}

.values-list {
  border-top: 1px solid rgba(30, 74, 50, 0.18);
}

.value-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(30, 74, 50, 0.18);
}

.value-row h4 {
  margin: 0;
  color: var(--forest-dark);
  font-size: 1.1rem;
}

.value-row p {
  margin: 0;
  color: var(--ink-muted);
}

/* Focus / thematic preview */
.focus-section {
  padding: 3.5rem 0;
  background: #eef3ea;
}

.focus-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.focus-head h2 {
  border: none;
  padding: 0;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
}

.focus-head p {
  color: var(--ink-muted);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.focus-item {
  background: #fff;
  border: 1px solid rgba(30, 74, 50, 0.12);
  overflow: hidden;
}

.focus-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.focus-item > div {
  padding: 1.15rem 1.15rem 1.35rem;
}

.focus-item h3 {
  font-size: 1.05rem;
  color: var(--forest-dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.focus-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.focus-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.home-cta-band {
  background:
    linear-gradient(120deg, rgba(20, 51, 37, 0.92), rgba(45, 95, 63, 0.85)),
    url("../assets/1.png") center / cover no-repeat;
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.home-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.home-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
  border: none;
  color: #fff;
  padding: 0;
}

.home-cta-inner p {
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.home-cta-inner .hero-cta {
  justify-content: center;
}

/* Page heroes with photos */
.page-hero {
  position: relative;
  background: var(--forest-dark);
  color: var(--white);
  padding: 3.25rem 1.5rem 2.75rem;
  border-bottom: 4px solid var(--amber);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0;
  max-width: 18ch;
  line-height: 1.2;
}

.page-hero-about::before { background-image: url("../assets/3.png"); }
.page-hero-work::before { background-image: url("../assets/7.png"); }
.page-hero-projects::before { background-image: url("../assets/1.png"); }
.page-hero-impact::before { background-image: url("../assets/2.png"); }
.page-hero-stories::before { background-image: url("../assets/5.png"); }
.page-hero-reports::before { background-image: url("../assets/6.png"); }
.page-hero-gallery::before { background-image: url("../assets/4.png"); }
.page-hero-board::before { background-image: url("../assets/3.png"); }
.page-hero-staff::before { background-image: url("../assets/5.png"); }
.page-hero-partners::before { background-image: url("../assets/4.png"); }
.page-hero-donate::before { background-image: url("../assets/1.png"); }
.page-hero-contact::before { background-image: url("../assets/2.png"); }

/* Thematic sections on work page */
#thematic-areas .section h3 {
  padding-top: 0.5rem;
}

#thematic-areas .highlight-box {
  background: #f7f5f0;
  border-left: 3px solid var(--forest);
  padding: 1rem 1.15rem;
}

@media (max-width: 960px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-media,
  .split-media img,
  .about-intro .split-media,
  .about-intro .split-media img {
    min-height: 260px;
  }

  .split-copy {
    padding: 2rem 1.25rem;
  }

  .vision-band-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .photo-band-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
  }

  .mosaic-large {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .value-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mosaic-item,
  .mosaic-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }

  .mosaic-item img {
    min-height: 200px;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .header-brand-bar {
    padding: 1rem 3.5rem 1rem 1rem;
    justify-content: flex-start;
  }

  .brand {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.75rem;
  }

  .brand-text {
    align-items: flex-start;
  }

  .brand-name,
  .brand-tagline {
    text-align: left;
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .site-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    background: #2d5f3f;
  }

  .site-nav.open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.35rem 0 0.75rem;
  }

  .nav-link {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    text-align: left;
    white-space: normal;
  }

  .nav-link[data-page="donate"] {
    margin: 0.35rem 1rem 0;
    text-align: center;
  }

  .stat-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 360px;
    max-height: none;
  }

  .hero-inner {
    padding: 2rem 1rem 1.75rem;
    margin-left: 1rem;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-cta .btn {
    text-align: center;
  }

  .gallery-item img {
    height: 200px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.gallery-item.is-collapsed {
  display: none;
}

.gallery-load-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0.5rem;
  padding-top: 0.5rem;
}

.gallery-load-status {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.gallery-load-wrap .btn {
  min-width: 220px;
}
