/* =========================================================
   DIAMOND AREA CDC — PREMIUM GALLERY
   PART 1: FOUNDATION + HERO
========================================================= */


/* =========================================================
   1. GALLERY FOUNDATION
========================================================= */

.premium-gallery {
    --gallery-green: #063d2b;
    --gallery-green-dark: #02291d;
    --gallery-green-deep: #011c14;
    --gallery-green-light: #0b5a40;

    --gallery-gold: #d6ad4f;
    --gallery-gold-light: #f0d78a;

    --gallery-cream: #f7f5ee;
    --gallery-white: #ffffff;
    --gallery-muted: #aebbb5;

    --gallery-border: rgba(255, 255, 255, 0.10);

    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            var(--gallery-green-deep) 0%,
            var(--gallery-green-dark) 45%,
            var(--gallery-cream) 45%,
            var(--gallery-cream) 100%
        );

    color: var(--gallery-white);
    font-family: "Poppins", sans-serif;
}


/* Prevent inherited styles from damaging gallery */

.premium-gallery *,
.premium-gallery *::before,
.premium-gallery *::after {
    box-sizing: border-box;
}


/* Remove unwanted default spacing */

.premium-gallery h1,
.premium-gallery h2,
.premium-gallery h3,
.premium-gallery p {
    margin-top: 0;
}

.premium-gallery img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   2. HERO
========================================================= */

.gallery-hero-new {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 100px 7% 90px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(16, 106, 73, 0.40),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(214, 173, 79, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #011c14 0%,
            #063d2b 48%,
            #02291d 100%
        );

    isolation: isolate;
}


/* Subtle grid texture */

.gallery-hero-new::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.35;

    pointer-events: none;

    z-index: -1;
}


/* Dark cinematic edge */

.gallery-hero-new::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 28, 20, 0.96) 0%,
            rgba(1, 28, 20, 0.65) 42%,
            rgba(1, 28, 20, 0.08) 100%
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   3. HERO GLOW
========================================================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    z-index: -1;
}


.hero-glow-one {
    width: 420px;
    height: 420px;

    top: 5%;
    right: 5%;

    background: rgba(25, 128, 87, 0.22);

    animation: galleryGlowOne 8s ease-in-out infinite alternate;
}


.hero-glow-two {
    width: 280px;
    height: 280px;

    bottom: 5%;
    left: 20%;

    background: rgba(214, 173, 79, 0.08);

    animation: galleryGlowTwo 10s ease-in-out infinite alternate;
}


@keyframes galleryGlowOne {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-35px, 25px) scale(1.12);
    }

}


@keyframes galleryGlowTwo {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(35px, -25px);
    }

}


/* =========================================================
   4. HERO INNER
========================================================= */

.gallery-hero-inner {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(500px, 1.12fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   5. HERO COPY
========================================================= */

.gallery-hero-copy {
    position: relative;

    z-index: 3;

    max-width: 650px;
}


/* =========================================================
   EYEBROW
========================================================= */

.gallery-eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    padding: 9px 16px;

    border: 1px solid rgba(214, 173, 79, 0.35);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.045);

    color: var(--gallery-gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    backdrop-filter: blur(12px);
}


.gallery-eyebrow i {
    font-size: 13px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.gallery-hero-copy h1 {
    margin-bottom: 24px;

    font-size: clamp(56px, 6.2vw, 96px);

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 800;

    color: #ffffff;
}


.gallery-hero-copy h1 span {
    display: inline-block;

    color: transparent;

    background:
        linear-gradient(
            110deg,
            #d6ad4f 0%,
            #f0d78a 48%,
            #d6ad4f 100%
        );

    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.gallery-hero-copy > p {
    max-width: 590px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.gallery-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 44px;
}


.gallery-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 8px;

    text-decoration: none;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.gallery-btn i {
    font-size: 12px;

    transition: transform 0.3s ease;
}


.gallery-btn:hover {
    transform: translateY(-3px);
}


.gallery-btn:hover i {
    transform: translateX(4px);
}


/* Primary */

.gallery-btn-primary {
    color: #10271e;

    background:
        linear-gradient(
            135deg,
            #f0d78a,
            #d6ad4f
        );

    box-shadow:
        0 12px 30px rgba(214, 173, 79, 0.18);
}


.gallery-btn-primary:hover {
    box-shadow:
        0 18px 40px rgba(214, 173, 79, 0.28);
}


/* Outline */

.gallery-btn-outline {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.045);

    backdrop-filter: blur(10px);
}


.gallery-btn-outline:hover {
    border-color: rgba(214, 173, 79, 0.55);

    background: rgba(214, 173, 79, 0.08);
}


/* =========================================================
   6. HERO STATS
========================================================= */

.gallery-stats {
    display: flex;

    align-items: center;

    gap: 0;

    width: fit-content;

    border-top: 1px solid rgba(255, 255, 255, 0.11);

    padding-top: 22px;
}


.gallery-stat {
    min-width: 120px;

    padding-right: 25px;

    margin-right: 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.11);
}


.gallery-stat:last-child {
    border-right: 0;

    margin-right: 0;

    padding-right: 0;
}


.gallery-stat strong {
    display: block;

    margin-bottom: 3px;

    color: var(--gallery-gold-light);

    font-size: 25px;

    line-height: 1;

    font-weight: 800;
}


.gallery-stat span {
    color: rgba(255, 255, 255, 0.52);

    font-size: 10px;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* =========================================================
   7. HERO PHOTO COLLAGE
========================================================= */

.gallery-hero-collage {
    position: relative;

    width: 100%;

    height: 560px;

    z-index: 2;
}


/* =========================================================
   PHOTO BASE
========================================================= */

.hero-photo {
    position: absolute;

    overflow: hidden;

    border: 6px solid rgba(255, 255, 255, 0.92);

    background: #082c20;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.38);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


.hero-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0, 0, 0, 0.32)
        );

    pointer-events: none;
}


