:root {
    /* Pallet wood palette */
    --color-primary: #8B6F47;
    --color-primary-light: #A0845C;
    --color-primary-dark: #6B5535;
    --color-accent: #D4A574;
    --color-accent-dark: #C49464;
    
    --color-text: #2C2416;
    --color-text-light: #5A5047;
    --color-text-muted: #8B7D75;
    --color-bg: #FBF8F4;
    --color-bg-light: #F5F0E8;
    --color-bg-dark: #E8DFD5;
    --color-border: #D4C4B0;
    
    --color-charcoal: #3D3530;
    --color-dark: #2C2416;
    --color-wood-dark: #4A3F33;
    --color-wood-light: #D9CCBB;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;

    --font-serif: 'Georgia', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-sans); 
    font-size: 1rem; 
    line-height: 1.7; 
    color: var(--color-text); 
    background-color: var(--color-bg);
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 { 
    line-height: 1.2; 
    font-weight: 700; 
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    color: var(--color-dark);
}
h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; }
h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: var(--spacing-lg); }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: var(--spacing-md); line-height: 1.8; color: var(--color-text-light); }
a { color: var(--color-primary); text-decoration: none; transition: 0.25s ease; font-weight: 500; }
a:hover { color: var(--color-primary-dark); }
img, picture { max-width: 100%; height: auto; display: block; }

.container { 
    width: 100%; 
    max-width: 1320px; 
    margin: 0 auto; 
    padding: 0 var(--spacing-lg);
}

