:root {
  color-scheme: light;
  --cream: #faf6f0;
  --ink: #1f1713;
  --muted: #7a6f68;
  --terracotta: #b04122;
  --line: rgba(31, 23, 19, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.92), var(--cream)),
    var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

.shell {
  display: flex;
  width: min(720px, calc(100vw - 48px));
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--terracotta);
  font: 700 12px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 12vw, 112px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font: 400 20px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

nav {
  display: flex;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

a {
  color: var(--terracotta);
  font: 650 14px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.legal {
  justify-content: flex-start;
  padding: 80px 0;
}

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

.legal p {
  max-width: 680px;
  color: var(--muted);
  font: 400 17px/1.7 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 520px) {
  .shell {
    width: min(100vw - 32px, 720px);
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
