/* ============================================================
   TOGETHER GmbH – ZENTRALES STYLESHEET
   MIT SYSTEM-SCHRIFTEN (kein Download nötig, DSGVO-konform)
   ============================================================ */

/* ===== ROOT VARIABLEN ===== */
:root {
    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --dark: #1A1A1A;
    --charcoal: #2D2D2D;
    --light: #F8F6F3;
    --cream: #F0EDE8;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --border: #E5E2DD;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== GRUNDLAGEN ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===== SYSTEM-SCHRIFTEN (DSGVO-konform, kein Download) ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                 Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.2;
}

/* ============================================================
   NAVIGATION – EINFACH & FUNKTIONIERT
   ============================================================ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 3px;
}
.logo img {
    height: 30px;
    width: auto;
    display: block;
}
.logo span { color: var(--gold); }

/* ===== DESKTOP NAVIGATION ===== */
@media (min-width: 769px) {
    .mobile-only { display: none !important; }
    .desktop-only { display: inline-block !important; }
    .mobile-toggle { display: none !important; }

    .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .nav-links > li {
        position: relative;
        list-style: none;
    }
    
    /* Hauptpunkt (nicht klickbar) */
    .nav-main-link {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text);
        padding: 5px 0;
        cursor: default;
        transition: var(--transition);
    }
    .nav-main-link:hover {
        color: var(--gold);
    }
    
    /* Untermenü (Dropdown) */
    .nav-sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        min-width: 220px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border: 1px solid var(--border);
        padding: 8px 0;
        list-style: none;
        z-index: 999;
        margin: 0;
    }
    .nav-item:hover .nav-sub-menu {
        display: block;
    }
    .nav-sub-menu li {
        display: block;
        margin: 0;
        padding: 0;
    }
    .nav-sub-menu a {
        display: block;
        padding: 10px 24px;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.5px;
        text-transform: none;
        color: var(--text);
        text-decoration: none;
        white-space: nowrap;
        border: none;
        transition: var(--transition);
    }
    .nav-sub-menu a:hover {
        background: var(--light);
        color: var(--gold);
    }
    .nav-sub-menu a::after {
        display: none !important;
    }

    /* CTA-Button */
    .nav-cta {
        background: var(--gold);
        color: var(--white) !important;
        padding: 12px 28px !important;
        border-radius: 0;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: var(--transition);
    }
    .nav-cta:hover {
        background: var(--dark);
        color: var(--white) !important;
    }
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    .mobile-toggle { display: flex !important; }

    .mobile-toggle {
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-toggle span {
        width: 28px;
        height: 2px;
        background: var(--dark);
        transition: var(--transition);
        display: block;
    }

    .nav-links {
        display: none !important;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 30px;
        gap: 5px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        z-index: 1000;
        height: calc(100vh - 80px);
        overflow-y: auto;
        margin: 0;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links li {
        width: 100% !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Hauptlink (klickbar, aber führt nirgendwo hin) */
    .nav-main-link {
        display: block !important;
        padding: 12px 0 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: var(--text) !important;
        text-decoration: none !important;
        border-bottom: 1px solid var(--border) !important;
        cursor: default !important;
    }

    /* Untermenü (immer sichtbar) */
    .nav-sub-menu {
        display: block !important;
        padding: 5px 0 10px 20px !important;
        margin: 0 !important;
        list-style: none !important;
    }
    .nav-sub-menu li {
        padding: 0 !important;
        margin: 0 !important;
    }
    .nav-sub-menu a {
        display: block !important;
        padding: 8px 16px !important;
        font-size: 14px !important;
        color: var(--text-light) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        cursor: pointer !important;
    }
    .nav-sub-menu a:last-child {
        border-bottom: none !important;
    }
    .nav-sub-menu a:hover {
        color: var(--gold) !important;
        background: var(--cream) !important;
    }

    /* CTA-Button im mobilen Menü */
    .nav-cta {
        display: inline-block !important;
        margin-top: 15px !important;
        text-align: center !important;
        background: var(--gold);
        color: var(--white) !important;
        padding: 12px 28px !important;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 0;
        transition: var(--transition);
    }
    .nav-cta:hover {
        background: var(--dark);
        color: var(--white) !important;
    }
}

/* ============================================================
   MOBILE TOGGLE (Standardmäßig ausgeblendet)
   ============================================================ */
.mobile-toggle {
    display: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}
.section-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark);
    margin-bottom: 20px;
}
.section-header p {
    color: var(--text-light);
    font-size: 17px;
    font-weight: 300;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="60" fill="none" stroke="%23C9A96E" stroke-width="0.3" opacity="0.15"/></svg>');
    background-size: cover;
    opacity: 0.3;
}
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid var(--gold);
    padding: 8px 20px;
}
.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 300;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), rgba(26, 26, 26, 0.1));
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.4),
        inset 0 0 40px rgba(201, 169, 110, 0.05);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    position: relative;
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold-light));
    border-radius: 6px;
    z-index: -1;
    opacity: 0.12;
    filter: blur(6px);
}
.hero-image:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 50px 90px rgba(0,0,0,0.45),
        inset 0 0 50px rgba(201, 169, 110, 0.06);
}
.hero-image img {
    display: none;
}
.hero-badge-abs {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    padding: 160px 40px 100px;
    text-align: center;
    color: var(--white);
    position: relative;
}