.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}


.hero-photo:hover {
    z-index: 8;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.48);
}


.hero-photo:hover img {
    transform: scale(1.07);
}


/* =========================================================
   LARGE MAIN IMAGE
========================================================= */

.hero-photo-large {
    width: 62%;
    height: 73%;

    left: 0;
    top: 13%;

    border-radius: 20px;

    transform: rotate(-3deg);
}


.hero-photo-large:hover {
    transform:
        rotate(-1deg)
        translateY(-6px);
}


/* =========================================================
   TOP IMAGE
========================================================= */

.hero-photo-top {
    width: 42%;
    height: 39%;

    right: 2%;
    top: 0;

    border-radius: 16px;

    transform: rotate(4deg);

    z-index: 3;
}


.hero-photo-top:hover {
    transform:
        rotate(2deg)
        translateY(-6px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.hero-photo-right {
    width: 42%;
    height: 43%;

    right: 0;
    bottom: 1%;

    border-radius: 18px;

    transform: rotate(-4deg);

    z-index: 4;
}


.hero-photo-right:hover {
    transform:
        rotate(-2deg)
        translateY(-6px);
}


/* =========================================================
   BOTTOM IMAGE
========================================================= */

.hero-photo-bottom {
    width: 39%;
    height: 32%;

    left: 31%;
    bottom: 0;

    border-radius: 15px;

    transform: rotate(3deg);

    z-index: 5;
}


.hero-photo-bottom:hover {
    transform:
        rotate(1deg)
        translateY(-6px);
}


/* =========================================================
   CAMERA BADGE
========================================================= */

.camera-badge {
    position: absolute;

    right: 42%;
    top: 42%;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #09271d;

    background:
        linear-gradient(
            135deg,
            #f0d78a,
            #d6ad4f
        );

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35);

    font-size: 18px;

    z-index: 10;

    animation: cameraPulse 3s ease-in-out infinite;
}


@keyframes cameraPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}


/* =========================================================
   8. HERO SCROLL INDICATOR
========================================================= */

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;

    letter-spacing: 2px;

    z-index: 5;
}


.hero-scroll i {
    color: var(--gallery-gold);

    font-size: 11px;

    animation: scrollBounce 1.8s ease-in-out infinite;
}


@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =========================================================
   END OF PART 1
========================================================= */
/* =========================================================
   DIAMOND AREA CDC — PREMIUM GALLERY
   PART 2: CATEGORY BAR + FEATURED COLLECTIONS
========================================================= */


/* =========================================================
   9. CATEGORY BAR WRAPPER
========================================================= */

.gallery-category-wrap {
    position: relative;

    z-index: 20;

    width: 100%;

    margin-top: -34px;

    padding: 0 7%;
}


.gallery-category-bar {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 9px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    background:
        rgba(3, 35, 25, 0.94);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(20px);
}


/* =========================================================
   CATEGORY BUTTON
========================================================= */

.gallery-category {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 22px;

    border: 0;

    border-radius: 9px;

    background: transparent;

    color: rgba(255, 255, 255, 0.58);

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.3px;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.gallery-category i {
    font-size: 12px;

    color: rgba(214, 173, 79, 0.7);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.gallery-category:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.055);

    transform: translateY(-1px);
}


.gallery-category:hover i {
    color: var(--gallery-gold-light);

    transform: scale(1.1);
}


/* Active */

.gallery-category.active {
    color: #09271d;

    background:
        linear-gradient(
            135deg,
            #f0d78a,
            #d6ad4f
        );

    box-shadow:
        0 8px 22px rgba(214, 173, 79, 0.16);
}


.gallery-category.active i {
    color: #09271d;
}


/* =========================================================
   10. INTRO SECTION
========================================================= */

.gallery-intro-new {
    padding:

        115px 7%

        60px;

    background:
        linear-gradient(
            180deg,
            #f7f5ee 0%,
            #f7f5ee 100%
        );

    color: #12362a;
}


.gallery-section-heading {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}


.small-heading {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: #a47d25;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}


.small-heading i {
    font-size: 11px;
}


.gallery-section-heading h2 {
    margin-bottom: 17px;

    color: #12362a;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -1.7px;

    font-weight: 800;
}


.gallery-section-heading h2 span {
    color: #08724b;
}


.gallery-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #68766f;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   11. FEATURED COLLECTIONS SECTION
========================================================= */

.featured-collections {
    padding:

        25px 7%

        115px;

    background: #f7f5ee;

    color: #12362a;
}


.collection-grid {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

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

    grid-auto-rows: 250px;

    gap: 18px;
}


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

.collection-card {
    position: relative;

    overflow: hidden;

    min-height: 250px;

    border-radius: 18px;

    background: #073c2b;

    box-shadow:
        0 15px 35px rgba(4, 42, 29, 0.12);

    transition:
        transform 0.45s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.45s ease;
}


.collection-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 28px 55px rgba(4, 42, 29, 0.22);
}


/* =========================================================
   CARD GRID POSITIONS
========================================================= */


/* Large chairman */

.collection-card.collection-large {
    grid-column: span 7;

    grid-row: span 2;
}


/* Inauguration */

.collection-card:nth-child(2) {
    grid-column: span 5;

    grid-row: span 1;
}


/* Youth */

.collection-card:nth-child(3) {
    grid-column: span 5;

    grid-row: span 1;
}


/* Recognition */

.collection-card:nth-child(4) {
    grid-column: span 5;

    grid-row: span 1;
}


/* Training wide */

.collection-card.collection-wide {
    grid-column: span 7;

    grid-row: span 1;
}


/* =========================================================
   COLLECTION IMAGE
========================================================= */

.collection-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.collection-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.9s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}


.collection-card:hover .collection-image img {
    transform: scale(1.08);

    filter: saturate(1.08);
}


/* =========================================================
   IMAGE DARKENING
========================================================= */

