:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #172e2c;
  background: #f7f8f2;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header,
main,
footer {
  max-width: 1120px;
  margin: auto;
  padding: 0 40px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #d7dfd8;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
.wordmark {
  text-decoration: none;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -1.5px;
}
.wordmark span {
  color: #517258;
  margin-left: 8px;
  font-size: 23px;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
}
.hero {
  padding: 90px 0 80px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #49614e;
}
h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.12;
  letter-spacing: -2.5px;
  margin: 24px 0;
}
h1 span {
  color: #526d55;
}
.lede {
  max-width: 590px;
  font-size: 20px;
  line-height: 1.65;
  color: #4c605a;
}
.button {
  display: inline-flex;
  gap: 38px;
  align-items: center;
  background: #173e35;
  color: #fff;
  padding: 17px 23px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 18px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  border-top: 1px solid #d7dfd8;
  padding: 38px 0;
}
h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
  margin: 5px 0;
}
p {
  line-height: 1.75;
  margin: 0 0 16px;
}
.grid p {
  color: #41564f;
}
.text-link {
  font-weight: 650;
}
footer {
  border-top: 1px solid #d7dfd8;
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 32px;
  font-size: 13px;
  color: #52655a;
}
a:focus-visible {
  outline: 3px solid #6d9777;
  outline-offset: 5px;
}
@media (max-width: 600px) {
  header,
  main,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  nav {
    gap: 16px;
    font-size: 13px;
  }
  .wordmark {
    font-size: 26px;
  }
  .hero {
    padding: 56px 0;
  }
  .lede {
    font-size: 18px;
  }
  h1 {
    letter-spacing: -1.6px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  footer {
    gap: 20px;
    font-size: 12px;
  }
}