/* ============================================================
   OVERVIEW (Startseite)
   ============================================================ */
.series-overview { background: var(--light); }
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.overview-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}
.overview-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.overview-card .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}
.overview-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}
.overview-card .series-code {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.overview-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}
.overview-card .btn-small {
    margin-top: 20px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}
.overview-card .btn-small:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison { background: var(--white); }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison-table th {
    background: var(--dark);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}
.comparison-table tr:hover td {
    background: var(--light);
}
.comparison-table .highlight-row td {
    background: rgba(201, 169, 110, 0.06);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-card {
    padding: 50px 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 50px; height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 20px;
}
.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}
.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--light); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.product-image {
    height: 320px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.product-image img:active {
    transform: scale(1.5);
    z-index: 10;
    position: relative;
}
.product-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}
.product-info { 
    padding: 35px; 
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-info h3 {
    font-size: 26px;
    margin-bottom: 6px;
    color: var(--dark);
}
.product-info .subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 300;
}
.product-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
    flex: 1;
}
.product-specs {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.spec { text-align: center; }
.spec-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
}
.spec-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: none;
}

/* ============================================================
   COLOR SWATCHES
   ============================================================ */
.product-colors {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.color-swatch {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: var(--transition);
    cursor: default;
}
.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--gold);
}
.color-group {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
}
.color-group-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}
.wood-swatch {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid var(--border);
    transition: var(--transition);
    cursor: default;
}
.wood-swatch:hover {
    transform: scale(1.1);
    border-color: var(--gold);
}

/* ============================================================
   SELECTORS (Height, Wood, Foot)
   ============================================================ */
.height-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}
.height-btn {
    padding: 14px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.height-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.height-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.height-btn small {
    display: block;
    font-weight: 300;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}
.height-btn.active small {
    color: rgba(255,255,255,0.7);
}

.wood-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}
.wood-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}
.wood-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.wood-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.wood-btn small {
    display: block;
    font-weight: 300;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px;
}
.wood-btn.active small {
    color: rgba(255,255,255,0.7);
}

.foot-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}
.foot-btn {
    padding: 14px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.foot-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.foot-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.foot-btn small {
    display: block;
    font-weight: 300;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}
.foot-btn.active small {
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   DELIVERY CONTENT
   ============================================================ */
.delivery-content {
    background: var(--light);
    padding: 60px 40px;
    text-align: center;
}
.delivery-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    margin-bottom: 20px;
}
.delivery-content p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.delivery-item {
    background: var(--white);
    padding: 30px 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.delivery-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.delivery-item .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}
.delivery-item h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
}
.delivery-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================
   USAGE MODES
   ============================================================ */
.usage-modes {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.usage-modes h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    margin-bottom: 15px;
}
.usage-modes > p {
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.usage-card {
    background: var(--light);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.usage-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.usage-card .icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.usage-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
}
.usage-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   SPECIAL COLORS CTA
   ============================================================ */
.special-colors {
    background: var(--light);
    text-align: center;
    padding: 80px 40px;
}
.special-colors h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    margin-bottom: 20px;
}
.special-colors p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

/* ============================================================
   SERIES INFO
   ============================================================ */
.series-info {
    background: var(--light);
    padding: 60px 40px;
    text-align: center;
}
.series-info h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    margin-bottom: 20px;
}
.series-info p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.series-info .highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 30px auto 0;
}
.series-info .highlight-item {
    background: var(--white);
    padding: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.series-info .highlight-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.series-info .highlight-item h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
}
.series-info .highlight-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================
   WOOD INFO
   ============================================================ */
