/* ==============================================
   Typography — Inter (body) + Bebas Neue (display) + JetBrains Mono (eyebrow)
   ============================================== */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1, h2, h3 { text-transform: uppercase; }

p {
  margin: 0 0 1em;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--primary-dark); }

/* Display eyebrow utility */
.ch-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-ink);
}
