.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgb(23 106 70 / 14%);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
}

.text-link {
  color: var(--green);
  font-weight: 720;
  text-decoration: none;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--lime);
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading > p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
}

.contrast {
  color: white;
  background:
    linear-gradient(90deg, rgb(6 48 33 / 96%), rgb(12 73 49 / 94%)), var(--green-dark);
}

.soft {
  background: #ebe8dd;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #26342c;
  font-size: 0.81rem;
  font-weight: 750;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid #bdc3b9;
  color: var(--ink);
  background: #fff;
  border-radius: 4px;
}

.field input:focus {
  border-color: var(--green);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 650;
}

.form-status.error {
  color: #9f271b;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.28rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  content: "+";
  color: var(--green);
  font-family: var(--sans);
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 40px 22px 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .section {
    padding-block: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
  }
}
