        :root {
            --bg-dark: #1a0808;
            --bg-light-dark: #260e0e;
            --text-light: #e0e0e0;
            --text-muted: #a0a0a0;
            --accent-red: #A15B5B;
            --accent-gray: #3d2020;
            --white: #ffffff;
            --whatsapp-green: #25D366;
            --accent-gold: #d4948c;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            overflow-x: hidden;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

        /* --- HEADER & NAV (SPLIT LOOK) --- */
        header {
            padding: 10px 0;
            background: rgba(26, 8, 8, 0.92); /* Transparent */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--accent-gray);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: grid;
            grid-template-columns: 1fr auto 1fr; /* Links - Logo - Rechts */
            align-items: center;
        }

        .nav-group {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-group.left { justify-content: flex-end; padding-right: 40px; }
        .nav-group.right { justify-content: flex-start; padding-left: 40px; }

        .nav-group a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
        }

        .nav-group a:hover, .nav-group a.active { color: var(--accent-red); }

        .site-logo {
            height: 120px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .site-logo:hover { transform: scale(1.05); }

        /* --- HERO SLIDER --- */
        .hero {
            height: 85vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .slider-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
        }

        /* Slider – slides are injected by js/main.js; active class drives visibility */
        .slide {
            position: absolute;
            width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active { opacity: 1; }

        .slide video {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .hero-logo {
            position: absolute;
            top: 43%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: clamp(320px, 48vw, 600px);
            opacity: 0.40;
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2rem, 5vw, 4rem);
            color: var(--white);
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(0,0,0,0.8);
        }

        /* --- ARTIST SECTION --- */
        .artist-preview { padding: 100px 0; }
        .artist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .artist-card {
            position: relative;
            background: var(--bg-light-dark);
            border: 1px solid var(--accent-gray);
            overflow: hidden;
            transition: 0.4s;
        }

        .artist-card:hover { border-color: var(--accent-red); }

        .artist-card img {
            width: 100%; height: 550px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: 0.6s ease;
        }

        .artist-card:hover img { filter: grayscale(0%); transform: scale(1.03); }

        .artist-info { padding: 30px; text-align: center; }
        .artist-info h3 { font-family: 'Cinzel', serif; font-size: 1.8rem; margin-bottom: 10px; }
        .artist-info span { color: var(--accent-red); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }

        /* --- STICKY INSTAGRAM BUTTON --- */
        .ig-sticky {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .ig-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 15px;
            transform: translateY(20px);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s all ease;
        }

        .ig-sticky:hover .ig-options,
        .ig-sticky.active .ig-options {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .ig-btn {
            background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            white-space: nowrap;
            transition: 0.3s;
        }

        .ig-btn:hover { transform: scale(1.05); filter: brightness(1.1); }

        .ig-main-trigger {
            width: 60px; height: 60px;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            transition: transform 0.2s;
        }

        .ig-main-trigger:hover { transform: scale(1.1); }
        .ig-main-trigger svg { width: 28px; fill: white; }

        /* --- MOBILE ADAPTATION --- */
        @media (max-width: 900px) {
            nav { grid-template-columns: 1fr; text-align: center; }
            .nav-group { flex-direction: column; gap: 15px; padding: 20px 0; align-items: center; }
            .nav-group.left, .nav-group.right { justify-content: center; padding: 0; }
            .site-logo { height: 80px; order: -1; } /* Logo nach oben */
            .artist-grid { grid-template-columns: 1fr; }
        }
        /* --- FOOTER STYLES --- */
.site-footer {
    background-color: var(--bg-light-dark);
    border-top: 1px solid var(--accent-gray);
    padding: 60px 0 20px 0;
    margin-top: 50px;
    color: var(--text-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    filter: grayscale(100%);
}

.footer-section h4 {
    color: var(--white);
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: var(--accent-red);
}

.social-links a {
    color: var(--text-light);
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent-red);
}

.footer-bottom {
    border-top: 1px solid var(--accent-gray);
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Mobile Fix für den Footer */
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-links-container {
        align-items: center;
    }

    .hero-content h1 {
        font-size: clamp(1rem, 5vw, 2rem);
        white-space: nowrap;
    }
}

/* --- ARTIST CARD BUTTON UPDATE --- */
.artist-info .portfolio-btn {
    display: inline-block;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid var(--accent-red); /* Roter Rand */
    border-radius: 5px; /* Leicht abgerundet */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.artist-info .portfolio-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--accent-red);
    z-index: -1;
    transition: all 0.3s ease-out;
}

.artist-info .portfolio-btn:hover {
    color: var(--white);
    border-color: var(--accent-red);
}

.artist-info .portfolio-btn:hover::after {
    height: 100%;
}

/* --- FOOTER INSTAGRAM UPDATE --- */
.site-footer {
    padding-bottom: 30px; /* Mehr Platz unten */
}

.footer-insta-area {
    margin-top: 50px;
    margin-bottom: 30px;
    border-top: 1px solid #111;
    padding-top: 40px;
    text-align: center;
}

.footer-insta-area h4 {
    color: var(--white);
    font-family: 'Cinzel', serif;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
}

.insta-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Wichtig für Mobile */
}

.insta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-light-dark);
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 25px;
    border: 1px solid var(--accent-gray);
    border-radius: 5px;
    transition: all 0.3s ease;
    width: min-content; /* Verhindert volle Breite */
    white-space: nowrap;
}

