        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --forest: #244A30;
            --forest-deep: #1A3322;
            --cream: #F5EFE0;
            --gold: #C9A961;
            --ink: #1F1F1F;
            --muted: #8a8a7a
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--ink);
            line-height: 1.6;
            background: var(--cream)
        }

        .gold-italic {
            color: var(--gold);
            font-style: italic
        }

        /* HEADER */
        header {
            background: var(--cream);
            padding: 18px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, .06)
        }

        .logo-container {
            overflow: hidden;
            max-height: 50px
        }

        .logo-container svg {
            height: 50px;
            width: auto;
            display: block
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 26px;
            color: var(--forest);
            z-index: 100;
            -webkit-tap-highlight-color: transparent;
            padding: 8px
        }

        .hamburger svg {
            pointer-events: none
        }

        #nav {
            display: flex;
            gap: 35px;
            align-items: center
        }

        #nav a {
            text-decoration: none;
            color: var(--ink);
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
            transition: color .3s
        }

        #nav a:hover {
            color: var(--gold)
        }

        .lang-controls {
            display: flex;
            gap: 6px
        }

        .lang-btn {
            background: none;
            border: 1.5px solid var(--forest);
            color: var(--forest);
            padding: 4px 9px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 10px;
            font-weight: 600;
            transition: all .3s;
	    text-decoration: none;
        }

        .lang-btn.active, .lang-btn:hover {
            background: var(--forest);
            color: #fff
        }

        /* HERO */
        .hero {
            background: var(--cream);
            padding: 100px 50px 80px;
            max-width: 1200px;
            margin: 0 auto
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 54px;
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 25px
        }

        .hero-sub {
            font-size: 17px;
            color: #555;
            line-height: 1.8;
            max-width: 700px;
            margin-bottom: 10px
        }

        .hero-esc {
            font-size: 17px;
            color: #555;
            line-height: 1.8;
            max-width: 700px;
            margin-bottom: 35px
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            align-items: center
        }

        .btn-primary {
            background: var(--forest);
            color: #fff;
            padding: 16px 35px;
            border: none;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .3s
        }

        .btn-primary:hover {
            background: var(--forest-deep)
        }

        .btn-secondary {
            color: var(--ink);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid var(--ink);
            padding-bottom: 2px
        }

        .btn-secondary:hover {
            color: var(--gold);
            border-color: var(--gold)
        }

        /* LEISTUNGEN */
        .leistungen {
            background: var(--forest-deep);
            color: #fff;
            padding: 100px 50px
        }

        .leistungen-inner {
            max-width: 1200px;
            margin: 0 auto
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 500
        }

        .leistungen h2 {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 50px;
            color: #fff
        }

        .tab-bar {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, .15);
            margin-bottom: 40px;
            flex-wrap: wrap
        }

        .tab-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, .5);
            padding: 15px 28px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all .3s;
            position: relative;
            bottom: -1px
        }

        .tab-btn.active {
            color: var(--gold);
            border-bottom-color: var(--gold)
        }

        .tab-btn:hover {
            color: var(--gold)
        }

        .tab-panel {
            display: none;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 6px;
            padding: 45px
        }

        .tab-panel.active {
            display: block
        }

        .tab-panel h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 400;
            color: #fff;
            margin-bottom: 25px
        }

        .tab-panel p {
            color: rgba(255, 255, 255, .75);
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 16px
        }

        .tab-panel strong {
            color: #fff
        }

        .tab-panel em {
            color: var(--gold)
        }

        /* UEBER */
        .ueber {
            background: #fff;
            padding: 100px 50px
        }

        .ueber-inner {
            max-width: 1200px;
            margin: 0 auto
        }

        .about-layout {
            display: flex;
            gap: 60px;
            align-items: flex-start;
            margin-top: 40px
        }

        .about-img {
            flex: 0 0 320px
        }

        .about-img img {
            width: 100%;
            border-radius: 6px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12)
        }

        .about-text {
            flex: 1
        }

        .ueber h2 {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 400;
            margin-bottom: 40px;
            color: var(--ink)
        }

        .ueber p {
            font-size: 16px;
            color: #555;
            line-height: 1.9;
            max-width: 800px;
            margin-bottom: 20px
        }

        .ueber strong {
            color: var(--forest)
        }

        /* KONTAKT */
        .kontakt {
            background: var(--forest-deep);
            color: #fff;
            padding: 100px 50px
        }

        .kontakt-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: flex-start
        }

        .kontakt-left {
            flex: 1
        }

        .kontakt-right {
            flex: 1
        }

        .kontakt h2 {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 30px
        }

        .kontakt-text {
            font-size: 15px;
            color: rgba(255, 255, 255, .7);
            line-height: 1.8;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .1)
        }

        .ki-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            font-weight: 500
        }

        .ki-block {
            margin-bottom: 30px
        }

        .ki-block p {
            font-size: 15px;
            color: rgba(255, 255, 255, .9);
            line-height: 1.7
        }

        .ki-block a {
            color: rgba(255, 255, 255, .9);
            text-decoration: none
        }

        .ki-block a:hover {
            color: var(--gold)
        }

        .form-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
            display: block;
            font-weight: 500
        }

        .form-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px
        }

        .form-tag {
            background: none;
            border: 1px solid rgba(255, 255, 255, .3);
            color: rgba(255, 255, 255, .8);
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            transition: all .3s
        }

        .form-tag:hover, .form-tag.sel {
            background: rgba(255, 255, 255, .15);
            border-color: rgba(255, 255, 255, .5)
        }

        .form-input {
            width: 100%;
            background: none;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            padding: 14px 0;
            font-size: 15px;
            margin-bottom: 25px;
            font-family: 'Inter', sans-serif;
            outline: none
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, .4)
        }

        .form-input:focus {
            border-color: var(--gold)
        }

        textarea.form-input {
            resize: vertical;
            min-height: 80px
        }

        .btn-gold {
            background: var(--gold);
            color: var(--forest);
            border: none;
            padding: 18px 0;
            width: 100%;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            margin-top: 10px
        }

        .btn-gold:hover {
            background: #d4b86a
        }

        /* FOOTER */
        footer {
            background: var(--ink);
            color: rgba(255, 255, 255, .6);
            padding: 40px 50px;
            text-align: center;
            font-size: 13px
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 15px;
            flex-wrap: wrap
        }

        .footer-links a {
            color: var(--gold);
            text-decoration: none;
            font-size: 12px
        }

        .footer-links a:hover {
            color: #fff
        }

        /* COOKIE */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--forest);
            color: #fff;
            padding: 15px 30px;
            display: none;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            flex-wrap: wrap;
            gap: 15px
        }

        .cookie-banner.show {
            display: flex
        }

        .cookie-banner p {
            margin: 0;
            font-size: 13px;
            flex: 1;
            min-width: 250px
        }

        .cookie-buttons {
            display: flex;
            gap: 10px
        }

        .cookie-btn {
            padding: 8px 18px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-weight: 600;
            font-size: 12px
        }

        .cookie-btn.accept {
            background: var(--gold);
            color: var(--forest)
        }

        .cookie-btn.reject {
            background: transparent;
            color: #fff;
            border: 1px solid #fff
        }

        /* COOKIE SETTINGS */
        .cookie-settings {
            display: none;
            margin-top: 10px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 6px;
        }

        .cookie-settings.open {
            display: block
        }

        .cookie-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1)
        }

        .cookie-toggle:last-child {
            border: none
        }

        .cookie-toggle label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9)
        }

        .cookie-toggle small {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            display: block;
            margin-top: 3px
        }

