/* ============ Basis / Reset ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --rot: #c62828;
    --rot-dunkel: #8e1e1e;
    --gruen: #2e7d32;
    --gelb: #f9a825;
    --dunkel: #1c1c1c;
    --grau: #f4f2ee;
    --text: #2b2b2b;
    --radius: 14px;
    --schatten: 0 8px 30px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: #fff;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

a { color: var(--rot); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; color: var(--dunkel); }

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

/* ============ Header ============ */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #eee;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 0; gap: 1rem; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.3rem; color: var(--dunkel); }
.brand:hover { text-decoration: none; }
.brand-icon { font-size: 1.6rem; }
.main-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.main-nav a { color: var(--text); font-weight: 600; }
.main-nav a.active, .main-nav a:hover { color: var(--rot); text-decoration: none; }

/* ============ Hero ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--rot) 0%, var(--rot-dunkel) 100%);
    color: #fff; text-align: center;
    padding: 5.5rem 0 6rem;
    overflow: hidden;
}
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 45%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.hero p.lead { font-size: clamp(1.05rem, 2.4vw, 1.4rem); max-width: 720px; margin: 0 auto 2rem; opacity: .95; }
.badge-24 {
    display: inline-block; background: var(--gelb); color: var(--dunkel);
    font-weight: 800; padding: .4rem 1rem; border-radius: 999px;
    letter-spacing: .5px; margin-bottom: 1.4rem; text-transform: uppercase; font-size: .85rem;
}

.btn {
    display: inline-block; background: var(--gelb); color: var(--dunkel);
    font-weight: 700; padding: .9rem 1.8rem; border-radius: 999px;
    box-shadow: var(--schatten); transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn.btn-light { background: #fff; }

/* ============ Sektionen ============ */
section { padding: 4.5rem 0; }
section.alt { background: var(--grau); }
.section-title { text-align: center; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .6rem; }
.section-sub { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; color: #555; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.step {
    background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center;
    box-shadow: var(--schatten); border: 1px solid #efe9e2;
}
.step .num {
    width: 48px; height: 48px; margin: 0 auto 1rem;
    display: grid; place-items: center; border-radius: 50%;
    background: var(--rot); color: #fff; font-weight: 800; font-size: 1.2rem;
}
.step h3 { margin-bottom: .5rem; }

/* Sortiment */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--schatten); border: 1px solid #eee;
    transition: transform .18s ease;
}
.card:hover { transform: translateY(-4px); }
.card-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.card-body { padding: 1.1rem 1.6rem 1.6rem; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { color: #666; font-size: .95rem; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.feature { display: flex; gap: .9rem; align-items: flex-start; }
.feature .ico { font-size: 1.8rem; }

/* Standort */
.standort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.standort-info h2 { margin-bottom: 1rem; }
.standort-info ul { list-style: none; margin: 1rem 0; }
.standort-info li { padding: .35rem 0 .35rem 1.6rem; position: relative; }
.standort-info li::before { content: "📍"; position: absolute; left: 0; }
.map-box {
    background: #fff; border-radius: var(--radius); box-shadow: var(--schatten);
    padding: 2.4rem; text-align: center; border: 1px solid #eee;
}
.map-box .big { font-size: 3rem; margin-bottom: .6rem; }
@media (max-width: 820px) { .standort-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta-band {
    background: var(--dunkel); color: #fff; text-align: center; padding: 3.5rem 0;
}
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { opacity: .85; margin-bottom: 1.6rem; }

/* ============ Rechtstexte ============ */
.legal { padding: 3.5rem 0 4.5rem; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 .7rem; }
.legal h3 { font-size: 1.08rem; margin: 1.3rem 0 .5rem; }
.legal p, .legal li { margin-bottom: .7rem; color: #333; }
.legal ul { margin: 0 0 1rem 1.3rem; }
.legal .muted { color: #777; font-size: .9rem; }

/* ============ Footer ============ */
.site-footer { background: #181818; color: #cfcfcf; margin-top: 2rem; }
.footer-inner {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; padding: 3rem 0 2.4rem;
}
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer-col p, .footer-col a { color: #cfcfcf; }
.footer-col a:hover { color: #fff; }

.social-buttons { display: flex; gap: .7rem; }
.social-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    background: #2a2a2a; color: #fff;
    transition: background .2s ease, transform .2s ease;
}
.social-btn:hover { background: var(--rot); transform: translateY(-3px); text-decoration: none; }

.footer-bottom { border-top: 1px solid #2c2c2c; }
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .8rem; padding: 1.2rem 0; font-size: .9rem;
}
.footer-bottom p { color: #9a9a9a; }
.legal-nav { display: flex; gap: 1.3rem; }
.legal-nav a { color: #cfcfcf; }
.legal-nav a:hover { color: #fff; }

@media (max-width: 640px) {
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* Sprachumschalter DE/EN/PL */
.lang-switch{display:inline-flex;align-items:center;gap:1px;border:1px solid rgba(0,0,0,.14);border-radius:999px;padding:2px;background:rgba(255,255,255,.65);vertical-align:middle}
.lang-switch a{font-size:.72rem;font-weight:700;letter-spacing:.02em;color:inherit;opacity:.6;padding:.22rem .46rem;border-radius:999px;line-height:1;text-decoration:none}
.lang-switch a:hover{opacity:1}
.lang-switch a.active{background:currentColor;opacity:1}
.lang-switch a.active{color:#fff !important;background:#333}
