body {
    background: var(--bg-page);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

p + p { margin-top: 1rem; }

a {
    color: var(--brand-primary-dark);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.15em;
}

a:hover { color: var(--brand-primary); }

strong { color: var(--text-heading); }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -8rem;
    z-index: 9999;
    background: var(--brand-primary);
    color: white;
    padding: .75rem 1rem;
    border-radius: var(--radius-small);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    color: var(--brand-primary-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand-primary);
}

.lead {
    max-width: 64ch;
    font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.text-center { text-align: center; }
.text-on-dark, .text-on-dark h1, .text-on-dark h2, .text-on-dark h3 { color: var(--text-on-dark); }
.text-muted { color: var(--text-muted); }


[hidden] { display: none !important; }
