:root {
  color-scheme: light;
  --ink: #121713;
  --paper: #f2f0e9;
  --muted: #4e554f;
  --line: rgba(18, 23, 19, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

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

header,
main,
footer {
  width: min(860px, calc(100% - 36px));
  margin-inline: auto;
}

header,
footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

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

header > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

#privacy-language {
  min-width: 40px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

#privacy-language:focus-visible {
  outline: 3px solid #315fcc;
  outline-offset: 3px;
}

main {
  padding-block: 80px 96px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 9vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 720px;
  margin: 28px 0 58px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  main {
    padding-block: 56px 72px;
  }

  section {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
