:root {
    --wood-dark: #2C1810;
    --wood-medium: #5D3A1A;
    --wood-warm: #8B5A2B;
    --wood-light: #D4A574;
    --cream: #FDF8F3;
    --cream-dark: #F5EBE0;
    --accent-gold: #B8860B;
    --text-dark: #1A1A1A;
    --text-muted: #6B5B4F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--wood-light);
}

.logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--wood-dark);
    color: var(--cream) !important;
    padding: 0.6rem 1.2rem;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--wood-medium); }

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1010;
    background: none;
    border: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wood-dark);
    transition: all 0.3s ease;
    position: relative;
}

.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--wood-dark);
    transition: all 0.3s ease;
}

.hamburger span::before {
    top: -7px;
}

.hamburger span::after {
    top: 7px;
}

/* Hamburger animation: X on open */
.nav-toggle:checked ~ .hamburger span {
    background: transparent;
}

.nav-toggle:checked ~ .hamburger span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle:checked ~ .hamburger span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
}

/* Buttons */
.btn-primary {
    background: var(--wood-dark);
    color: var(--cream);
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--wood-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--wood-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--wood-dark);
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--wood-warm);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--wood-warm);
    color: var(--cream);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 2rem 0;
    align-items: end;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream-dark);
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    width: fit-content;
    border-left: 3px solid var(--accent-gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--wood-dark);
    margin-bottom: 1.2rem;
}

.hero h1 span {
    color: var(--wood-warm);
    font-style: italic;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-keywords span {
    background: rgba(139, 90, 43, 0.08);
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    color: var(--wood-warm);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    max-width: 350px;
    justify-self: end;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin: 5px 0;
    box-shadow: 
        0 10px 30px rgba(44, 24, 16, 0.2),
        0 20px 50px rgba(44, 24, 16, 0.15),
        0 30px 70px rgba(44, 24, 16, 0.1);
    transform: rotateY(-3deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
    transform: rotateY(0deg) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(44, 24, 16, 0.25),
        0 25px 60px rgba(44, 24, 16, 0.2),
        0 35px 80px rgba(44, 24, 16, 0.15);
}

.hero-image::before,
.hero-image::after {
    display: none;
}

/* Trust Bar */
.trust-bar {
    background: var(--wood-dark);
    padding: 2rem;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    color: var(--cream);
}

.trust-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--wood-light);
    margin-bottom: 0.2rem;
}

.trust-item span {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--wood-dark);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
}

/* Services */
.services {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    scroll-margin-top: 100px;
}

.products-section {
    margin-bottom: 4rem;
}

/* Schwerpunkt-Section: gleiche Breite wie services-grid */
.products-schwerpunkt {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Weitere-Leistungen-Section: gleiche Breite wie leistungen-grid */
.products-weitere {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-section > h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--wood-dark);
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.products-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Erste 3 Karten: je 2 von 6 Spalten = optisch 3er-Grid */
.services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
.services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
.services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }

/* Letzte 2 Karten: zentriert mit Offset (Spalte 2-3 und 4-5 von 6) */
.services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card {
    background: white;
    padding: 1.75rem;
    border: 1px solid rgba(139, 90, 43, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s ease;
}

.service-card:hover::before { height: 100%; }

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 24, 16, 0.08);
}

.service-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Highlight Card - Schwerpunkt-Karten */
.service-card.highlight-card {
    background: linear-gradient(135deg, #fff 0%, var(--cream-dark) 100%);
    border: 2px solid var(--accent-gold);
    border-left-width: 4px;
}

.service-card.highlight-card::before {
    height: 100%;
    background: var(--accent-gold);
}

.service-card.highlight-card h4 {
    color: var(--wood-warm);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--wood-warm);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.service-link:hover { gap: 0.6rem; }

/* Leistungen */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.leistung-card {
    background: var(--cream-dark);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.leistung-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.06);
}

.leistung-icon {
    width: 44px;
    height: 44px;
    background: var(--wood-dark);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.leistung-icon-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.leistung-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--wood-dark);
    margin-bottom: 0.4rem;
}

.leistung-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Region */
.region-section {
    background: var(--cream-dark);
    padding: 4rem 2rem;
}

.region-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.region-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.region-container p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.region-tags span {
    background: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--wood-dark);
    border: 1px solid rgba(139, 90, 43, 0.12);
}

