:root {
    --flieder: #8B6BB1;
    --flieder-hell: #EFE9F6;
    --text: #1a1a1a;
    --grau: #5c5c5c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
    background: #fff;
    color: var(--text);
    font-size: 19px;
    line-height: 1.65;
    padding: 0 24px;
}

.wrap {
    max-width: 36rem;
    margin: 0 auto;
    padding: 14vh 0 8vh;
}

header {
    margin-bottom: 3.5rem;
}

h1 {
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.tagline {
    margin-top: 0.9rem;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--grau);
}

.regel {
    width: 3.5rem;
    height: 3px;
    background: var(--flieder);
    margin-top: 1.8rem;
}

section {
    margin-bottom: 3.2rem;
}

h2 {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--flieder);
    margin-bottom: 1rem;
}

p+p,
p+ul,
ul+p {
    margin-top: 1.1rem;
}

ol {
    list-style: none;
    counter-reset: schritt;
}

ol li {
    counter-increment: schritt;
    position: relative;
    padding-left: 3.2rem;
    margin-bottom: 1.6rem;
}

ol li::before {
    content: counter(schritt);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--flieder-hell);
    color: var(--flieder);
    font-size: 1rem;
}

ol li strong {
    font-weight: 600;
    display: block;
}

ul {
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
}

ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--flieder);
}

a {
    color: var(--flieder);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

.kontakt {
    border-top: 1px solid #e6e0ee;
    padding-top: 2.4rem;
}

.mail {
    font-size: 1.3rem;
    display: inline-block;
    margin-top: 0.4rem;
}

/* Rechtstexte: kleiner gesetzt, engere Abschnitte */
.recht {
    font-size: 0.95em;
}

.recht section {
    margin-bottom: 2.4rem;
}

.recht h2 {
    font-size: 0.8rem;
}

.adresse {
    font-style: normal;
    line-height: 1.5;
}

.stand {
    color: var(--grau);
    font-size: 0.85rem;
}

footer {
    margin-top: 5rem;
    font-size: 0.85rem;
    color: var(--grau);
    border-top: 1px solid #e6e0ee;
    padding-top: 1.4rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2.1rem;
    }

    .wrap {
        padding: 8vh 0 6vh;
    }
}
