:root {

  /* =========================================
     Colors
     ========================================= */

  --color-bg: #f4f3ef;
  --color-text: #111111;
  --color-text-secondary: #6f6d68;

  --color-line:
    rgba(17, 17, 17, 0.2);

  --color-line-strong:
    #111111;


  /* =========================================
     Typography
     ========================================= */

  --font-sans: "Inter Tight", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.25rem;
  --text-lg: 1.5rem;

  --text-display:
    clamp(4rem, 14vw, 12rem);

  --text-heading:
    clamp(2.5rem, 6vw, 6rem);


  /* =========================================
     Spacing
     ========================================= */

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;


  /* =========================================
     Layout
     ========================================= */

  --page-padding:
    clamp(1rem, 2vw, 2rem);

  --container: 1600px;


  /* =========================================
     Animation
     ========================================= */

  --ease-out:
    cubic-bezier(0.22, 1, 0.36, 1);

  --transition-fast:
    200ms var(--ease-out);

  --transition-normal:
    400ms var(--ease-out);
}