@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-variable.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-text-size-adjust: 100%;
}
html.lenis {
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--body-size);
  line-height: var(--body-leading);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  font-size: clamp(76px, 7.65vw, 116px);
  line-height: 0.97;
  letter-spacing: -0.068em;
}
h2 {
  font-size: clamp(36px, 3.7vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.052em;
}
h3 {
  font-size: clamp(25px, 2.55vw, 37px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--crimson);
  color: white;
}
:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 5px;
  border-radius: 3px;
}
.hero :focus-visible {
  outline-color: white;
}
.muted {
  color: #96908b;
}
.label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 24px;
}
.fine-print {
  font-size: var(--support-size);
  line-height: var(--body-leading);
  color: var(--muted);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: var(--paper);
  color: var(--crimson);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
  .js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.7s var(--ease),
      transform 0.7s var(--ease);
  }
  .js-reveal [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
  .hero__content {
    animation: hero-enter 0.95s var(--ease) both;
  }
  @keyframes hero-enter {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
