/* ==========================================================================
   TYPOGRAPHY RULES & CLASSES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--font-body);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   UTILITY CLASSES (CLAMP BASED)
   ========================================================================== */

.text-display {
  font-size: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.text-h1 {
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

.text-h2 {
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

.text-h3 {
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.text-body-large {
  font-size: var(--font-body-large);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.text-body {
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.text-small {
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.text-caption {
  font-size: var(--font-caption);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
