/* Grundformatierung und Typografie */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

h2 {
    font-size: clamp(34px,4.5vw,58px);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 18px 0 0;
}

.lead {
    font-size: 19px;
    color: var(--muted);
}

.center {
    text-align: center;
}

.narrow {
    max-width: 720px;
    margin: 22px auto;
}
