:root {
  --green: #1b5e20;
  --green-light: #2e7d32;
  --green-dark: #0d3b12;
  --green-ink: #082d0d;
  --orange: #c94700;
  --orange-light: #ff6d00;
  --orange-glow: #ff9100;
  --white: #fff;
  --off-white: #f7f7f2;
  --cream: #fff7f1;
  --gray-100: #f0f0eb;
  --gray-200: #dfdfd8;
  --gray-500: #77776f;
  --gray-600: #55554f;
  --gray-800: #22221f;
  --shadow-sm: 0 8px 24px rgba(13, 59, 18, .08);
  --shadow-lg: 0 24px 70px rgba(13, 59, 18, .16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--gray-800);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--green-dark);
}

.skip-link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 3000;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  padding: .75rem 1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.skip-link:focus {
  top: 1rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .75rem clamp(1rem, 4vw, 3rem);
  border-bottom: 3px solid var(--orange);
  background: rgba(13, 59, 18, .98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.brand {
  flex: none;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(.92rem, 2vw, 1.08rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: #ff7a18;
}

.page-label {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-brand-group {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.45rem);
}

.nav-links > a:not(.button) {
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: var(--orange-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  font: 900 1.15rem/1 "Inter", sans-serif;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.25rem;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(201, 71, 0, .28);
}

.button-primary:hover {
  background: #a93b00;
}

.button-secondary {
  border-color: var(--green-dark);
  background: var(--white);
  color: var(--green-dark);
}

.button-secondary:hover {
  background: var(--gray-100);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .16);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .8rem;
  color: #c54700;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 3px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: var(--orange-light);
}

.section-heading {
  max-width: 760px;
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.section-dark .section-heading {
  color: var(--white);
}

.section-lede {
  max-width: 730px;
  margin-top: 1rem;
  color: var(--gray-600);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.section-dark .section-lede {
  color: rgba(255, 255, 255, .72);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.campaign-cta {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  color: white;
}

.campaign-cta::before {
  position: absolute;
  top: -13rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 109, 0, .18), transparent 68%);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.cta-inner h2 {
  max-width: 750px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.cta-inner p {
  max-width: 680px;
  margin-top: .85rem;
  color: rgba(255, 255, 255, .74);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #082d0d;
  color: rgba(255, 255, 255, .7);
  padding: 2.2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.footer-brand {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-brand span {
  color: var(--orange-light);
}

.footer-copy {
  margin-top: .5rem;
  font-size: .74rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .7rem 1rem;
  font-size: .75rem;
  font-weight: 700;
}

.footer-navs {
  display: grid;
  max-width: 620px;
  justify-items: end;
  gap: .8rem;
}

.community-links {
  font-size: .7rem;
}

.community-links a[aria-current="page"] {
  color: var(--orange-glow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--orange-light);
}

.paid-for {
  margin-top: .6rem;
  color: white;
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .page-label {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 68px);
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    overflow-y: auto;
    border-bottom: 3px solid var(--orange);
    background: var(--green-dark);
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .24);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    min-height: 46px;
    padding: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: .9rem;
  }

  .nav-links .button {
    margin-top: .65rem;
  }

  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-navs {
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .site-nav {
    gap: .6rem;
    padding-inline: .75rem;
  }

  .brand {
    font-size: .9rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-nav,
  .campaign-cta,
  .site-footer,
  .no-print {
    display: none !important;
  }

  body {
    color: #111;
  }

  .section {
    padding: 2rem 0;
  }
}