/* About */
.about-teaser {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    scroll-margin-top: 100px;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--wood-warm) 0%, var(--wood-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 50%;
    height: 50%;
    border: 3px solid var(--accent-gold);
    z-index: -1;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cream-dark);
    padding: 0.6rem 0.9rem;
    font-size: 0.82rem;
    color: var(--wood-dark);
}

.about-badge::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: var(--wood-dark);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: var(--wood-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
}

.cta-section .btn-secondary {
    border-color: var(--cream);
    color: var(--cream);
}

.cta-section .btn-secondary:hover {
    background: var(--cream);
    color: var(--wood-dark);
}

/* Page Header (für Unterseiten) */
.page-header {
    padding: calc(var(--header-height, 80px) + 3rem) 2rem 3rem;
    background: var(--cream-dark);
    text-align: center;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--wood-dark);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-muted);
}

/* Contact Page */
.contact-section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--wood-dark);
    margin-bottom: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--wood-dark);
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--wood-warm);
    text-decoration: none;
    font-weight: 500;
}

.emergency-card {
    background: var(--wood-dark);
    color: var(--cream);
    padding: 1.25rem;
    margin-top: 1rem;
}

.emergency-card h3 {
    color: var(--wood-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.emergency-card p {
    color: var(--cream);
    font-size: 0.9rem;
}

.emergency-card a {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--cream-dark);
    padding: 0.4rem 0.6rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    border-left: 2px solid var(--accent-gold);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.06);
}

.contact-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--wood-dark);
    margin-bottom: 0.3rem;
}

.form-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.form-group label .req {
    color: #C0392B;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 90, 43, 0.2);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wood-warm);
    background: white;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--wood-warm);
}

.checkbox-group label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--wood-warm);
}

.btn-submit {
    background: var(--wood-dark);
    color: var(--cream);
    padding: 0.85rem 1.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--wood-dark);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: transparent;
    color: var(--wood-dark);
}

