:root {
  --forest-950: #081810;
  --forest-900: #0b2015;
  --forest-800: #12301c;
  --forest-700: #1b4527;
  --forest-600: #2c5c34;
  --forest-500: #3e7440;
  --leaf-400: #8fd98a;
  --leaf-500: #6fbf6e;
  --leaf-600: #57a857;
  --paper: #f2f1ec;
  --mist: #afc2ae;
  --radius-pill: 999px;
  --radius-card: 1rem;
  --max-width: 1152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--forest-950);
  color: var(--paper);
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Archivo Black", sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--leaf-500);
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: #2C8029;
  color: var(--paper);
}

.btn-light {
  background: white;
  color: black;
}


/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #0b0f0d;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #dbdbd9;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.brand-logo {
  margin-top: 1px;
  height: 3.25rem;
  width: 6.5rem;
  object-fit: contain;
  border-radius: var(--radius-pill);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  padding:0 0.2rem;
}

.nav .btn-primary {
  flex-direction: column;
  background: #2c8029;
  color: #000000;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  margin-right: 10px;
}


@media (min-width: 768px) {
  .nav { padding: 0.25rem 2rem; }
  .brand-logo { height: 6.25rem; width: 10rem; }
  .nav-links { gap: 2rem; }
  .nav-links button { font-size: 1.25rem; }
  .nav .btn-primary { padding: 0.625rem 1.25rem; font-size: 1.125rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #86ba2c;
  padding: 7rem 0 7.5rem;
}

.hero h1 {
  padding-bottom: 1rem;
  font-size: 3.75rem;
  font-weight: 900;
  color: #2c8029;
  letter-spacing: -0.02em;
}

.hero p {
  margin-top: 1rem;
  max-width: 64rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #ffffff;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
}

.hero-actions .btn-primary {
  background: #2c8029;
  color: #ffffff;
}
.hero-actions .btn-primary:hover {
  background: #256b23;
}

.hero-actions .btn-light {
  background: #ffffff;
  color: #2c8029;
}
.hero-actions .btn-light:hover {
  background: #f2f1ec;
}

.hero-topo {
  position: absolute;
  inset-inline: 0;
  top: 63%;
  bottom: 0;
  background-image: url("assets/topo-lines.svg");
  background-repeat: repeat;
  background-size: 1800px 450px;
  background-position: center bottom;
  opacity: 0.9;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, transparent 20%, black 55%);
  mask-image: linear-gradient(to bottom, transparent, transparent 20%, black 55%);
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
  .hero p { font-size: 1.25rem; }
}

/* ---------- About ---------- */
.about {
  background: #091c0d;
  padding: 6rem 0;
}

.about .eyebrow {
  padding: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f561f;
}

.about h2 {
  padding: 0.5rem;
  margin-top: 0.5rem;
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}

.about-grid {
  margin-top: 2rem;
  display: grid;
  gap: 3rem;
}

.about-text p {
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}
.about-text p + p {
  margin-top: 1.25rem;
}

.founded {
  padding: 0.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}
.founded .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3db540;
}

.cards {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  width: 100%;
  background: #132a17;
  border-radius: var(--radius-card);
  padding: 1.5rem;
  color: #ffffff;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #3db540;
}

.card-title h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.card p {
  margin-top: 0.35rem;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
  .about h2 { font-size: 3rem; }
  .about-text p { font-size: 1.25rem; }
}

/* ---------- Services ---------- */
.services {
  background: #86ba2c;
  padding: 6rem 0;
}

.services-panel {
  border-radius: 1.5rem;
  padding: 2rem;
}

.services-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1f561f;
}

.services-subtitle {
  margin-top: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.service-list {
  margin-top: 2.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-item:first-child {
  border-top: none;
  padding-top: 0;
}
.service-item:last-child {
  padding-bottom: 0;
}

.service-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #192810;
  color: #3db540;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.service-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-panel { padding: 3rem; }
  .service-item {
    display: grid;
    grid-template-columns: 2.5rem 1fr 1fr;
    align-items: start;
    gap: 1.5rem;
  }
  .service-content {
    display: contents;
  }
  .service-item h3 { font-size: 1.875rem; }
  .service-item p { font-size: 1.25rem; }
}

/* ---------- Impact ---------- */
.impact {
  background: #091c0d;
  padding: 6rem 0;
}

.impact-grid {
  display: grid;
  gap: 3.5rem;
}

.impact-eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1f561f;
}

.impact ol {
  margin-top: 1.5rem;
}

.impact ol li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  color: #ffffff;
}
.impact ol li + li {
  margin-top: 0.75rem;
}
.impact ol li .num {
  color: rgba(175, 194, 174, 0.7);
}

.impact-who p:last-child {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
}

@media (min-width: 768px) {
  .impact-grid { grid-template-columns: 1.5fr 1fr; }
  .impact ol li { font-size: 1.25rem; }
  .impact-who p:last-child { font-size: 1.25rem; }
}
/* ---------- CTA ---------- */
.cta {
  background: #86ba2c;
  padding: 6rem 0;
  text-align: center;
}

.cta-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

.btn-cta {
  margin-top: 1rem;
  display: flex;
  width: 100%;
  justify-content: center;
  background: #2c8029;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
}

@media (min-width: 768px) {
  .cta h2 { font-size: 3rem; }
  .btn-cta { font-size: 1.125rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #091c0d;
  padding-top: 3rem;
  text-align: left;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 24rem;
}
.footer-brand .brand-name {
  color: #2c8029;
  font-size: 1.875rem;
}
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #ffffff;
}

.footer-links p.label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.footer-links ul {
  margin-top: 1rem;
}
.footer-links li + li {
  margin-top: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #ffffff;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--leaf-500);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: #ffffff;
}
.footer-bottom .legal {
  display: flex;
  gap: 1rem;
}


@media (min-width: 768px) {
  .footer-brand .brand-name { font-size: 3rem; }
  .footer-brand p { font-size: 1rem; }
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--leaf-400);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