.insta-btn svg {
    width: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.insta-btn span {
    font-size: 0.9rem;
    font-weight: bold;
}

.insta-btn:hover {
    border-color: var(--accent-red);
    background-color: var(--bg-light-dark);
    color: var(--white);
}

.insta-btn:hover svg {
    transform: scale(1.1);
}

/* --- MOBILE ADAPTATION FOR NEW FOOTER --- */
@media (max-width: 600px) {
    .insta-links-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .insta-btn {
        width: 100%; /* Volle Breite auf Mobile */
        justify-content: center;
    }
}

/* --- HAMBURGER LOGIK & DESKTOP HIDING --- */
.nav-toggle {
    display: none; /* Checkbox immer verstecken */
}

.hamburger {
    display: none; /* Auf Desktop versteckt */
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

.mobile-menu {
    display: none; /* Standardmäßig aus auf Desktop */
}

/* --- HILFSKLASSE FÜR MOBILE SPACER --- */
.desktop-only-reverse { display: none; } /* Standardmäßig versteckt */

/* --- MOBILE OPTIMIERUNG (Breakpoint 900px oder kleiner) --- */
@media (max-width: 900px) {
    /* Header & Nav Layout */
    nav {
        display: flex;
        justify-content: space-between; /* Verteilt Spacer - Logo - Hamburger */
        align-items: center;
        /* height: 80px;  <-- GELÖSCHT! Verursachte das Herauswagen */
        padding: 15px 20px; /* Nutze Padding, um die Höhe flexibel zu machen */
    }

    .desktop-only {
        display: none; /* Versteckt die Desktop-Links */
    }

    .desktop-only-reverse {
        display: block; /* Zeigt den Spacer auf Mobile */
        width: 30px; /* Gleiche Breite wie Hamburger für perfekte Zentrierung */
    }

    /* NEUE LOGO-GRÖSSE UND POSITIONIERUNG */
    .site-logo {
        height: 72px; /* <-- AKTUALISIERT! (60px * 1.2 = 72px, also 20% größer) */
        width: auto;
        /* position: absolute;  <-- GELÖSCHT! Führt oft zu Überlauf */
        /* left: 50%;           <-- GELÖSCHT! */
        /* transform: ...;     <-- GELÖSCHT! */
    }

    /* Hamburger Positionierung */
    .hamburger {
        display: flex; /* Jetzt sichtbar */
        position: relative; /* Nicht mehr absolut, wird durch flex positioniert */
        right: 0;
        width: 30px; /* Feste Breite für den Spacer-Vergleich */
    }

    /* Das ausklappbare Menü */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: rgba(38, 14, 14, 0.99); /* Fast deckend */
        backdrop-filter: blur(15px);
        padding-top: 100px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
        z-index: 2000;
        border-left: 1px solid var(--accent-red);
    }

    .mobile-menu ul {
        list-style: none;
        text-align: center;
    }

    .mobile-menu ul li {
        margin: 30px 0;
    }

    .mobile-menu ul a {
        text-decoration: none;
        color: var(--white);
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    /* Öffnen-Animation */
    .nav-toggle:checked ~ .mobile-menu {
        transform: translateX(0);
        visibility: visible;
    }

    /* Hamburger zu "X" Animation */
    .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

    /* --- ARTIST CARDS MOBILE ABSTAND --- */
    .artist-preview {
        padding: 60px 30px; /* Erhöhter Seitenabstand zum Rand */
    }

    .artist-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Mehr Platz zwischen den Karten untereinander */
    }

    .artist-card {
        max-width: 500px; /* Damit die Karten auf Tablets nicht riesig werden */
        margin: 0 auto;  /* Zentriert die Karten im Grid */
    }
}

/* --- SUB-HERO (Unterseiten) --- */
.hero-sub {
    height: 40vh;
    background: linear-gradient(rgba(26,8,8,0.72), rgba(26,8,8,0.72)), url('img/slider/slider2.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- ARTIST DETAIL CARDS --- */
.artist-detail-list {
    padding: 80px 20px;
}

.artist-detail-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.artist-detail-card.reverse {
    flex-direction: row-reverse;
}

.artist-image {
    flex: 1;
}

.artist-image img {
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--accent-gray);
    filter: grayscale(100%);
    transition: 0.5s;
}

.artist-detail-card:hover .artist-image img {
    filter: grayscale(0%);
    border-color: var(--accent-red);
}

.artist-text {
    flex: 1;
}

.artist-text span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.artist-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.artist-text p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.artist-actions {
    display: flex;
    gap: 20px;
}

.wa-btn-secondary {
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid var(--accent-red);
    padding: 5px 0;
    font-size: 0.9rem;
    transition: 0.3s;
}

.wa-btn-secondary:hover {
    color: var(--accent-red);
}

.ig-btn-secondary {
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid #e1306c;
    padding: 5px 0;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ig-btn-secondary:hover {
    color: #e1306c;
}

.ig-btn-secondary svg {
    flex-shrink: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .artist-detail-card, .artist-detail-card.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .artist-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* --- ARTIST PAGE LAYOUT --- */
.artists-hero {
    height: 40vh;
    background: linear-gradient(rgba(26,8,8,0.72), rgba(26,8,8,0.72)), url('img/slider/slider1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.artist-showcase {
    padding: 100px 20px;
}

.artist-profile {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.artist-profile.reverse {
    flex-direction: row-reverse;
}

.artist-image-box {
    flex: 1;
}

.artist-image-box img {
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--accent-gray);
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.artist-profile:hover .artist-image-box img {
    filter: grayscale(0%);
    border-color: var(--accent-red);
}

.artist-description {
    flex: 1;
}

.artist-description span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.artist-description h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin: 15px 0;
}

.artist-description p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

/* --- GLOBAL PORTFOLIO BUTTON STYLE --- */
.portfolio-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--accent-red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
    background: transparent;
}

.portfolio-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--accent-red);
    z-index: -1;
    transition: 0.3s ease;
}

.portfolio-btn:hover::after {
    height: 100%;
}

.portfolio-btn:hover {
    color: var(--white);
}

/* --- MOBILE ARTIST PAGE --- */
@media (max-width: 900px) {
    .artist-profile, .artist-profile.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .artist-description p {
        margin: 0 auto 30px auto;
    }
}

/* --- PORTFOLIO PAGE STYLES --- */
.portfolio-hero {
    padding: 80px 0 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--accent-gray);
    background: linear-gradient(to bottom, #1a0808, var(--bg-dark));
}

.portfolio-hero span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.portfolio-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 10px 0;
}

/* Galerie Grid */
.portfolio-gallery {
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-light-dark);
    border: 1px solid var(--accent-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* CTA & Back Button */
.cta-area {
    margin-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--white);
}

/* --- MOBILE GALLERY FIX --- */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Bilder nebeneinander auf Mobile */
        gap: 10px;
    }
    
    .portfolio-gallery {
        padding: 40px 10px; /* Weniger Rand auf kleinen Displays */
    }
}


