:root {
  color-scheme: light;
  --ink: #183c32;
  --muted: #53635b;
  --paper: #faf8f1;
  --line: #dbe1d5;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    17px/1.7 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
a {
  color: #24674e;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}
a:hover {
  color: #123f2d;
}
a:focus-visible {
  outline: 3px solid #b87613;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: white;
  padding: 0.5rem 1rem;
}
.skip:focus {
  top: 0.5rem;
}
header,
main,
footer {
  width: min(100% - 40px, 940px);
  margin-inline: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 750;
}
.brand img {
  border-radius: 12px;
}
nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
nav a {
  font-size: 15px;
  font-weight: 600;
}
main {
  padding-block: 64px;
}
.eyebrow {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.13;
  letter-spacing: -0.04em;
  max-width: 760px;
  margin: 14px 0 24px;
}
h2 {
  font-size: 23px;
  line-height: 1.35;
  margin: 42px 0 12px;
  letter-spacing: -0.02em;
}
p,
li {
  max-width: 760px;
}
.lead {
  font-size: 21px;
  color: var(--muted);
  line-height: 1.65;
}
.note {
  margin: 28px 0;
  padding: 20px 24px;
  background: #edf1e6;
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 800px;
}
.note p {
  margin: 0;
}
.button {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 12px 22px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 650;
  margin: 12px 0;
}
.button:hover {
  background: #2e5644;
  color: white;
}
.meta,
footer {
  color: var(--muted);
  font-size: 14px;
}
footer {
  border-top: 1px solid var(--line);
  padding-block: 28px 40px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  main {
    padding-block: 38px;
  }
  nav {
    gap: 18px;
  }
  .lead {
    font-size: 19px;
  }
}
