@font-face {
  font-family: "Assistant";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/assistant-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Assistant";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/assistant-bold.woff2") format("woff2");
}

:root {
  --green: #075037;
  --green-contrast: #096747;
  --ink: #121212;
  --dark: #242833;
  --light: #f3f3f3;
  --white: #ffffff;
  --muted: rgba(18, 18, 18, 0.72);
  --page-width: 1200px;
  --section-space: 36px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Assistant", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(31px, 3vw, 42px);
}

p + p {
  margin-top: 18px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: min(100% - 48px, var(--page-width));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 48px, 760px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--light);
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.header-inner {
  width: min(100% - 48px, var(--page-width));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: block;
  width: min(300px, 52vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  color: rgba(18, 18, 18, 0.78);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(7, 80, 55, 0.08);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ambientZoom 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 42px;
}

.hero-panel {
  width: min(100%, 760px);
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 36px 42px;
}

.green-band {
  background: var(--green);
  color: var(--white);
}

.about-section {
  padding: 40px 0 52px;
  text-align: center;
}

.about-section h2,
.contact-section h2 {
  margin-bottom: 24px;
}

.about-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 112px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--green);
  padding: 0 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  outline: none;
}

.multirow {
  background: #000000;
  padding: var(--section-space) 0;
}

.feature-row {
  width: min(100% - 48px, var(--page-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #000000;
}

.feature-row + .feature-row {
  margin-top: 36px;
}

.feature-row-reverse .feature-media {
  order: 2;
}

.feature-row-reverse .feature-copy {
  order: 1;
}

.feature-media {
  min-height: 430px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-copy {
  color: var(--white);
  padding: 44px 52px;
}

.feature-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  max-width: 560px;
}

.why {
  padding: var(--section-space) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.why-logo {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: 42px;
}

.why-logo img {
  width: min(100%, 620px);
}

.why-card {
  background: var(--light);
  color: var(--ink);
  padding: 48px 52px;
}

.why-card ul {
  margin: 24px 0 0;
  padding-left: 24px;
  color: var(--muted);
}

.why-card li + li {
  margin-top: 12px;
}

.contact-section {
  background: var(--light);
  padding: var(--section-space) 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(18, 18, 18, 0.72);
}

.field b {
  color: var(--green);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.55);
  background: var(--light);
  color: var(--ink);
  padding: 15px 16px;
  border-radius: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

textarea {
  resize: vertical;
  min-height: 184px;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(7, 80, 55, 0.16);
  background: var(--white);
  outline: none;
}

.dark-button {
  justify-self: start;
  margin-top: 6px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.form-status {
  min-height: 25px;
  color: var(--green);
}

.site-footer {
  background: var(--green);
  color: var(--white);
}

.footer-inner {
  padding: 36px 0 20px;
}

.footer-details {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-details strong {
  color: var(--white);
}

.footer-details a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 24px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 94px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .brand {
    width: min(260px, 64vw);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: grid;
    width: calc(100% + 48px);
    margin-inline: -24px;
    max-height: 0;
    overflow: hidden;
    background: var(--light);
    border-top: 1px solid rgba(18, 18, 18, 0.1);
    transition: max-height 220ms ease;
  }

  .site-nav.is-open {
    max-height: 180px;
  }

  .site-nav a {
    padding-inline: 24px;
  }

  .hero,
  .hero-content {
    min-height: 470px;
  }

  .hero-panel {
    padding: 28px 24px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .feature-row-reverse .feature-media,
  .feature-row-reverse .feature-copy {
    order: initial;
  }

  .feature-copy {
    padding: 36px 0 8px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .page-width,
  .narrow,
  .feature-row {
    width: min(100% - 32px, var(--page-width));
  }

  .header-inner {
    width: min(100% - 32px, var(--page-width));
  }

  .site-nav {
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .hero,
  .hero-content {
    min-height: 420px;
  }

  .hero-content {
    padding-bottom: 22px;
  }

  .hero-panel {
    padding: 24px 18px;
  }

  .about-section {
    padding: 34px 0 42px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-media,
  .feature-media img {
    min-height: 330px;
  }

  .why-logo,
  .why-card {
    padding: 34px 24px;
  }
}
