.divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 20px auto 0;
    opacity: 0.5;
}

/* ── HERO (erstes Bild) ── */
.hero {
    max-width: 1200px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: saturate(0.8) brightness(0.9);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
}

.hero:hover img {
    filter: saturate(1) brightness(1);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.hero:hover::after { opacity: 1; }

.hero-meta {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
    color: white;
}

.hero-caption {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text);
}

.hero-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 6px 12px;
}

.hero-zoom {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border: 1px solid rgba(201,169,110,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.3);
}

.hero:hover .hero-zoom { opacity: 1; }
.hero-zoom svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

/* ── HINT ── */
.hint {
    text-align: center;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    margin-top: 50px;
}

/* ── LIGHTBOX ── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28,47,87,0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(8px);
    color: white;
}

#lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lb-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.lb-image-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    border: 1px solid var(--border);
}

#lb-img {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    transform: scale(0.93);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
    opacity: 0;
}

#lightbox.active #lb-img {
    transform: scale(1);
    opacity: 1;
}

.lb-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0 0;
    gap: 20px;
}

#lb-caption {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.05em;
    flex: 1;
}

#lb-counter {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border: 1px solid var(--border);
    background: rgba(14,14,14,0.7);
    color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    backdrop-filter: blur(4px);
    z-index: 1001;
}

.lb-btn:hover { border-color: var(--accent); background: rgba(201,169,110,0.08); }
.lb-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

#lb-prev { left: 20px; }
#lb-next { right: 20px; }

#lb-close {
    position: fixed;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: rgba(14,14,14,0.7);
    color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    backdrop-filter: blur(4px);
    z-index: 1001;
}

#lb-close:hover { border-color: #c04040; color: #c04040; }
#lb-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.lb-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    max-width: 90vw;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lb-thumbs::-webkit-scrollbar { height: 3px; }
.lb-thumbs::-webkit-scrollbar-track { background: var(--border); }
.lb-thumbs::-webkit-scrollbar-thumb { background: var(--accent); }

.lb-thumb {
    flex-shrink: 0;
    width: 56px; height: 42px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    border: 1px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
    filter: saturate(0);
}

.lb-thumb.active, .lb-thumb:hover {
    opacity: 1;
    border-color: var(--accent);
    filter: saturate(1);
}

@media (max-width: 600px) {
    .hero img { height: 260px; }
    #lb-prev { left: 8px; }
    #lb-next { right: 8px; }
}
