:root {
  --ink: #17211c;
  --muted: #66706a;
  --paper: #faf9f5;
  --accent: #b7e34b;
  --line: #dfe2dc;
}

* {
  box-sizing: border-box;
}

body {
  max-width: 1100px;
  min-height: 100vh;
  margin: auto;
  padding: 0 28px;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero {
  max-width: 850px;
  padding: 120px 0;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 20px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.about {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.about h2,
.legal h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about h2 {
  margin-top: 0;
  font-size: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
}

.grid h3 {
  margin-top: 0;
}

.grid p,
.legal p,
.muted {
  color: var(--muted);
}

.legal {
  max-width: 760px;
  padding: 90px 0;
}

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

.legal h2 {
  margin: 42px 0 8px;
  font-size: 27px;
}

.legal a {
  text-underline-offset: 3px;
}

footer {
  min-height: 100px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 700px) {
  body {
    padding: 0 18px;
  }

  nav a:first-child {
    display: none;
  }

  .hero {
    padding: 90px 0;
  }

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