/* --- ARTIST DETAIL VIEW --- */
.artist-detail-header {
    padding: 60px 20px;
    margin-top: 20px;
}

.detail-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-light-dark);
    padding: 40px;
    border: 1px solid var(--accent-gray);
}

.detail-image {
    flex: 0 0 350px; /* Feste Breite für das Portrait auf Desktop */
}

.detail-image img {
    width: 100%;
    border: 1px solid var(--accent-red);
    display: block;
}

.detail-text {
    flex: 1;
}

.detail-text span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.detail-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin: 10px 0 20px 0;
}

.detail-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Galerie Sektion */
.section-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    margin: 60px 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.5rem;
    color: var(--white);
}

.back-area {
    margin-top: 50px;
    text-align: center;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--accent-red);
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 900px) {
    .detail-grid {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 30px;
    }

    .detail-image {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
    }

    .detail-text h1 {
        font-size: 2rem;
    }
}

/* --- ANFAHRT PAGE --- */
.anfahrt-section {
    padding: 80px 20px;
}

.anfahrt-grid {
    display: flex;
    gap: 60px;
    min-height: 500px;
}

.anfahrt-info {
    flex: 1;
}

.anfahrt-info span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.anfahrt-info h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin: 10px 0 40px 0;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.info-block p {
    color: var(--text-muted);
}

