/* ── Gallery Page Hero ──────────────────────────────────── */
.gallery-hero {
    padding-top: var(--header-h);
    padding-bottom: 3.5rem;
    text-align: center;
    background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(200,169,110,0.06) 0%, transparent 70%),
    var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
}

.gallery-hero-inner {
    padding-top: 3.5rem;
}

/* ── Full Gallery Grid ──────────────────────────────────── */
.full-gallery-section {
    padding: var(--gap-lg) 0 var(--gap-xl);
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 92%;
    max-width: 1400px;
    margin-inline: auto;
}

.fg-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--clr-surface);
}

.fg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s var(--ease);
}

.fg-item:hover img {
    transform: scale(1.06);
}

.fg-item .gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.85);
    color: #141414;
    font-size: 1.4rem;
    line-height: 44px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    pointer-events: none;
    z-index: 2;
}

.fg-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Thin gold border on hover */
.fg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s var(--ease);
    z-index: 1;
    pointer-events: none;
}
.fg-item:hover::after {
    border-color: rgba(200, 169, 110, 0.45);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .full-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    }
}