.gallery-hero {
    padding: 90px 24px 50px;
    text-align: center;
    background: #f7f3ef;
}

.gallery-hero h1 {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 400;
    margin-bottom: 14px;
}

.gallery-hero p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 15px;
    color: #6f625c;
}

.gallery-section {
    padding: 50px 24px 90px;
    background: #f7f3ef;
}

.gallery-grid {
    max-width: 1180px;
    margin: 0 auto;
    columns: 3 280px;
    column-gap: 18px;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.gallery-card__content {
    padding: 14px 16px 18px;
}

.gallery-card__content span {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9a7b53;
}

.gallery-card__content h2 {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 400;
}

.gallery-card {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery-card.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    background: #eee8e2;
}