@font-face {
  font-family: "Kilimanjaro Sans";
  src: url("../fonts/kilimanjaro-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-synthesis-weight: none;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.55;
}

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

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--brand-blue-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-4);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
  letter-spacing: 0.008em;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  letter-spacing: 0.006em;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p,
ul,
ol,
blockquote {
  margin: 0 0 var(--space-4);
}

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

:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
