:root {
    --bg: #09090c;
    --surface: #14141a;
    --surface2: #1c1c24;
    --text: #f6f4f8;
    --muted: #b9b6c2;
    --accent: #d9a441;
    --accent2: #f1ca75;
    --line: #2b2a33;
    --max: 1180px;
    --radius: 18px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65
}

a {
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(var(--max),calc(100% - 40px));
    margin: auto
}

.skip {
    position: absolute;
    left: -9999px
}

.skip:focus {
    left: 16px;
    top: 16px;
    z-index: 99;
    background: #fff;
    color: #000;
    padding: 10px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(9,9,12,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none
}

.brand img {
    height: 58px;
    width: auto
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav a {
    padding: 10px 12px;
    text-decoration: none;
    color: var(--muted);
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem
}

.nav a:hover,.nav a.active {
    color: var(--text);
    background: var(--surface2)
}

.menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 1.2rem
}

.hero {
    min-height: 76vh;
    display: grid;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg,rgba(5,5,8,.92) 0%,rgba(5,5,8,.65) 50%,rgba(5,5,8,.15) 100%),url('../bilder/hero.jpg') center/cover
}

.hero-content {
    padding: 90px 0;
    max-width: 720px
}

.eyebrow {
    color: var(--accent2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .82rem
}

.hero h1,.page-hero h1 {
    font-size: clamp(2.7rem,6vw,5.6rem);
    line-height: 1.02;
    margin: .15em 0 .3em;
    letter-spacing: -.04em
}

.hero p {
    font-size: 1.18rem;
    color: #dedbe4;
    max-width: 650px
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 19px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #17120a
}

.btn.secondary {
    background: transparent;
    color: var(--text);
    border-color: #77717d
}

.section {
    padding: 84px 0
}

.section.alt {
    background: var(--surface)
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px
}

.section h2 {
    font-size: clamp(2rem,4vw,3.25rem);
    line-height: 1.1;
    margin: .2em 0
}

.muted {
    color: var(--muted)
}

.grid {
    display: grid;
    gap: 22px
}

.grid-3 {
    grid-template-columns: repeat(3,1fr)
}

.grid-2 {
    grid-template-columns: repeat(2,1fr)
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.alt .card {
    background: var(--surface2)
}

.card img {
    width: 100%;
    height: 245px;
    object-fit: cover
}

.card-body {
    padding: 24px
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem
}

.card p {
    color: var(--muted)
}

.text-link {
    color: var(--accent2);
    font-weight: 800;
    text-decoration: none
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center
}

.split img {
    border-radius: var(--radius);
    width: 100%;
    max-height: 560px;
    object-fit: cover
}

.page-hero {
    padding: 100px 0 70px;
    background: linear-gradient(135deg,#17141d,#0a0a0d)
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.12rem
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.price {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line)
}

.price h3 {
    margin-top: 0
}

.amount {
    font-size: 2rem;
    color: var(--accent2);
    font-weight: 900
}

.list {
    padding-left: 20px
}

.quote {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0
}

.quote p {
    font-size: 1.05rem
}

.quote footer {
    color: var(--accent2);
    font-weight: bold
}

.contact-box {
    padding: 34px;
    background: linear-gradient(135deg,#241e15,#15151a);
    border: 1px solid #5a4828;
    border-radius: var(--radius)
}

.legal {
    max-width: 850px
}

.legal h2 {
    font-size: 1.5rem;
    margin-top: 2em
}

.notice {
    padding: 18px;
    border-radius: 12px;
    background: #2b2110;
    border: 1px solid #6a5123;
    color: #f4deb0
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 42px 0;
    background: #070709
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px
}

.footer-links a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: 6px 0
}

.small {
    font-size: .9rem;
    color: var(--muted)
}

@media(max-width:900px) {
    .menu-btn {
        display: block
    }
    .nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #0d0d11;
        border-bottom: 1px solid var(--line);
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch
    }
    .nav.open {
        display: flex
    }
    .nav a {
        padding: 13px
    }
    .grid-3,.grid-2,.price-grid,.split,.footer-grid {
        grid-template-columns: 1fr
    }
    .hero {
        min-height: 68vh;
        background-position: 62% center
    }
    .hero-content {
        padding: 70px 0
    }
    .card img {
        height: 220px
    }
    .section {
        padding: 64px 0
    }
}

@media(max-width:520px) {
    .container {
        width: min(100% - 28px,var(--max))
    }
    .brand img {
        height: 48px
    }
    .nav-wrap {
        height: 72px
    }
    .nav {
        top: 72px
    }
    .hero h1,.page-hero h1 {
        font-size: 2.65rem
    }
    .buttons .btn {
        width: 100%
    }
}
