body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  color: var(--color-navy);
  background-color: var(--color-white);
}

h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
}

h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
}

h5 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}

h6 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
}

p {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--color-medium-gray);
}

a:hover {
  color: var(--color-accent);
}

strong {
  font-weight: var(--fw-semibold);
}

::selection {
  background-color: var(--color-navy);
  color: var(--color-white);
}

@media (max-width: 767px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }
  p  { font-size: var(--fs-base); }
}
