:root {
    --paper: #ececec;
    --ink: #111827;
    --muted: #2f3642;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--muted);
    line-height: 1.6;
    padding-top: 102px;
}

.imprint-page {
    width: min(980px, 94%);
    margin: 0 auto;
    padding: clamp(1.4rem, 3.4vw, 2.2rem) 0;
}

.imprint-card {
    max-width: 760px;
    background: #f8fafc;
    border: 1px solid #d4dae5;
    border-radius: 12px;
    padding: clamp(1.2rem, 2.4vw, 1.9rem);
}

.imprint-card h1 {
    margin: 0 0 2rem;
    color: var(--ink);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.imprint-card p {
    margin: 0 0 0.95rem;
    font-size: clamp(1rem, 1.9vw, 1.12rem);
    line-height: 1.7;
}

.imprint-company {
    color: var(--ink);
    font-weight: 700;
}

.imprint-card a {
    color: inherit;
    text-underline-offset: 0.1em;
}

@media (max-width: 740px) {
    .imprint-card h1 {
        margin-bottom: 1.5rem;
    }

    .imprint-card p {
        font-size: 1rem;
    }
}
