body {
  color: var(--color-cream);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
  line-height: 1.5;
}

img,
video {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

body.is-nav-open,
body.is-gallery-open {
  overflow: hidden;
}

::selection {
  color: var(--color-bg);
  background: var(--color-cream);
}

h1,
h2,
h3 {
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  text-align: center;
}

h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.65rem);
  line-height: 1.12;
}

h3 {
  font-size: clamp(1.08rem, 1.15vw, 1.25rem);
  letter-spacing: 0;
  line-height: 1.22;
}

p {
  color: var(--color-cream-soft);
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
}

strong {
  color: var(--color-cream);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--color-bg);
  background: var(--color-cream);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

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