@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --green: #16863a;
  --green-deep: #073d24;
  --gold: #f3aa11;
  --ink: #151812;
  --muted: #62685f;
  --paper: #f7f3e8;
  --surface: #ffffff;
  --line: #dfe4d7;
  --shadow: 0 24px 70px rgba(15, 35, 20, 0.16);
  --max: 1180px;
  --radius: 8px;
  --font-main: "Zona Pro", "ZonaPro", "Poppins", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-main);
  line-height: 1.55;
}

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

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

.section-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 228, 215, 0.82);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(152px, 15vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-deep);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(22px, 6vw, 72px) 62px;
  color: #ffffff;
  background: var(--green-deep);
}

.photo-hero > img,
.photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 30, 16, 0.94), rgba(4, 30, 16, 0.72) 48%, rgba(4, 30, 16, 0.22)),
    linear-gradient(0deg, rgba(4, 30, 16, 0.64), rgba(4, 30, 16, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 860px;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 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: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #181403;
  box-shadow: 0 14px 34px rgba(243, 170, 17, 0.25);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 70px);
  bottom: 42px;
  display: grid;
  grid-template-columns: 146px minmax(0, 210px);
  gap: 18px;
  align-items: center;
  max-width: calc(100% - 44px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.91);
  color: var(--green-deep);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 146px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-strip {
  background: var(--green-deep);
  color: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-grid strong {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.about,
.services,
.values,
.partners,
.contact {
  padding: clamp(66px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.contact-panel h2 {
  color: var(--green-deep);
  font-size: clamp(2.05rem, 4vw, 3.8rem);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 590px;
}

.photo-stack img,
.service-card img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-main {
  position: absolute;
  inset: 0 auto auto 0;
  width: 78%;
  height: 500px;
  box-shadow: var(--shadow);
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 310px;
  border: 10px solid #ffffff;
  box-shadow: var(--shadow);
}

.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.09rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.statement-grid article {
  padding: 24px;
  background: var(--surface);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e7f3df;
  color: var(--green);
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.statement-grid h3,
.service-card h3 {
  margin: 0 0 9px;
  color: var(--green-deep);
}

.statement-grid p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

.services,
.contact {
  background: var(--paper);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 46px rgba(23, 41, 21, 0.08);
}

.service-card.featured {
  grid-column: span 2;
}

.service-card img {
  height: 238px;
  border-radius: 0;
}

.service-card.featured img {
  height: 330px;
}

.service-card div {
  padding: 24px;
}

.service-kicker {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #181403;
  font-size: 0.78rem;
  font-weight: 900;
}

.values-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.values-heading .section-heading {
  margin-bottom: 0;
}

.values-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.value-row article {
  position: relative;
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf3 100%);
  box-shadow: 0 14px 34px rgba(23, 41, 21, 0.06);
  overflow: hidden;
}

.value-row article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.value-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e7f3df;
  color: var(--green);
}

.value-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-row strong {
  color: var(--green-deep);
  font-size: 1.12rem;
  line-height: 1.2;
}

.value-row span {
  color: var(--muted);
}

.photo-band {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  padding: clamp(84px, 9vw, 118px) 0;
  color: #ffffff;
}

.photo-band-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 34, 19, 0.95), rgba(5, 34, 19, 0.75) 48%, rgba(5, 34, 19, 0.28)),
    linear-gradient(0deg, rgba(5, 34, 19, 0.72), rgba(5, 34, 19, 0.08));
}

.impact-content {
  position: relative;
  z-index: 1;
}

.impact h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.impact-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(36px, 5vw, 54px);
}

.impact-list article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.impact-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 170, 17, 0.8);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.impact-list strong {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.impact-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.partner-grid span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-deep);
  background: #ffffff;
  font-weight: 900;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: stretch;
}

.contact-photo {
  min-height: 660px;
}

.contact-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-panel > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd4c0;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(243, 170, 17, 0.28);
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  color: #ffffff;
  background: var(--green-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 186px;
  background: #ffffff;
  border-radius: var(--radius);
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.footer-inner small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1040px) {
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-row,
  .impact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 22px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .proof-grid,
  .about-layout,
  .contact-layout,
  .statement-grid,
  .values-heading {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .photo-main,
  .photo-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

  .contact-photo {
    min-height: auto;
  }

  .contact-photo img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 146px;
  }

  .hero {
    min-height: auto;
    padding: 112px 22px 34px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11.4vw, 3.5rem);
  }

  .hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .proof-grid div {
    min-height: 108px;
  }

  .photo-band {
    padding: 72px 0;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    width: 170px;
  }

  .service-grid,
  .value-row,
  .impact-list,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .service-card img,
  .service-card.featured img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
