/* Full gallery page — watch-dial inspired backdrop + masonry */

.gallery-full-body {
    min-height: 100vh;
    background: #0a0b0d;
}

.gallery-full-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 45% at 50% -5%, rgba(197, 160, 89, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 15% 85%, rgba(60, 45, 30, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse 45% 30% at 88% 70%, rgba(40, 50, 65, 0.35) 0%, transparent 50%),
        linear-gradient(168deg, #070809 0%, #12151c 38%, #0b0c10 100%);
}

.gallery-full-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-conic-gradient(from 0deg at 50% 50%,
            transparent 0deg 1.8deg,
            rgba(197, 160, 89, 0.04) 1.8deg 3.6deg);
    opacity: 0.35;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 75%);
}

.gallery-full-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 48%, rgba(197, 160, 89, 0.06) 49.5%, transparent 51%),
        radial-gradient(circle at 50% 50%, transparent 62%, rgba(197, 160, 89, 0.04) 63.5%, transparent 65%);
    opacity: 0.5;
}

.gallery-full-page {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 24px 48px;
}

.gallery-full-hero {
    text-align: center;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-full-eyebrow {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.75);
    margin: 0 0 12px;
}

.gallery-full-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-gold, #c5a059);
    margin: 0 0 16px;
    letter-spacing: 0.04em;
}

.gallery-full-lead {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(230, 225, 215, 0.75);
    margin: 0 0 20px;
    font-weight: 300;
}

.gallery-full-back {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.gallery-full-back:hover {
    color: #e8d5a3;
    border-bottom-color: rgba(197, 160, 89, 0.7);
}

/* Masonry columns — many images scroll naturally */
.gallery-full-masonry {
    column-count: 3;
    column-gap: 18px;
}

@media (max-width: 992px) {
    .gallery-full-masonry {
        column-count: 2;
    }
}

@media (max-width: 520px) {
    .gallery-full-masonry {
        column-count: 1;
    }
}

.gallery-full-item {
    break-inside: avoid;
    margin-bottom: 18px;
    aspect-ratio: auto;
    min-height: 0;
}

.gallery-full-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.gallery-full-empty {
    text-align: center;
    color: rgba(230, 225, 215, 0.55);
    font-size: 0.95rem;
    padding: 48px 20px;
}

.gallery-full-footer {
    margin-top: 32px;
    padding: 24px 0 40px;
}

.gallery-full-footer .footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    padding-top: 24px;
}

.gallery-full-footer .footer-bottom p {
    color: rgba(230, 225, 215, 0.45);
    font-size: 0.8rem;
}