.collection-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(1, 28, 20, 0.02) 25%,
            rgba(1, 28, 20, 0.25) 52%,
            rgba(1, 24, 17, 0.92) 100%
        );

    pointer-events: none;
}


/* =========================================================
   GOLD LIGHT SWEEP
========================================================= */

.collection-image::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    z-index: 3;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.10),
            transparent
        );

    transform: skewX(-18deg);

    transition:
        left 0.8s ease;

    pointer-events: none;
}


.collection-card:hover .collection-image::after {
    left: 135%;
}


/* =========================================================
   COLLECTION OVERLAY
========================================================= */

.collection-overlay {
    position: absolute;

    inset: 0;

    z-index: 4;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 27px;

    pointer-events: none;
}


/* =========================================================
   COLLECTION TAG
========================================================= */

.collection-tag {
    align-self: flex-start;

    margin-bottom: 10px;

    padding: 7px 11px;

    border: 1px solid rgba(240, 215, 138, 0.35);

    border-radius: 6px;

    background:
        rgba(4, 35, 26, 0.62);

    color: #f0d78a;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    backdrop-filter: blur(10px);
}


/* =========================================================
   COLLECTION INFORMATION
========================================================= */

.collection-info {
    max-width: 600px;
}


.collection-info h3 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: clamp(21px, 2vw, 30px);

    line-height: 1.1;

    letter-spacing: -0.5px;

    font-weight: 750;
}


.collection-info p {
    max-width: 500px;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   VIEW COLLECTION BUTTON
========================================================= */

.view-collection {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #f0d78a;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    cursor: pointer;

    pointer-events: auto;
}


.view-collection i {
    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.view-collection:hover i {
    transform: translateX(5px);
}


/* =========================================================
   LARGE CARD TYPOGRAPHY
========================================================= */

.collection-large .collection-info h3 {
    font-size: clamp(28px, 3vw, 43px);

    max-width: 520px;
}


.collection-large .collection-info p {
    font-size: 12px;

    max-width: 450px;
}


/* =========================================================
   COLLECTION REVEAL ANIMATION
========================================================= */

.collection-card {
    opacity: 0;

    transform:
        translateY(25px);
}


.collection-card:nth-child(1) {
    animation: collectionReveal 0.8s 0.15s forwards;
}


.collection-card:nth-child(2) {
    animation: collectionReveal 0.8s 0.25s forwards;
}


.collection-card:nth-child(3) {
    animation: collectionReveal 0.8s 0.35s forwards;
}


.collection-card:nth-child(4) {
    animation: collectionReveal 0.8s 0.45s forwards;
}


.collection-card:nth-child(5) {
    animation: collectionReveal 0.8s 0.55s forwards;
}


@keyframes collectionReveal {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   12. PREMIUM SECTION DIVIDER
========================================================= */

.featured-collections::after {
    content: "";

    display: block;

    width: 80px;

    height: 3px;

    margin:

        65px auto

        0;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d6ad4f,
            transparent
        );
}


/* =========================================================
   END OF PART 2
========================================================= */
/* =========================================================
   DIAMOND AREA CDC — PREMIUM GALLERY
   PART 3: STORY STRIP + STORIES SECTION
========================================================= */


/* =========================================================
   13. STORY HIGHLIGHT STRIP
========================================================= */

.gallery-highlight-strip {
    position: relative;

    overflow: hidden;

    padding: 85px 7%;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(20, 113, 77, 0.45),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #011c14 0%,
            #063d2b 55%,
            #02291d 100%
        );

    color: #ffffff;
}


/* Decorative glow */

.gallery-highlight-strip::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(214, 173, 79, 0.10);

    box-shadow:
        0 0 0 50px rgba(214, 173, 79, 0.025),
        0 0 0 100px rgba(214, 173, 79, 0.015);

    pointer-events: none;
}


/* Subtle horizontal line */

.gallery-highlight-strip::after {
    content: "";

    position: absolute;

    left: 7%;
    right: 7%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(214, 173, 79, 0.25),
            transparent
        );
}


/* =========================================================
   HIGHLIGHT INNER
========================================================= */

.highlight-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1.35fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.highlight-text > span {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #d6ad4f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}


.highlight-text > span i {
    font-size: 11px;
}


.highlight-text h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 700;
}


.highlight-text h2 strong {
    color: #f0d78a;

    font-weight: 800;
}


/* =========================================================
   HIGHLIGHT NUMBERS
========================================================= */

.highlight-numbers {
    display: grid;

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

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.highlight-numbers > div {
    min-height: 130px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 20px 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.10);
}


.highlight-numbers > div:last-child {
    border-right: 0;
}


.highlight-numbers strong {
    display: block;

    margin-bottom: 8px;

    color: #f0d78a;

    font-size: 34px;

    line-height: 1;

    font-weight: 800;
}


.highlight-numbers span {
    color: rgba(255, 255, 255, 0.52);

    font-size: 9px;

    line-height: 1.45;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* =========================================================
   14. STORIES SECTION
========================================================= */

.gallery-stories {
    position: relative;

    padding:

        125px 7%

        135px;

    background:
        linear-gradient(
            180deg,
            #f7f5ee 0%,
            #ffffff 50%,
            #f7f5ee 100%
        );

    color: #12362a;
}


/* =========================================================
   STORIES HEADING
========================================================= */

.gallery-stories > .gallery-section-heading {
    margin-bottom: 85px;
}


/* =========================================================
   STORY BLOCK
========================================================= */

.story-block {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto 115px;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 85px;

    align-items: center;
}


.story-block:last-child {
    margin-bottom: 0;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.story-photo {
    position: relative;

    height: 470px;

    overflow: visible;
}


/* Actual image */

.story-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(4, 48, 33, 0.18);

    transition:
        transform 0.6s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.6s ease;
}


.story-photo:hover img {
    transform: translateY(-7px);

    box-shadow:
        0 35px 75px rgba(4, 48, 33, 0.25);
}


/* =========================================================
   GOLD CORNER FRAME
========================================================= */

.story-photo::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    left: -14px;
    bottom: -14px;

    border-left: 3px solid #d6ad4f;
    border-bottom: 3px solid #d6ad4f;

    border-radius: 0 0 0 14px;

    z-index: 2;

    pointer-events: none;
}


