
/* =========================================================
   Gallery
========================================================= */
.gallery-section {
    margin-top: 58px;
}

.gallery-category {
    max-width: 1180px;
    margin: 0 auto 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.gallery-grid img,
.gallery-placeholder {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(173, 122, 99, 0.18);
    background: linear-gradient(135deg, rgba(255, 253, 251, 0.72), rgba(240, 216, 209, 0.82));
}

.gallery-page-grid img {
    height: 340px;
}

.gallery-placeholder {
    display: grid;
    place-items: center;
    color: var(--deep-brown);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 13px;
    border: 1px dashed rgba(173, 122, 99, 0.45);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5),
.gallery-placeholder:nth-child(2),
.gallery-placeholder:nth-child(5) {
    transform: translateY(20px);
}
