body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--gray-50);
  min-height: 100dvh;
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: 0;
}

p + p {
  margin-top: 0.9em;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.28s var(--ease), color 0.2s var(--ease);
}

a:hover,
a:focus-visible {
  background-size: 100% 1px;
  color: var(--accent-deep);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.8125rem;
}

hr {
  border: 0;
  height: 0;
  margin: 0;
}

:target {
  scroll-margin-top: 6rem;
}