/* Top right decorative frame */

.story-photo::after {
    content: "";

    position: absolute;

    width: 95px;
    height: 95px;

    right: -12px;
    top: -12px;

    border-right: 2px solid rgba(214, 173, 79, 0.75);
    border-top: 2px solid rgba(214, 173, 79, 0.75);

    border-radius: 0 13px 0 0;

    pointer-events: none;

    z-index: 2;
}


/* =========================================================
   STORY NUMBER
========================================================= */

.story-number {
    position: absolute;

    left: -28px;
    top: 35px;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f0d78a,
            #d6ad4f
        );

    color: #103426;

    font-size: 18px;

    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.16);

    z-index: 5;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.story-content {
    max-width: 520px;
}


.story-label {
    display: inline-flex;

    margin-bottom: 17px;

    color: #a47d25;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.story-content h3 {
    margin-bottom: 20px;

    color: #12362a;

    font-size: clamp(30px, 3.3vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;

    font-weight: 800;
}


.story-content p {
    margin-bottom: 27px;

    color: #65756d;

    font-size: 13px;

    line-height: 1.95;
}


/* =========================================================
   STORY BUTTON
========================================================= */

.story-gallery-button {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 0 0 8px;

    border: 0;

    border-bottom: 1px solid #d6ad4f;

    background: transparent;

    color: #075f40;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        gap 0.3s ease,
        border-color 0.3s ease;
}


.story-gallery-button i {
    color: #d6ad4f;

    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.story-gallery-button:hover {
    gap: 15px;

    color: #a47d25;

    border-color: #a47d25;
}


.story-gallery-button:hover i {
    transform: translateX(3px);
}


/* =========================================================
   REVERSED STORY
========================================================= */

.story-block.story-reverse {
    grid-template-columns:
        0.95fr 1.05fr;
}


.story-block.story-reverse .story-photo {
    order: 2;
}


.story-block.story-reverse .story-content {
    order: 1;

    justify-self: end;
}


/* =========================================================
   STORY IMAGE FLOAT
========================================================= */

.story-block:nth-of-type(2) .story-photo img {
    transform: rotate(-1.2deg);
}


.story-block:nth-of-type(3) .story-photo img {
    transform: rotate(1.2deg);
}


.story-block:nth-of-type(4) .story-photo img {
    transform: rotate(-1deg);
}


.story-block:nth-of-type(5) .story-photo img {
    transform: rotate(1deg);
}


.story-block .story-photo:hover img {
    transform:
        rotate(0deg)
        translateY(-7px);
}


/* =========================================================
   STORY SEPARATOR
========================================================= */

.story-block:not(:last-child)::after {
    content: "";

    position: absolute;
}


/* =========================================================
   STORY REVEAL
========================================================= */

.story-block {
    opacity: 0;

    animation:
        storyReveal 0.9s ease forwards;
}


.story-block:nth-of-type(2) {
    animation-delay: 0.15s;
}


.story-block:nth-of-type(3) {
    animation-delay: 0.30s;
}


.story-block:nth-of-type(4) {
    animation-delay: 0.45s;
}


.story-block:nth-of-type(5) {
    animation-delay: 0.60s;
}


@keyframes storyReveal {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   END OF PART 3
========================================================= */
/* =========================================================
   DIAMOND AREA CDC — PREMIUM GALLERY
   PART 4: PHOTO WALL + COMMUNITY CTA
========================================================= */


/* =========================================================
   15. PHOTO WALL SECTION
========================================================= */

.photo-wall-section {
    position: relative;

    padding:
        125px 7%
        135px;

    background:
        linear-gradient(
            180deg,
            #031f16 0%,
            #062f22 100%
        );

    color: #ffffff;

    overflow: hidden;
}


/* Decorative glow */

.photo-wall-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -300px;
    top: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 112, 76, 0.28),
            transparent 68%
        );

    pointer-events: none;
}


/* Gold atmospheric glow */

.photo-wall-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(214, 173, 79, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   PHOTO WALL HEADING
========================================================= */

.photo-wall-heading {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto 65px;

    text-align: center;
}


.photo-wall-heading .small-heading {
    color: #d6ad4f;
}


.photo-wall-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}


.photo-wall-heading h2 span {
    color: #f0d78a;
}


/* =========================================================
   16. PHOTO WALL GRID
========================================================= */

.photo-wall {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

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

    grid-auto-rows: 170px;

    gap: 12px;
}


/* =========================================================
   WALL PHOTO BASE
========================================================= */

.wall-photo {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;

    border-radius: 10px;

    overflow: hidden;

    background: #0b3b2b;

    cursor: pointer;

    isolation: isolate;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.45s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.45s ease;
}


.wall-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}


/* =========================================================
   PHOTO POSITIONS
========================================================= */


/* Chairman 01 */

.wall-photo.wall-large {
    grid-column: span 5;

    grid-row: span 2;
}


/* Chairman 02 */

.wall-photo:nth-child(2) {
    grid-column: span 3;

    grid-row: span 1;
}


/* Chairman 03 */

.wall-photo:nth-child(3) {
    grid-column: span 4;

    grid-row: span 1;
}


/* Inauguration 01 */

.wall-photo:nth-child(4) {
    grid-column: span 3;

    grid-row: span 2;
}


/* Inauguration 02 */

.wall-photo.wall-tall {
    grid-column: span 4;

    grid-row: span 2;
}


/* Inauguration 03 */

.wall-photo:nth-child(6) {
    grid-column: span 5;

    grid-row: span 1;
}