.anfahrt-map {
    flex: 1.5;
    background: var(--bg-light-dark);
    border: 1px solid var(--accent-gray);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* --- MOBILE ANFAHRT --- */
@media (max-width: 900px) {
    .anfahrt-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .anfahrt-info h1 {
        font-size: 2.2rem;
    }
    
    .anfahrt-map {
        height: 350px;
    }
}

/* ─── STANDARDIZED FOOTER SOCIAL LINKS ──────────────────────────────────── */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-link-item:hover { color: var(--accent-red); }

.social-link-item svg { flex-shrink: 0; }

/* ─── LEGAL PAGES ───────────────────────────────────────────────────────── */
.legal-page {
    padding: 60px 20px 80px;
    max-width: 860px;
}

.legal-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-gray);
}

.legal-block {
    margin-bottom: 36px;
}

.legal-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.legal-block p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block a {
    color: var(--accent-red);
    text-decoration: none;
    word-break: break-all;
}

.legal-block a:hover { text-decoration: underline; }

/* ─── NEWS PAGE ─────────────────────────────────────────────────────────── */
.news-section {
    padding: 60px 20px 100px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-light-dark);
    border: 1px solid var(--accent-gray);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.news-card:hover { border-color: var(--accent-red); }

.news-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a0c0c;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: filter 0.4s ease;
}

.news-card:hover .news-card-image img { filter: grayscale(0%); }

.news-card-no-image {
    background: linear-gradient(135deg, #1a0c0c 0%, #2a1212 100%);
}

.news-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.news-meta time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.news-tag {
    display: inline-block;
    background: rgba(161, 91, 91, 0.15);
    color: var(--accent-red);
    padding: 2px 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(161, 91, 91, 0.3);
}

.news-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.news-read-more {
    align-self: flex-start;
    background: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
}

/* ─── POST MODAL ────────────────────────────────────────────────────────── */
.post-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.post-modal.active { display: flex; align-items: center; justify-content: center; }

.post-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 8, 8, 0.88);
    backdrop-filter: blur(4px);
}