/* HEADER */
.site-header { 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    background: linear-gradient(135deg, var(--color-wood-dark) 0%, var(--color-charcoal) 100%);
    color: var(--color-wood-light);
    padding: var(--spacing-md) 0;
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.header-content { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: var(--spacing-lg); 
}
.logo { 
    font-size: 1.3rem; 
    font-weight: 800; 
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-list { 
    display: flex; 
    list-style: none; 
    gap: var(--spacing-lg); 
    flex-wrap: wrap;
}
.nav-link { 
    color: var(--color-wood-light); 
    font-weight: 600; 
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s;
}
.nav-link:hover { 
    color: var(--color-accent);
    text-shadow: 0 0 8px rgba(212, 165, 116, 0.3);
}
.header-phone { 
    display: flex; 
    align-items: center; 
    gap: var(--spacing-xs); 
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
}
.header-phone:hover { color: var(--color-accent-dark); }
.nav-toggle { 
    display: none; 
    flex-direction: column; 
    background: none; 
    border: none; 
    cursor: pointer; 
}
.nav-toggle span { 
    width: 25px; 
    height: 2.5px; 
    background-color: var(--color-accent); 
    margin: 5px 0; 
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .header-nav { 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background-color: var(--color-charcoal); 
        padding: var(--spacing-lg) var(--spacing-md); 
        display: none; 
        border-bottom: 3px solid var(--color-primary);
    }
    .header-nav.active { display: flex; flex-direction: column; }
    .nav-list { flex-direction: column; gap: var(--spacing-md); }
    .phone-text { display: none; }
}

/* BUTTONS */
.btn { 
    display: inline-block; 
    padding: var(--spacing-md) var(--spacing-lg); 
    border: 2px solid transparent;
    border-radius: 3px;
    font-family: inherit; 
    font-size: 0.95rem; 
    font-weight: 700; 
    cursor: pointer; 
    text-decoration: none; 
    text-align: center; 
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-primary { 
    background-color: var(--color-primary); 
    color: white;
    border-color: var(--color-primary);
}
.btn-primary:hover { 
    background-color: var(--color-primary-dark); 
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.3);
}
.btn-secondary { 
    background-color: transparent; 
    color: var(--color-primary); 
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover { 
    background-color: var(--color-primary); 
    color: white;
    transform: translateY(-3px);
}
.btn-sm { 
    padding: var(--spacing-sm) var(--spacing-md); 
    font-size: 0.8rem;
}
.btn-lg { 
    padding: var(--spacing-lg) var(--spacing-2xl); 
    font-size: 1.05rem;
}

/* HERO */
.hero { 
    position: relative; 
    isolation: isolate;
    min-height: clamp(560px, 78vh, 780px);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    overflow: hidden;
    margin-bottom: var(--spacing-3xl);
}
.hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: url('/assets/images/hero-main.jpg') center / cover no-repeat; 
    z-index: 0; 
    filter: brightness(0.5) saturate(0.8) sepia(0.15);
}
.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.72) 0%, rgba(26, 21, 13, 0.82) 100%);
    z-index: 1; 
}
.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
    padding: var(--spacing-3xl) var(--spacing-lg);
}
.hero-eyebrow { 
    font-size: 0.75rem; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    font-weight: 800; 
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
}
.hero h1,
.hero p,
.hero .hero-subtitle,
.hero .hero-description {
    color: #fff;
}
.hero h1 { 
    font-size: 4.2rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.hero-subtitle { 
    font-size: 1.5rem; 
    margin-bottom: var(--spacing-lg); 
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-description { 
    font-size: 1.1rem; 
    margin-bottom: var(--spacing-2xl); 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.9;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.hero .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}
.hero .btn-secondary:hover {
    background-color: #fff;
    color: var(--color-dark);
    border-color: #fff;
}
.hero-actions { 
    display: flex; 
    gap: var(--spacing-md); 
    justify-content: center; 
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}
.hero-trust { 
    display: flex; 
    gap: var(--spacing-xl); 
    justify-content: center; 
    flex-wrap: wrap; 
    font-size: 0.95rem;
    font-weight: 600;
}
.trust-item { 
    display: flex; 
    align-items: center; 
    gap: var(--spacing-xs);
}
.trust-icon { font-size: 1.8rem; }

/* SECTIONS */
section { 
    padding: var(--spacing-3xl) 0; 
}
section:nth-child(even) { 
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
}
section:nth-child(odd) {
    background-color: var(--color-bg);
}
.section-header { 
    text-align: center; 
    margin-bottom: var(--spacing-2xl);
}
.section-header h2 { 
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md);
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
.section-description { 
    max-width: 650px; 
    margin: 0 auto; 
    color: var(--color-text-light); 
    font-size: 1.05rem;
    line-height: 1.9;
}

/* PRODUCTS */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: var(--spacing-xl); 
    margin-top: var(--spacing-2xl);
}
.product-card { 
    background-color: var(--color-bg); 
    border: 1px solid var(--color-border); 
    border-top: 4px solid var(--color-primary);
    border-radius: 2px;
    overflow: hidden; 
    transition: all 0.3s ease;
    display: flex; 
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-card:hover { 
    box-shadow: 0 12px 36px rgba(139, 111, 71, 0.15);
    transform: translateY(-8px);
    border-top-color: var(--color-accent);
}
.product-image { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    background-color: var(--color-bg-light);
    filter: contrast(1.05);
}
.product-content { 
    padding: var(--spacing-lg); 
    flex: 1; 
    display: flex; 
    flex-direction: column;
}
.product-title { 
    font-size: 1.2rem; 
    margin-bottom: var(--spacing-md); 
    font-weight: 700;
    color: var(--color-primary);
}
.product-description { 
    flex: 1; 
    color: var(--color-text-light); 
    margin-bottom: var(--spacing-md); 
    font-size: 0.95rem;
    line-height: 1.8;
}
.product-features { 
    list-style: none; 
    margin-bottom: var(--spacing-lg); 
    font-size: 0.85rem;
}
.product-features li { 
    padding-left: 1.5rem; 
    position: relative; 
    margin-bottom: var(--spacing-sm); 
    color: var(--color-text-light);
}
.product-features li::before { 
    content: '▪'; 
    position: absolute; 
    left: 0; 
    color: var(--color-primary); 
    font-weight: bold;
}

/* TWO COLUMN */
.two-column { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: var(--spacing-3xl); 
    align-items: center;
}
@media (max-width: 1024px) { 
    .two-column { 
        grid-template-columns: 1fr; 
        gap: var(--spacing-xl);
    } 
}
.two-column-image { 
    width: 100%; 
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.two-column-image img { 
    width: 100%; 
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05);
}

/* FEATURES/BENEFITS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}
.feature-box {
    padding: var(--spacing-lg);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    text-align: left;
    transition: all 0.3s ease;
}
.feature-box:hover {
    background-color: var(--color-bg-light);
    border-left-color: var(--color-accent);
    transform: translateX(4px);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}
.feature-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 700;
}
.feature-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* FOOTER */
.site-footer { 
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-wood-dark) 100%);
    color: var(--color-wood-light); 
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-3xl);
    border-top: 3px solid var(--color-primary);
}
.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: var(--spacing-2xl); 
    margin-bottom: var(--spacing-2xl);
}
.footer-section h3, .footer-section h4 { 
    color: var(--color-accent); 
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-description, .footer-contact { 
    font-size: 0.9rem; 
    color: var(--color-wood-light);
    line-height: 1.8;
}
.footer-contact a {
    color: var(--color-accent);
}
.footer-links { 
    list-style: none;
}
.footer-links li { 
    margin-bottom: var(--spacing-sm);
}
.footer-links a { 
    color: var(--color-wood-light);
    transition: color 0.25s;
}
.footer-links a:hover { 
    color: var(--color-accent);
}
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: var(--spacing-lg); 
    font-size: 0.85rem; 
    color: rgba(212, 165, 116, 0.8);
}