/* Football 01 */

.wall-photo.wall-wide {
    grid-column: span 7;

    grid-row: span 2;
}


/* Football 02 */

.wall-photo:nth-child(8) {
    grid-column: span 5;

    grid-row: span 1;
}


/* Football 03 */

.wall-photo:nth-child(9) {
    grid-column: span 5;

    grid-row: span 1;
}


/* Training */

.wall-photo:nth-child(10) {
    grid-column: span 4;

    grid-row: span 2;
}


.wall-photo:nth-child(11) {
    grid-column: span 4;

    grid-row: span 1;
}


.wall-photo:nth-child(12) {
    grid-column: span 4;

    grid-row: span 1;
}


/* =========================================================
   PHOTO HOVER
========================================================= */

.wall-photo::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(1, 20, 14, 0.72) 100%
        );

    opacity: 0.25;

    transition:
        opacity 0.4s ease;

    pointer-events: none;
}


.wall-photo::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    z-index: 4;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.14),
            transparent
        );

    transform: skewX(-18deg);

    transition:
        left 0.75s ease;

    pointer-events: none;
}


.wall-photo:hover {
    z-index: 10;

    transform:
        translateY(-6px)
        scale(1.015);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.30);
}


.wall-photo:hover img {
    transform: scale(1.08);

    filter:
        saturate(1.12)
        brightness(1.04);
}


.wall-photo:hover::before {
    opacity: 0.65;
}


.wall-photo:hover::after {
    left: 135%;
}


/* =========================================================
   WALL OVERLAY ICON
========================================================= */

.wall-overlay {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background:
        rgba(3, 31, 22, 0.70);

    color: #f0d78a;

    font-size: 13px;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.65);

    backdrop-filter: blur(8px);

    transition:
        opacity 0.35s ease,
        transform 0.4s cubic-bezier(.2,.7,.2,1);

    z-index: 5;

    pointer-events: none;
}


.wall-photo:hover .wall-overlay {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* =========================================================
   GOLD BORDER FLASH
========================================================= */

.wall-photo:focus-visible {
    outline: 2px solid #f0d78a;

    outline-offset: 4px;
}


/* =========================================================
   17. PHOTO WALL LABEL
========================================================= */

.photo-wall-section .photo-wall::after {
    content: "DIAMOND AREA CDC • OUR MOMENTS • OUR COMMUNITY";

    grid-column: 1 / -1;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 55px;

    color: rgba(255, 255, 255, 0.28);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;

    text-align: center;
}


/* =========================================================
   18. COMMUNITY CTA
========================================================= */

.gallery-cta {
    position: relative;

    padding:
        75px 7%;

    background:
        linear-gradient(
            135deg,
            #d6ad4f 0%,
            #f0d78a 50%,
            #d6ad4f 100%
        );

    color: #08291e;

    overflow: hidden;
}


/* Decorative circle */

.gallery-cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -250px;

    border: 1px solid rgba(8, 41, 30, 0.12);

    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(8, 41, 30, 0.025),
        0 0 0 90px rgba(8, 41, 30, 0.018);

    pointer-events: none;
}


.gallery-cta::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -170px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.10);

    pointer-events: none;
}


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

.gallery-cta-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    gap: 35px;

    align-items: center;
}


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

.cta-icon {
    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(8, 41, 30, 0.20);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.18);

    color: #08291e;

    font-size: 25px;
}


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

