/* Google Fonts loaded via <link> in HTML for simplicity */

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.text-serif {
  font-family: var(--font-serif);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-crimson);
}

::selection {
  background: var(--color-crimson);
  color: var(--color-text);
}
