:root {
  color-scheme: light;
  --paper: #fafaf7;
  --ink: #293b31;
  --green: #315f48;
  --muted: #647166;
  --line: #dce2d8;
}
* {
  box-sizing: border-box;
}
html {
  border-top: 4px solid var(--green);
}
body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.85 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--green);
  text-decoration-color: #a0b3a0;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: #172d22;
  text-decoration-color: currentColor;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 33px 0 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: -0.8px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 26px;
  font-size: 14px;
}
nav a {
  color: #58665c;
  text-decoration: none;
  padding-block: 7px;
  border-bottom: 1px solid transparent;
}
nav a:hover,
nav a[aria-current] {
  color: var(--green);
  border-bottom-color: #789173;
}
main {
  max-width: 720px;
  margin-inline: auto;
  padding: 52px 0 50px;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h1 {
  font-size: 46px;
  letter-spacing: -1.3px;
  line-height: 1.15;
  margin: 0 0 29px;
}
h1::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: #93a47a;
  margin-bottom: 23px;
}
h2 {
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.35;
  margin: 36px 0 12px;
}
p {
  margin: 0 0 22px;
}
main > p:first-of-type {
  font-size: 17px;
  color: #344c3d;
}
main > p:last-child {
  margin-bottom: 0;
}
li {
  margin-bottom: 7px;
  padding-left: 4px;
}
li::marker {
  color: #789173;
}
ul {
  padding-left: 23px;
  margin-block: 16px 25px;
}
strong {
  font-weight: 600;
}
footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
}
form {
  margin-top: 32px;
  padding: 28px;
  background: #f0f3eb;
  border: 1px solid #dfe5d7;
  border-radius: 5px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 7px;
}
label span,
.small {
  color: #58655c;
  font-size: 12px;
  font-weight: 400;
}
input,
select,
textarea {
  width: 100%;
  display: block;
  margin-bottom: 21px;
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
  color: inherit;
  background: #fffefa;
  border: 1px solid #bcc8b8;
  border-radius: 3px;
}
input:hover,
select:hover,
textarea:hover {
  border-color: #819780;
}
textarea {
  resize: vertical;
  min-height: 140px;
}
button {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  background: var(--green);
  color: white;
  border: 1px solid var(--green);
  border-radius: 3px;
  padding: 10px 23px;
  cursor: pointer;
}
button:hover {
  background: #244734;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
button span {
  display: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-status {
  margin-top: 18px;
}
.form-status[data-state="error"] {
  color: #99322a;
}
.form-status:empty {
  display: none;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip {
  position: absolute;
  left: -10000px;
}
.skip:focus {
  left: 16px;
  top: 10px;
  background: white;
  padding: 8px;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
@media (max-width: 760px) {
  body {
    padding-inline: 26px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-block: 27px 20px;
  }
  nav {
    gap: 8px 28px;
  }
  main {
    padding-block: 37px 40px;
  }
  h1 {
    font-size: 39px;
  }
}
@media (max-width: 520px) {
  body {
    padding-inline: 22px;
    font-size: 15px;
  }
  .brand {
    font-size: clamp(23px, 7vw, 28px);
  }
  main > p:first-of-type {
    font-size: 16px;
  }
  nav {
    gap: 8px 24px;
    font-size: 13px;
  }
  h2 {
    font-size: 25px;
  }
  form {
    padding: 20px 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