/* Language Toggle */
.lang-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
}

.lang-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lang-toggle-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    cursor: pointer;
    transition: .3s;
}

.lang-toggle-slider:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.lang-toggle input:checked + .lang-toggle-slider {
    background: var(--gold);
}

.lang-toggle input:checked + .lang-toggle-slider:before {
    transform: translateX(20px);
}

.lang-toggle input:disabled + .lang-toggle-slider {
    opacity: .6;
    cursor: default;
}

        .cookie-save {
            margin-top: 12px;
            background: var(--gold);
            color: var(--forest);
            border: none;
            padding: 10px 24px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 3px
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            header {
                padding: 12px 20px
            }

            .hamburger {
                display: block
            }

            #nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--cream);
                flex-direction: column;
                padding: 25px;
                gap: 18px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
                text-align: center;
                z-index: 999
            }

            #nav.open {
                display: flex
            }

            .hero {
                padding: 50px 20px 40px
            }

            .hero h1 {
                font-size: 30px
            }

            .hero-sub, .hero-esc {
                font-size: 15px
            }

            .leistungen, .ueber, .kontakt {
                padding: 50px 20px
            }

            .leistungen h2, .ueber h2, .kontakt h2 {
                font-size: 28px
            }

            .tab-bar {
                flex-wrap: wrap;
                gap: 0
            }

            .tab-btn {
                padding: 10px 14px;
                font-size: 11px
            }

            .tab-panel {
                padding: 20px
            }

            .tab-panel h3 {
                font-size: 22px;
                word-wrap: break-word
            }

            .tab-panel p {
                font-size: 14px
            }

            .kontakt-inner {
                flex-direction: column;
                gap: 40px
            }

            .about-layout {
                flex-direction: column;
                gap: 30px
            }

            .about-img {
                flex: 0 0 auto;
                max-width: 250px;
                margin: 0 auto
            }

            .kontakt h2 {
                font-size: 28px
            }

            footer {
                padding: 30px 20px;
                margin-bottom: 80px
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 12px 16px
            }

            .cookie-banner p {
                min-width: 100%;
                font-size: 12px
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center
            }
        }