@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/raleway-400.943300b002.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/raleway-600.85ad6f6d9c.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/raleway-700.6cd34aa42b.ttf") format("truetype");
}

:root {
  --green: #83a846;
  --foundation-green: rgb(99, 114, 95);
  --green-dark: #6f913b;
  --text: #666666;
  --heading: #5d5d5d;
  --muted: #8b8b8b;
  --line: #e1e1e1;
  --tint: #f7f7f7;
  --white: #ffffff;
  --footer: #333333;
  --container: 1130px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Raleway", "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
}

body,
button {
  font: inherit;
}

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

a:hover,
a:focus-visible {
  color: var(--green);
}

button {
  border: 0;
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--heading);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

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

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

.narrow {
  max-width: 930px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #eeeeee;
}

.header-inner {
  width: min(100% - 48px, var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}

.brand img {
  width: 32px;
  height: 32px;
}

.primary-nav,
.section-nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.primary-nav a,
.section-nav a {
  color: #777777;
  font-size: 13px;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.primary-nav a {
  padding: 28px 15px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green);
}

.foundation-band {
  background: var(--foundation-green);
  color: var(--white);
  text-align: center;
  padding: 58px 0 54px;
}

.foundation-band h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(31px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #222222;
}

.hero-slides {
  position: relative;
  min-height: clamp(300px, 44.79vw, 520px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide picture {
  display: block;
}

.hero-slide img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.52);
}

.hero-slide:first-child .hero-overlay {
  background: rgba(51, 51, 51, 0.6);
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  text-align: left;
}

.hero-caption h2 {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(28px, 5.4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
}

.hero-caption p {
  margin: 0;
  color: var(--white);
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.45;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 58px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 42px;
  line-height: 58px;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(0, 0, 0, 0.58);
}

.hero-arrow-prev {
  left: 0;
}

.hero-arrow-next {
  right: 0;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible {
  background: var(--white);
}

.section-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.section-nav-inner {
  justify-content: center;
  flex-wrap: wrap;
}

.section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 15px;
}

.content-section {
  padding: 76px 0 82px;
  scroll-margin-top: 132px;
}

.section-white {
  background: var(--white);
}

.section-tint {
  background: var(--tint);
}

.section-heading {
  margin: 0;
  color: var(--green);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.heading-rule {
  width: 56px;
  height: 1px;
  margin: 21px auto 27px;
  background: var(--green);
}

.content-section p {
  margin: 0;
}

.content-section strong {
  color: var(--heading);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 44px 52px;
  margin-top: 44px;
}

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

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

.grid article {
  text-align: center;
}

.grid h3,
.solution-slide h3 {
  margin: 0 0 13px;
  color: var(--heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.28;
}

.grid p,
.solution-slide p {
  font-size: 15px;
}

.solution-slider {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 20px;
}

.solution-track {
  position: relative;
  min-height: 122px;
}

.solution-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.solution-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.solution-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-size: 34px;
  line-height: 40px;
}

.solution-arrow:hover,
.solution-arrow:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.contact-section {
  min-height: 205px;
}

.policy-page {
  background: var(--white);
  padding: 48px 0 72px;
}

.policy-content {
  max-width: 1010px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
}

.policy-content blockquote {
  margin: 0 0 28px;
  padding: 0 0 0 18px;
  border-left: 4px solid var(--line);
  color: var(--heading);
}

.policy-content p,
.policy-content ul {
  margin: 0 0 18px;
}

.policy-content h3 {
  margin: 30px 0 13px;
  color: var(--heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.policy-content h4 {
  margin: 22px 0 10px;
  color: var(--heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.policy-content ul {
  padding-left: 24px;
}

.policy-content li {
  margin: 0 0 7px;
}

.policy-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.site-footer {
  background: var(--footer);
  color: #cccccc;
  font-size: 13px;
  line-height: 1.4;
  padding: 19px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #ffffff;
}

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

  .header-inner {
    min-height: var(--header-height);
  }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .primary-nav a {
    padding: 12px 11px;
  }

  .hero-caption {
    align-items: center;
    text-align: center;
  }

  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .grid {
    max-width: 760px;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 108px;
  }

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

  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 9px 0;
  }

  .primary-nav {
    justify-content: center;
  }

  .primary-nav a {
    font-size: 12px;
    padding: 9px 8px;
  }

  .foundation-band {
    padding: 42px 0 38px;
  }

  .hero-slides {
    min-height: 330px;
  }

  .hero-caption h2 {
    max-width: 92%;
  }

  .hero-caption p {
    max-width: 86%;
  }

  .hero-arrow {
    width: 36px;
    height: 46px;
    font-size: 34px;
    line-height: 46px;
  }

  .section-nav {
    position: static;
  }

  .section-nav a {
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  .content-section {
    padding: 58px 0 64px;
    scroll-margin-top: 20px;
  }

  .solution-slider {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .solution-track {
    min-height: 176px;
  }

  .solution-arrow {
    width: 36px;
    height: 36px;
    font-size: 28px;
    line-height: 34px;
  }

  .site-footer .container {
    justify-content: center;
    text-align: center;
  }
}

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

  .hero-slide,
  .solution-slide {
    transition: none;
  }
}
