:root {
  --paper: #f5f2ed;
  --ink: #0a0a0a;
  --fog: #6b6963;
  --mist: #e8e4dd;
  --graphite: #1c1c1c;
  --muted: #8a8880;
  --rule: rgb(10 10 10 / 0.15);
  --rule-strong: 2px solid var(--ink);

  --font-display: "Big Shoulders Display", sans-serif;
  --font-hero: Anton, sans-serif;
  --font-display-weight: 800;
  --font-body: "Schibsted Grotesk", sans-serif;
  --font-mono: "Schibsted Grotesk", sans-serif;

  --text-body: 1rem;
  --display-hero: clamp(3.6rem, 10vw, 8.5rem);
  --display-section: clamp(2.2rem, 5vw, 3.6rem);
  --display-poster: clamp(3.6rem, 10vw, 7.5rem);
  --display-lock: clamp(3.6rem, 14vw, 12rem);
  --display-foot: clamp(3.5rem, 12vw, 14rem);

  --header-height: 4.25rem;
  --touch-min: 44px;
  --container: 90rem;
  --section-padding-x: clamp(1.25rem, 4vw, 3rem);
  --section-gap: clamp(2.5rem, 5vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.75rem);
}

@media (min-width: 768px) {
  :root {
    --text-body: 1.0625rem;
    --header-height: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
