/* ═══════════════════════════════════════════════════════════════
   LOOKBOOK GALLERY — Barron-style masonry grid
═══════════════════════════════════════════════════════════════ */
.lbg-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
    width: 100%;
}

.lbg-cell {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f1f5f9;
}

/* Wide cell spans 2 columns */
.lbg-cell--wide { grid-column: span 2; }

/* Tall cell spans 2 rows */
.lbg-cell--tall { grid-row: span 2; }

/* Wide + Tall spans 2×2 */
.lbg-cell--wide.lbg-cell--tall { grid-column: span 2; grid-row: span 2; }

.lbg-cell-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.lbg-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.lbg-cell:hover img { transform: scale(1.04); }

/* Caption overlay */
.lbg-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 32px 16px 14px;
    opacity: 0;
    transition: opacity .25s;
    letter-spacing: .01em;
}
.lbg-cell:hover .lbg-caption { opacity: 1; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lbg-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}
@media (max-width: 768px) {
    .lbg-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 6px;
    }
    .lbg-cell--wide { grid-column: span 2; }
    .lbg-cell--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
    .lbg-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
}
