:root {
  color-scheme: light;
  --brand: #51b749;
  --ink: #10221a;
  --muted: #4f6359;
  --off-white: #f7faf5;
  --card: #ffffff;
  --accent-soft: rgba(81, 183, 73, 0.1);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Arial", "Helvetica", sans-serif;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.center-text {
  text-align: center;
  margin-bottom: 0 !important;
}

main {
  overflow: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 40em;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0 3rem;
  background: radial-gradient(circle at right, rgba(81, 183, 73, 0.32), transparent 45%), linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 247, 239, 0.55)), url("../mountains.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  margin: 0 auto;
}

.hero .brand-logo {
  width: 280px;
  margin: 0 auto 1rem;
}

.hero .brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 26, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  color: var(--ink);
}

.hero p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-phrases {
  margin: 2.75rem 0;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  min-height: 2.75rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: block;
}
.hero-phrases span {
  font-size: 30pt;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30%);
  position: absolute;
  inset: 0;
  animation: rotatePhrases 16s infinite;
}
.hero-phrases span:nth-child(2) {
  animation-delay: 4s;
}
.hero-phrases span:nth-child(3) {
  animation-delay: 8s;
}
.hero-phrases span:nth-child(4) {
  animation-delay: 12s;
}

.sticky-nav {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 34, 26, 0.08);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-110%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 10;
  opacity: 0;
}
.sticky-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-weight: 600;
  color: var(--ink);
}
.sticky-nav .sticky-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.sticky-nav .sticky-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.sticky-nav span {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.sticky-nav__cta {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(81, 183, 73, 0.25);
}
.sticky-nav.visible {
  transform: translateY(0);
  opacity: 1;
}

.scroll-arrow {
  margin: 3rem auto 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: arrowPulse 3s infinite;
}
.scroll-arrow span {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: arrowSlide 1.5s infinite;
}
.scroll-arrow:hover {
  transform: translateY(2px);
  box-shadow: 0 15px 25px rgba(15, 41, 29, 0.15);
}

@keyframes rotatePhrases {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  5%, 20% {
    opacity: 1;
    transform: translateY(0);
  }
  25%, 100% {
    opacity: 0;
    transform: translateY(-30%);
  }
}
@keyframes arrowPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(81, 183, 73, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(81, 183, 73, 0.05);
  }
}
@keyframes arrowSlide {
  0%, 100% {
    transform: translate(0px, -2px) rotate(45deg);
  }
  50% {
    transform: translate(0px, 2px) rotate(45deg);
  }
}
.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-buttons a {
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-buttons .primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 20px 35px rgba(81, 183, 73, 0.25);
}

.cta-buttons .secondary {
  border: 1px solid rgba(16, 34, 26, 0.2);
  color: var(--ink);
  background: #fff;
}

.cta-buttons a:hover {
  transform: translateY(-3px);
}

section {
  padding: 4.5rem 0;
}

.section-heading {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(16, 34, 26, 0.6);
  margin-bottom: 1.85rem !important;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.story-card {
  background: var(--off-white);
  padding: 2.25rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(16, 34, 26, 0.08);
  box-shadow: 0 35px 70px rgba(15, 41, 29, 0.08);
}

.story-card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--ink);
}

.story-card li {
  margin-bottom: 0.3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-grid + .feature-grid {
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.impact-card {
  position: relative;
  padding: 2.25rem;
  border-radius: 12px;
  background: #232323;
  overflow: hidden;
  min-height: 450px;
  color: #fff;
  display: flex;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(-150deg, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 0.35) 80%);
}

.impact-card > * {
  position: relative;
  z-index: 1;
}

.impact-card h3 {
  color: #fff;
  font-size: 1.65rem;
  margin-bottom: 1rem;
}
.impact-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--brand);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.impact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
}

.impact-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.impact-card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #808080;
  position: absolute;
  top: 10px;
  left: 0;
}

.impact-card.energy::before {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../solar.jpeg");
}

.impact-card.agriculture::before {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../shepherd.jpg");
}

.impact-card.community::before {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../center.png");
}

.impact-card.fundraising::before {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../food.jpg");
}

.impact-card.partnerships::before {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../collab.jpg");
}

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

.program-duo article {
  padding: 1.75rem;
  border-radius: 1.75rem;
  text-align: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.tag-list li {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 600;
}

.model-card {
  background: #fff;
  border: 1px solid rgba(16, 34, 26, 0.08);
  border-radius: 1.75rem;
  padding: 2.25rem;
  box-shadow: 0 30px 50px rgba(15, 41, 29, 0.08);
}

.contact-section {
  background: var(--off-white);
}

.contact-wrapper {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: start;
  justify-content: center;
  margin-top: 2rem;
}
.contact-wrapper form {
  margin-top: 0;
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 34, 26, 0.08);
  box-shadow: 0 30px 50px rgba(15, 41, 29, 0.08);
}

@media (max-width: 640px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-wrapper form {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .impact-card {
    align-items: center;
  }
  nav span {
    display: none;
  }
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  grid-column: 1/-1;
  font-weight: 600;
  min-height: 1.2rem;
  color: var(--ink);
}
.form-status.success {
  color: var(--brand);
}
.form-status.error {
  color: #b91c1c;
}

.contact-card {
  padding: 2.25rem;
  background: #fff;
  border-radius: 1.75rem;
  border: 1px solid rgba(16, 34, 26, 0.08);
  box-shadow: 0 30px 50px rgba(15, 41, 29, 0.07);
}

.contact-card strong {
  display: block;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(16, 34, 26, 0.15);
  font-family: inherit;
  font-size: 1rem;
  margin-top: 0.4rem;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  grid-column: 1/-1;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(81, 183, 73, 0.25);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  nav p {
    display: none;
  }
  .hero {
    text-align: left;
  }
  .hero-content {
    text-align: center;
  }
  .hero .brand-logo {
    margin-left: auto;
  }
  .cta-buttons {
    justify-content: flex-start;
  }
  .hero-phrases {
    min-height: 4.75rem;
    margin: 1.5rem 0;
  }
  .hero-phrases span {
    font-size: 24pt;
    line-height: 1.2;
  }
}
.about-intro {
  text-align: center;
  max-width: 780px;
  margin: 2.5rem auto 3rem;
}
.about-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about-intro p {
  margin-bottom: 0.75rem;
}

.programs-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.programs-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  display: grid;
  gap: 0.85rem;
}
.programs-copy ul li {
  position: relative;
  padding-left: 3.75rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.programs-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin-right: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(81, 183, 73, 0.3), rgba(81, 183, 73, 0.08));
  box-shadow: inset 0 0 10px rgba(81, 183, 73, 0.2), 0 8px 18px rgba(15, 41, 29, 0.08);
}
.programs-copy ul li::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-45%) rotate(-45deg);
  width: 12px;
  height: 6px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
}
@media (max-width: 768px) {
  .programs-copy {
    margin-right: 0;
  }
}

.programs-media img {
  width: 100%;
  border-radius: 1.75rem;
  box-shadow: 0 30px 60px rgba(15, 41, 29, 0.15);
  display: block;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=site.css.map */