body{
    background:var(--ivory);
    color:var(--ink);
}

.impresszum{
    padding:140px 20px 80px;
}

.impresszum-container{
    max-width:950px;
    margin:auto;
}

.impresszum-header{
    text-align:center;
    margin-bottom:60px;
}

.impresszum-header h1{
    font-family:var(--display);
    font-size:clamp(2.6rem,6vw,4rem);
    font-weight:400;
    font-style:italic;
    color:var(--forest);
    margin-bottom:20px;
}

.impresszum-header p{
    color:var(--muted);
    font-size:1.05rem;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.impresszum-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:28px;
    padding:45px;
    margin-bottom:30px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
}

.impresszum-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.impresszum-card h2{
    font-family:var(--display);
    font-size:1.6rem;
    font-weight:500;
    color:var(--forest);
    margin-bottom:20px;
}

.impresszum-table{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:18px 25px;
}

.impresszum-label{
    font-weight:600;
    color:var(--forest);
}

.impresszum-value{
    color:var(--muted);
    line-height:1.8;
}

.impresszum-text{
    color:var(--muted);
    line-height:1.9;
}

.impresszum a{
    color:var(--amber);
    text-decoration:none;
    font-weight:600;
}

.impresszum a:hover{
    text-decoration:underline;
}

.back-home{
    text-align:center;
    margin-top:50px;
}

.back-home a{
    display:inline-block;
    padding:15px 34px;
    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--forest),
        var(--forest-light)
    );

    color:white;
    text-decoration:none;
    font-weight:600;

    transition:.35s;
}

.back-home a:hover{
    transform:translateY(-3px);
    background:linear-gradient(
        135deg,
        var(--amber),
        #b98a5a
    );
}

@media(max-width:768px){

    .impresszum{
        padding:120px 20px 60px;
    }

    .impresszum-card{
        padding:28px;
    }

    .impresszum-table{
        grid-template-columns:1fr;
        gap:8px;
    }

    .impresszum-label{
        margin-top:12px;
    }

}

.impresszum-card{
    backdrop-filter:blur(12px);
}

.impresszum-card::before{
    content:"";
    display:block;
    width:70px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        var(--green),
        var(--gold)
    );
    margin-bottom:25px;
}

.impresszum-card:hover{
    transform:translateY(-8px);
}

.impresszum-container{
    display:flex;
    flex-direction:column;
    gap:30px;
}
nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:linear-gradient(
        135deg,
        #eef8ea 0%,
        #dcefd8 100%
    );

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(123,174,127,.2);

    box-shadow:0 10px 35px rgba(93,143,98,.08);
}