/* ==========================================================================
   Typographie
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-black);
}

h1 {
  font-size: var(--fs-4xl);
  letter-spacing: -0.01em;
}

h2 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.005em;
}

h3 {
  font-size: var(--fs-xl);
}

h4 {
  font-size: var(--fs-md);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  margin-top: var(--space-xs);
  max-width: 42ch;
}

.section-lede {
  margin-top: var(--space-sm);
  max-width: 56ch;
  font-size: var(--fs-md);
}

.text-on-dark h1,
.text-on-dark h2,
.text-on-dark h3,
.text-on-dark h4 {
  color: var(--color-cream);
}

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