@font-face {
  font-family: 'Regular';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Regular';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/static/fonts/RegularBold.woff2) format('woff2');
}

@font-face {
  font-family: 'Accent';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/Accent.woff2) format('woff2');
}

@font-face {
  font-family: 'Accent';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/static/fonts/AccentBold.woff2) format('woff2');
}

:root {
  --text-color: #2f2f2f;
  --text-color-light: #545454;
  --text-color-lightest: #b4b1b7;
  --gray-light: #cccccc;
  --gray-lighter: #ebebeb;
  --brand-accent: #babd32;
  --brand-accent-light: #babb72;
  --brand-accent-dark: #939528;
  --brand-accent-darker: #545516;
  --brand-yellow: #ffeb33;
  --brand-yellow-light: #fdf4a2;
  --brand-orange: #f87019;
  --brand-orange-dark: #c65106;
  --brand-orange-darker: #843604;
  --brand-red: #e94d1c;
  --brand-red-dark: #b23711;
  --brand-red-darker: #76250b;
  --brand-blue: #3532bd;
  --font-family: Regular, Helvetica, Arial, sans-serif;
  --font-family-headline: Accent, Helvetica, Arial, sans-serif;
  --font-size: 16px;
  --font-size-small: 13px;
  --font-size-large: 22px;
  --spacing: 20px;
  --spacing-small: 10px;
  --spacing-large: 40px;
  --border-radius: 8px;
  --responsive-content-width-large: 1008px;
}

body {
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-family);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body {
  display: block;
  color: var(--text-color);
  background: #fff;
  font-family: var(--font-family);
}
* {
  box-sizing: border-box;
}
a {
  color: var(--brand-accent-darker);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand-accent-darker);
  outline-offset: 4px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 12px 20px;
  background: var(--brand-accent);
  color: var(--text-color);
  z-index: 30;
}
.skip-link:focus {
  left: 20px;
}
.site-header {
  position: relative;
  background: #fff;
  z-index: 10;
}
.site-header-inner,
.site-main,
.site-footer-inner,
.site-footer-languages,
.site-footer-legal {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.site-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  flex: 0 0 auto;
}
.logo img {
  display: block;
  width: 176px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link,
.nav-cta,
.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 19px 10px 1px;
  color: var(--text-color);
  font: 400 20px/1.4 var(--font-family);
  text-decoration: none;
  border-radius: var(--border-radius);
  white-space: nowrap;
}
.nav-cta {
  margin-left: auto;
}
.nav-link:hover,
.nav-cta:hover,
.mobile-nav summary:hover,
.nav-link.is-active {
  background: none;
  color: var(--brand-accent-darker);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.mobile-nav {
  display: none;
}
.page-hero {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.page-hero img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 40%;
}
.page-hero[data-crop='hands'] img {
  object-position: 70% 42%;
}
.page-hero[data-crop='field'] img {
  object-position: 50% 38%;
}
.site-main {
  padding-top: 48px;
  padding-bottom: 80px;
  font-size: 18px;
  line-height: 1.65;
}
.site-main h1,
.site-main h2 {
  font-family: var(--font-family-headline);
  font-weight: 400;
  color: var(--text-color);
  text-wrap: balance;
}
.site-main h1 {
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 26ch;
  margin: 0 0 24px;
  overflow-wrap: break-word;
}
.site-main h2 {
  font-size: 34px;
  line-height: 1.2;
  margin: 56px 0 20px;
  max-width: 32ch;
}
.site-main h3,
.site-main h4 {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin: 32px 0 12px;
}
.site-main p,
.site-main li {
  max-width: 68ch;
}
.site-main p {
  margin: 0 0 20px;
}
.site-main .lead {
  font-size: 20px;
  line-height: 1.6;
  max-width: 65ch;
  margin-bottom: 24px;
}
.site-main a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  margin: 8px 0 16px;
  border-radius: var(--border-radius);
  background: var(--brand-accent);
  color: var(--text-color);
  font: 700 16px/1.5 var(--font-family);
  text-align: center;
  text-decoration: none;
}
.site-main a.cta:hover {
  background: color-mix(in srgb, var(--brand-accent) 88%, white);
}
.site-main ol.steps {
  list-style: none;
  margin: 32px 0 48px;
  padding: 0;
  display: grid;
  gap: 28px;
  counter-reset: farm-step;
  max-width: 68ch;
}
.site-main ol.steps li {
  position: relative;
  padding: 0 0 0 56px;
  max-width: none;
  counter-increment: farm-step;
}
.site-main ol.steps li::before {
  content: counter(farm-step);
  position: absolute;
  left: 0;
  top: -5px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-accent) 12%, white);
  color: var(--text-color);
  font: 400 18px/1 var(--font-family-headline);
  box-sizing: border-box;
  padding-bottom: 2px;
}
.site-main ol.steps li > strong:first-child {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.site-main ul {
  padding-left: 1.2em;
  margin-bottom: 24px;
}
.site-main blockquote {
  margin: 32px 0;
  padding: 24px;
  background: color-mix(in srgb, var(--brand-accent) 12%, white);
  border-radius: var(--border-radius);
  max-width: 68ch;
  font-size: 20px;
}
.site-main blockquote p {
  margin: 0;
}
.site-main .article-photo {
  max-width: 760px;
  margin: 48px 0;
}
.site-main .article-photo img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: var(--border-radius);
}
.site-main .article-photo-chard img {
  object-position: 50% 28%;
}
article img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.site-footer {
  background: var(--brand-accent);
  color: var(--text-color);
  padding: 48px 0 32px;
  font: 16px/1.6 var(--font-family);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-column h2 {
  font: 700 18px/1.4 var(--font-family);
  color: var(--text-color);
  margin: 0 0 12px;
}
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column a,
.site-footer-languages a,
.site-footer-languages span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-color);
  text-decoration: none;
}
.footer-column a:hover,
.site-footer-languages a:hover {
  text-decoration: underline;
}
.site-footer-languages {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.site-footer-languages [aria-current='true'] {
  font-weight: 700;
}
.site-footer-legal {
  font-size: 14px;
}
@media (max-width: 1050px) {
  .site-header-inner {
    min-height: 80px;
    gap: 12px;
  }
  .site-header-inner > .site-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav summary {
    cursor: pointer;
    gap: 8px;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }
  .mobile-nav[open] summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }
  .mobile-nav[open] summary {
    color: var(--brand-accent-darker);
  }
  .mobile-nav .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px 24px;
    display: grid;
    gap: 4px;
    box-shadow: 0 16px 20px rgb(0 0 0 / 8%);
  }
  .mobile-nav .nav-link {
    justify-content: flex-start;
  }
}
@media (max-width: 679px) {
  .site-header-inner {
    min-height: 76px;
    gap: 4px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo img {
    width: 140px;
  }
  .nav-cta,
  .mobile-nav summary {
    padding: 19px 8px 1px;
    font-size: 16px;
  }
  .page-hero {
    margin-top: 8px;
  }
  .page-hero img {
    height: 200px;
  }
  .site-main {
    padding-top: 32px;
    padding-bottom: 56px;
    line-height: 1.6;
  }
  .site-main h1 {
    font-size: 36px;
    line-height: 1.15;
  }
  .site-main h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-top: 40px;
  }
  .site-main .lead {
    font-size: 18px;
  }
  .site-main .article-photo {
    margin: 32px 0;
  }
  .site-main .article-photo img {
    height: 240px;
  }
  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }
}
@media (max-width: 359px) {
  .logo img {
    width: 112px;
  }
  .site-header-inner {
    gap: 0;
  }
  .site-main h1 {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}