.post-modal-inner {
    position: relative;
    background: var(--bg-light-dark);
    border: 1px solid var(--accent-gray);
    width: 90%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px 40px;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

.modal-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.modal-meta time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 28px;
    line-height: 1.3;
}

.modal-body {
    color: var(--text-muted);
    line-height: 1.8;
}

.modal-body p { margin-bottom: 16px; }
.modal-body strong { color: var(--white); }

@media (max-width: 600px) {
    .post-modal-inner { padding: 32px 20px; }
    .news-grid { grid-template-columns: 1fr; }
}

/* ─── ABOUT US PAGE ─────────────────────────────────────────────────────── */
.about-story {
    padding: 80px 20px;
}

.about-story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-story-text {
    flex: 1;
}

.about-story-text span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.about-story-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin: 12px 0 20px;
}

.about-story-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-visual {
    flex: 1;
}

.about-story-visual img {
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--accent-gray);
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.about-story-visual img:hover { filter: grayscale(0%); }

/* Values */
.about-values {
    background: var(--bg-light-dark);
    padding: 80px 20px;
    border-top: 1px solid var(--accent-gray);
    border-bottom: 1px solid var(--accent-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 20px;
}

.value-icon {
    color: var(--accent-red);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Artists preview on About page */
.about-artists {
    padding: 80px 20px;
}

/* Studio section */
.about-studio {
    background: var(--bg-light-dark);
    border-top: 1px solid var(--accent-gray);
    padding: 80px 20px;
}

.about-studio-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-studio-text {
    flex: 1;
}

.about-studio-text span {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.about-studio-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin: 12px 0 20px;
}

.about-studio-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-studio-map {
    flex: 1;
}

.about-studio-map img {
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--accent-gray);
    filter: grayscale(30%);
}

@media (max-width: 900px) {
    .about-story-grid,
    .about-studio-inner { flex-direction: column; gap: 30px; text-align: center; }

    .about-story-visual img,
    .about-studio-map img { max-width: 100%; }
}

/* ─── Cookie Consent Banner ─────────────────────────────────────────────────── */
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 8, 8, 0.97);
    border-top: 1px solid var(--accent-gray);
    padding: 20px 24px;
    backdrop-filter: blur(4px);
    animation: cookieSlideUp 0.3s ease;
}

.cookie-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 240px;
}

.cookie-text strong {
    display: block;
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: #999;
    margin: 0;
    line-height: 1.65;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn-accept {
    background: var(--accent-gold);
    color: #1a0606;
}

.cookie-btn-reject {
    background: transparent;
    color: #bbb;
    border: 1px solid #444;
}

@media (max-width: 600px) {
    #cookie-banner {
        /* Cap height so the banner never taller than the visible screen */
        max-height: 80vh;
        max-height: 80dvh; /* dvh = dynamic viewport height, excludes browser chrome */
        overflow-y: auto;
        padding: 12px 14px;
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    }

    .cookie-banner-inner {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-text {
        min-width: 0;
    }

    .cookie-text strong {
        font-size: 0.84rem;
        margin-bottom: 4px;
    }

    .cookie-text p {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 7px;
        flex-shrink: 0;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
        font-size: 0.78rem;
        padding: 10px 14px;
    }

    .cookie-btn-accept {
        order: -1;
    }
}

/* ─── Map Consent Wrapper ────────────────────────────────────────────────────── */
.map-consent-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.map-consent-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

.map-blocked {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light-dark);
    border: 1px solid var(--accent-gray);
    border-radius: 2px;
    gap: 10px;
    text-align: center;
    padding: 40px 24px;
}

