:root {
    --accent: #C76632;
    --text: #3D1F0F;
    --bg: #F7F3E9;
    --shadow: 0 10px 25px rgba(0,0,0,.12);
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1rem;
}

/* TOPBAR */
.topbar {
    background: #EFE3D4;
    padding: .4rem 0;
}
.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}
.topbar a {
    color: var(--text);
    text-decoration: none;
}

/* NAVIGATION */
.navbar {
    background: #F9F7E9;
    padding: .6rem 0;
    border-bottom: 1px solid #e0d4c5;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 80px;
}
.logo-text {
    font-size: 1.6rem;
    font-family: Georgia, serif;
    color: var(--accent);
    text-align: center;
}
.logo-sub {
    font-size: .8rem;
    letter-spacing: .1em;
    text-align: center;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 1.3rem;
}
.desktop-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}
.desktop-menu a.active {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
}

/* MOBILE MENU */
.offcanvas {
    position: fixed;
    top: 0;
    right: -320px;
    width: 260px;
    height: 100vh;
    background: #fffcee;
    padding: 2rem 1.4rem;
    box-shadow: -4px 0 15px rgba(0,0,0,.25);
    transition: right .35s ease;
    z-index: 3000;
}
.offcanvas.show { right: 0; }

.close-btn {
    font-size: 2.4rem;
    margin-left: auto;
    border: none;
    background: none;
    color: var(--accent);
    cursor: pointer;
}
.offcanvas a {
    display: block;
    padding: .8rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #ddd3b8;
    text-decoration: none;
    color: var(--text);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}
.overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* HERO */
.zaun-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* SECTION */
.section { padding: 3rem 0; }
.section h1 {
    text-align: center;
    color: var(--accent);
}
.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0.4rem auto 2rem;
}

/* BENEFITS */
.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.benefit {
    background: white;
    padding: 1.3rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow);
}
.benefit h3 { color: var(--accent); }

/* ZAUNARTEN */
.zaun-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}
.card {
    background: white;
    padding: 1.4rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.card h3 { color: var(--accent); }

/* CTA */
.cta-center { text-align: center; margin-top: 2rem; }
.btn.primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: #2E1B11;
    color: #EFE3D4;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2.5rem;
}

.footer-col h3 {
    color: #F4D5B2;
    margin: 0 0 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: .4rem;
}

.footer-copy {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a {
    color: #F4D5B2;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.orte-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.orte-footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orte-footer-grid li {
    font-size: .95rem;
    line-height: 1.4;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .desktop-menu { display: none; }
    .mobile-menu-btn { display: block; }

    .topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: .4rem;
    }

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

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orte-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .zaun-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .benefits { grid-template-columns: 1fr; }
    .logo { height: 65px; }
    .zaun-hero img { max-height: 260px; }
}
