/* ============================================
   Typography System — Maison Lumière
   ============================================ */

/* ----- Headings ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

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

h4 {
  font-size: var(--font-size-2xl);
}

@media (max-width: 768px) {
  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }
  h3 { font-size: var(--font-size-2xl); }
  h4 { font-size: var(--font-size-xl); }
}

/* ----- Body ----- */
body {
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
}

/* ----- Utility Typography Classes ----- */
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----- Section & Container ----- */
.section-padding {
  padding: var(--space-5xl) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--space-3xl) 0;
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
