/* ============================================
   ValemGelsin — Typography System
   ============================================ */

/* ── Display ── */
.text-display {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark-900);
}

/* ── Headings ── */
.text-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark-900);
}

.text-h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--dark-900);
}

.text-h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--dark-900);
}

.text-h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--dark-900);
}

/* ── Body ── */
.text-body-lg {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-600);
}

.text-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-900);
}

.text-body-sm {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--neutral-600);
}

.text-caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
  color: var(--neutral-600);
}

.text-overline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-600);
}

/* ── Desktop Scale ── */
@media (min-width: 1024px) {
  .text-display {
    font-size: 56px;
    line-height: 1.14;
  }
  .text-h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .text-h2 {
    font-size: 32px;
    line-height: 1.25;
  }
  .text-h3 {
    font-size: 24px;
    line-height: 1.33;
  }
  .text-h4 {
    font-size: 20px;
    line-height: 1.4;
  }
  .text-body-lg {
    font-size: 18px;
    line-height: 1.55;
  }
  .text-body {
    font-size: 16px;
    line-height: 1.5;
  }
  .text-body-sm {
    font-size: 14px;
    line-height: 1.45;
  }
}
