/* ============================================================
   typography.css — Fraunces (display) + Manrope (sans)
   ============================================================ */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text);
  letter-spacing: var(--tracking-wide);
}

.font-display { font-family: var(--font-display); }

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-navy);
  font-optical-sizing: auto;
}

.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
}

.h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: -0.012em; }
.h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); letter-spacing: -0.01em; }
.h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
.h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-soft);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--center::before { display: none; }

.text-italic {
  font-style: italic;
  font-family: var(--font-display);
}

.text-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

strong, b { font-weight: 700; }

.muted { color: var(--text-soft); }
.on-dark { color: var(--text-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--color-white); }
.on-dark .lead { color: var(--text-on-dark-soft); }

p + p { margin-top: 1em; }
