:root {
  --bg: #f6f8f3;
  --surface: #ffffff;
  --surface-soft: #eef4e8;
  --ink: #102014;
  --muted: #59645c;
  --line: rgba(16, 32, 20, 0.14);
  --green: #0f7a3a;
  --green-dark: #094d25;
  --lime: #bfe66b;
  --blue: #0e4f7f;
  --shadow: 0 24px 70px rgba(16, 32, 20, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 243, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(16, 32, 20, 0.06); }
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img {
  width: 100%;
  height: 52px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--lime));
  box-shadow: 0 10px 20px rgba(15, 122, 58, 0.25);
}
.nav-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-menu a {
  position: relative;
  display: inline-flex;
  padding: 10px 4px;
  color: #303531;
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  outline: none;
}
.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 11px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(191, 230, 107, 0.38), rgba(15, 122, 58, 0.0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 48px;
}
.eyebrow,
.section-label {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 900;
  font-size: 1.2rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 5.0rem);
  line-height: 0.9;
  letter-spacing: 0em;
  max-width: 840px;
}
.hero-lede {
  margin: 26px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(9, 77, 37, 0.22);
}
.button-primary:hover { background: var(--green); }
.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}
.hero-visual {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgb(137 209 155 / 77%);
  overflow: hidden;
  display: grid;
  place-items: center;
}


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

.intro-band { padding: 12px 0 80px; }
.intro-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 210px;
}
.metric-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}
.metric-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: 0em;
}
.metric-card p { margin: 0; color: var(--muted); }

.statement-section {
  display: grid;
  gap: 42px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.purpose-section {
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
}
.statement-section.split { border-bottom: 1px solid var(--line); }
.statement-content h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0em;
}

.values-section {
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
}
.values-heading {
  margin-bottom: 42px;
}
.values-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0em;
  
}
.values-heading p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(191, 230, 107, 0.22), transparent 36%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.value-card:hover::before { opacity: 1; }
.value-card img {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 74px;
  height: 74px;
  opacity: 0.92;
}
.value-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: 0em;
  text-align: center;
}
.value-card p {
  font-size: 1.1rem;
  position: relative;
  line-height: 1.3;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.value-card-wide { grid-column: span 2; background: linear-gradient(135deg, rgba(15, 122, 58, 0.42), rgba(255, 255, 255, 0.08)); }

.impact-section { 
  padding: 96px 0; 
  background: var(--surface-soft);
}
.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: start;
}
.impact-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0em;
}
.impact-copy p:not(.eyebrow),
.contact-copy p {
  max-width: 650px;
  font-size: 1.08rem;
}
.impact-list {
  display: grid;
  gap: 14px;
}
.impact-list div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(103, 134, 111, 0.14);
  border-radius: 12px;
}
.impact-list span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1.2;
}
.impact-list p { 
  margin: 8px 0 0; 
  color: var(--muted); 
  font-size: 1.2rem;
}

.team-section {
  padding: 96px 0;
  border-top: 1px solid rgba(16, 32, 20, 0.06);
}

.team-heading {
  margin-bottom: 48px;
}
.team-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0em;
}
.team-heading p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #07100a;
  font-size: 1.2rem;
  text-align: justify;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 14;
  background: var(--surface-soft);
  box-shadow: 0 14px 30px rgba(7, 37, 15, 0.1);
}
.team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  cursor: pointer;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 70, 32, 0) 38%, rgb(24 69 13 / 82%) 100%);
  transition: background 0.3s ease;
}
.team-card:hover .team-overlay,
.team-card:focus-within .team-overlay {
  background: linear-gradient(180deg, rgba(6, 90, 25, 0.3) 0%, rgba(6, 90, 25, 0.6) 100%);
}
.team-overlay h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: 0em;
}
.team-desc {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}
.team-card:hover .team-desc,
.team-card:focus-within .team-desc {
  max-height: 200px;
  opacity: 1;
}

.contact-section {
  padding: 90px 0;
  background: var(--surface-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: start;
}
.contact-right {
  padding-left: 42px;
  border-left: 2px solid var(--green);
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(15, 122, 58, 0.12);
  color: var(--green);
}
.contact-icon svg {
  width: 28px;
  height: 28px;
}
.contact-detail {
  display: block;
  min-width: 0;
}
.contact-label {
  display: block;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-list a,
.contact-list .contact-value {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}
.contact-list a:hover { color: var(--green); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 122, 58, 0.12);
}
.form-note { margin: 14px 0 0; color: var(--green-dark); font-weight: 700; }

.site-footer {
  padding: 34px 0;
  background: #07100a;
  color: rgba(255, 255, 255, 0.82);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-grid p { margin: 0; color: rgba(255, 255, 255, 0.62); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .impact-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .contact-right { padding-left: 0; border-left: 0; }
  .hero-visual { min-height: 360px; }
  .intro-band-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .statement-section { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { width: 100%; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-desc { max-height: 200px; opacity: 1; margin-top: 12px; }
  .value-card-wide { grid-column: auto; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
