:root {
  --paper: #f6f1e8;
  --ink: #1c1915;
  --muted: #5c574e;
  --line: #d7d0c4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font: 18px/1.55 "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  min-height: 100vh;
}

.top,
main,
footer {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.company {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.pill {
  margin: 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.lede {
  margin: 2rem 0 2.25rem;
  font-size: 1.45rem;
  line-height: 1.35;
}

section {
  margin: 0 0 1.75rem;
}

h1 {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

p {
  margin: 0 0 0.7rem;
}

p:last-child {
  margin-bottom: 0;
}

.mail {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  color: inherit;
}

footer {
  padding: 2rem 1.25rem 2.5rem;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
}

footer p {
  margin: 0;
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .lede {
    font-size: 1.25rem;
  }
}
