@import url("/css/fonts.css");
:root {
  --paper: #f6f6f1;
  --white: #fff;
  --ink: #202720;
  --muted: #72766f;
  --line: #dcdfd6;
  --green: #204d37;
  --lime: #dcf397;
  --dark: #18241d;
  --font: "Manrope", Arial, sans-serif;
  --container: 1376px;
  --radius: 5px;
  --space: clamp(24px, 5vw, 84px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #467846;
  outline-offset: 5px;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 4.6vw, 76px);
}
h2 {
  font-size: clamp(36px, 4vw, 58px);
}
h3 {
  font-size: clamp(25px, 2.3vw, 34px);
}
p {
  color: var(--muted);
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.container {
  max-width: var(--container);
  width: calc(100% - var(--space) * 2);
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow,
.micro-label {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
}
.text-link {
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}
.text-link:hover {
  color: var(--green);
}
.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}
.section-heading p {
  margin-top: 24px;
  max-width: 620px;
  font-size: 18px;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  max-width: none;
  gap: 80px;
}
.section-heading.split .eyebrow {
  grid-column: 1/-1;
  margin-bottom: -52px;
}
.micro-note {
  font-size: 12px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--green);
  color: white;
  padding: 15px;
  z-index: 100;
}
.skip-link:focus {
  top: 15px;
}
@media (max-width: 760px) {
  .section {
    padding-block: 72px;
  }
  .section-heading.split {
    display: block;
  }
  .section-heading.split .eyebrow {
    margin-bottom: 24px;
  }
  .section-heading.split p {
    margin-top: 25px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
