/* Typography */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-on-surface);
}

.display-xl {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-transform: uppercase;
}

.display-lg {
  font-size: var(--text-headline-mobile);
  line-height: 1.1;
  letter-spacing: -0.052em;
  font-weight: 700;
}

@media (min-width: 768px) {
  .display-lg {
    font-size: var(--text-display-lg);
    line-height: 1;
  }
}

.headline-lg {
  font-size: var(--text-headline-mobile);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .headline-lg {
    font-size: var(--text-headline-lg);
    line-height: 1.1;
  }
}

.body-lg {
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
}

@media (min-width: 768px) {
  .body-lg {
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
  }
}

.body-md {
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
}

.label-sm {
  font-family: var(--font-mono);
  font-size: var(--text-label-sm);
  line-height: var(--lh-label-sm);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

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

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

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

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