@font-face {
  font-family: "Geist";
  src: url("/Geist/statics-woff/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("/Geist/statics-woff/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --em-ink: #17241f;
  --em-green: #315f4c;
  --em-green-dark: #17382d;
  --em-lime: #b3dd09;
  --em-sage: #dce6dc;
  --em-paper: #f4f3ed;
  --em-white: #fff;
  --em-muted: #627068;
  --em-line: rgba(23, 56, 45, 0.14);
  --em-radius: 26px;
  --em-shadow: 0 22px 70px rgba(23, 56, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.content-page {
  margin: 0;
  background: var(--em-paper);
  color: var(--em-ink);
  font-family: "Geist", Arial, sans-serif;
  line-height: 1.55;
}

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

.content-page a {
  color: inherit;
}

.em-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.em-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--em-line);
  background: rgba(244, 243, 237, 0.92);
  backdrop-filter: blur(18px);
}

.em-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.em-logo {
  margin-right: auto;
}

.em-logo img {
  width: 154px;
  height: 48px;
  object-fit: contain;
}

.em-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 600;
}

.em-nav a,
.em-language {
  text-decoration: none;
}

.em-nav a:hover {
  color: var(--em-green);
}

.em-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--em-green-dark);
  color: var(--em-white);
  font-weight: 600;
}

.em-hero {
  padding: 96px 0 72px;
}

.em-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--em-line);
  border-radius: 999px;
  color: var(--em-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.em-hero h1 {
  max-width: 980px;
  margin: 24px 0 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.em-hero__lead {
  max-width: 780px;
  margin: 0;
  color: var(--em-muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.em-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.em-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--em-green-dark);
  color: var(--em-white) !important;
  text-decoration: none;
  font-weight: 600;
}

.em-button--ghost {
  border: 1px solid var(--em-line);
  background: transparent;
  color: var(--em-ink) !important;
}

.em-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 84px;
}

.em-metric {
  min-height: 170px;
  padding: 28px;
  border-radius: var(--em-radius);
  background: var(--em-white);
  box-shadow: var(--em-shadow);
}

.em-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--em-green-dark);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.em-section {
  padding: 78px 0;
}

.em-section--green {
  background: var(--em-green-dark);
  color: var(--em-white);
}

.em-section--sage {
  background: var(--em-sage);
}

.em-section__head {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.em-section h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.em-section__head p {
  max-width: 650px;
  margin: 0;
  color: var(--em-muted);
  font-size: 19px;
}

.em-section--green .em-section__head p {
  color: rgba(255, 255, 255, 0.68);
}

.em-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.em-card {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--em-radius);
  background: var(--em-white);
  color: var(--em-ink);
  text-decoration: none;
  box-shadow: var(--em-shadow);
}

.em-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.em-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 26, 20, 0.92));
}

.em-card__content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 26px;
  color: var(--em-white);
}

.em-card__content small {
  display: block;
  margin-bottom: 10px;
  color: var(--em-lime);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.em-card__content h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.em-card:hover .em-card__image {
  transform: scale(1.045);
}

.em-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.em-copy__aside {
  position: sticky;
  top: 118px;
}

.em-copy__aside h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 62px);
}

.em-copy__body {
  padding: 40px;
  border-radius: var(--em-radius);
  background: var(--em-white);
  box-shadow: var(--em-shadow);
}

.em-copy__body p {
  margin: 0 0 22px;
  font-size: 20px;
}

.em-copy__body p:last-child {
  margin-bottom: 0;
}

.em-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.em-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.em-gallery img:first-child:nth-last-child(odd) {
  grid-column: 1 / -1;
}

.em-client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.em-client {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--em-line);
  border-radius: 18px;
  background: var(--em-white);
}

.em-client img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.em-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px;
  border-radius: var(--em-radius);
  background: var(--em-lime);
}

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

.em-footer {
  padding: 44px 0;
  background: #0e211a;
  color: rgba(255, 255, 255, 0.7);
}

.em-footer__inner {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.em-footer a {
  color: var(--em-white);
  text-decoration: none;
}

@media (max-width: 900px) {
  .em-nav a:not(.em-language) {
    display: none;
  }

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

  .em-client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .em-section__head,
  .em-copy {
    grid-template-columns: 1fr;
  }

  .em-copy__aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .em-shell {
    width: min(100% - 24px, 1180px);
  }

  .em-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .em-logo img {
    width: 126px;
  }

  .em-hero {
    padding: 62px 0 46px;
  }

  .em-metrics,
  .em-grid,
  .em-client-grid,
  .em-gallery {
    grid-template-columns: 1fr;
  }

  .em-section {
    padding: 56px 0;
  }

  .em-card {
    min-height: 320px;
  }

  .em-copy__body,
  .em-cta {
    padding: 26px;
  }

  .em-gallery img {
    height: 250px;
  }

  .em-cta,
  .em-footer__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}
