:root {
  --ink: #17211d;
  --muted: #5d6a64;
  --surface: #ffffff;
  --soft: #f5f7f2;
  --line: #dfe6dd;
  --green: #1f7a4d;
  --green-dark: #135a38;
  --orange: #f37021;
  --gold: #f2b544;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(31, 122, 77, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  background: #eef5ec;
  color: var(--green-dark);
  transform: translateY(-1px);
}

.nav-links .donate-link {
  background: var(--green);
  color: white;
}

.nav-links .donate-link:hover {
  background: var(--green-dark);
  color: white;
}

main {
  overflow: hidden;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: calc(100vh - 77px);
  padding: clamp(42px, 7vw, 88px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(130deg, rgba(31, 122, 77, 0.1), transparent 36%),
    linear-gradient(0deg, #fff9ed, var(--soft));
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text,
.page-heading p,
.content-band p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 34px rgba(243, 112, 33, 0.25);
}

.button.secondary {
  background: white;
  color: var(--green-dark);
  border: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

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

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--surface);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 220ms ease;
}

.hero-carousel img.is-changing {
  opacity: 0.18;
}

.carousel-dots {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(23, 33, 29, 0.28);
}

.carousel-dots span.active {
  background: var(--orange);
}

.impact-section,
.page-shell {
  padding: clamp(46px, 7vw, 88px) clamp(20px, 6vw, 86px);
}

.impact-section {
  background: var(--surface);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.impact-grid article,
.faq-item,
.donation-card,
.contact-card,
.stat-card,
.impact-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(23, 33, 29, 0.06);
}

.impact-grid article {
  padding: 26px;
}

.impact-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-grid p,
.faq-answer p,
.donation-card p,
.check-list {
  color: var(--muted);
}

.page-shell {
  min-height: calc(100vh - 77px);
}

.page-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.page-heading h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 34px;
  max-width: 1180px;
  align-items: end;
}

.content-band {
  max-width: 900px;
  margin: 0 0 32px;
  padding: 34px;
  border-left: 5px solid var(--orange);
  background: white;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 19px;
  font-weight: 800;
  padding: 22px 24px;
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef5ec;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.faq-item.is-open .faq-icon {
  background: var(--green);
  color: white;
}

.donation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: start;
  max-width: 1120px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.donation-card {
  padding: 28px;
}

.zeffy-donate-button {
  display: inline-block;
  margin-bottom: 18px;
  padding: 14px 30px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 122, 77, 0.3);
  color: white;
  font-size: 20px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.zeffy-donate-button:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(31, 122, 77, 0.38);
  transform: translateY(-2px);
}

.donation-notice {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1;
  padding: 28px;
}

.contact-card h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card a {
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
}

.stat-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
}

.drop-mark {
  width: 46px;
  height: 46px;
  display: inline-block;
  margin-bottom: 30px;
  border-radius: 50% 50% 50% 8px;
  background: var(--green);
  transform: rotate(-45deg);
  box-shadow: 0 10px 26px rgba(31, 122, 77, 0.22);
}

.drop-mark.gold {
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(242, 181, 68, 0.24);
}

.drop-mark.orange {
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(243, 112, 33, 0.24);
}

.stat-number {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.stat-card h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.stat-card p:last-child,
.impact-note p {
  color: var(--muted);
}

.impact-note {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin-top: 24px;
  padding: 30px;
}

.impact-note h2 {
  margin-bottom: 0;
  font-size: 30px;
}

@media (max-width: 820px) {
  .navbar,
  .brand,
  .nav-links {
    align-items: flex-start;
  }

  .navbar {
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-section,
  .impact-grid,
  .stats-grid,
  .split-heading,
  .donation-panel,
  .contact-grid,
  .impact-note {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 520px) {
  .brand {
    white-space: normal;
  }

  .nav-links a {
    padding: 9px 11px;
  }

  h1 {
    font-size: 40px;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px;
  }
}
