:root {
  --font-body: "Barlow", sans-serif;
  --font-heading: "Geist", "Inter", "Arial", sans-serif;

  --color-bg: #f2f4f4;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #000000;
  --color-text-soft: #5a6061;
  --color-text-light: rgba(255, 255, 255, 0.88);
  --color-text-lighter: rgba(255, 255, 255, 0.74);
  --color-border: #c7c7c3;
  --color-blue: #0039b3;
  --color-footer-bg: #ffffff;

  --page-max-width: 1280px;
  --page-margin: 48px;
  --grid-columns: 12;
  --grid-gutter: 24px;

  --section-spacing: 120px;
  --transition: 0.25s ease;
}

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--color-bg);
  color: var(--color-text);
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

/* =========================
   TYPOGRAPHY (GLOBAL SYSTEM)
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
}

p {
  margin: 0;
  font-family: var(--font-body);
}

strong {
  font-weight: 700;
}

/* =========================
   MEDIA (SAFE DEFAULTS)
========================= */

img,
video {
  display: block;
  width: 100%;
  max-width: 100%;
}

img {
  height: auto;
}

/* =========================
   LINKS & FORM ELEMENTS
========================= */

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   HELPERS
========================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}