.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.gallery-card {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.gallery-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.img-wrapper {
    border: 3px solid var(--gold-deep);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #111;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.gallery-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    margin-top: 15px;
    letter-spacing: 2px;
    color: var(--dark-brown);
    font-weight: 700;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}