/* Typography Styles */

body {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

/* Body Text */
p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    max-width: 65ch;
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-text-light);
}

a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Lists */
ul, ol {
    margin-bottom: var(--spacing-sm);
}

li {
    margin-bottom: var(--spacing-xs);
}

/* Strong & Emphasis */
strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

/* Small Text */
small {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}
