:root {
  color-scheme: light;
  --paper: #fbfaf8;
  --ink: #201f1d;
  --muted: #74716c;
  --line: #dedbd5;
  --wash: #f1efeb;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(226, 221, 213, 0.45), transparent 33rem),
    var(--paper);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
}

.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(222, 219, 213, 0.8);
}

.nav nav,
footer div {
  display: flex;
  gap: 26px;
}

.nav nav a,
footer a,
.text-link {
  font-size: 14px;
  text-decoration: none;
}

.wordmark {
  font-family: Athelas, Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.wordmark-small {
  font-size: 30px;
}

.hero {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 88px 120px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Athelas, Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.lede {
  max-width: 620px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 320px;
  padding: 44px 36px 48px;
}

.principles article:first-child {
  padding-left: 0;
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.principles span {
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.principles h2 {
  margin: 76px 0 18px;
  font-family: Athelas, Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.principles p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 24px;
}

footer p {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

footer div {
  justify-content: flex-end;
}

.legal {
  max-width: 760px;
  padding-block: 86px 120px;
}

.legal .back {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.legal h1 {
  font-size: clamp(52px, 7vw, 82px);
}

.legal .updated {
  margin: 20px 0 64px;
  color: var(--muted);
  font-size: 13px;
}

.legal h2 {
  margin: 48px 0 12px;
  font-family: Athelas, Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.legal p,
.legal li {
  color: #57544f;
  font-size: 16px;
  line-height: 1.75;
}

.legal li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    min-height: 74px;
  }

  .nav nav {
    gap: 16px;
  }

  .hero {
    min-height: 620px;
    padding-block: 80px;
  }

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

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: auto;
    padding: 36px 0 40px;
  }

  .principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles h2 {
    margin-top: 44px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-block: 48px;
  }

  footer p {
    text-align: left;
  }

  footer div {
    justify-content: flex-start;
  }
}
