*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --accent:#b11226;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:#000;
    color:#fff;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
    transition:.25s;
}

a:hover{
    opacity:.7;
}

ul{
    list-style:none;
}

.container{
    width:min(1180px,90%);
    margin:auto;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.9);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.05);
    z-index:1000;
}

.header-inner{
    height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    color:#fff;
    font-size:1.2rem;
    font-weight:800;
    letter-spacing:3px;
    white-space:nowrap;
}

.logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    line-height:1;
}

.logo span{
    display:block;
}

.logo small{
    display:block;
    margin-top:6px;
    font-size:0.68rem;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    opacity:0.6;
}

.logo:hover{
    color:var(--accent);
    opacity:1;
}

nav{
    display:flex;
    gap:34px;
}

nav a{
    color:#cfcfcf;
    font-size:.95rem;
}

nav a:hover{
color:var(--accent);
    opacity:1;
}

.header-social{
    display:flex;
    gap:18px;
}

.header-social a{
    color:#8a8a8a;
    font-size:.9rem;
}

.header-social a:hover{
    color:var(--accent);
    opacity:1;
}
/* ================= HERO ================= */

.hero{
    min-height:100vh;
    padding-top:84px;
    display:flex;
    align-items:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:90px;
    align-items:center;
}

.eyebrow{
    color:var(--accent);
    letter-spacing:4px;
    font-size:.8rem;
    margin-bottom:22px;
}

.hero h1{
    font-size:clamp(2.6rem,4.8vw,4.5rem);
    line-height:1.02;
    margin-bottom:32px;
    font-weight:800;
}

.source{
    color:#888;
    font-size:1.1rem;
}

.hero-image{
    display:flex;
    justify-content:flex-end;
}

.hero-image img{
    width:100%;
    border-radius:4px;
}

/* ================= CONTENT ================= */

.section{
    padding:130px 0;
}

.narrow{
    max-width:760px;
}

.section h2{
    font-size:3rem;
    margin-bottom:45px;
    letter-spacing:1px;
}

.section p{
    color:#bdbdbd;
    font-size:1.15rem;
    line-height:1.9;
}

#kontakt p{
    margin-bottom:10px;
}

.social-links a:hover{
    color:var(--accent);
    opacity:1;
}

/* ================= FOOTER ================= */

footer{
    border-top:1px solid rgba(255,255,255,.05);
}

.footer{
    height:110px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#777;
    font-size:.9rem;
}

.footer div{
    display:flex;
    gap:30px;
}

.footer a:hover{
    color:var(--accent);
    opacity:1;
}

/* ================= MOBILE ================= */

.legal-section{
    padding-top:130px;
}

@media (max-width:768px){

    .header-inner{
        height:auto;
        padding:15px 0;
        flex-direction:column;
        gap:15px;
    }

    nav{
        display:none;
    }

    .header-social{
        gap:20px;
    }

    .social-links{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero{
        min-height:auto;
        padding:170px 0 70px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .hero-image{
        justify-content:center;
    }

    .hero-image img{
        max-width:520px;
    }

   .hero h1{
    font-size:3.1rem;
    line-height:1.1;
}

    .section{
        padding:90px 0;
    }

    .legal-section{
        padding-top:140px;
    }

    .section h2{
        font-size:1.8rem;
    }

    .section h3{
    font-size:1.4rem;
    line-height:1.3;
}

    .footer{
        height:auto;
        padding:40px 0;
        flex-direction:column;
        gap:20px;
    }

    .footer div{
        display:flex;
        justify-content:center;
        gap:18px;
        flex-wrap:wrap;
    }

}
.section h3{
    font-size:2rem;
    margin-bottom:30px;
    font-weight:700;
    color:#fff;
}