.gallery-section { padding: 2rem 0 4rem; }
.filter-btn {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
    border-width: 2px;
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: black !important;
    color: #fff !important;
    border-color: black !important;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.gallery-img {
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-link {
    cursor: zoom-in;
}
.gallery-link:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-link:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
    padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.gallery-zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-link:hover .gallery-zoom-icon {
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
    .filter-controls { gap: 0.5rem !important; }
    .filter-btn { padding: 0.35rem 1rem !important; font-size: 0.85rem; }
}

