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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

.text-display {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.text-lead {
  font-size: var(--text-md);
  color: var(--color-text-soft);
  line-height: 1.7;
}

.text-small {
  font-size: var(--text-sm);
  line-height: 1.6;
}

p {
  margin-bottom: var(--spacing-4);
}

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

a:not(.btn):not(.skip-link) {
  color: var(--color-brand);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:not(.btn):not(.skip-link):hover {
  color: var(--color-brand-hover);
  text-decoration: underline;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: var(--text-sm);
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

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

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

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

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

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

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

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

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