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

html {
  -webkit-text-size-adjust: 100%;

  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

* { border-radius: 0 !important; }

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

h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
}
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--hok-red);
  outline-offset: 3px;
}

.hok-display-xl,
.hok-display-l,
.hok-display-m {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.hok-display-xl { font-size: var(--fs-display-xl); line-height: 1.02; }
.hok-display-l  { font-size: var(--fs-display-l);  line-height: 1.04; }
.hok-display-m  { font-size: var(--fs-display-m);  line-height: 1.05; }

.hok-lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  text-wrap: pretty;
}

.hok-body {
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 68ch;
  text-wrap: pretty;
}

.hok-body--l { font-size: var(--fs-body-l); }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hok-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hok-skip:focus { left: 0; }
