/* --- Gallery collage --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 12px;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;  /* square tiles */
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    font-size: 0.9rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
    color: #fff;
}

/* Album headings */
.album-title {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--naba-gold);
    text-align: center;
}

@media (max-width: 700px){
    .album-title {
        margin-top: 32px;
        font-size: 1.5rem;
    }
}