:root {
    --color-bg: #f4f4f4;
    --color-header: #CC0605;
    --color-header-dark: #9a0404;
    --color-text: #1a1a1a;
    --color-muted: #555;
    --color-card: #ffffff;
    --font: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

section { padding: 4.5rem 0; }

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 2rem;
}

#home, #angebote, #hu-au, #leistungen, #team, #kontakt, #datenschutz {
    scroll-margin-top: 100px;
}

.topbar {
    background: #111;
    color: #fff;
    font-size: 0.85rem;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.4rem;
    padding: 0.45rem 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

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

#site-header {
    background: var(--color-header);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#site-header::before,
#site-header::after {
    content: "";
    display: block;
    height: 8px;
    background-color: #fff;
    background-image:
        linear-gradient(45deg, #111 25%, transparent 25%),
        linear-gradient(-45deg, #111 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #111 75%),
        linear-gradient(-45deg, transparent 75%, #111 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0;
}

#site-header::after { height: 6px; }

.header-inner {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
}

.logo span {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    opacity: 0.9;
}

.desktop-nav {
    display: flex;
    gap: 1.4rem;
    margin-left: auto;
}

.desktop-nav a,
.header-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.header-phone { white-space: nowrap; }

.menu-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--color-header-dark);
    padding: 1rem 1.5rem 1.5rem;
}

#mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 0;
    font-size: 1.15rem;
}

body.nav-open #mobile-menu { display: flex; }

.hero {
    position: relative;
    min-height: 78vh;
    padding: 7rem 0 5rem;
    background:
        linear-gradient(180deg, rgba(20, 6, 8, 0.55) 0%, rgba(20, 6, 8, 0.72) 100%),
        url("../media/images/header.jpg") center 40% / cover no-repeat;
    color: #fff;
}

.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 1; }

.hero-kicker {
    color: #ffd56a;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.hero h1 {
    font-family: var(--font);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
    line-height: 1.15;
    color: #fff;
    letter-spacing: normal;
    font-weight: 800;
    text-transform: none;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-text {
    font-size: 1.15rem;
    color: #eee;
    max-width: 620px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-header);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--color-header);
    border: 2px solid var(--color-header);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.award {
    padding: 1.4rem 0;
    background: #1a1a1a;
    color: #fff;
}

.award-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.award i {
    font-size: 1.8rem;
    color: #f2c14e;
}

.award h2 {
    font-size: 1.35rem;
    margin: 0 0 0.25rem;
    color: #fff;
}

.award p {
    margin: 0;
    color: #ddd;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.card {
    background: var(--color-card);
    border-radius: 12px;
    padding: 1.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card i {
    color: var(--color-header);
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
}

.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--color-muted); }

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-header);
    margin: 0.3rem 0 0.6rem;
}

#leistungen { background: #ececec; }

#hu-au {
    background: #1a1a1a;
    color: #fff;
}

.hu-box {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hu-logo {
    display: block;
    height: 48px;
    width: auto;
    margin: 0 auto 1.4rem;
    background: #fff;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
}

.hu-price {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    color: #f2c14e;
    margin-bottom: 0.4rem;
}

.hu-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hu-box p { margin-bottom: 1rem; }

.hu-box .btn-primary {
    margin-top: 0.6rem;
    background: var(--color-header);
    color: #fff;
}

.team-photo {
    width: 100%;
    min-height: 380px;
    border-radius: 12px;
    background: #ddd;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.kontakt-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.kontakt-item i {
    color: var(--color-header);
    margin-top: 0.3rem;
}

.kontakt-item a {
    color: var(--color-header);
    text-decoration: none;
    font-weight: 600;
}

.map-container {
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

.legal-page { padding: 5rem 0 4rem; }
.legal-page h1 { margin: 2rem 0 1rem; }
.legal-intro { color: var(--color-muted); margin-bottom: 2rem; }
.legal-block { margin-bottom: 2rem; max-width: 720px; }
.legal-block a { color: var(--color-header); }
.legal-block ol { padding-left: 1.3rem; }
.legal-block li { margin-bottom: 0.6rem; }
.back-link { margin-bottom: 1.5rem; }
.back-link a { color: var(--color-header); text-decoration: none; font-weight: 600; }

#site-footer {
    padding: 2.5rem 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    background: #ececec;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-grid h4 {
    margin-bottom: 0.8rem;
    color: var(--color-header);
}

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.45rem; }
.footer-grid a {
    color: var(--color-muted);
    text-decoration: none;
}

.footer-copy {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .desktop-nav,
    .header-phone { display: none; }
    .menu-toggle { display: block; }
    .award-inner { flex-direction: column; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .team-photo { min-height: 240px; }
    .legal-page { padding-top: 6rem; }
    .topbar-inner { justify-content: center; flex-wrap: wrap; }
    .hero {
        min-height: 70vh;
        padding-top: 6rem;
        background-position: center 30%;
    }
}