*,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    background: var(--c-paper);
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--c-paper);
    color: var(--c-ink);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'onum' 1;
  }

  h1, h2, h3, h4, h5, h6 {
    color: inherit;
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    font-weight: 500;
    font-feature-settings: 'ss01' 1, 'cv01' 1, 'cv02' 1;
  }

  h1 { font-size: var(--fs-display); line-height: 0.96; }
  h2 { font-size: var(--fs-h2); }
  h3 { font-size: var(--fs-h3); }
  h4 { font-size: var(--fs-h4); }

  p {
    margin: 0;
    max-width: 65ch;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    color: inherit;
  }

  img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
  }

  ::selection {
    background: var(--c-gold);
    color: var(--c-ink);
  }

  :focus-visible {
    outline: 2px solid var(--c-gold-bright);
    outline-offset: 2px;
    border-radius: var(--r-xs);
  }