h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    color: var(--fg-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--fg-primary);
}

h2.section-title {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: var(--fg-primary);
    position: relative;
    padding-bottom: var(--space-sm);
    display: inline-block;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 1px;
    background: var(--accent-primary);
}

p {
    font-size: 0.9375rem;
    color: var(--fg-secondary);
    line-height: 1.7;
    max-width: 65ch;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

p + p {
    margin-top: var(--space-sm);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--accent-hover);
}

strong {
    font-weight: 500;
    color: var(--fg-primary);
}