/* FAQ */
.faq-container { 
    max-width: 800px; 
    margin: 0 auto;
}
.faq-item { 
    margin-bottom: var(--spacing-lg); 
    border: 1px solid var(--color-border);
    border-radius: 2px;
}
.faq-question { 
    padding: var(--spacing-lg); 
    background-color: var(--color-bg-light); 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.25s;
}
.faq-question:hover { 
    background-color: var(--color-bg-dark);
    padding-left: calc(var(--spacing-lg) + 4px);
}
.faq-toggle { 
    font-size: 1.2rem; 
    transition: transform 0.3s;
    color: var(--color-primary);
}
.faq-item.active .faq-toggle { 
    transform: rotate(180deg);
}
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { 
    max-height: 600px;
}
.faq-answer-content { 
    padding: var(--spacing-lg); 
    background-color: var(--color-bg); 
    color: var(--color-text-light);
    line-height: 1.9;
    font-size: 0.95rem;
    border-top: 1px solid var(--color-border);
}

/* CONTACT */
.contact-info {
    text-align: center;
}
.contact-info h3 {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}
.contact-info a {
    font-weight: 700;
    font-size: 1.1rem;
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-xl { margin-bottom: var(--spacing-xl); }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { min-height: 65vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
}

/* CONTACT MAP SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

.contact-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 0.25rem;
}

#kontakt iframe {
    width: 100% !important;
    height: 380px !important;
    border-radius: 4px !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    #kontakt iframe {
        min-height: 300px !important;
    }
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: rgba(212, 165, 116, 0.1);
    color: var(--color-accent);
    transition: all 0.25s ease;
}

.social-links a:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   SVG ICONS
   ============================================================ */
.trust-icon {
    width: 26px;
    height: 26px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.feature-icon {
    width: 34px;
    height: 34px;
    stroke: var(--color-primary);
    margin-bottom: var(--spacing-md);
    display: block;
}

.phone-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: var(--spacing-lg);
}

.step {
    padding: var(--spacing-lg);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(139, 111, 71, 0.14);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   OPENING HOURS
   ============================================================ */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px dashed rgba(212, 165, 116, 0.25);
}

.hours-item .day {
    font-weight: 600;
}

.hours-item .time {
    white-space: nowrap;
    opacity: 0.9;
}

/* Opening hours inside the contact section (light background) */
#kontakt .hours-item {
    border-bottom-color: var(--color-border);
    color: var(--color-text-light);
}

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

.footer-info a {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-info a:hover {
    color: white;
}


/* Footer readability */
.site-footer strong {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-description,
.footer-contact p {
    color: rgba(217, 204, 187, 0.92);
}

/* Contact: map column matches the info column height */
.contact-grid {
    align-items: stretch;
}

.contact-grid > div:last-child {
    display: flex;
    min-height: 520px;
}

#kontakt iframe {
    height: 100% !important;
    min-height: 520px;
}

@media (max-width: 1024px) {
    .contact-grid > div:last-child {
        min-height: 340px;
    }
    #kontakt iframe {
        min-height: 340px;
    }
}