.cta-copy > span {
    display: block;

    margin-bottom: 6px;

    color: rgba(8, 41, 30, 0.60);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.cta-copy h2 {
    margin: 0 0 6px;

    color: #08291e;

    font-size: clamp(28px, 3vw, 43px);

    line-height: 1.05;

    letter-spacing: -1px;

    font-weight: 800;
}


.cta-copy p {
    margin: 0;

    color: rgba(8, 41, 30, 0.68);

    font-size: 12px;

    line-height: 1.6;
}


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

.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 25px;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 8px;

    background:
        #08291e;

    color: #f0d78a;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.6px;

    text-transform: uppercase;

    box-shadow:
        0 12px 25px rgba(8, 41, 30, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.cta-button i {
    font-size: 10px;

    transition:
        transform 0.3s ease;
}


.cta-button:hover {
    transform: translateY(-4px);

    background: #0d3b2b;

    box-shadow:
        0 18px 35px rgba(8, 41, 30, 0.24);
}


.cta-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   19. PHOTO WALL + CTA ANIMATIONS
========================================================= */

.wall-photo {
    opacity: 0;

    animation:
        wallReveal 0.7s ease forwards;
}


.wall-photo:nth-child(1) {
    animation-delay: 0.05s;
}


.wall-photo:nth-child(2) {
    animation-delay: 0.10s;
}


.wall-photo:nth-child(3) {
    animation-delay: 0.15s;
}


.wall-photo:nth-child(4) {
    animation-delay: 0.20s;
}


.wall-photo:nth-child(5) {
    animation-delay: 0.25s;
}


.wall-photo:nth-child(6) {
    animation-delay: 0.30s;
}


.wall-photo:nth-child(7) {
    animation-delay: 0.35s;
}


.wall-photo:nth-child(8) {
    animation-delay: 0.40s;
}


.wall-photo:nth-child(9) {
    animation-delay: 0.45s;
}


.wall-photo:nth-child(10) {
    animation-delay: 0.50s;
}


.wall-photo:nth-child(11) {
    animation-delay: 0.55s;
}


.wall-photo:nth-child(12) {
    animation-delay: 0.60s;
}


@keyframes wallReveal {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   END OF PART 4
========================================================= */
/* =========================================================
   DIAMOND AREA CDC — PREMIUM GALLERY
   PART 5: RESPONSIVE DESIGN
========================================================= */


/* =========================================================
   20. LARGE LAPTOPS
========================================================= */

@media (max-width: 1250px) {

    /* HERO */

    .gallery-hero-new {
        padding-left: 5%;
        padding-right: 5%;
    }

    .gallery-hero-inner {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(430px, 1.1fr);

        gap: 40px;
    }


    .gallery-hero-copy h1 {
        font-size: clamp(52px, 6vw, 78px);
    }


    .gallery-hero-collage {
        height: 500px;
    }


    /* GENERAL */

    .gallery-category-wrap {
        padding-left: 5%;
        padding-right: 5%;
    }


    .gallery-intro-new,
    .featured-collections,
    .gallery-stories,
    .photo-wall-section,
    .gallery-cta {
        padding-left: 5%;
        padding-right: 5%;
    }


    /* STORIES */

    .story-block {
        gap: 55px;
    }


    .story-photo {
        height: 430px;
    }

}


/* =========================================================
   21. TABLETS / SMALL LAPTOPS
========================================================= */

@media (max-width: 1050px) {

    /* =====================================================
       HERO
    ====================================================== */

    .gallery-hero-new {
        min-height: auto;

        padding-top: 80px;
        padding-bottom: 85px;
    }


    .gallery-hero-inner {
        grid-template-columns: 1fr;

        gap: 65px;

        max-width: 850px;
    }


    .gallery-hero-copy {
        max-width: 720px;

        margin: 0 auto;

        text-align: center;
    }


    .gallery-eyebrow {
        margin-bottom: 20px;
    }


    .gallery-hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }


    .gallery-hero-buttons {
        justify-content: center;
    }


    .gallery-stats {
        margin-left: auto;
        margin-right: auto;

        justify-content: center;

        text-align: left;
    }


    /* =====================================================
       HERO COLLAGE
    ====================================================== */

    .gallery-hero-collage {
        width: min(760px, 100%);

        height: 520px;

        margin: 0 auto;
    }


    .hero-photo-large {
        width: 58%;
    }


    .hero-photo-top {
        width: 39%;
    }


    .hero-photo-right {
        width: 39%;
    }


    .hero-photo-bottom {
        width: 36%;

        left: 30%;
    }


    .camera-badge {
        right: 42%;
    }


    /* =====================================================
       CATEGORY BAR
    ====================================================== */

    .gallery-category-bar {
        justify-content: flex-start;

        overflow-x: auto;

        scrollbar-width: none;

        padding: 8px;

        -webkit-overflow-scrolling: touch;
    }


    .gallery-category-bar::-webkit-scrollbar {
        display: none;
    }


    .gallery-category {
        flex: 0 0 auto;

        white-space: nowrap;
    }


    /* =====================================================
       FEATURED COLLECTIONS
    ====================================================== */

    .collection-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 260px;
    }


    .collection-card.collection-large,
    .collection-card.collection-wide {
        grid-column: span 2;
    }


    .collection-card:nth-child(2),
    .collection-card:nth-child(3),
    .collection-card:nth-child(4) {
        grid-column: span 1;
    }


    /* =====================================================
       HIGHLIGHT STRIP
    ====================================================== */

    .highlight-inner {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }


    .highlight-text > span {
        justify-content: center;
    }


    .highlight-numbers {
        max-width: 800px;

        margin: 0 auto;

        width: 100%;

        text-align: left;
    }


    /* =====================================================
       STORIES
    ====================================================== */

    .story-block,
    .story-block.story-reverse {
        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 750px;
    }


    .story-block.story-reverse .story-photo,
    .story-block.story-reverse .story-content {
        order: initial;
    }


    .story-block.story-reverse .story-content {
        justify-self: initial;
    }


    .story-content {
        max-width: 650px;
    }


    .story-photo {
        height: 450px;
    }


    /* =====================================================
       PHOTO WALL
    ====================================================== */

    .photo-wall {
        grid-template-columns:
            repeat(6, 1fr);

        grid-auto-rows: 170px;
    }


    .wall-photo.wall-large,
    .wall-photo.wall-wide {
        grid-column: span 6;
    }


    .wall-photo.wall-tall {
        grid-column: span 3;
    }


    .wall-photo:nth-child(2),
    .wall-photo:nth-child(3),
    .wall-photo:nth-child(4),
    .wall-photo:nth-child(5),
    .wall-photo:nth-child(6),
    .wall-photo:nth-child(8),
    .wall-photo:nth-child(9),
    .wall-photo:nth-child(10),
    .wall-photo:nth-child(11),
    .wall-photo:nth-child(12) {
        grid-column: span 3;
    }


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

    .gallery-cta-inner {
        grid-template-columns:
            auto 1fr;

        gap: 25px;
    }


    .cta-button {
        grid-column: 2;

        justify-self: start;
    }

}


/* =========================================================
   22. MOBILE
========================================================= */

@media (max-width: 700px) {

    /* =====================================================
       FOUNDATION
    ====================================================== */

    .premium-gallery {
        background:
            linear-gradient(
                180deg,
                #011c14 0%,
                #02291d 32%,
                #f7f5ee 32%,
                #f7f5ee 100%
            );
    }


    /* =====================================================
       HERO
    ====================================================== */

    .gallery-hero-new {
        padding:
            55px 20px
            75px;

        min-height: auto;
    }


    .gallery-hero-new::after {
        background:
            linear-gradient(
                180deg,
                rgba(1, 28, 20, 0.82),
                rgba(1, 28, 20, 0.22)
            );
    }


    .gallery-hero-inner {
        gap: 48px;
    }


    .gallery-hero-copy {
        width: 100%;
    }


    .gallery-eyebrow {
        padding: 8px 13px;

        font-size: 9px;

        letter-spacing: 1.8px;
    }


    .gallery-hero-copy h1 {
        margin-bottom: 20px;

        font-size:
            clamp(46px, 14vw, 66px);

        line-height: 0.98;

        letter-spacing: -2.5px;
    }


    .gallery-hero-copy > p {
        margin-bottom: 28px;

        font-size: 13px;

        line-height: 1.8;
    }


    /* =====================================================
       HERO BUTTONS
    ====================================================== */

    .gallery-hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;

        max-width: 330px;

        margin-left: auto;
        margin-right: auto;

        margin-bottom: 35px;
    }


    .gallery-btn {
        width: 100%;
    }


    /* =====================================================
       HERO STATS
    ====================================================== */

    .gallery-stats {
        width: 100%;

        display: grid;

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

        padding-top: 18px;

        text-align: center;
    }


    .gallery-stat {
        min-width: 0;

        padding:
            0 8px;

        margin:
            0;

        border-right:
            1px solid
            rgba(255, 255, 255, 0.10);
    }


    .gallery-stat:last-child {
        border-right: 0;
    }


    .gallery-stat strong {
        font-size: 21px;
    }


    .gallery-stat span {
        font-size: 8px;

        line-height: 1.35;
    }


    /* =====================================================
       MOBILE HERO COLLAGE
    ====================================================== */

    .gallery-hero-collage {
        width: 100%;

        height: 380px;
    }


    .hero-photo {
        border-width: 4px;

        border-radius: 13px;
    }


    .hero-photo-large {
        width: 66%;
        height: 72%;

        left: 0;
        top: 13%;

        transform: rotate(-3deg);
    }


    .hero-photo-top {
        width: 42%;
        height: 38%;

        right: 0;
        top: 0;
    }


    .hero-photo-right {
        width: 42%;
        height: 39%;

        right: 0;
        bottom: 0;
    }


    .hero-photo-bottom {
        width: 42%;
        height: 31%;

        left: 28%;
        bottom: 0;
    }


    .camera-badge {
        width: 45px;
        height: 45px;

        right: 40%;

        top: 42%;

        font-size: 14px;
    }


    .hero-scroll {
        display: none;
    }


    /* =====================================================
       CATEGORY BAR
    ====================================================== */

    .gallery-category-wrap {
        margin-top: -25px;

        padding:
            0 12px;
    }


    .gallery-category-bar {
        justify-content: flex-start;

        border-radius: 11px;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.20);
    }


    .gallery-category {
        min-height: 43px;

        padding:
            0 15px;

        font-size: 9px;
    }


    .gallery-category i {
        font-size: 10px;
    }


    /* =====================================================
       SECTION HEADINGS
    ====================================================== */

    .gallery-intro-new,
    .featured-collections,
    .gallery-stories,
    .photo-wall-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    .gallery-intro-new {
        padding-top: 80px;

        padding-bottom: 35px;
    }


    .small-heading {
        font-size: 8px;

        letter-spacing: 1.8px;
    }


    .gallery-section-heading h2 {
        font-size:
            clamp(31px, 9vw, 43px);

        letter-spacing: -1px;
    }


    .gallery-section-heading p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* =====================================================
       FEATURED COLLECTIONS
    ====================================================== */

    .featured-collections {
        padding-top: 20px;

        padding-bottom: 80px;
    }


    .collection-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 280px;

        gap: 13px;
    }


    .collection-card.collection-large,
    .collection-card.collection-wide,
    .collection-card:nth-child(2),
    .collection-card:nth-child(3),
    .collection-card:nth-child(4) {
        grid-column: span 1;

        grid-row: span 1;
    }


    .collection-card.collection-large {
        min-height: 350px;
    }


    .collection-overlay {
        padding: 20px;
    }


    .collection-tag {
        padding: 6px 9px;

        font-size: 7px;
    }


    .collection-info h3,
    .collection-large .collection-info h3 {
        font-size: 24px;
    }


    .collection-info p,
    .collection-large .collection-info p {
        font-size: 10px;

        line-height: 1.55;

        margin-bottom: 11px;
    }


    .featured-collections::after {
        margin-top: 45px;
    }


    /* =====================================================
       HIGHLIGHT STRIP
    ====================================================== */

    .gallery-highlight-strip {
        padding:
            70px 20px;
    }


    .highlight-inner {
        gap: 35px;
    }


    .highlight-text h2 {
        font-size:
            clamp(32px, 9vw, 45px);

        letter-spacing: -1.2px;
    }


    .highlight-numbers {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .highlight-numbers > div {
        min-height: 110px;

        padding:
            18px 15px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.10);
    }


    .highlight-numbers > div:nth-child(2) {
        border-right: 0;
    }


    .highlight-numbers > div:nth-child(3),
    .highlight-numbers > div:nth-child(4) {
        border-bottom: 0;
    }


    .highlight-numbers strong {
        font-size: 28px;
    }


    .highlight-numbers span {
        font-size: 8px;
    }


    /* =====================================================
       STORIES
    ====================================================== */

    .gallery-stories {
        padding-top: 90px;

        padding-bottom: 95px;
    }


    .gallery-stories > .gallery-section-heading {
        margin-bottom: 60px;
    }


    .story-block,
    .story-block.story-reverse {
        display: flex;

        flex-direction: column;

        gap: 35px;

        margin-bottom: 90px;
    }


    .story-photo {
        width: 100%;

        height: 340px;
    }


    .story-number {
        width: 54px;
        height: 54px;

        left: -8px;
        top: 20px;

        font-size: 14px;
    }


    .story-photo::before {
        width: 70px;
        height: 70px;

        left: -7px;
        bottom: -7px;
    }


    .story-photo::after {
        width: 60px;
        height: 60px;

        right: -6px;
        top: -6px;
    }


    .story-content {
        width: 100%;
    }


    .story-content h3 {
        font-size:
            clamp(28px, 8vw, 38px);

        letter-spacing: -1px;
    }


    .story-content p {
        font-size: 12px;

        line-height: 1.85;
    }


    /* =====================================================
       PHOTO WALL
    ====================================================== */

    .photo-wall-section {
        padding-top: 85px;

        padding-bottom: 90px;
    }


    .photo-wall-heading {
        margin-bottom: 40px;
    }


    .photo-wall-heading h2 {
        font-size:
            clamp(34px, 9vw, 46px);

        letter-spacing: -1px;
    }


    .photo-wall {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 180px;

        gap: 9px;
    }


    .wall-photo.wall-large,
    .wall-photo.wall-wide {
        grid-column: span 2;
    }


    .wall-photo.wall-tall {
        grid-column: span 1;

        grid-row: span 2;
    }


    .wall-photo:nth-child(2),
    .wall-photo:nth-child(3),
    .wall-photo:nth-child(4),
    .wall-photo:nth-child(6),
    .wall-photo:nth-child(8),
    .wall-photo:nth-child(9),
    .wall-photo:nth-child(10),
    .wall-photo:nth-child(11),
    .wall-photo:nth-child(12) {
        grid-column: span 1;

        grid-row: span 1;
    }


    .wall-overlay {
        width: 42px;
        height: 42px;

        font-size: 11px;

        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(0.85);

        background:
            rgba(3, 31, 22, 0.55);
    }


    .wall-photo:hover {
        transform:
            translateY(-3px)
            scale(1.01);
    }


    .photo-wall-section .photo-wall::after {
        min-height: 45px;

        font-size: 6px;

        letter-spacing: 1.8px;
    }


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

    .gallery-cta {
        padding:
            55px 20px;
    }


    .gallery-cta-inner {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 20px;
    }


    .cta-icon {
        width: 65px;
        height: 65px;

        margin: 0 auto;

        font-size: 21px;
    }


    .cta-copy > span {
        font-size: 8px;
    }


    .cta-copy h2 {
        font-size:
            clamp(29px, 8vw, 39px);
    }


    .cta-copy p {
        font-size: 11px;
    }


    .cta-button {
        grid-column: auto;

        justify-self: center;

        width: min(100%, 250px);
    }

}