.map-blocked svg { stroke: var(--accent-gray); margin-bottom: 8px; }
.map-blocked p { color: #666; font-size: 0.88rem; margin: 0; }

.cookie-revoke-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 9px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    margin-top: 12px;
}

.cookie-revoke-btn:hover {
    background: var(--accent-gold);
    color: #080808;
}

/* ─── Lightbox ───────────────────────────────────────────────────────────────── */
#lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 8, 8, 0.95);
    align-items: center;
    justify-content: center;
}

#lb-overlay.lb-open {
    display: flex;
}

#lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--accent-gray);
    display: block;
}

#lb-caption {
    color: #bbb;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
}

#lb-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: 1px solid var(--accent-gray);
    color: #ccc;
    font-size: 1.4rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
}

#lb-close:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ─── Portfolio Preview Thumbnails (artists overview page) ───────────────────── */
.portfolio-preview {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.preview-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid var(--accent-gray);
    flex-shrink: 0;
    cursor: pointer;
}

.preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.preview-thumb img:hover {
    transform: scale(1.08);
}

.preview-loading,
.preview-empty {
    color: #555;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin: 12px 0 0 0;
}

@media (max-width: 600px) {
    .preview-thumb {
        width: 80px;
        height: 80px;
    }
}

/* ─── Instagram Sticky – trigger wrapper & mobile label ─────────────────────── */
.ig-trigger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ig-label {
    display: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 900px) {
    .ig-label {
        display: block;
    }

    /* Always show the DM options on mobile without requiring a click */
    .ig-sticky .ig-options {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Tighter spacing so the widget fits comfortably above the viewport bottom */
    .ig-sticky {
        bottom: 20px;
        right: 16px;
    }
}

/* ─── Google Rating Strip ─────────────────────────────────────────────────── */
.google-rating-strip {
    background: var(--bg-light-dark);
    border-top: 1px solid var(--accent-gray);
    border-bottom: 1px solid var(--accent-gray);
    padding: 28px 20px;
}

.google-rating-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.google-g {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.google-rating-stars {
    display: flex;
    gap: 3px;
}

.google-rating-stars svg {
    width: 18px;
    height: 18px;
}

.google-rating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.google-rating-text strong {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--white);
}

.google-rating-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.google-rating-quote {
    flex: 1;
    min-width: 220px;
    border-left: 2px solid var(--accent-gray);
    padding-left: 24px;
}

.google-rating-quote p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    font-style: italic;
}

.google-rating-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    flex-shrink: 0;
}

.google-rating-btn {
    display: inline-block;
    padding: 11px 22px;
    border: 1px solid #4285F4;
    color: #4285F4;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.google-rating-btn:hover {
    background: #4285F4;
    color: var(--white);
}

@media (max-width: 900px) {
    .google-rating-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .google-rating-quote {
        border-left: none;
        border-top: 1px solid var(--accent-gray);
        padding-left: 0;
        padding-top: 16px;
        min-width: 0;
        width: 100%;
    }

    .google-rating-cta {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

/* ─── Footer Cookie Settings Button ─────────────────────────────────────────── */
.footer-cookie-btn {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.footer-cookie-btn:hover {
    color: var(--accent-gold);
}

/* ─── Artist Contact Row ────────────────────────────────────────────────────── */
.artist-contact-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--accent-gray);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.contact-btn svg { flex-shrink: 0; }

.contact-btn--ig:hover    { border-color: #e1306c; color: #e1306c; }
.contact-btn--wa:hover    { border-color: var(--whatsapp-green); color: var(--whatsapp-green); }
.contact-btn--phone:hover { border-color: var(--accent-red); color: var(--accent-red); }

.artist-card .artist-contact-row {
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--accent-gray);
}

.artist-card .contact-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
}

@media (max-width: 480px) {
    .artist-contact-row:not(.artist-card .artist-contact-row) {
        flex-direction: column;
    }
}
