.section-kicker {
    color: #c8a64b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gallery-banner {
    background: linear-gradient(90deg, rgba(3, 38, 61, .92), rgba(3, 38, 61, .65)), url('https://images.unsplash.com/photo-1562281302-809108fd533c?auto=format&fit=crop&w=1800&q=85') center 54% / cover;
}

.gallery-banner h1 {
    margin: 8px 0;
    font-size: 48px;
    text-transform: uppercase;
}

.gallery-banner p {
    max-width: 620px;
    margin: 0 auto;
}

.gallery-page {
    padding: 65px 0;
}

.gallery-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 38px;
}

.gallery-intro h2 {
    margin: 8px 0 0;
    color: #03263d;
    font-size: 34px;
    line-height: 1.15;
}

.gallery-intro p {
    margin: 0;
    color: #4f626f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 330px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #03263d;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s, opacity .45s;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 31, 52, .82), transparent 58%);
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.045);
    opacity: .9;
}

.gallery-item figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 22px;
    left: 24px;
    color: #fff;
}

.gallery-item figcaption span {
    display: block;
    margin-bottom: 4px;
    color: #d9bc6a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-item figcaption strong {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.gallery-note {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding: 24px 28px;
    border-left: 4px solid #c8a64b;
    background: #f3f5f6;
}

.gallery-note > span {
    color: #c8a64b;
    font: 400 42px Georgia, serif;
}

.gallery-note h3,
.gallery-note p {
    margin: 0;
}

.gallery-note h3 {
    color: #03263d;
    text-transform: uppercase;
}

.gallery-note p {
    color: #4f626f;
    font-size: 12px;
}

.gallery-cta {
    padding: 45px 0;
    background: #03263d;
    color: #fff;
}

.gallery-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gallery-cta h2 {
    margin: 5px 0;
}

.gallery-cta p {
    margin: 0;
}

.gallery-cta .btn {
    flex: none;
}

@media (max-width: 900px) {
    .gallery-intro {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-wide {
        grid-column: auto;
    }

    .gallery-banner h1 {
        font-size: 38px;
    }

    .gallery-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }
}