/* =========================================================
   23. SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .gallery-hero-new {
        padding:
            45px 16px
            65px;
    }


    .gallery-hero-copy h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .gallery-hero-copy > p {
        font-size: 12px;
    }


    .gallery-hero-collage {
        height: 330px;
    }


    .gallery-stats strong {
        font-size: 19px;
    }


    .gallery-stat span {
        font-size: 7px;
    }


    .gallery-category {
        padding:
            0 13px;

        font-size: 8px;
    }


    .collection-card.collection-large {
        min-height: 320px;
    }


    .story-photo {
        height: 290px;
    }


    .story-content h3 {
        font-size: 28px;
    }


    .photo-wall {
        grid-auto-rows: 155px;
    }


    .wall-photo.wall-large {
        grid-row: span 2;
    }


    .gallery-cta {
        padding:
            50px 16px;
    }

}


/* =========================================================
   24. VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .gallery-hero-copy h1 {
        font-size: 40px;
    }


    .gallery-hero-collage {
        height: 290px;
    }


    .gallery-stat strong {
        font-size: 17px;
    }


    .gallery-stat span {
        font-size: 6.5px;
    }


    .collection-info h3,
    .collection-large .collection-info h3 {
        font-size: 21px;
    }


    .story-photo {
        height: 260px;
    }


    .photo-wall {
        grid-auto-rows: 135px;
    }

}


/* =========================================================
   25. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .premium-gallery *,
    .premium-gallery *::before,
    .premium-gallery *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   END OF PART 5
========================================================= */
/* =========================================================
   PART 6A — GALLERY LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(1, 18, 13, 0.94);

    backdrop-filter: blur(14px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.gallery-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.gallery-lightbox-content {
    position: relative;

    width: min(1100px, 92vw);

    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    transform:
        translateY(20px)
        scale(0.96);

    transition:
        transform 0.4s cubic-bezier(.2,.7,.2,1);
}


.gallery-lightbox.active
.gallery-lightbox-content {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   LIGHTBOX IMAGE
========================================================= */

