/* ============================================
   Base Styles — Typography, body, utilities
   ============================================ */

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-gray-800);
  background-color: var(--color-white);
}

/* Typography */
h1 { font-size: var(--font-size-5xl); line-height: var(--line-height-tight); }
h2 { font-size: var(--font-size-4xl); line-height: var(--line-height-tight); }
h3 { font-size: var(--font-size-3xl); line-height: var(--line-height-tight); }
h4 { font-size: var(--font-size-2xl); line-height: var(--line-height-tight); }
h5 { font-size: var(--font-size-xl); line-height: var(--line-height-tight); }
h6 { font-size: var(--font-size-lg); line-height: var(--line-height-tight); }

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-gray-500);
  max-width: 640px;
}

/* Utility classes */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-gray-500); }
.text-sm { font-size: var(--font-size-sm); }
.text-lg { font-size: var(--font-size-lg); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }
