:root {
  --forest: #063a25;
  --green: #0b5a39;
  --lime: #d9ef88;
  --cream: #f5f7f0;
  --ink: #13271d;
  --muted: #63756a;
  --line: #dbe4d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

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

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.04em;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  letter-spacing: 0.17em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 12px;
  font-weight: 700;
}

.nav-links>a:not(.button) {
  opacity: 0.82;
  transition: 0.2s;
}

.nav-links>a:not(.button):hover,
.nav-links .active {
  color: var(--lime);
  opacity: 1;
}

.button,
.green-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 99px;
  padding: 15px 23px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s;
}

.button {
  background: var(--lime);
  color: var(--forest);
}

.button:hover,
.green-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.18);
  color: var(--forest);
  background: #fff;
}

.button b,
.green-button b {
  font-size: 18px;
  line-height: 0;
}

.button-small {
  padding: 11px 18px;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 780px;
  height: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  display: flex;
  align-items: center;
  background: var(--forest);
}

.hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--forest);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 43, 27, .85)
    /* Dark green */
}


.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background: linear-gradient(90deg,
      transparent 0,
      transparent calc(25% - 1px),
      #fff 25%,
      transparent calc(25% + 1px),
      transparent calc(50% - 1px),
      #fff 50%,
      transparent calc(50% + 1px),
      transparent calc(75% - 1px),
      #fff 75%,
      transparent calc(75% + 1px));
}

.hero-content {
  padding: 180px 0 140px;
}

.overline,
.kicker {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.overline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overline i {
  width: 30px;
  height: 1px;
  background: var(--lime);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.057em;
  line-height: 0.99;
  font-weight: 600;
  margin: 0;
}

h1 {
  max-width: 910px;
  font-size: clamp(3.7rem, 6.8vw, 6.55rem);
}

em {
  font-style: italic;
}

.hero em,
.cta em {
  color: var(--lime);
}

.hero-copy {
  max-width: 635px;
  margin: 27px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

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

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.ghost-button:hover {
  background: #fff;
  color: var(--forest);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 239, 136, 0.15);
}

.scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-align: center;
}

.scroll span {
  display: block;
  width: 1px;
  height: 37px;
  margin: 0 auto 9px;
  background: rgba(255, 255, 255, 0.7);
}

.stats {
  background: var(--green);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid>div {
  padding: 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-grid>div:last-child {
  border: 0;
}

.stats strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1;
}

.stats sup {
  font-family: "DM Sans", sans-serif;
  color: var(--lime);
  font-size: 15px;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.intro-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
}

.kicker {
  color: var(--green);
}

h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.55rem);
}

h2 em {
  color: var(--green);
}

.intro-copy {
  padding-top: 38px;
}

.intro-copy p,
.why-grid>div>p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 25px;
}

.inline-link,
.text-button {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.inline-link b,
.text-button b {
  font-size: 18px;
  margin-left: 7px;
}

.commodity-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
  gap: 10px;
  margin-top: 70px;
}

.commodity-showcase>* {
  height: 175px;
  min-width: 0;
}

.commodity-showcase img {
  width: 100%;
  object-fit: cover;
  border-radius: 9px;
  transition:
    transform 0.35s,
    filter 0.35s;
}

.commodity-showcase img:hover {
  transform: translateY(-6px);
  filter: saturate(1.15);
}

.commodity-caption {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 21px;
  background: var(--green);
  color: #fff;
  border-radius: 9px;
}

.commodity-caption span {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--lime);
  font-weight: 700;
}

.commodity-caption b {
  font:
    italic 25px/1.08 "Playfair Display",
    serif;
  margin-top: 8px;
}

.services {
  background: #e8f0da;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2 {
  max-width: 780px;
}

.text-button {
  margin-bottom: 10px;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 45px;
}

.service-card {
  position: relative;
  min-height: 272px;
  padding: 27px;
  border-radius: 15px;
  background: #fff;
  transition: 0.3s;
}

.service-card>span {
  position: absolute;
  top: 28px;
  right: 26px;
  color: #98a99f;
  font-size: 11px;
}

.icon {
  font-size: 31px;
  color: var(--green);
  margin: 18px 0 32px;
}

.service-card h3,
.benefit-grid h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 10px 0;
}

.service-card>a {
  position: absolute;
  bottom: 23px;
  right: 23px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid #cbd6cb;
  display: grid;
  place-items: center;
  color: var(--green);
}

.service-card:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(4, 55, 32, 0.18);
}

.service-card:hover .icon {
  color: var(--lime);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card:hover a {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.why {
  background: var(--cream);
}

.why-grid {
  gap: 9%;
}

.green-button {
  background: var(--green);
  color: #fff;
  margin-top: 4px;
}

.green-button:hover {
  color: var(--forest);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.benefit-grid article {
  min-height: 145px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: 0.2s;
}

.benefit-grid article:hover {
  border-color: #b4cf57;
  transform: translateY(-3px);
  box-shadow: 0 13px 25px rgba(8, 61, 36, 0.08);
}

.benefit-grid i {
  font-style: normal;
  font-size: 19px;
  color: var(--green);
  font-weight: 700;
}

.benefit-grid h3 {
  margin: 12px 0 5px;
  font-size: 14px;
}

.benefit-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.cta {
  padding: 112px 0;
  background: #f8faf4;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
}

.cta h2 {
  font-size: clamp(3rem, 5.2vw, 5rem);
}

.cta>div>p:not(.kicker) {
  margin: 20px auto 29px;
  color: var(--muted);
  font-size: 17px;
}

footer {
  background: #042e1e;
  color: rgba(255, 255, 255, 0.65);
  padding: 28px 0;
  font-size: 12px;
}

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

.footer-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-brand small {
  color: var(--lime);
}

.footer-grid p {
  margin: 0;
}

.footer-grid>div {
  display: flex;
  gap: 18px;
  color: var(--lime);
}

.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;
}

@media (max-width: 850px) {
  .nav-links {
    gap: 13px;
  }

  .nav-links>a:not(.button) {
    display: none;
  }

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

  .intro-grid {
    gap: 8%;
  }

  .commodity-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .commodity-showcase>* {
    height: 150px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 34px, 1180px);
  }

  .nav {
    height: 74px;
  }

  .menu-button {
    display: block;
    background: transparent;
    border: 0;
    width: 32px;
    padding: 3px;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    padding: 17px;
    background: var(--forest);
    align-items: stretch;
    gap: 2px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
  }

  .nav-links>a:not(.button) {
    display: block;
    padding: 10px;
  }

  .nav-links .button {
    margin: 8px 0 1px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 150px 0 120px;
  }

  .hero-copy {
    font-size: 14px;
  }

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

  .scroll {
    display: none;
  }

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

  .stats-grid>div {
    padding: 23px 16px;
  }

  .stats-grid>div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid>div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .section,
  .cta {
    padding: 70px 0;
  }

  .intro-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-copy {
    padding: 0;
  }

  .intro-copy p,
  .why-grid>div>p {
    font-size: 16px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-button {
    margin: 0;
  }

  .service-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 235px;
  }

  .benefit-grid {
    gap: 10px;
  }

  .benefit-grid article {
    min-height: 140px;
    padding: 17px 13px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid>div {
    gap: 14px;
  }

  .commodity-showcase {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }

  .commodity-showcase>* {
    height: 135px;
  }

  .commodity-caption b {
    font-size: 20px;
  }
}