html, body {
    margin: 0;
    padding: 0;
    background: #040408;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.pt-content {
    position: relative;
    z-index: 2;
    padding: 9em clamp(2em, 8vw, 10em) 0;
}

/* Heading row */
.imprint-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4em;
    flex-wrap: wrap;
}

.imprint-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(3em, 7vw, 5.5em);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    display: inline-block;
}

.imprint-heading .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.imprint-heading .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.6s ease-out;
    transition-delay: calc(var(--i) * 60ms);
}

.imprint-heading.is-in .letter {
    transform: translateY(0);
    opacity: 1;
}

.imprint-side {
    flex: 0 1 22em;
    text-align: right;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(0.78em, 0.85vw, 0.88em);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    margin: 0 0 0.6em;
}

.imprint-side .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 0.045s);
}

.imprint-side.is-in .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

/* Body */
.imprint-body {
    margin: clamp(4em, 9vh, 7em) 0 clamp(8em, 18vh, 12em);
    max-width: 50em;
    color: rgba(255, 255, 255, 0.72);
}

.imprint-body-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8em, 3vw, 2.6em);
    letter-spacing: -0.01em;
    margin: 0 0 1.2em;
    color: #fff;
    line-height: 1.1;
}

.imprint-section {
    padding: 1.8em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.imprint-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.imprint-section-num {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: #b89cff;
    margin: 0 0 0.7em;
}

.imprint-section h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(1.05em, 1.4vw, 1.3em);
    letter-spacing: -0.005em;
    margin: 0 0 0.7em;
    color: #fff;
    line-height: 1.2;
}

.imprint-section p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(0.92em, 1vw, 1em);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    max-width: 44em;
}

.imprint-section p + p,
.imprint-section dl + p,
.imprint-section ul + p,
.imprint-section p + dl,
.imprint-section p + ul {
    margin-top: 0.75em;
}

.imprint-section a {
    color: rgba(184, 156, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.imprint-section a:hover {
    color: #fff;
}

.imprint-section strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.imprint-placeholder {
    color: rgba(184, 156, 255, 0.85);
    font-style: italic;
}

/* Two-column key/value list (Company / Cevio e.U., Owner / Tobias …). */
.imprint-data-list {
    display: grid;
    grid-template-columns: minmax(9em, 14em) 1fr;
    gap: 0.55em 1.6em;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(0.92em, 1vw, 1em);
    line-height: 1.55;
    max-width: 44em;
}

.imprint-data-list dt {
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

.imprint-data-list dd {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.imprint-data-list dd a {
    color: rgba(210, 190, 255, 0.95);
}

.imprint-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(0.92em, 1vw, 1em);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 44em;
}

.imprint-bullet-list li {
    position: relative;
    padding-left: 1.1rem;
}
.imprint-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #b89cff;
    box-shadow: 0 0 0 3px rgba(184, 156, 255, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
    .pt-content {
        padding: 7em 1.5em 0;
    }
    .imprint-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2em;
    }
    .imprint-heading {
        font-size: clamp(2.6em, 13vw, 4.6em);
        line-height: 1;
    }
    .imprint-side {
        text-align: right;
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 2.5em;
    }
    .imprint-body {
        margin-top: 6vh;
        margin-bottom: 12vh;
    }
    .imprint-body-heading {
        font-size: clamp(1.6em, 7vw, 2.2em);
    }
    .imprint-data-list {
        grid-template-columns: 1fr;
        gap: 0.15em 0;
    }
    .imprint-data-list dt {
        margin-top: 0.35em;
    }
    .imprint-data-list dt:first-of-type {
        margin-top: 0;
    }
}

/* Small phone: tighten everything a notch. */
@media (max-width: 420px) {
    .pt-content {
        padding: 6em 1.1em 0;
    }
    .imprint-heading {
        font-size: clamp(2.2em, 13vw, 3.2em);
    }
    .imprint-section {
        padding: 1.4em 0;
    }
    .imprint-section h3 {
        font-size: 1.05em;
    }
    .imprint-body-heading {
        font-size: 1.7em;
    }
}

/* Large desktop. Scale the page font a touch so the content feels
   proportional next to the larger header / footer above 1800px. */
@media (min-width: 1800px) {
    .pt-content { font-size: 1.05em; }
}
@media (min-width: 2400px) {
    .pt-content { font-size: 1.1em; }
}

/**
 * @INFO
 * Made by Cevio | https://www.cevio.at
 * @INFO
 */
