:root {
    --bg-warm: #f4f1ea; 
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --gray-mid: #9a9a9a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
body { background: var(--bg-white); color: var(--text-dark); font-family: var(--font-sans); margin: 0; }

/* --- HERO COLLAGE --- */
.hero-collage-container {
    height: 50vh; width: 100%; position: relative;
    background: var(--bg-warm); overflow: hidden;
}

.mini-thumb {
    position: absolute; width: 190px; aspect-ratio: 1 / 1;
    background: white; padding: 10px; border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.mini-thumb img, .mini-thumb video { width: 100%; height: 100%; object-fit: cover; }

/* --- BRAND REFLECTOR (Aufheller) --- */
.brand-reflector {
    padding: 90px 20px 40px; text-align: center;
    background: linear-gradient(to bottom, var(--bg-warm) 0%, var(--bg-white) 100%);
}

.brand-content h1 {
    font-family: var(--font-serif); font-size: 3.8rem;
    letter-spacing: 12px; text-transform: uppercase; margin: 0;
    font-weight: 400; color: var(--text-dark);
}

.subtitle {
    letter-spacing: 8px; text-transform: uppercase; font-size: 0.7rem;
    color: var(--gray-mid); margin-top: 15px;
}

/* --- INTERFACE --- */
.interface-container { max-width: 1400px; margin: 0 auto; padding: 0 20px 80px; }
.controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }

.filter-bar input, .filter-bar select { border: none; border-bottom: 1px solid #eee; padding: 5px; font-size: 0.75rem; background: transparent; outline: none; }
.sort-menu a { text-decoration: none; color: var(--gray-mid); font-size: 0.65rem; text-transform: uppercase; margin-left: 20px; transition: 0.3s; }
.sort-menu a.active { color: var(--text-dark); font-weight: bold; border-bottom: 1px solid var(--text-dark); }

/* GRID & CARDS */
.grid-compact { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 35px; }
.image-wrapper { position: relative; width: 100%; aspect-ratio: 1 / 1; background: #f9f9f9; overflow: hidden; cursor: pointer; }
.main-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.image-wrapper:hover .main-img { transform: scale(1.1); }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; color: white; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; }
.image-wrapper:hover .overlay { opacity: 1; }

.photo-meta { padding-top: 15px; }
.details { display: flex; justify-content: space-between; color: var(--gray-mid); font-size: 0.6rem; text-transform: uppercase; }
.buy-link { cursor: pointer; color: var(--text-dark); font-weight: bold; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; z-index: 5000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox-media { max-width: 90%; max-height: 85vh; border: 1px solid #222; }
.close-lightbox { position: absolute; top: 20px; right: 30px; color: white; font-size: 2.5rem; cursor: pointer; }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a { text-decoration: none; color: var(--gray-mid); padding: 6px 14px; border: 1px solid #f0f0f0; font-size: 0.75rem; }
.pagination a.active { background: var(--text-dark); color: white; border-color: var(--text-dark); }

/* ZENTRIERTER FOOTER */
.page-footer { 
    text-align: center; 
    padding: 100px 20px; 
    color: #ddd; 
    font-size: 0.65rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    width: 100%;
}

.footer-inner {
    display: inline-block;
}