html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  margin: 0;
}

h1,
.h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h3,
.h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
p {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  color: var(--text-dark);
}

p + p {
  margin-top: 12px;
}

.text-lg {
  font-size: 18px;
  line-height: 1.6;
}

.text-sm {
  font-size: 14px;
  line-height: 1.5;
  color: #6b8b8a;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul li {
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.label,
.small,
.caption {
  font-size: 13px;
  line-height: 1.4;
  color: #7a9c9a;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spacer-xl {
  height: var(--sp-xl);
}
.spacer-lg {
  height: var(--sp-lg);
}
.spacer-md {
  height: var(--sp-md);
}
.spacer-sm {
  height: var(--sp-sm);
}
.spacer-xs {
  height: var(--sp-xs);
}

@media (min-width: 1024px) {
  a:hover {
    color: var(--primary);
  }
}
@media (max-width: 1200px) {
  h1,
  .h1 {
    font-size: 42px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 36px;
    line-height: 1.25;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  .text-lg {
    font-size: 16px;
  }
}
