.gallery-hero {
    height: 50vh;
    background: url('../images/hero.jpg') center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.gallery-content {
    position: relative;
    z-index: 2;
}

    .gallery-content span {
        color: var(--gold);
        letter-spacing: 4px;
    }

    .gallery-content h1 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 90px;
        margin: 10px 0;
    }

    .gallery-content p {
        color: #ddd;
    }

.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    columns: 3 320px;
    column-gap: 18px;
}

.gallery-item {
    display: block;
    margin-bottom: 18px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 18px;
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: .4s;
    }

    .gallery-item:hover img {
        transform: scale(1.04);
    }

@media(max-width:768px) {

    .gallery-content h1 {
        font-size: 60px;
    }

    .gallery-grid {
        columns: 2 180px;
    }
}

@media(max-width:480px) {

    .gallery-grid {
        columns: 1;
    }

    .gallery-content h1 {
        font-size: 48px;
    }
}
