:root {
  color-scheme: light;
  --paper: #f3f0ea;
  --ink: #292729;
  --plum: #6b456b;
  --line: #cfc8c2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: var(--plum);
}

a:focus-visible {
  outline: 3px solid #d7c8d8;
  outline-offset: 4px;
}

header,
main,
footer {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

header {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

header a {
  font-weight: 750;
  text-decoration: none;
}

main {
  padding-block: clamp(4rem, 10vw, 7rem);
}

h1,
h2 {
  font-family: Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin: 0 0 2rem;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 500;
}

h2 {
  margin-top: 2.5rem;
  font-size: 1.7rem;
}

p,
li {
  max-width: 66ch;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  border: 1px solid var(--plum);
  background: var(--plum);
  color: white;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  color: #6c666a;
  font-size: 0.85rem;
  padding-block: 1.5rem;
}