/* Map Section */
.map-section {
    background: var(--cream-dark);
    padding: 3rem 2rem;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--wood-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--wood-light), var(--wood-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.service-area {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-area strong {
    color: var(--wood-dark);
}

/* Footer */
footer {
    background: #1A1410;
    color: var(--cream);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    color: var(--wood-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--wood-light);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--wood-light);
}

footer.footer-simple {
    padding: 2rem;
    text-align: center;
}

footer.footer-simple p {
    color: var(--wood-light);
    font-size: 0.8rem;
}

footer.footer-simple a {
    color: var(--wood-light);
    text-decoration: none;
}

/* Statische Karte */
.map-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.map-image:hover {
    opacity: 0.9;
}

.map-container a {
    display: block;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-img {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 
        0 10px 30px rgba(44, 24, 16, 0.15),
        0 5px 15px rgba(44, 24, 16, 0.1);
    border-radius: 2px;
}

.slideshow-img.active {
    opacity: 1;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 24, 16, 0.6);
    color: var(--cream);
    border: none;
    padding: 1rem 0.75rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.slideshow-btn:hover {
    background: rgba(44, 24, 16, 0.9);
}

.slideshow-btn.prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.slideshow-btn.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.slideshow-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 24, 16, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slideshow-dot.active {
    background: var(--accent-gold);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 2rem 2rem;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-image {
        order: -1;
        max-width: 280px;
        justify-self: center;
        margin: 0;
    }
    
    .hero-img {
        transform: none;
    }
    
    .hero-img:hover {
        transform: scale(1.02);
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-text {
        margin: 0 auto 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-keywords {
        justify-content: center;
    }
    
    .about-teaser {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slideshow {
        max-width: 350px;
        height: 420px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-name {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.15em;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-section > h3 {
        font-size: 2rem;
    }
    
    .services {
        padding: 3rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Bei 2er-Grid: alle Karten normal, keine Spalten-Offsets */
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4) {
        grid-column: auto;
    }
    
    /* 5. Karte (ungerade letzte) zentriert */
    .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .leistungen-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .region-section {
        padding: 3rem 1.5rem;
    }
    
    .region-container h2 {
        font-size: 1.6rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .slideshow {
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Hamburger Button sichtbar */
    .hamburger {
        display: flex;
    }
    
    /* Nav-Links als Slide-in unterhalb des Headers */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height, 70px);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height, 70px));
        height: calc(100dvh - var(--header-height, 70px));
        background: rgba(253, 248, 243, 0.99);
        backdrop-filter: blur(12px);
        padding: 1.5rem 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 20px rgba(44, 24, 16, 0.15);
        transition: right 0.35s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-toggle:checked ~ .nav-links {
        right: 0;
    }
    
    /* Overlay-Hintergrund unterhalb des Headers */
    .nav-overlay {
        display: block;
        position: fixed;
        top: var(--header-height, 70px);
        left: 0;
        width: 100%;
        height: calc(100% - var(--header-height, 70px));
        background: rgba(44, 24, 16, 0);
        z-index: 998;
        pointer-events: none;
        transition: background 0.35s ease;
    }
    
    .nav-toggle:checked ~ .nav-overlay {
        background: rgba(44, 24, 16, 0.4);
        pointer-events: auto;
    }
    
    .nav-links li {
        list-style: none;
        border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 0.5rem;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
        color: var(--wood-dark);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        color: var(--accent-gold);
    }
    
    .nav-links .nav-cta {
        display: block;
        text-align: center;
        padding: 0.85rem 1.2rem;
        margin-top: 0.5rem;
    }
    
    nav {
        position: relative;
    }
    
    .hero {
        padding: 90px 1.25rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-width: 240px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-item strong {
        font-size: 0.95rem;
    }
    
    .trust-item span {
        font-size: 0.7rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .products-section > h3 {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Alle Spalten-Offsets aufheben */
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
    
    .leistungen-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .about-teaser {
        padding: 3rem 1.25rem;
        gap: 1.5rem;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .slideshow {
        max-width: 300px;
        height: 380px;
    }
    
    .slideshow-btn {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
    }
    
    .map-section {
        padding: 2rem 1.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .page-header {
        padding: calc(var(--header-height, 70px) + 2rem) 1.25rem 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.6rem 1rem;
    }
    
    .logo-name {
        font-size: 1.35rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.1em;
    }
    
    .hero {
        padding: 85px 1rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .hero-keywords span {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero-image {
        max-width: 200px;
    }
    
    .trust-bar {
        padding: 1.25rem 1rem;
    }
    
    .trust-container {
        gap: 0.75rem;
    }
    
    .trust-item strong {
        font-size: 0.85rem;
    }
    
    .trust-item span {
        font-size: 0.65rem;
    }
    
    .services {
        padding: 2.5rem 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .leistung-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .leistung-icon {
        margin: 0 auto;
    }
    
    .region-section {
        padding: 2.5rem 1rem;
    }
    
    .region-container h2 {
        font-size: 1.4rem;
    }
    
    .region-tags span {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .about-teaser {
        padding: 2.5rem 1rem;
    }
    
    .about-content h2 {
        font-size: 1.4rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    
    .about-badges {
        justify-content: center;
    }
    
    .about-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
    }
    
    .slideshow {
        max-width: 260px;
        height: 340px;
    }
    
    .slideshow-dots {
        bottom: 0.5rem;
        gap: 0.35rem;
    }
    
    .slideshow-dot {
        width: 6px;
        height: 6px;
    }
    
    .cta-section {
        padding: 2.5rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem;
        font-size: 0.85rem;
    }
    
    .map-section {
        padding: 2rem 1rem;
    }
    
    .map-container h2 {
        font-size: 1.3rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
    
    .page-header {
        padding: calc(var(--header-height, 65px) + 1.5rem) 1rem 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 360px) {
    .logo-name {
        font-size: 1.05rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-image {
        max-width: 180px;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slideshow {
        max-width: 100%;
        height: 300px;
    }
}

/* FAQ Styles */
.faq-toggle {
    background: transparent;
    border: 1px solid var(--wood-light);
    color: var(--wood-light);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.faq-toggle:hover {
    background: var(--wood-light);
    color: var(--wood-dark);
}

.faq-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #0f0d0b;
}

.faq-section.open {
    max-height: 1000px;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--wood-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1rem;
}

.faq-answer p {
    color: rgba(253, 248, 243, 0.8);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .faq-container {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* Legal Content (Datenschutz, Impressum) */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--wood-dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--wood-dark);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--wood-warm);
}

.legal-content strong {
    color: var(--text-dark);
}

.contact-box {
    background: var(--cream-dark);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--accent-gold);
}

.contact-box p {
    margin-bottom: 0.25rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--wood-warm);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: var(--wood-dark);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.9rem;
    }
}