body {
    background-color: var(--surface-base);
    color: var(--text-primary);
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* Links */

a {
    color: var(--accent-primary);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

/* Heading scale tuned for warmth + clarity */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Lists */
ul, ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

/* Buttons inherit font settings */
.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Form labels */
label {
    font-weight: 500;
    color: var(--text-primary);
}

/* Tables */
.table {
    color: var(--text-primary);
}