/* ==========================================
   GALLERY HERO (uses shared .hero collage styles
   from styles.css — only page-specific tweaks below)
========================================== */

.static-service {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2rem,4vw,4rem);

    color: var(--white);

    text-shadow: 0 0 20px rgba(255,215,0,.25);

    margin-top: 15px;
}

.gallery-hero__actions {

    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}


/* ==========================================
   INTRO
========================================== */

.gallery-intro {

    padding: 70px 6%;

    background: var(--black-soft);

    min-height: 10vh;
}

.gallery-intro__content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.gallery-intro__content h2{
    font-size: 50px;
}

.gallery-intro__content p:last-child {

    color: var(--gray);

    margin-top: 20px;

    line-height: 1.9;
}

/* ==========================================
   GALLERY GRID
========================================== */

.gallery-grid-section {

    padding: 10px 6%;

    background: var(--black-soft);
}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;
}

/* ==========================================
   CARD
========================================== */

.gallery-card {

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--black-soft);

    border: 1px solid rgba(255,215,0,.08);

    box-shadow: var(--shadow-soft);

    transition: .35s ease;
}

.gallery-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255,215,0,.25);
}

.gallery-card img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}

.gallery-card:hover img {

    transform: scale(1.08);
}



/* ==========================================
   CTA
========================================== */

.gallery-cta {

    position: relative;

    min-height: 70vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;
}



.gallery-cta__overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.85)
        );
}

.gallery-cta__content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 0 25px;
}

.gallery-cta h2 {

    font-family: "Cormorant Garamond", serif;

    color: var(--white);

    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1.15;

    margin: 25px 0;
}

.gallery-cta h2 em {

    color: var(--gold);

    font-style: normal;
}

.gallery-cta p:last-of-type {

    color: rgba(255,255,255,.85);

    line-height: 1.8;

    max-width: 700px;

    margin: 25px auto 40px;
}

.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 34px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

/* Primary */

.btn-primary {

    background: var(--gold);

    color: var(--black);
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(255,215,0,.25);
}

/* Secondary */

.btn-secondary {

    border: 1px solid rgba(255,255,255,.25);

    color: var(--white);

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(10px);
}

.btn-secondary:hover {

    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-3px);
}

/* ==========================================
   FADE UP
========================================== */

.fade-up {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .6s ease,
        transform .6s ease;
}

.fade-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .gallery-hero {

        min-height: 75vh;
    }

    .gallery-intro,
    .gallery-grid-section,
    .testimonials {

        padding: 60px 5%;
    }

    .gallery-grid {

        grid-template-columns: 1fr;
    }

    .gallery-card img {

        height: 280px;
    }

    .gallery-hero__actions {

        flex-direction: column;

        align-items: center;
    }

    .gallery-hero__actions a {

        width: 100%;

        max-width: 320px;
    }

    .gallery-cta {

        min-height: 60vh;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .gallery-card img {

        height: 240px;
    }

    .gallery-hero h1 {

        font-size: 2.8rem;
    }

    .gallery-cta h2 {

        font-size: 2.5rem;
    }
}