.gallery-lightbox-image {
    display: block;

    width: auto;
    max-width: 100%;

    max-height: 78vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.55);

    background: #06291e;
}


/* =========================================================
   TITLE
========================================================= */

.gallery-lightbox-title {
    margin-top: 17px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-align: center;

    letter-spacing: 0.2px;
}


.gallery-lightbox-counter {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.45);

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.gallery-lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.gallery-lightbox-close:hover {
    background: #d6ad4f;

    color: #08291e;

    transform: rotate(90deg);
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

.gallery-lightbox-nav {
    position: fixed;

    top: 50%;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 15px;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.gallery-lightbox-nav:hover {
    background: #d6ad4f;

    color: #08291e;
}


.gallery-lightbox-prev {
    left: 28px;

    transform: translateY(-50%);
}


.gallery-lightbox-next {
    right: 28px;

    transform: translateY(-50%);
}


.gallery-lightbox-prev:hover {
    transform:
        translateY(-50%)
        translateX(-3px);
}


.gallery-lightbox-next:hover {
    transform:
        translateY(-50%)
        translateX(3px);
}


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

@media (max-width: 700px) {

    .gallery-lightbox {
        padding: 15px;
    }


    .gallery-lightbox-content {
        width: 100%;
    }


    .gallery-lightbox-image {
        max-width: 94vw;

        max-height: 72vh;

        border-radius: 7px;
    }


    .gallery-lightbox-close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;

        font-size: 14px;
    }


    .gallery-lightbox-nav {
        top: auto;
        bottom: 30px;

        width: 46px;
        height: 46px;
    }


    .gallery-lightbox-prev {
        left: 25px;

        transform: none;
    }


    .gallery-lightbox-next {
        right: 25px;

        transform: none;
    }


    .gallery-lightbox-prev:hover {
        transform: translateX(-3px);
    }


    .gallery-lightbox-next:hover {
        transform: translateX(3px);
    }


    .gallery-lightbox-title {
        max-width: 85vw;

        font-size: 11px;
    }

}
