:root {
    --primary-color: #8B4513;
    --primary-rgb: 139, 69, 19;
    --secondary-color: #228B22;
    --secondary-rgb: 34, 139, 34;
    --accent-color: #D4A574;
    --accent-rgb: 212, 165, 116;
}

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

html, body { margin: 0; padding: 0; }

/* CRITICAL: Eliminate seams between header/nav and hero */
.navbar { position: fixed; top: 0; left: 0; right: 0; background: var(--neutral-light, #ffffff); z-index: 10000; }
header, .site-header, nav { position: static; margin: 0; padding: 0; border: 0; box-shadow: none; outline: 0; background: transparent; }
main { padding-top: var(--nav-height, 0px); margin: 0; }
.hero, .hero-section, #hero, [data-section="hero"] { margin-top: 0; border-top: 0; }
nav, .navbar, .site-header { border-bottom: none !important; box-shadow: none !important; }
.hero, .hero-section { border-top: none !important; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; }
.brand { font-weight: 700; color: var(--text-color, #111); text-decoration: none; }
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu a { color: var(--text-color, #111); text-decoration: none; }
.nav-cta a, .nav-cta button { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; background: var(--primary-color); color: #fff; border: none; text-decoration: none; transition: background 0.2s ease; }
.nav-cta a:hover, .nav-cta button:hover { background: rgba(var(--primary-rgb), 0.9); }
.nav-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-color, #111); }
@media (max-width: 768px) { .nav-toggle { display: flex; } .nav-menu { display: none; position: fixed; top: var(--nav-height, 64px); left: 0; right: 0; background: var(--neutral-light, #ffffff); flex-direction: column; gap: 12px; padding: 16px 20px; border-top: 1px solid rgba(var(--primary-rgb), 0.12); } .nav-menu.active { display: flex; } .navbar__inner { padding: 10px 16px; } .nav-cta { margin-left: 8px; } }
@media (min-width: 769px) { .nav-toggle { display: none; } }

/* Subtle card baseline */
.card { border: 1px solid rgba(var(--primary-rgb), 0.08); box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-radius: 12px; background: #fff; }
.section--band { padding: 64px 0; background: var(--neutral-light); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; } }
.container { width: min(1200px, 100%); margin: 0 auto; padding: 0 1rem; }
.stack > * + * { margin-top: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.25rem; border-radius: 10px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.btn-primary { background: var(--primary-color); color: #fff; border: 1px solid var(--primary-color); }
.btn-primary:hover { filter: brightness(0.95); }
.btn-secondary { background: transparent; color: var(--primary-color); border: 1px solid rgba(var(--primary-rgb), .35); }
.btn-secondary:hover { background: rgba(var(--primary-rgb), .06); }
.responsive-image { max-width: 100%; height: auto; display: block; border-radius: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
*:focus-visible { outline: 3px solid var(--accent-color); outline-offset: 2px; }

/* Base animation states */
.fade-in-on-scroll { opacity: 0; transform: translateY(10px); transition: all .6s ease-out; }
.fade-in-on-scroll.visible { opacity: 1; transform: translateY(0); }
.slide-up-on-scroll { opacity: 0; transform: translateY(24px); transition: all .6s ease-out; }
.slide-up-on-scroll.slide-in { opacity: 1; transform: translateY(0); }
.scale-on-scroll { opacity: 0; transform: scale(0.96); transition: transform .5s ease-out, opacity .5s ease-out; }
.scale-on-scroll.scale-in { opacity: 1; transform: scale(1); }
.slide-from-left { opacity: 0; transform: translateX(-32px); transition: all .6s ease-out; }
.slide-from-right { opacity: 0; transform: translateX(32px); transition: all .6s ease-out; }
.slide-in-horizontal { opacity: 1 !important; transform: translateX(0) !important; }
.stagger-container .stagger-item { opacity: 0; transform: translateY(12px); transition: all .4s ease-out; }
.stagger-container .stagger-item.animate-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #3C2415;
    background: #F8F6F0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

/* Navigation */
.navbar {
    background: #F8F6F0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-nav a {
    color: #3C2415;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: var(--primary-color);
}

.navbar-cta {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.navbar-cta:hover {
    background: rgba(34, 139, 34, 0.9);
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(139, 69, 19, 0.7)), url('./assets/images/hero_1.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F8F6F0;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    background: rgba(34, 139, 34, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
}

/* Story Section */
.story-section {
    background: #F8F6F0;
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-text .subheadline {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image {
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
}

/* Experience Section */
.experience-section {
    background: #F8F6F0;
    padding: 5rem 0;
}

.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-header h2 {
    color: #3C2415;
    margin-bottom: 1rem;
}

.experience-header .subheadline {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.experience-items {
    display: grid;
    gap: 3rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-item:nth-child(even) .experience-item-content {
    order: 2;
}

.experience-item:nth-child(even) .experience-item-image {
    order: 1;
}

.experience-item-content h3 {
    color: #3C2415;
    margin-bottom: 1rem;
}

.experience-item-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-item-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .experience-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-item:nth-child(even) .experience-item-content,
    .experience-item:nth-child(even) .experience-item-image {
        order: initial;
    }
    
    .experience-item-image {
        order: -1;
    }
}

/* Authenticity Section */
.authenticity-section {
    background: #3C2415;
    color: #F8F6F0;
    padding: 5rem 0;
    text-align: center;
}

.authenticity-header h2 {
    color: #F8F6F0;
    margin-bottom: 1rem;
}

.authenticity-header .subheadline {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.authenticity-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.authenticity-feature {
    background: rgba(248, 246, 240, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.authenticity-feature h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.authenticity-feature p {
    opacity: 0.9;
    line-height: 1.6;
}

.authenticity-spotlight {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
}

.authenticity-spotlight h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Atmosphere Section */
.atmosphere-section {
    background: #F8F6F0;
    padding: 5rem 0;
}

.atmosphere-header {
    text-align: center;
    margin-bottom: 4rem;
}

.atmosphere-header h2 {
    color: #3C2415;
    margin-bottom: 1rem;
}

.atmosphere-header .subheadline {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.atmosphere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.atmosphere-before {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e5e5e5, #f0f0f0);
    border-radius: 12px;
    position: relative;
}

.atmosphere-before::before {
    content: "Vorher";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #666;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.atmosphere-after {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color), rgba(212, 165, 116, 0.8));
    border-radius: 12px;
    position: relative;
    color: #3C2415;
}

.atmosphere-after::before {
    content: "Nachher";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.atmosphere-text {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
}

.atmosphere-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .atmosphere-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #F8F6F0;
    padding: 5rem 0;
    text-align: center;
}

.testimonials-header h2 {
    color: #3C2415;
    margin-bottom: 1rem;
}

.testimonials-header .subheadline {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.testimonial-spotlight {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #3C2415;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-quote::before {
    content: """;
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-right: 0.5rem;
}

.testimonial-quote::after {
    content: """;
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-left: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: #3C2415;
    color: #F8F6F0;
    padding: 5rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    color: #F8F6F0;
    margin-bottom: 1rem;
}

.contact-header .subheadline {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.contact-form {
    background: rgba(248, 246, 240, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    background: rgba(248, 246, 240, 0.1);
    color: #F8F6F0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hours {
    background: rgba(248, 246, 240, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-hours h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background: #3C2415;
    color: #F8F6F0;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #F8F6F0;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    opacity: 0.8;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Images */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Animation Enhancements */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.slide-up-on-scroll.slide-in {
    opacity: 1;
    transform: translateY(0);
}

.stagger-container .stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.stagger-container .stagger-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}
