/**
 * Typography System
 * Rotissoire & Co. | French Rotisserie & Volailles de Ferme
 */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
}

h2, .h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
}

h3, .h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-xs);
}

h4, .h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xs);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

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

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

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

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

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.08em;
}
