#sec-1 {
    min-height: 42svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem 2rem;
}

#sec-1 .bg-overlay {
    background: linear-gradient(var(--prim-col) 85%, rgb(36, 36, 36) 100%);
}

/* Wenn ein Bild vorhanden ist: zweispaltig */
#sec-1:has(#sec-1-img) {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
    gap: clamp(2.5rem, 6vw, 6rem);
}

#sec-1-content {
    max-width: 42rem;
    position: relative;
    z-index: 1;
}

/* h1 = SEO-Titel → visuell als kleiner Eyebrow/Kicker */
#sec-1-content h1 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.9rem;
    line-height: 1.5;
}

/* h2 = Echter Display-Titel → groß und prominent */
#sec-1-content h2 {
    font: bold clamp(1.8rem, 4vw, 2.8rem)/1.15 var(--font-fam);
    margin: 0 0 1.4rem;
    color: white;
}

#sec-1-content p {
    max-width: 44ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

#sec-1:has(#sec-1-img) #sec-1-content p {
    margin: 0;
}

#sec-1-img {
    position: relative;
    z-index: 1;
    width: clamp(16rem, 22vw, 26rem);
    flex-shrink: 0;
}

#sec-1-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
    #sec-1:has(#sec-1-img) {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1.5rem;
    }

    #sec-1:has(#sec-1-img) #sec-1-content p {
        margin: 0 auto;
    }

    #sec-1-img {
        width: clamp(14rem, 70vw, 22rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    #sec-1 {
        padding: 1.2rem 1.2rem 1.4rem;
        min-height: auto;
    }

    #sec-1-content h1 {
        font-size: 0.68rem;
        margin-bottom: 0.5rem;
    }

    #sec-1-content h2 {
        margin-bottom: 0.6rem;
    }

    #sec-1-content p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    #sec-1-img {
        width: clamp(12rem, 60vw, 18rem);
    }
}
