:root {
    --teal: #0a5c63;
    --teal-dark: #073840;
    --teal-light: #0d7a84;
    --gold: #c8a45a;
    --gold-light: #e0c07a;
    --cream: #faf8f4;
    --cream-dark: #f0ece4;
    --charcoal: #1a1a2e;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(10,92,99,0.08);
    --shadow-lg: 0 8px 48px rgba(10,92,99,0.12);
    --shadow-xl: 0 20px 60px rgba(10,92,99,0.15);
    --radius: 16px;
    --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

/* ========== NAV ========== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 92, 99, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 2rem;
    transition: all 0.3s ease;
}
nav.scrolled {
    background: rgba(10, 92, 99, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-mark {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--teal-dark);
}
.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}
.nav-logo-sub {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    padding: 8px 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--gold) !important;
    color: var(--teal-dark) !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; color: white; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ========== HERO (startpage) ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--teal-dark) 0%, var(--teal) 50%, #0a7a84 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(200,164,90,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,164,90,0.15);
    border: 1px solid rgba(200,164,90,0.3);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    width: 100%;
    max-width: 460px;
}
.hero-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.hero-card h3 { color: var(--white); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.hero-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.hero-tag {
    background: rgba(200,164,90,0.12);
    border: 1px solid rgba(200,164,90,0.2);
    color: var(--gold-light);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
}

/* ========== SUBPAGE HERO ========== */
.subpage-hero {
    background: linear-gradient(165deg, var(--teal-dark) 0%, var(--teal) 50%, #0a7a84 100%);
    padding: 10rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}
.subpage-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,164,90,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.subpage-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.subpage-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.subpage-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 700px;
    line-height: 1.8;
}

/* ========== CONTENT ========== */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}
.content > p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1.75rem;
}
.content > p strong { color: var(--teal-dark); font-weight: 600; }
.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
}
.content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.content ul, .content ol {
    margin: 1.25rem 0 1.75rem 1.5rem;
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.9;
}
.content ul li { margin-bottom: 0.6rem; }
.content ul li::marker { color: var(--gold); }

/* ========== TWO COL ========== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
}
.two-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
    margin-top: 0;
}
.two-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.two-col ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}
.two-col ul li::before {
    content: '—';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.two-col ul li:last-child { border-bottom: none; }

/* ========== CARD GRID ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin: 2.5rem 0;
}
.card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }
.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    margin-top: 0;
}
.card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}
.card .btn-primary { margin-top: 1.25rem; }

/* ========== CTA BOX ========== */
.cta-box {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    margin: 3.5rem 0 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,164,90,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    margin-top: 0;
    position: relative;
}
.cta-box p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
}
.cta-box .btn-primary {
    background: var(--gold);
    color: var(--teal-dark);
    position: relative;
}
.cta-box .btn-primary:hover { background: var(--gold-light); }

/* ========== INFO BOX ========== */
.info-box {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}
.info-box p { margin: 0; font-size: 1rem; color: var(--text-light); line-height: 1.8; }
.info-box strong { color: var(--teal-dark); }

/* ========== TAGS ========== */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,92,99,0.06);
    border: 1px solid rgba(10,92,99,0.1);
    color: var(--teal);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0.25rem;
}
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }

/* ========== DATA TABLE ========== */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}
.data-table thead { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.data-table th {
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.data-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(10,92,99,0.02); }
.data-table td strong { color: var(--teal-dark); font-weight: 600; }

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    margin: 2.5rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), rgba(200,164,90,0.15));
    border-radius: 3px;
}
.tl-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
}
.tl-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    transform: translateX(0.5px);
    box-shadow: 0 0 0 4px rgba(200,164,90,0.15);
}
.tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 0.5rem;
}
.tl-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}
.timeline-compact .tl-item { margin-bottom: 1.5rem; }
.timeline-compact .tl-year { font-size: 1.1rem; }
.timeline-compact .tl-text { font-size: 0.95rem; }

/* ========== SECTION COMMON ========== */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 1rem;
}
.section-label-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* ========== SORTIMENT ========== */
.sortiment { background: var(--white); }
.sortiment-header { text-align: center; margin-bottom: 4rem; }
.sortiment-header .section-desc { margin: 0 auto; }
.sortiment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.sortiment-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.sortiment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    opacity: 0;
    transition: opacity 0.3s;
}
.sortiment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10,92,99,0.1);
}
.sortiment-card:hover::before { opacity: 1; }
.sortiment-icon {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    display: block;
}
.sortiment-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.sortiment-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
.sortiment-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}
.sortiment-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ========== MARKEN ========== */
.marken { background: var(--cream); }
.marken-header { text-align: center; margin-bottom: 3.5rem; }
.marken-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.marken-logo {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    min-width: 140px;
}
.marken-logo:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.marken-logo span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    letter-spacing: 1px;
}

/* ========== STANDORTE ========== */
.standorte { background: var(--white); }
.standorte-header { text-align: center; margin-bottom: 4rem; }
.standorte-header .section-desc { margin: 0 auto; }
.standorte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.standort-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.standort-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.standort-region {
    display: inline-block;
    background: rgba(10,92,99,0.08);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.standort-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.standort-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.standort-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.standort-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== GESCHICHTE ========== */
.geschichte {
    background: linear-gradient(165deg, var(--teal-dark), var(--teal));
    color: var(--white);
}
.geschichte .section-label { color: var(--gold-light); }
.geschichte .section-title { color: var(--white); }
.geschichte .section-desc { color: rgba(255,255,255,0.6); }
.geschichte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}
.geschichte-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--gold-light);
}
.geschichte-text p {
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* ========== CTA ========== */
.cta {
    background: var(--cream);
    text-align: center;
    padding: 5rem 2rem;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.cta p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.cta-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.cta-email:hover { color: var(--teal-light); }

/* ========== FOOTER ========== */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.5);
    padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: rgba(255,255,255,0.4);
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--teal-dark);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,164,90,0.3);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--teal-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}
.mobile-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero h1 { font-size: 3rem; }
    .hero-visual { display: none; }
    .geschichte-grid { grid-template-columns: 1fr; gap: 3rem; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .subpage-hero h1 { font-size: 2.6rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 2.4rem; }
    .hero-stats { gap: 2rem; }
    .section-title { font-size: 2rem; }
    .sortiment-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .subpage-hero { padding: 8rem 1.5rem 3rem; }
    .subpage-hero h1 { font-size: 2rem; }
    .content { padding: 2.5rem 1.5rem 3rem; }
    .content h2 { font-size: 1.7rem; }
    .card-grid { grid-template-columns: 1fr; }
    .data-table { font-size: 0.85rem; }
    .data-table th, .data-table td { padding: 0.75rem; }
}
@media (max-width: 480px) {
    .sortiment-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
}
