.hero{
    width:100%;
    min-height:660px;
    margin:0 0 70px;
    padding:92px 70px;
    border-radius:34px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    background:
        linear-gradient(
            90deg,
            rgba(3,35,31,.98) 0%,
            rgba(3,35,31,.94) 38%,
            rgba(3,35,31,.72) 62%,
            rgba(3,35,31,.35) 100%
        ),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=82')
        center/cover no-repeat;
    box-shadow:0 24px 70px rgba(6,47,42,.12);
}

.hero h2{
    max-width:780px;
    color:#fff !important;
    font-size:clamp(46px,6vw,88px);
    font-weight:900;
    line-height:.92;
    letter-spacing:-0.07em;
    margin:0 0 26px;
    text-shadow:0 4px 22px rgba(0,0,0,.45);
}

.hero p{
    max-width:680px;
    color:rgba(255,255,255,.94) !important;
    font-size:clamp(19px,2vw,26px);
    line-height:1.5;
    margin:0 0 34px;
    text-shadow:0 4px 18px rgba(0,0,0,.42);
}

.hero a,
.hero .btn,
.hero .btn-primary{
    display:inline-flex;
    min-height:58px;
    padding:0 30px;
    border-radius:999px;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold) 0%,var(--gold2) 100%);
    color:#24180a !important;
    font-size:16px;
    font-weight:900;
    box-shadow:0 14px 34px rgba(211,154,76,.28);
    transition:.18s ease;
}

.hero a:hover,
.hero .btn:hover,
.hero .btn-primary:hover{
    transform:translateY(-2px);
}

/* Hvis forsiden stadig har gammel section med liste */

body.is-home main.content section:not(.hero):not(.features){
    max-width:1100px;
    margin:32px auto;
    padding:42px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:26px;
    box-shadow:0 16px 45px rgba(6,47,42,.08);
}

body.is-home main.content section:not(.hero):not(.features) a{
    color:var(--green);
    font-weight:800;
}

body.is-home main.content section:not(.hero):not(.features) a:hover{
    color:var(--gold);
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin:56px 0 80px;
}

.feature-item{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:34px;
    box-shadow:0 16px 45px rgba(6,47,42,.08);
}

.feature-item h3{
    margin:0 0 12px;
    color:var(--green);
    font-size:24px;
    line-height:1.15;
}

.feature-item p{
    margin:0;
    color:var(--muted);
    font-size:16px;
}

@media(max-width:1050px){

    .hero{
        min-height:560px;
        padding:58px 38px;
        border-radius:28px;
        background:
            linear-gradient(
                90deg,
                rgba(3,35,31,.98) 0%,
                rgba(3,35,31,.92) 100%
            ),
            url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82')
            center/cover no-repeat;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:680px){

    .hero{
        min-height:auto;
        padding:52px 26px;
        border-radius:24px;
        background:
            linear-gradient(
                90deg,
                rgba(3,35,31,.98) 0%,
                rgba(3,35,31,.92) 100%
            ),
            url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=82')
            center/cover no-repeat;
    }

    .hero h2{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .hero a,
    .hero .btn,
    .hero .btn-primary{
        width:100%;
    }

    .features{
        grid-template-columns:1fr;
    }

    .feature-item{
        padding:24px;
        border-radius:20px;
    }
}