.wood-info {
    background: var(--light);
    padding: 60px 40px;
    text-align: center;
}
.wood-info h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    margin-bottom: 20px;
}
.wood-info p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.wood-info .note {
    background: var(--white);
    padding: 25px 30px;
    border-left: 4px solid var(--gold);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.wood-info .note strong {
    color: var(--dark);
}
.wood-info .note p {
    margin: 0;
    font-size: 15px;
}

/* ============================================================
   LEGAL CONTENT (Datenschutz, Impressum, etc.)
   ============================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}
.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.legal-block h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 500;
}
.legal-block h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 25px 0 15px 0;
    font-weight: 400;
}
.legal-block h4:first-of-type {
    margin-top: 0;
}
.legal-block p,
.legal-block address {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    font-style: normal;
}
.legal-block address strong {
    color: var(--text);
}
.legal-block p strong {
    color: var(--text);
}
.legal-block a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}
.legal-block a:hover {
    text-decoration: underline;
    color: var(--gold-light);
}
.legal-block ul {
    margin: 10px 0 10px 20px;
    color: var(--text-light);
}
.legal-block ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.8;
}
.legal-block p + p {
    margin-top: 15px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    padding: 35px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.faq-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
}
.faq-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   BUFFET SHOWCASE
   ============================================================ */
.buffet-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}
.buffet-content { padding: 80px; max-width: 700px; margin-left: auto; }
.buffet-content h2 { font-size: 42px; margin-bottom: 25px; color: var(--dark); }
.buffet-content p { color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.buffet-list { list-style: none; margin: 30px 0; }
.buffet-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}
.buffet-list li::before {
    content: '—';
    color: var(--gold);
    font-weight: 600;
}
.buffet-visual {
    background: var(--dark);
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buffet-visual::after {
    content: 'Buffetsystem\nVisualisierung';
    color: rgba(255,255,255,0.15);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    text-align: center;
    white-space: pre-line;
}

/* ============================================================
   VITRINE
   ============================================================ */
.vitrine { background: var(--light); }
.vitrine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.vitrine-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.vitrine-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}
.vitrine-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}
.vitrine-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--dark); color: var(--white); }
.about .section-header h2 { color: var(--white); }
.about .section-header p { color: rgba(255,255,255,0.6); }
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--gold);
    opacity: 0.3;
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}
.timeline-item:nth-child(even) .timeline-year { order: 2; text-align: left; }
.timeline-item:nth-child(even) .timeline-content { order: 1; text-align: right; }
.timeline-year {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    color: var(--gold);
    opacity: 0.4;
    font-weight: 300;
    text-align: right;
}
.timeline-content h4 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}
.timeline-content p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 50px 30px;
}
.value-card .value-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}
.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    background: var(--gold);
    text-align: center;
    padding: 100px 40px;
}
.cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}
.cta p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn-primary {
    background: var(--white);
    color: var(--dark);
}
.cta .btn-primary:hover { background: var(--dark); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 80px 40px 40px;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 25px;
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 40px;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    opacity: 0.6;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 14px; line-height: 1.6; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-btn-accept {
    background: var(--gold);
    color: var(--white);
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn-decline:hover { border-color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; }
    .hero p { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .overview-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .delivery-grid { grid-template-columns: 1fr 1fr; }
    .usage-grid { grid-template-columns: 1fr 1fr; }
    .vitrine-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .buffet-showcase { grid-template-columns: 1fr; }
    .buffet-content { padding: 60px 40px; margin: 0 auto; }
    .series-info .highlight { grid-template-columns: 1fr; }
    .comparison-table { font-size: 12px; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 12px; letter-spacing: 1px; }
    .timeline::before { left: 20px; }
    .timeline-item { grid-template-columns: 1fr; padding-left: 60px; }
    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(even) .timeline-content { text-align: left; order: unset; }
}

@media (max-width: 768px) {
    .section { padding: 80px 20px; }
    .hero { padding-top: 80px; }
    .hero-inner { padding: 0 20px; }
    .hero-visual { max-width: 100%; }
    .hero h1 { font-size: 38px; }
    .page-hero { padding: 120px 20px 80px; }
    .overview-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .vitrine-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: 1fr; }
    .usage-grid { grid-template-columns: 1fr; }
    .height-selector { flex-direction: column; align-items: center; }
    .height-btn { width: 100%; max-width: 280px; text-align: center; }
    .wood-selector { flex-direction: column; align-items: center; }
    .wood-btn { width: 100%; max-width: 200px; text-align: center; }
    .foot-selector { flex-direction: column; align-items: center; }
    .foot-btn { width: 100%; max-width: 280px; text-align: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer { padding: 60px 20px 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-bottom a { margin: 0 12px; }
    .cookie-banner { flex-direction: column; text-align: center; padding: 20px; }
    .cookie-buttons { width: 100%; justify-content: center; }
    .series-info .highlight { grid-template-columns: 1fr; }
    .buffet-content { padding: 40px 20px; }
    .comparison-table { font-size: 11px; }
    .comparison-table th, .comparison-table td { padding: 8px 10px; display: block; width: 100%; }
    .comparison-table tr { display: block; margin-bottom: 15px; border: 1px solid var(--border); }
    .comparison-table th { display: none; }
    .comparison-table td { border: none; padding: 6px 12px; }
    .comparison-table td:first-child { font-weight: 600; background: var(--light); }
    .legal-content { padding: 0; }
}

@media (max-width: 480px) {
    .nav-inner { padding: 0 20px; }
    .logo { font-size: 22px; }
    .hero h1 { font-size: 28px; }
    .page-hero h1 { font-size: 28px; }
    .legal-block h3 { font-size: 20px; }
    .legal-block h4 { font-size: 16px; }
}