
:root {

    --green: #0b3d32;

    --green-dark: #062a23;

    --green-light: #104f42;


    --gold: #d4af5a;

    --gold-light: #f3d993;

    --gold-bright: #f7e4a5;

    --gold-dark: #96702e;


    --white: #ffffff;

    --white-soft: #e8e5dc;


    --text-muted:
        rgba(255, 255, 255, 0.70);


    --border:
        rgba(255, 255, 255, 0.16);


    --gold-border:
        rgba(212, 175, 90, 0.40);


    --content-width:
        1400px;


    --transition:
        400ms cubic-bezier(.16, 1, .3, 1);

}


/* =========================================================
   02. RESET
   ========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    width: 100%;

    min-height: 100%;

    background:
        var(--green);

    scroll-behavior:
        smooth;

}


body {

    width: 100%;

    min-height: 100%;

    margin: 0;

    overflow-x: hidden;

    background:
        var(--green);

    color:
        var(--white);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;

}


img,
video {

    display: block;

    max-width: 100%;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    border: 0;

    outline: none;

    cursor: pointer;

}


a {

    color: inherit;

    text-decoration: none;

}


::selection {

    background:
        var(--gold);

    color:
        var(--green-dark);

}


/* =========================================================
   03. COMMON SECTION
   ========================================================= */

section {

    position: relative;

    width: 100%;

}


.section-heading {

    width:
        min(
            calc(100% - 40px),
            900px
        );

    margin:
        0 auto 60px;

    text-align:
        center;

}


.section-eyebrow {

    display:
        block;

    margin-bottom:
        18px;

    color:
        var(--gold);

    font-size:
        .78rem;

    font-weight:
        500;

    letter-spacing:
        .35em;

    text-transform:
        uppercase;

}


.section-heading h2,
.about-content h2,
.portfolio-preview-content h2,
.contact-content h2 {

    font-family:
        "Cinzel Decorative",
        serif;

    font-weight:
        400;

    line-height:
        1.12;

    font-size:
        clamp(
            2rem,
            4vw,
            4.5rem
        );

}


.section-heading p {

    max-width:
        650px;

    margin:
        24px auto 0;

    color:
        var(--text-muted);

    font-size:
        clamp(
            1.05rem,
            1.5vw,
            1.35rem
        );

    line-height:
        1.6;

}


/* =========================================================
   04. HERO
   ========================================================= */

.hero-section {

    position:
        relative;

    width:
        100%;

    height:
        100svh;

    min-height:
        600px;

    overflow:
        hidden;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--green);

    -webkit-tap-highlight-color:
        transparent;

}


/* =========================================================
   HERO BACKGROUND VIDEO
   ========================================================= */

.hero-video {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    z-index:
        1;

    background:
        var(--green-dark);

    opacity:
        0;

    pointer-events:
        none;

    user-select:
        none;

    -webkit-user-select:
        none;

    -webkit-tap-highlight-color:
        transparent;

    animation:
        heroVideoFade 2s ease forwards 0.1s;

}

@keyframes heroVideoFade {
    0% { opacity: 0; transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1); }
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.1);
}


/* =========================================================
   HERO GOLD PARTICLES CANVAS
   ========================================================= */

.hero-particles {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    z-index:
        3;

    pointer-events:
        none;

    opacity:
        0.85;

}


/* =========================================================
   05. HERO BRAND COMPOSITION

   Anchored center with graceful entrance
   ========================================================= */

.hero-brand {

    position:
        absolute;

    top:
        42%;

    left:
        50%;

    transform:
        translate(-50%, -50%);

    z-index:
        5;

    width:
        min(94vw, 1000px);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    gap:
        2px;

    pointer-events:
        none;

    animation:
        heroBrandEntrance 1.6s cubic-bezier(.16, 1, .3, 1) both;

}

@keyframes heroBrandEntrance {
    0% {
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


/* =========================================================
   06. LOGO PNG
   ========================================================= */

.hero-logo-image {

    width:
        min(520px, 70vw);

    height:
        auto;

    object-fit:
        contain;

    margin-top:
        0;

    margin-bottom:
        clamp(-185px, -19vw, -145px);

    filter:
        drop-shadow(0 6px 18px rgba(0, 0, 0, .55))
        drop-shadow(0 0 25px rgba(212, 175, 90, .15));

    pointer-events:
        auto;

    transition:
        transform 0.6s cubic-bezier(.16, 1, .3, 1);

    animation:
        heroLogoReveal 1.6s cubic-bezier(.16, 1, .3, 1) 0.2s both;

}

.hero-logo-image:hover {

    transform:
        scale(1.02);

}

@keyframes heroLogoReveal {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   07. GEMRAY & ANCHORED SPARK WRAPPER
   ========================================================= */

.brand-name-wrapper {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    pointer-events:
        auto;

}


.brand-name {

    position:
        relative;

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        clamp(
            3.2rem,
            6.2vw,
            7rem
        );

    font-weight:
        400;

    line-height:
        .95;

    letter-spacing:
        .02em;

    white-space:
        nowrap;

    cursor:
        default;


    /* CALM, PERMANENT LUXURY POLISHED GOLD (NEVER DISAPPEARS OR RESETS) */

    background:

        linear-gradient(
            105deg,

            #a57934 0%,

            #cfa34e 16%,

            #f1d892 32%,

            #fff2b8 42%,

            #cca04d 56%,

            #ebce80 72%,

            #af7f34 86%,

            #eed086 100%
        );


    -webkit-background-clip:
        text;

    background-clip:
        text;


    -webkit-text-fill-color:
        transparent;


    filter:

        drop-shadow(
            0 2px 4px
            rgba(0, 0, 0, .80)
        )

        drop-shadow(
            0 0 10px
            rgba(212, 175, 90, .20)
        );

}


/* =========================================================
   08. METALLIC GLINT OVERLAY (LEFT -> RIGHT LIGHT SWEEP)
   ========================================================= */

.brand-glint {

    position:
        absolute;

    inset:
        0;

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        clamp(
            3.2rem,
            6.2vw,
            7rem
        );

    font-weight:
        400;

    line-height:
        .95;

    letter-spacing:
        .02em;

    white-space:
        nowrap;

    pointer-events:
        none;

    user-select:
        none;

    z-index:
        2;


    /* NARROW BRIGHT METALLIC LIGHT REFLECTION */

    background:

        linear-gradient(
            105deg,

            transparent 0%,

            transparent 38%,

            rgba(255, 255, 255, 0.20) 44%,

            rgba(255, 255, 255, 0.95) 49%,

            rgba(255, 248, 210, 1.0) 51%,

            rgba(255, 255, 255, 0.95) 53%,

            rgba(255, 255, 255, 0.20) 58%,

            transparent 64%,

            transparent 100%
        );


    background-size:
        280% 100%;

    background-position:
        140% 0;


    -webkit-background-clip:
        text;

    background-clip:
        text;


    -webkit-text-fill-color:
        transparent;

    opacity:
        0;

}


/* GLINT SWEEP ANIMATION (LEFT TO RIGHT ON DEMAND) */

.hero-brand.gold-sweep .brand-glint {

    animation:
        metallicGlint
        3.2s
        linear
        forwards;

}


@keyframes metallicGlint {

    0% {

        opacity:
            0;

        background-position:
            140% 0;

    }


    10% {

        opacity:
            1;

    }


    80% {

        opacity:
            1;

        background-position:
            -20% 0;

    }


    100% {

        opacity:
            0;

        background-position:
            -35% 0;

    }

}


/* =========================================================
   09. STUDIO
   ========================================================= */

.brand-studio {

    margin-top:
        0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            .9rem,
            1.7vw,
            1.8rem
        );

    font-weight:
        500;

    line-height:
        1;

    letter-spacing:
        .72em;

    padding-left:
        .62em;

    white-space:
        nowrap;

    pointer-events:
        auto;


    /* CALM POLISHED GOLD */

    background:

        linear-gradient(
            105deg,

            #9a7134 0%,

            #d4af5a 25%,

            #f3d993 40%,

            #bd8e43 52%,

            #e0ba6b 72%,

            #a97a35 100%
        );


    -webkit-background-clip:
        text;

    background-clip:
        text;


    -webkit-text-fill-color:
        transparent;

}


/* =========================================================
   10. CINEMATIC 4-POINT LENS FLARE SPARK
   Anchored directly at the top-right serif of 'Y' in GEMRAY
   ========================================================= */

.logo-spark {

    position:
        absolute;

    top:
        10%;

    right:
        0;

    transform:
        translate(30%, -30%) scale(0.1);

    width:
        12px;

    height:
        12px;

    opacity:
        0;

    pointer-events:
        none;

    z-index:
        10;

}


.spark-core {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    transform:
        translate(-50%, -50%);

    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            #ffffff 0%,
            #fff8d8 35%,
            var(--gold-light) 65%,
            var(--gold) 85%,
            transparent 100%
        );

    box-shadow:
        0 0 8px #ffffff,
        0 0 16px var(--gold-light),
        0 0 28px rgba(212, 175, 90, 0.85);

}


.spark-flare-h {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        44px;

    height:
        2px;

    transform:
        translate(-50%, -50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.95),
            transparent
        );

    box-shadow:
        0 0 6px rgba(255, 240, 180, 0.9);

}


.spark-flare-v {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        2px;

    height:
        44px;

    transform:
        translate(-50%, -50%);

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.95),
            transparent
        );

    box-shadow:
        0 0 6px rgba(255, 240, 180, 0.9);

}


.spark-flare-d1 {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        24px;

    height:
        1.5px;

    transform:
        translate(-50%, -50%) rotate(45deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 240, 180, 0.85),
            transparent
        );

}


.spark-flare-d2 {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        24px;

    height:
        1.5px;

    transform:
        translate(-50%, -50%) rotate(-45deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 240, 180, 0.85),
            transparent
        );

}


/* SPARK TRIGGER ANIMATION */

.hero-brand.spark-active .logo-spark {

    animation:
        cinematicSpark
        0.9s
        cubic-bezier(.16, 1, .3, 1)
        forwards;

}


@keyframes cinematicSpark {

    0% {

        opacity:
            0;

        transform:
            translate(30%, -30%) scale(.1) rotate(0deg);

    }


    20% {

        opacity:
            1;

        transform:
            translate(30%, -30%) scale(1.25) rotate(30deg);

    }


    45% {

        opacity:
            1;

        transform:
            translate(30%, -30%) scale(1) rotate(60deg);

    }


    75% {

        opacity:
            .6;

        transform:
            translate(30%, -30%) scale(.7) rotate(90deg);

    }


    100% {

        opacity:
            0;

        transform:
            translate(30%, -30%) scale(.1) rotate(120deg);

    }

}


/* =========================================================
   11. TAGLINE
   ========================================================= */

.brand-tagline {

    margin-top:
        12px;

    font-family:
        "Canela",
        "Fraunces",
        "Cormorant Garamond",
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            1.15rem,
            1.9vw,
            1.65rem
        );

    font-weight:
        400;

    font-style:
        italic;

    letter-spacing:
        0.06em;

    text-transform:
        none;

    line-height:
        1.3;

    color:
        var(--gold-light);

    opacity:
        0.7;

    white-space:
        nowrap;

    pointer-events:
        auto;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.75),
        0 0 16px rgba(212, 175, 90, 0.35);

    animation:
        heroTaglineReveal 1.8s cubic-bezier(.16, 1, .3, 1) 0.65s both;

}

@keyframes heroTaglineReveal {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}


/* =========================================================
   12. HERO SOUND BUTTON & SVG ICONS
   ========================================================= */

.sound-button {

    position:
        absolute;

    right:
        30px;

    bottom:
        30px;

    z-index:
        10;

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(212,175,90,.4);

    border-radius:
        50%;

    color:
        var(--gold-light);

    background:
        rgba(11,61,50,.55);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(212, 175, 90, 0.15);

    transition:
        all 0.35s cubic-bezier(.16, 1, .3, 1);

}


.sound-button:hover {

    color:
        #ffffff;

    border-color:
        var(--gold-bright);

    background:
        rgba(16, 79, 66, 0.8);

    transform:
        scale(1.1);

    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 90, 0.35);

}

.sound-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.sound-icon svg {
    transition: transform 0.25s ease;
}

.sound-button:hover .sound-icon svg {
    transform: scale(1.1);
}


#iconUnmuted {

    display:
        none;

}


/* =========================================================
   13. SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {

    position:
        absolute;

    left:
        50%;

    bottom:
        25px;

    transform:
        translateX(-50%);

    z-index:
        8;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        8px;

    color:
        rgba(255,255,255,.65);

    font-size:
        .7rem;

    letter-spacing:
        .25em;

    text-transform:
        uppercase;

}


.scroll-line {

    width:
        1px;

    height:
        35px;

    background:

        linear-gradient(
            to bottom,

            rgba(255,255,255,.7),

            transparent
        );

}


/* =========================================================
   14. CUSTOMER STORIES
   ========================================================= */

.stories-section {

    min-height:
        100vh;

    min-height:
        100svh;

    padding:
        clamp(50px, 6vh, 90px) 24px clamp(60px, 8vh, 110px);

    background:
        var(--green);

    position:
        relative;

    overflow:
        hidden;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    align-items:
        center;

}


.stories-heading {

    margin:
        0 auto clamp(20px, 3vh, 36px);

    text-align:
        center;

    z-index:
        5;

}


.stories-heading .section-eyebrow {

    margin-bottom:
        0;

}


/* =========================================================
   3D STACKED DECK CONTAINER (FULL-SCREEN DISTRIBUTED STAGE)
   ========================================================= */

.stories-stack-container {

    position:
        relative;

    width:
        100%;

    max-width:
        1440px;

    margin:
        0 auto;

    padding:
        20px 0 50px;

    perspective:
        1400px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    user-select:
        none;

    touch-action:
        pan-y;

}


.stories-deck {

    position:
        relative;

    width:
        min(92vw, 760px);

    aspect-ratio:
        16 / 9.6;

    min-height:
        360px;

    transform-style:
        preserve-3d;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    cursor:
        grab;

}

.stories-deck:active {

    cursor:
        grabbing;

}


/* =========================================================
   3D STACKED CARD STATES (DISTRIBUTED ACROSS SCREEN)
   ========================================================= */

.story-deck-card {

    position:
        absolute;

    width:
        100%;

    top:
        0;

    left:
        0;

    border-radius:
        16px;

    background:
        #041a15;

    border:
        1px solid rgba(212, 175, 90, 0.28);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.65);

    overflow:
        hidden;

    will-change:
        transform, opacity;

    transform-style:
        preserve-3d;

    backface-visibility:
        hidden;

    -webkit-backface-visibility:
        hidden;

    transition:
        transform 0.6s cubic-bezier(0.2, 1, 0.35, 1),
        opacity 0.6s cubic-bezier(0.2, 1, 0.35, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    transform-origin:
        center center;

}


/* ACTIVE (FRONT) CARD - HERO FOCUS IN CENTER */
.story-deck-card.is-active {

    z-index:
        10;

    transform:
        translate3d(0, 0, 0) scale(1) rotate(0deg);

    opacity:
        1;

    pointer-events:
        auto;

    border-color:
        rgba(212, 175, 90, 0.8);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.85),
        0 0 35px rgba(212, 175, 90, 0.28);

}

.story-deck-card.is-active .story-video-wrapper {

    filter:
        none;

}


/* NEXT CARD (RIGHT BACKGROUND WING - WIDE SPREAD ACROSS SCREEN) */
.story-deck-card.is-next {

    z-index:
        6;

    transform:
        translate3d(62%, 0, -95px) scale(0.82) rotate(4.5deg);

    opacity:
        0.80;

    pointer-events:
        auto;

    cursor:
        pointer;

    border-color:
        rgba(212, 175, 90, 0.35);

}

.story-deck-card.is-next .story-video-wrapper {

    filter:
        blur(3px) brightness(0.68);

}


/* PREVIOUS CARD (LEFT BACKGROUND WING - WIDE SPREAD ACROSS SCREEN) */
.story-deck-card.is-prev {

    z-index:
        5;

    transform:
        translate3d(-62%, 0, -95px) scale(0.82) rotate(-4.5deg);

    opacity:
        0.80;

    pointer-events:
        auto;

    cursor:
        pointer;

    border-color:
        rgba(212, 175, 90, 0.35);

}

.story-deck-card.is-prev .story-video-wrapper {

    filter:
        blur(3px) brightness(0.68);

}


/* HIDDEN CARDS */
.story-deck-card.is-hidden {

    z-index:
        1;

    transform:
        translate3d(0, 0, -220px) scale(0.65);

    opacity:
        0;

    pointer-events:
        none;

}


/* DRAGGING SWIPE INERTIA INTERACTION */
.stories-deck.is-dragging .story-deck-card.is-active {

    transition:
        none;

}


/* =========================================================
   VIDEO WRAPPER & VIGNETTE
   ========================================================= */

.story-deck-card .story-video-wrapper {

    position:
        relative;

    width:
        100%;

    aspect-ratio:
        16 / 9;

    overflow:
        hidden;

    background:
        #000;

}


.story-deck-card .story-video {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    background:
        #000;

    border:
        0;

}


.story-video-vignette {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.1) 0%,
            transparent 40%,
            rgba(0,0,0,0.4) 75%,
            rgba(0,0,0,0.85) 100%
        );

    pointer-events:
        none;

    z-index:
        2;

}


.story-deck-card .story-video-content {

    padding:
        14px 22px 18px;

    background:
        rgba(6, 42, 35, 0.88);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    border-top:
        1px solid rgba(212, 175, 90, 0.18);

}


.story-deck-card .story-video-content span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        var(--gold);

    font-size:
        0.75rem;

    letter-spacing:
        0.22em;

    text-transform:
        uppercase;

    font-weight:
        600;

}


.story-deck-card .story-video-content h3 {

    font-size:
        clamp(1.15rem, 1.8vw, 1.55rem);

    font-weight:
        400;

    color:
        #ffffff;

    line-height:
        1.3;

    margin:
        0;

}





/* =========================================================
   STORY SOUND BUTTON
   ========================================================= */

.story-sound-btn {

    position:
        absolute;

    top:
        32px;

    right:
        30px;

    z-index:
        16;

    width:
        42px;

    height:
        42px;

    border-radius:
        50%;

    border:
        1px solid rgba(255, 255, 255, 0.45);

    background:
        rgba(6, 42, 35, 0.65);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    color:
        #ffffff;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    cursor:
        pointer;

    transition:
        all 0.3s ease;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.45);

}

.story-sound-btn svg {

    width:
        18px;

    height:
        18px;

}

.story-sound-btn:hover {

    border-color:
        var(--gold);

    color:
        var(--gold);

    transform:
        scale(1.08);

}


/* =========================================================
   CENTERED PARALLEL UP / DOWN REVIEW NAVIGATION CONTROLS
   ========================================================= */

.stories-nav-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(6, 42, 35, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(212, 175, 90, 0.65);
    color: var(--gold-light, #f4e8c1);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(212, 175, 90, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    z-index: 20;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .stories-nav-btn {
        display: flex;
    }
}

.stories-nav-btn.stories-nav-top {
    margin: 0 auto clamp(14px, 2.2vh, 26px);
}

.stories-nav-btn.stories-nav-bottom {
    margin: clamp(14px, 2.2vh, 26px) auto 0;
}

.stories-nav-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-light, #f4e8c1);
    transition: transform 0.25s ease, stroke 0.25s ease;
}

.stories-nav-btn:hover {
    background: rgba(10, 56, 46, 0.98);
    border-color: var(--gold, #d4af5a);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 22px rgba(212, 175, 90, 0.5);
    transform: scale(1.1);
}

.stories-nav-btn:hover svg {
    stroke: #ffffff;
}

.stories-nav-btn:active {
    transform: scale(0.92);
}


/* =========================================================
   15. PHOTOGRAPHER INTRO
   ========================================================= */

.photographer-intro-section {

    width:
        100%;

    background:
        #000000;

}


.photographer-desktop-video {

    position:
        relative;

    width:
        100%;

    height:
        100svh;

    min-height:
        600px;

    overflow:
        hidden;

}


.horizontal-video {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    background:
        #000;

}


.photographer-video-overlay {

    position:
        absolute;

    inset:
        0;

    z-index:
        2;

    pointer-events:
        none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.05) 70%,
            rgba(0, 0, 0, 0.30) 100%
        );

}


.photographer-intro-content {

    position:
        absolute;

    z-index:
        4;

    left:
        clamp(
            25px,
            8vw,
            130px
        );

    top:
        clamp(
            55px,
            8vw,
            115px
        );

    bottom:
        auto;

    width:
        min(
            90%,
            600px
        );

}


.photographer-intro-content h2 {

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        clamp(
            2rem,
            4.2vw,
            4.5rem
        );

    font-weight:
        400;

    line-height:
        1.05;

    margin-bottom:
        8px;

    white-space:
        nowrap;

}


.photographer-intro-content .photographer-role {

    display:
        block;

    margin-bottom:
        50px;

    color:
        var(--gold);

    font-size:
        clamp(
            .72rem,
            1.1vw,
            .88rem
        );

    letter-spacing:
        .32em;

    text-transform:
        uppercase;

}


.photographer-intro-content p {

    max-width:
        520px;

    color:
        rgba(255,255,255,.78);

    font-size:
        clamp(
            1.05rem,
            1.5vw,
            1.4rem
        );

    line-height:
        1.55;

}


.photographer-intro-content .photographer-quote {

    font-style:
        italic;

    font-weight:
        500;

    color:
        var(--gold-light);

    font-size:
        clamp(
            1.35rem,
            2.1vw,
            1.9rem
        );

    line-height:
        1.35;

    margin-bottom:
        22px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(212, 175, 90, 0.25);

}


.photographer-location {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-top:
        150px;

    white-space:
        nowrap;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(0.70rem, 0.88vw, 0.82rem);

    font-weight:
        600;

    letter-spacing:
        0.20em;

    text-transform:
        uppercase;

    filter:
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95));

}


.photographer-location span {

    display:
        inline-block;

    white-space:
        nowrap;

    /* PURE WHITE BASE WITH SHARP METALLIC REFLECTION SWEEP */

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 36%,
            #ffffff 44%,
            rgba(220, 220, 220, 0.5) 47%,
            #ffffff 50%,
            rgba(220, 220, 220, 0.5) 53%,
            #ffffff 56%,
            #ffffff 64%,
            #ffffff 100%
        );

    background-size:
        240% 100%;

    background-position:
        130% 0;

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

    animation:
        locationMetallicSweep
        6s
        cubic-bezier(0.25, 0.1, 0.25, 1)
        infinite;

}


@keyframes locationMetallicSweep {

    0% {

        background-position:
            135% 0;

    }

    50% {

        background-position:
            -35% 0;

    }

    100% {

        background-position:
            -35% 0;

    }

}


.photographer-location svg {

    flex-shrink:
        0;

    width:
        13px;

    height:
        13px;

    stroke:
        #ffffff;

    filter:
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));

}


/* =========================================================
   16. PHOTOGRAPHER SOUND BUTTON
   ========================================================= */

.video-sound-button {

    position:
        absolute;

    right:
        40px;

    bottom:
        40px;

    z-index:
        8;

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(255,255,255,.5);

    border-radius:
        50%;

    color:
        #fff;

    background:
        rgba(11,61,50,.35);

    backdrop-filter:
        blur(8px);

    transition:
        var(--transition);

}


.video-sound-button:hover {

    color:
        var(--gold);

    border-color:
        var(--gold);

    transform:
        scale(1.08);

}


.photographer-unmuted-icon {

    display:
        none;

}


/* =========================================================
   17. MOBILE PHOTOGRAPHER VIDEO
   ========================================================= */

.photographer-mobile-video {

    display:
        none;

}


/* =========================================================
   18. ABOUT
   ========================================================= */

.about-section {

    padding:
        clamp(80px, 10vw, 160px) 20px;

    background:
        var(--green-dark);

}


.about-container {

    width:
        min(
            100%,
            1200px
        );

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap:
        clamp(
            45px,
            8vw,
            120px
        );

    align-items:
        center;

}


.about-image {

    overflow:
        hidden;

    border:
        1px solid
        var(--gold-border);

}


.about-image img {

    width:
        100%;

    aspect-ratio:
        4 / 5;

    object-fit:
        cover;

}


.about-content h2 {

    margin-bottom:
        28px;

}


.about-content p {

    max-width:
        560px;

    margin-bottom:
        18px;

    color:
        var(--text-muted);

    font-size:
        clamp(
            1.15rem,
            1.6vw,
            1.45rem
        );

    line-height:
        1.65;

}


.about-signature {

    margin-top:
        40px;

    font-family:
        "Great Vibes",
        cursive;

    font-size:
        3rem;

    color:
        var(--gold);

}


/* =========================================================
   19. QUOTE
   ========================================================= */

.quote-section {

    min-height:
        70svh;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        100px 20px;

    background:
        var(--green);

}


.quote-content {

    width:
        min(
            100%,
            1000px
        );

    text-align:
        center;

}


.quote-content blockquote {

    font-size:
        clamp(
            2.3rem,
            5vw,
            5.5rem
        );

    font-weight:
        300;

    font-style:
        italic;

    line-height:
        1.1;

}


.quote-mark {

    display:
        block;

    margin-top:
        35px;

    color:
        var(--gold);

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        .85rem;

    letter-spacing:
        .18em;

    text-transform:
        uppercase;

}


/* =========================================================
   20. PORTFOLIO PREVIEW (SPLIT CINEMATIC SHOWCASE)
   ========================================================= */

.portfolio-preview-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vh, 80px) 24px;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(11, 61, 50, 0.45) 0%,
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #041a15 0%,
            var(--green-dark) 45%,
            #041a15 100%
        );
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* SPLIT STAGE CONTAINER */
.portfolio-split-stage {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(30px, 3.5vw, 60px);
    width: min(100%, 1380px);
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* 1. LEFT SIDE: CLEAN 16:9 HORIZONTAL WIDESCREEN VIDEO WINDOW WITH LIQUID GLASS BORDER */
.portfolio-video-window {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.portfolio-video-window-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    padding: 6px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.42) 0%,
        rgba(212, 175, 90, 0.45) 20%,
        rgba(18, 87, 73, 0.28) 50%,
        rgba(243, 217, 147, 0.38) 80%,
        rgba(255, 255, 255, 0.28) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 35px rgba(212, 175, 90, 0.22),
        inset 0 1.5px 3px rgba(255, 255, 255, 0.65),
        inset 0 -1.5px 3px rgba(0, 0, 0, 0.35);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
    overflow: hidden;
}

.portfolio-video-window-frame:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.75),
        0 0 50px rgba(212, 175, 90, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.85),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45);
}

.portfolio-showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: #000;
}

.portfolio-video-overlay-glow {
    position: absolute;
    inset: 6px;
    border-radius: 16px;
    background: radial-gradient(
        circle at center,
        transparent 65%,
        rgba(4, 26, 21, 0.35) 100%
    );
    pointer-events: none;
}

/* LIQUID GLASS PRISMATIC SHEEN SWEEP OVER VIDEO BORDER */
.portfolio-video-liquid-sheen {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.45) 45%,
        rgba(243, 217, 147, 0.3) 55%,
        transparent 80%
    );
    background-size: 250% 250%;
    animation: liquidGlassSheenVideo 6s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 2;
}

.portfolio-sound-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 90, 0.5);
    background: rgba(6, 42, 35, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    -webkit-tap-highlight-color: transparent;
}

.portfolio-sound-btn:hover {
    background: rgba(212, 175, 90, 0.25);
    border-color: var(--gold);
    color: #ffffff;
    transform: scale(1.08);
}

.portfolio-sound-btn:active {
    transform: scale(0.95);
}

.portfolio-sound-btn svg {
    width: 18px;
    height: 18px;
}

@keyframes liquidGlassSheenVideo {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}


/* 2. RIGHT SIDE: PHOTOS WINDOW WITH BACKGROUND COLLAGE FLOATING DIRECTLY BEHIND EXPLORE BUTTON */
.portfolio-photos-window {
    position: relative;
    width: 100%;
    min-height: clamp(450px, 60vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* BACKGROUND GLASS PHOTO COLLAGE MATRIX */
.portfolio-glass-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.portfolio-glass-card {
    position: absolute;
    border-radius: 14px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 90, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 90, 0.08);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s ease;
    will-change: transform, opacity;
}

.portfolio-glass-card .glass-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-glass-card .glass-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.5px) brightness(0.75) saturate(0.9);
    transition: filter 0.6s ease, transform 0.8s ease, opacity 0.7s ease;
}

.portfolio-glass-card .glass-photo-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14) 0%,
        transparent 60%,
        rgba(212, 175, 90, 0.08) 100%
    );
    pointer-events: none;
}

/* 8 PHOTO POSITIONS CLUSTERED AND FLOATING DIRECTLY BEHIND BUTTON */
.pgc-1 {
    top: 2%;
    left: 10%;
    width: 135px;
    height: 180px;
    animation: floatOrganic1 8.5s ease-in-out infinite;
}

.pgc-2 {
    top: 2%;
    right: 10%;
    width: 140px;
    height: 185px;
    animation: floatOrganic2 10.5s ease-in-out infinite;
}

.pgc-3 {
    bottom: 2%;
    left: 8%;
    width: 145px;
    height: 190px;
    animation: floatOrganic3 12s ease-in-out infinite;
}

.pgc-4 {
    bottom: 2%;
    right: 8%;
    width: 135px;
    height: 180px;
    animation: floatOrganic4 9.5s ease-in-out infinite;
}

.pgc-5 {
    top: 30%;
    left: 0%;
    width: 125px;
    height: 165px;
    animation: floatOrganic2 11s ease-in-out 1s infinite;
}

.pgc-6 {
    top: 28%;
    right: 0%;
    width: 130px;
    height: 170px;
    animation: floatOrganic1 9s ease-in-out 1.5s infinite;
}

/* CARDS 7 & 8 FLOATING DIRECTLY BEHIND THE EXPLORE BUTTON */
.pgc-7 {
    top: 24%;
    left: 30%;
    width: 140px;
    height: 185px;
    animation: floatOrganic3 13s ease-in-out 2s infinite;
}

.pgc-8 {
    bottom: 22%;
    right: 28%;
    width: 145px;
    height: 190px;
    animation: floatOrganic4 10s ease-in-out 0.5s infinite;
}

/* SLOW RANDOM 2D ORGANIC FLOATING ANIMATIONS */
@keyframes floatOrganic1 {
    0%, 100% {
        transform: translate(0, 0) rotate(-5deg);
    }
    33% {
        transform: translate(6px, -12px) rotate(-3deg);
    }
    66% {
        transform: translate(-5px, -6px) rotate(-7deg);
    }
}

@keyframes floatOrganic2 {
    0%, 100% {
        transform: translate(0, 0) rotate(6deg);
    }
    33% {
        transform: translate(-8px, 10px) rotate(4deg);
    }
    66% {
        transform: translate(6px, 5px) rotate(7deg);
    }
}

@keyframes floatOrganic3 {
    0%, 100% {
        transform: translate(0, 0) rotate(4deg);
    }
    33% {
        transform: translate(8px, 8px) rotate(6deg);
    }
    66% {
        transform: translate(-6px, 14px) rotate(2deg);
    }
}

@keyframes floatOrganic4 {
    0%, 100% {
        transform: translate(0, 0) rotate(-6deg);
    }
    33% {
        transform: translate(-10px, -8px) rotate(-4deg);
    }
    66% {
        transform: translate(7px, -14px) rotate(-8deg);
    }
}

/* 3. DIRECT LIQUID GLASS EXPLORE MORE BUTTON WITH ARROW */
.portfolio-explore-btn {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 36px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 90, 0.3) 0%,
        rgba(243, 217, 147, 0.14) 50%,
        rgba(6, 42, 35, 0.7) 100%
    );
    border: 1.5px solid rgba(212, 175, 90, 0.65);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--gold-light);
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(212, 175, 90, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.portfolio-explore-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 90, 0.48) 0%,
        rgba(243, 217, 147, 0.28) 50%,
        rgba(11, 61, 50, 0.85) 100%
    );
    border-color: var(--gold-light);
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(212, 175, 90, 0.45);
}

.explore-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-btn-arrow svg {
    width: 18px;
    height: 18px;
}

.portfolio-explore-btn:hover .explore-btn-arrow {
    transform: translateX(5px);
}

.explore-btn-sheen {
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-25deg);
    animation: liquidGlassSheenSweep 5s infinite;
    pointer-events: none;
}


/* =========================================================
   21. GALLERY
   ========================================================= */

.gallery-section {

    padding:
        clamp(80px, 10vw, 160px) 20px;

    background:
        var(--green);

}


.gallery-tabs {

    width:
        min(
            100%,
            800px
        );

    margin:
        0 auto 50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        10px;

}


.tab {

    padding:
        10px 22px;

    color:
        var(--gold);

    border:
        1px solid rgba(212, 175, 90, 0.35);

    background:
        rgba(6, 42, 35, 0.6);

    border-radius:
        4px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        .82rem;

    font-weight:
        500;

    letter-spacing:
        .18em;

    text-transform:
        uppercase;

    cursor:
        pointer;

    transition:
        all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

}


.tab:hover,
.tab.active {

    color:
        var(--gold-light);

    border-color:
        var(--gold);

    background:
        rgba(212, 175, 90, 0.18);

    box-shadow:
        0 0 16px rgba(212, 175, 90, 0.3);

    transform:
        translateY(-2px);

}


.gallery-grid {

    width:
        min(
            100%,
            1500px
        );

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:
        12px;

}


.g-item {

    position:
        relative;

    overflow:
        hidden;

    aspect-ratio:
        4 / 5;

    cursor:
        pointer;

    background:
        var(--green-dark);

}


.g-item img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 900ms
        cubic-bezier(.16,1,.3,1);

}


.g-item:hover img {

    transform:
        scale(1.045);

}


.g-item.hidden {

    display:
        none !important;

}


.g-item.g-item-hidden-limit {

    display:
        none !important;

}


/* =========================================================
   22. SERVICES
   ========================================================= */

.services-section {

    padding:
        clamp(80px, 10vw, 160px) 20px;

    background:
        var(--green-dark);

}


.services-grid {

    width:
        min(
            100%,
            1250px
        );

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    border-top:
        1px solid
        var(--border);

    border-left:
        1px solid
        var(--border);

}


.service-card {

    min-height:
        260px;

    padding:
        35px;

    border-right:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    transition:
        var(--transition);

}


.service-card:hover {

    background:
        rgba(212,175,90,.06);

}


.service-number {

    display:
        block;

    margin-bottom:
        40px;

    color:
        var(--gold);

    font-size:
        .8rem;

    letter-spacing:
        .15em;

}


.service-card h3 {

    margin-bottom:
        15px;

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        clamp(
            1.1rem,
            1.5vw,
            1.55rem
        );

    font-weight:
        400;

    line-height:
        1.3;

}


.service-card p {

    max-width:
        350px;

    color:
        var(--text-muted);

    font-size:
        1.05rem;

    line-height:
        1.5;

}


/* =========================================================
   23. CONTACT
   ========================================================= */

.contact-section {

    padding:
        clamp(80px, 10vw, 160px) 20px;

    background:
        var(--green);

}


.contact-container {

    width:
        min(
            100%,
            1250px
        );

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(0,1.1fr);

    gap:
        clamp(
            50px,
            8vw,
            120px
        );

}


.contact-content h2 {

    margin-bottom:
        25px;

}


.contact-content > p {

    max-width:
        520px;

    margin-bottom:
        35px;

    color:
        var(--text-muted);

    font-size:
        clamp(
            1.1rem,
            1.5vw,
            1.35rem
        );

    line-height:
        1.6;

}


.contact-details {

    padding-top:
        25px;

    border-top:
        1px solid
        var(--border);

}


.contact-details p {

    margin-bottom:
        10px;

    color:
        rgba(255,255,255,.75);

    font-size:
        1.1rem;

}


/* =========================================================
   24. CONTACT FORM
   ========================================================= */

.contact-form {

    display:
        grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:
        24px;

}


.form-group {

    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

}


.form-group-full {

    grid-column:
        1 / -1;

}


.form-group label {

    color:
        rgba(255,255,255,.65);

    font-size:
        .85rem;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;

}


.form-group input,
.form-group select,
.form-group textarea {

    width:
        100%;

    padding:
        10px 0;

    border:
        0;

    border-bottom:
        1px solid
        rgba(255,255,255,.22);

    outline:
        none;

    color:
        #fff;

    background:
        transparent;

    border-radius:
        0;

    font-size:
        1.15rem;

    transition:
        border-color var(--transition);

}


.form-group textarea {

    resize:
        vertical;

    min-height:
        130px;

}


.form-group select option {

    background:
        var(--green-dark);

    color:
        #fff;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--gold);

}


/* =========================================================
   CUSTOM GLASSMORPHIC SELECT DROPDOWN
   (SUPPORTED ON ANDROID CHROME, IOS SAFARI & ALL BROWSERS)
   ========================================================= */

.custom-select-group {

    position:
        relative;

}


.custom-select-wrapper {

    position:
        relative;

    width:
        100%;

}


.custom-select-trigger {

    width:
        100%;

    padding:
        10px 0;

    border:
        0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.22);

    outline:
        none;

    color:
        #fff;

    background:
        transparent;

    border-radius:
        0;

    font-size:
        1.15rem;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    cursor:
        pointer;

    text-align:
        left;

    transition:
        border-color var(--transition);

    -webkit-tap-highlight-color:
        transparent;

}


.custom-select-trigger:focus,
.custom-select-wrapper.open .custom-select-trigger {

    border-color:
        var(--gold);

}


.custom-select-value {

    color:
        #fff;

    white-space:
        nowrap;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    font-size:
        1.15rem;

}


.custom-select-arrow {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gold);

    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);

}


.custom-select-wrapper.open .custom-select-arrow {

    transform:
        rotate(180deg);

}


/* FLOATING GLASS DROPDOWN MENU */

.custom-select-dropdown {

    position:
        absolute;

    bottom:
        calc(100% + 10px);

    left:
        0;

    width:
        100%;

    min-width:
        280px;

    max-width:
        100%;

    z-index:
        150;

    padding:
        8px 6px;

    background:
        rgba(6, 42, 35, 0.90);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    border:
        1px solid
        rgba(212, 175, 90, 0.35);

    border-radius:
        18px;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(212, 175, 90, 0.15);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(8px) scale(0.97);

    transform-origin:
        bottom center;

    transition:
        opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.28s ease;

    pointer-events:
        none;

    overflow:
        hidden;

}


.custom-select-wrapper.open .custom-select-dropdown {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0) scale(1);

    pointer-events:
        auto;

}


.custom-select-option {

    display:
        flex;

    align-items:
        center;

    gap: 10px;

    padding:
        12px 14px;

    border-radius:
        12px;

    color:
        rgba(255, 255, 255, 0.88);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        0.92rem;

    line-height:
        1.35;

    cursor:
        pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;

    user-select:
        none;

    -webkit-tap-highlight-color:
        transparent;

}


.custom-select-option:hover,
.custom-select-option:focus {

    background:
        rgba(255, 255, 255, 0.08);

    color:
        #ffffff;

}


.custom-select-option:active {

    transform:
        scale(0.98);

}


.custom-select-option.selected {

    background:
        rgba(212, 175, 90, 0.18);

    color:
        var(--gold-light);

    font-weight:
        500;

}


.opt-check {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        16px;

    height:
        16px;

    color:
        var(--gold);

    font-size:
        0.95rem;

    font-weight:
        bold;

    opacity:
        0;

    transition:
        opacity 0.2s ease;

}


.custom-select-option.selected .opt-check {

    opacity:
        1;

}


.opt-text {

    flex:
        1;

}


@media (max-width: 600px) {

    .custom-select-dropdown {

        border-radius:
            16px;

        padding:
            6px 4px;

    }

    .custom-select-option {

        padding:
            11px 12px;

        font-size:
            0.88rem;

    }

}


/* =========================================================
   CUSTOM LUXURY GLASSMORPHIC CALENDAR DATE PICKER
   (EMERALD GREEN & GOLD PALETTE FOR ALL BROWSERS)
   ========================================================= */

.custom-date-group {

    position:
        relative;

}


.custom-date-wrapper {

    position:
        relative;

    width:
        100%;

}


.custom-date-trigger {

    width:
        100%;

    padding:
        10px 0;

    border:
        0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.22);

    outline:
        none;

    color:
        #fff;

    background:
        transparent;

    border-radius:
        0;

    font-size:
        1.15rem;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    cursor:
        pointer;

    text-align:
        left;

    transition:
        border-color var(--transition);

    -webkit-tap-highlight-color:
        transparent;

}


.custom-date-trigger:focus,
.custom-date-wrapper.open .custom-date-trigger {

    border-color:
        var(--gold);

}


.custom-date-value {

    color:
        rgba(255, 255, 255, 0.7);

    white-space:
        nowrap;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    font-size:
        1.15rem;

    transition:
        color 0.3s ease;

}


.custom-date-value.has-value {

    color:
        #ffffff;

    font-weight:
        500;

}


.custom-date-icon {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gold);

    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.3s ease;

}


.custom-date-trigger:hover .custom-date-icon,
.custom-date-wrapper.open .custom-date-icon {

    color:
        var(--gold-light);

    transform:
        scale(1.08);

}


/* FLOATING GLASS CALENDAR POPUP */

.custom-calendar-popup {

    position:
        absolute;

    bottom:
        calc(100% + 10px);

    left:
        0;

    width:
        100%;

    min-width:
        310px;

    max-width:
        340px;

    z-index:
        150;

    padding:
        16px 14px 12px;

    background:
        rgba(6, 42, 35, 0.94);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    border:
        1px solid
        rgba(212, 175, 90, 0.35);

    border-radius:
        18px;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(212, 175, 90, 0.15);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(8px) scale(0.97);

    transform-origin:
        bottom center;

    transition:
        opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.28s ease;

    pointer-events:
        none;

    user-select:
        none;

}


.custom-date-wrapper.open .custom-calendar-popup {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0) scale(1);

    pointer-events:
        auto;

}


/* CALENDAR HEADER */

.calendar-header {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        12px;

    padding-bottom:
        10px;

    border-bottom:
        1px solid
        rgba(212, 175, 90, 0.2);

}


.cal-month-year {

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        0.96rem;

    font-weight:
        700;

    letter-spacing:
        0.08em;

    color:
        var(--gold-light);

    text-align:
        center;

}


.cal-nav-btn {

    width:
        32px;

    height:
        32px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(212, 175, 90, 0.1);

    border:
        1px solid
        rgba(212, 175, 90, 0.3);

    color:
        var(--gold);

    font-size:
        1.25rem;

    cursor:
        pointer;

    line-height:
        1;

    padding-bottom:
        2px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;

}


.cal-nav-btn:hover {

    background:
        rgba(212, 175, 90, 0.25);

    color:
        #fff;

    transform:
        scale(1.08);

}


.cal-nav-btn:active {

    transform:
        scale(0.95);

}


/* WEEKDAYS */

.cal-weekdays {

    display:
        grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap:
        4px;

    text-align:
        center;

    margin-bottom:
        8px;

}


.cal-weekdays span {

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        0.72rem;

    font-weight:
        600;

    letter-spacing:
        0.08em;

    color:
        rgba(212, 175, 90, 0.7);

    text-transform:
        uppercase;

    padding:
        4px 0;

}


/* DAYS GRID */

.cal-days-grid {

    display:
        grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap:
        4px;

}


.cal-day {

    aspect-ratio:
        1 / 1;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        transparent;

    border:
        1px solid
        transparent;

    color:
        rgba(255, 255, 255, 0.88);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        0.84rem;

    font-weight:
        400;

    cursor:
        pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease,
        border-color 0.2s ease;

    -webkit-tap-highlight-color:
        transparent;

}


.cal-day:hover:not(:disabled) {

    background:
        rgba(212, 175, 90, 0.2);

    color:
        #ffffff;

    border-color:
        rgba(212, 175, 90, 0.4);

    transform:
        scale(1.08);

}


.cal-day:active:not(:disabled) {

    transform:
        scale(0.94);

}


.cal-day-today {

    border-color:
        var(--gold);

    color:
        var(--gold-light);

    font-weight:
        600;

}


.cal-day-selected {

    background:
        linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;

    color:
        var(--green-dark) !important;

    font-weight:
        700 !important;

    box-shadow:
        0 0 14px rgba(212, 175, 90, 0.6);

    border-color:
        transparent !important;

}


.cal-day-other-month {

    color:
        rgba(255, 255, 255, 0.18) !important;

    pointer-events:
        none;

}


.cal-day-disabled {

    color:
        rgba(255, 255, 255, 0.2) !important;

    pointer-events:
        none;

    cursor:
        default;

}


/* FOOTER BUTTONS */

.cal-footer {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-top:
        10px;

    padding-top:
        8px;

    border-top:
        1px solid
        rgba(212, 175, 90, 0.15);

}


.cal-action-btn {

    padding:
        5px 12px;

    background:
        transparent;

    border:
        1px solid
        rgba(212, 175, 90, 0.25);

    border-radius:
        14px;

    color:
        rgba(255, 255, 255, 0.7);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        0.74rem;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

    cursor:
        pointer;

    transition:
        all 0.2s ease;

}


.cal-action-btn:hover {

    color:
        var(--gold-light);

    border-color:
        var(--gold);

    background:
        rgba(212, 175, 90, 0.12);

}


.cal-today-btn {

    color:
        var(--gold);

    border-color:
        rgba(212, 175, 90, 0.4);

}


@media (max-width: 600px) {

    .custom-calendar-popup {

        min-width:
            100%;

        max-width:
            100%;

        border-radius:
            16px;

        padding:
            14px 10px 10px;

    }

    .cal-day {

        font-size:
            0.80rem;

    }

}


.submit-button {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 16px 36px;
    border: 1px solid rgba(212, 175, 90, 0.45);
    background: rgba(6, 42, 35, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--gold-light);
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.submit-button:hover {
    background: linear-gradient(135deg, rgba(212, 175, 90, 0.35) 0%, rgba(6, 42, 35, 0.95) 100%);
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(212, 175, 90, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0) scale(0.98);
}


/* =========================================================
   25. FOOTER
   ========================================================= */

.site-footer {

    padding:
        80px 20px 30px;

    background:
        #062a23;

    text-align:
        center;

    border-top:
        1px solid
        var(--border);

}


.footer-brand {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

}


.footer-logo {

    width:
        clamp(
            160px,
            20vw,
            240px
        );

    height:
        auto;

    object-fit:
        contain;

    margin-bottom:
        clamp(-82px, -9vw, -58px);

    filter:
        drop-shadow(0 4px 12px rgba(0, 0, 0, .55))
        drop-shadow(0 0 20px rgba(212, 175, 90, .15));

}


.footer-brand-name-wrapper {

    position:
        relative;

    display:
        inline-block;

}


.footer-brand-name {

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        clamp(
            2.4rem,
            4.5vw,
            4.2rem
        );

    font-weight:
        400;

    line-height:
        .95;

    letter-spacing:
        .02em;

    white-space:
        nowrap;

    background:
        linear-gradient(
            105deg,
            #a57934 0%,
            #cfa34e 16%,
            #f1d892 32%,
            #fff2b8 42%,
            #cca04d 56%,
            #ebce80 72%,
            #af7f34 86%,
            #eed086 100%
        );

    background-size:
        240% 100%;

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

    animation:
        footerGoldShimmer
        6s
        cubic-bezier(0.25, 0.1, 0.25, 1)
        infinite;

    filter:
        drop-shadow(
            0 2px 4px
            rgba(0, 0, 0, .80)
        )
        drop-shadow(
            0 0 10px
            rgba(212, 175, 90, .20)
        );

}


@keyframes footerGoldShimmer {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


.footer-brand-studio {

    margin-top:
        2px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            .85rem,
            1.3vw,
            1.25rem
        );

    font-weight:
        500;

    line-height:
        1;

    letter-spacing:
        .72em;

    padding-left:
        .62em;

    white-space:
        nowrap;

    background:
        linear-gradient(
            105deg,
            #9a7134 0%,
            #d4af5a 25%,
            #f3d993 40%,
            #bd8e43 52%,
            #e0ba6b 72%,
            #a97a35 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

}


.footer-tagline {

    margin-top:
        16px;

    margin-bottom:
        35px;

    font-family:
        "Canela",
        "Fraunces",
        "Cormorant Garamond",
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            1.05rem,
            1.35vw,
            1.35rem
        );

    font-weight:
        400;

    font-style:
        italic;

    letter-spacing:
        0.06em;

    text-transform:
        none;

    color:
        var(--gold-light);

    opacity:
        0.7;

    text-shadow:
        0 0 12px rgba(212, 175, 90, 0.35);

}


.footer-navigation {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px 30px;

    margin:
        50px auto 30px;

}


.footer-navigation a {

    color:
        rgba(255,255,255,.65);

    font-size:
        .85rem;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    transition:
        color var(--transition);

}


.footer-navigation a:hover {

    color:
        var(--gold);

}


.footer-social {

    display:
        flex;

    justify-content:
        center;

    gap:
        30px;

}


.footer-social a {

    color:
        var(--gold);

}


.footer-bottom {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        10px 25px;

    margin-top:
        50px;

    padding-top:
        25px;

    border-top:
        1px solid
        var(--border);

}


.footer-bottom p {

    color:
        rgba(255,255,255,.4);

    font-size:
        .8rem;

}


/* =========================================================
   26. FLOATING WHATSAPP / FREE DEMO
   ========================================================= */

/* =========================================================
   26. FLOATING BOOK YOUR 15 MINUTES CONSULTANCY BUTTON (IPHONE LIQUID GLASS)
   ========================================================= */

.floating-demo-button {

    position:
        fixed;

    right:
        clamp(16px, 2.5vw, 28px);

    bottom:
        clamp(16px, 2.5vw, 28px);

    z-index:
        1000;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        12px 24px;

    border-radius:
        999px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.06) 45%,
            rgba(15, 25, 22, 0.35) 75%,
            rgba(6, 20, 16, 0.45) 100%
        );

    backdrop-filter:
        blur(28px)
        saturate(170%)
        brightness(108%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(170%)
        brightness(108%);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(0.72rem, 0.88vw, 0.82rem);

    font-weight:
        600;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

    text-decoration:
        none;

    border:
        1px solid
        rgba(255, 255, 255, 0.28);

    border-color:
        rgba(255, 255, 255, 0.45)
        rgba(255, 255, 255, 0.2)
        rgba(255, 255, 255, 0.12)
        rgba(255, 255, 255, 0.35);

    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.38),
        inset 0 1.5px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(0, 0, 0, 0.25);

    overflow:
        hidden;

    cursor:
        pointer;

    animation:
        liquidGlassFloat 4.8s
        ease-in-out
        infinite;

    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        background 0.3s ease;

    -webkit-tap-highlight-color:
        transparent;

    user-select:
        none;

}


/* iPhone Liquid Glass dynamic reflection sheen */
.floating-demo-button::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -160%;

    width:
        80%;

    height:
        100%;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%
        );

    transform:
        skewX(-28deg);

    animation:
        liquidGlassSheenSweep 4.5s
        cubic-bezier(0.25, 0.1, 0.25, 1)
        infinite;

    pointer-events:
        none;

}


@keyframes liquidGlassSheenSweep {

    0% {
        left: -160%;
    }

    42%, 100% {
        left: 240%;
    }

}


/* iPhone fluid floating breathing effect without outer glow */
@keyframes liquidGlassFloat {

    0%, 100% {
        transform: translateY(0);
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.35),
            inset 0 1.5px 1px rgba(255, 255, 255, 0.55),
            inset 0 -1px 1px rgba(0, 0, 0, 0.22);
    }

    50% {
        transform: translateY(-4px);
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.44),
            inset 0 1.5px 1px rgba(255, 255, 255, 0.65),
            inset 0 -1px 1px rgba(0, 0, 0, 0.28);
    }

}


.floating-demo-button:hover {

    transform:
        translateY(-6px)
        scale(1.02);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(15, 25, 22, 0.45) 75%,
            rgba(6, 20, 16, 0.55) 100%
        );

    border-color:
        rgba(255, 255, 255, 0.6)
        rgba(255, 255, 255, 0.3)
        rgba(255, 255, 255, 0.2)
        rgba(255, 255, 255, 0.5);

    box-shadow: 
        0 14px 34px rgba(0, 0, 0, 0.48),
        inset 0 1.5px 1.5px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(0, 0, 0, 0.35);

}


.floating-demo-button:active {

    transform:
        translateY(-2px)
        scale(0.98);

}


.floating-demo-text {

    position:
        relative;

    z-index:
        1;

    white-space:
        nowrap;

    color:
        #ffffff;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6);

}


@media (max-width: 768px) {

    .floating-demo-button {

        background:
            linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.05) 45%,
                rgba(12, 20, 18, 0.42) 80%,
                rgba(6, 16, 14, 0.55) 100%
            );

        backdrop-filter:
            blur(24px)
            saturate(160%);

        -webkit-backdrop-filter:
            blur(24px)
            saturate(160%);

        border:
            1px solid
            rgba(255, 255, 255, 0.25);

        border-color:
            rgba(255, 255, 255, 0.38)
            rgba(255, 255, 255, 0.18)
            rgba(255, 255, 255, 0.12)
            rgba(255, 255, 255, 0.3);

        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.36),
            inset 0 1px 1px rgba(255, 255, 255, 0.5),
            inset 0 -1px 1px rgba(0, 0, 0, 0.2);

        animation:
            none;

    }

    .floating-demo-button::before {

        display:
            none;

    }

    .floating-demo-text {

        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.6);

    }

}


@media (max-width: 600px) {

    .floating-demo-button {

        right:
            14px;

        bottom:
            16px;

        padding:
            10px 18px;

        font-size:
            0.72rem;

        letter-spacing:
            0.10em;

    }

}


/* =========================================================
   27. LIGHTBOX
   ========================================================= */

.lightbox {

    position:
        fixed;

    inset:
        0;

    z-index:
        2000;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        50px;

    background:
        rgba(0,0,0,.96);

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;

}


.lightbox.active {

    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;

}


.lightbox-image-wrapper {

    width:
        min(90vw,1200px);

    height:
        min(85vh,850px);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.lightbox-image-wrapper img,
.lightbox-image-wrapper video {

    max-width:
        100%;

    max-height:
        100%;

    object-fit:
        contain;

}


.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position:
        absolute;

    z-index:
        5;

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #fff;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius:
        50%;

    background:
        rgba(255,255,255,.04);

    font-family:
        Arial,
        sans-serif;

    transition:
        var(--transition);

}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    color:
        var(--gold);

    border-color:
        var(--gold);

}


.lightbox-close {

    top:
        25px;

    right:
        25px;

    font-size:
        30px;

}


.lightbox-prev {

    left:
        25px;

    top:
        50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    right:
        25px;

    top:
        50%;

    transform:
        translateY(-50%);

}


.lightbox-counter {

    position:
        absolute;

    top:
        25px;

    left:
        50%;

    transform:
        translateX(-50%);

    z-index:
        6;

    color:
        var(--gold-light);

    font-family:
        "Cinzel Decorative",
        serif;

    font-size:
        0.88rem;

    letter-spacing:
        0.16em;

    background:
        rgba(6, 42, 35, 0.85);

    padding:
        6px 16px;

    border-radius:
        20px;

    border:
        1px solid
        rgba(212, 175, 90, 0.3);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    pointer-events:
        none;

}


/* =========================================================
   28. TABLET
   ========================================================= */

@media (max-width: 1000px) {


    .services-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

    }


    .about-container {

        gap:
            50px;

    }


}


/* =========================================================
   29. MOBILE
   ========================================================= */

@media (max-width: 768px) {


    /* =====================================================
       HERO
       ===================================================== */

    .hero-section {

        height:
            100svh;

        min-height:
            600px;

    }


    .hero-brand {

        width:
            95vw;

    }


    /* =====================================================
       LOGO
       ===================================================== */

    .hero-logo-image {

        width:
            clamp(
                200px,
                55vw,
                290px
            );

        margin-top:
            0;

        margin-bottom:
            clamp(-125px, -14vw, -92px);

    }


    /* =====================================================
       GEMRAY
       ===================================================== */

    .brand-name,
    .brand-glint {

        font-size:
            clamp(
                2.2rem,
                10vw,
                4.5rem
            );

        max-width:
            95vw;

        margin-top:
            0;

    }


    /* =====================================================
       STUDIO
       ===================================================== */

    .brand-studio {

        margin-top:
            0;

        font-size:
            1.05rem;

        letter-spacing:
            .52em;

        padding-left:
            .52em;

    }


    /* =====================================================
       TAGLINE
       ===================================================== */

    .brand-tagline {

        margin-top:
            10px;

        font-size:
            clamp(
                1.05rem,
                4vw,
                1.35rem
            );

        letter-spacing:
            0.06em;

        max-width:
            90vw;

        white-space:
            normal;

    }


    /* =====================================================
       SPARK
       ===================================================== */

    .logo-spark {

        top:
            5%;

        right:
            0;

        transform:
            translate(35%, -35%) scale(0.85);

    }


    /* =====================================================
       HERO SOUND
       ===================================================== */

    .sound-button {

        right:
            18px;

        bottom:
            18px;

        width:
            44px;

        height:
            44px;

    }


    .scroll-indicator {

        display:
            none;

    }


    /* =====================================================
       STORIES (3D STACKED HORIZONTAL FOR MOBILE)
       ===================================================== */

    .stories-section {

        min-height:
            100vh;

        min-height:
            100svh;

        padding:
            40px 14px 60px;

        display:
            flex;

        flex-direction:
            column;

        justify-content:
            center;

        align-items:
            center;

    }

    .stories-stack-container {

        width:
            100%;

        padding:
            10px 0 35px;

        perspective:
            900px;

        touch-action:
            pan-x pan-y;

    }

    .stories-deck {

        width:
            min(88vw, 360px);

        aspect-ratio:
            16 / 9.5;

        min-height:
            210px;

        margin:
            110px auto 120px;

    }

    .story-deck-card {

        border-radius:
            12px;

    }

    /* PREVIOUS CARD (PROMINENTLY REVEALED ABOVE MAIN VIDEO) */
    .story-deck-card.is-prev {

        transform:
            translate3d(0, -135px, -70px) scale(0.85);

        opacity:
            0.82;

        z-index:
            4;

        cursor:
            pointer;

    }

    .story-deck-card.is-prev .story-video-wrapper {

        filter:
            blur(2px) brightness(0.7);

    }

    /* ACTIVE FRONT CARD (HERO CENTER) */
    .story-deck-card.is-active {

        transform:
            translate3d(0, 0, 0) scale(1);

        z-index:
            10;

        opacity:
            1;

    }

    .story-deck-card.is-active .story-video-wrapper {

        filter:
            none;

    }

    /* NEXT CARD (PROMINENTLY REVEALED BELOW MAIN VIDEO) */
    .story-deck-card.is-next {

        transform:
            translate3d(0, 135px, -70px) scale(0.85);

        opacity:
            0.82;

        z-index:
            4;

        cursor:
            pointer;

    }

    .story-deck-card.is-next .story-video-wrapper {

        filter:
            blur(2px) brightness(0.7);

    }

    .story-deck-card .story-video-content {

        padding:
            10px 14px 12px;

    }

    .story-deck-card .story-video-content span {

        font-size:
            0.68rem;

        margin-bottom:
            2px;

    }

    .story-deck-card .story-video-content h3 {

        font-size:
            1.05rem;

    }



    .story-sound-btn {

        top:
            14px;

        right:
            14px;

        width:
            36px;

        height:
            36px;

    }

    .story-sound-btn svg {

        width:
            15px;

        height:
            15px;

    }

    .stories-nav-btn {
        width: 44px;
        height: 44px;
        background: rgba(6, 42, 35, 0.92);
        border: 1.5px solid rgba(212, 175, 90, 0.75);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.65), 0 0 16px rgba(212, 175, 90, 0.35);
    }

    .stories-nav-btn.stories-nav-top {
        margin: 0 auto 14px;
    }

    .stories-nav-btn.stories-nav-bottom {
        margin: 14px auto 0;
    }

    .stories-nav-btn svg {
        width: 20px;
        height: 20px;
    }


    /* =====================================================
       PHOTOGRAPHER DESKTOP HIDDEN
       ===================================================== */

    .photographer-desktop-video {

        display:
            none;

    }


    /* =====================================================
       PHOTOGRAPHER MOBILE REEL (VERTICAL VIDEO)
       ===================================================== */

    .photographer-mobile-video {

        position:
            relative;

        display:
            flex;

        flex-direction:
            column;

        justify-content:
            flex-end;

        align-items:
            center;

        min-height:
            100svh;

        width:
            100%;

        padding:
            40px 20px 48px;

        overflow:
            hidden;

        background:
            #000000;

    }


    .photographer-mobile-video .photographer-video-overlay {

        position:
            absolute;

        inset:
            0;

        z-index:
            2;

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.05) 30%,
                rgba(0, 0, 0, 0.65) 65%,
                rgba(0, 0, 0, 0.95) 100%
            );

        pointer-events:
            none;

    }


    .vertical-video {

        position:
            absolute;

        inset:
            0;

        width:
            100%;

        height:
            100%;

        object-fit:
            cover;

        object-position:
            center;

    }


    .photographer-mobile-video
    .photographer-intro-content {

        position:
            relative;

        z-index:
            4;

        left:
            auto;

        right:
            auto;

        top:
            auto;

        bottom:
            auto;

        width:
            100%;

        max-width:
            480px;

        margin:
            0 auto;

        text-align:
            center;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;

    }


    .photographer-mobile-video
    .photographer-intro-content h2 {

        font-size:
            clamp(
                1.9rem,
                7.5vw,
                2.6rem
            );

        white-space:
            nowrap;

        margin-bottom:
            4px;

        text-align:
            center;

        color:
            #ffffff;

        text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.85);

    }


    .photographer-mobile-video
    .photographer-intro-content .photographer-role {

        margin-bottom:
            14px;

        font-size:
            clamp(
                0.66rem,
                2.8vw,
                0.78rem
            );

        letter-spacing:
            0.18em;

        text-align:
            center;

        color:
            var(--gold);

        text-shadow:
            0 1px 6px rgba(0, 0, 0, 0.8);

    }


    .photographer-mobile-video
    .photographer-intro-content .photographer-quote {

        font-size:
            clamp(
                1.02rem,
                4vw,
                1.25rem
            );

        line-height:
            1.42;

        margin-bottom:
            16px;

        text-align:
            center;

        color:
            var(--gold-light);

        text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.9);

    }


    .photographer-mobile-video
    .photographer-location {

        margin-top:
            0;

        font-size:
            clamp(0.62rem, 2.3vw, 0.74rem);

        letter-spacing:
            0.14em;

        white-space:
            nowrap;

        justify-content:
            center;

        text-align:
            center;

        color:
            rgba(255, 255, 255, 0.88);

        text-shadow:
            0 1px 6px rgba(0, 0, 0, 0.8);

    }


    .photographer-mobile-video
    .video-sound-button {

        top:
            24px;

        right:
            20px;

        bottom:
            auto;

    }


    /* =====================================================
       ABOUT
       ===================================================== */

    .about-section {

        padding:
            80px 20px;

    }


    .about-container {

        grid-template-columns:
            1fr;

        gap:
            50px;

    }


    /* =====================================================
       QUOTE
       ===================================================== */

    .quote-section {

        min-height:
            60svh;

        padding:
            80px 20px;

    }


    /* =====================================================
       PORTFOLIO PREVIEW (MOBILE STACKED CINEMATIC GLASS)
       ===================================================== */

    .portfolio-preview-section {
        min-height: auto;
        padding: 60px 16px 80px;
    }

    .portfolio-split-stage {
        grid-template-columns: 1fr;
        gap: 36px;
        width: 100%;
    }

    .portfolio-video-window {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .portfolio-video-window-frame {
        aspect-ratio: 16 / 9;
        max-height: none;
        border-radius: 16px;
    }

    .portfolio-photos-window {
        width: 100%;
        min-height: 360px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .portfolio-glass-collage {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        pointer-events: none;
        overflow: visible;
    }

    .portfolio-glass-card {
        position: absolute;
        border-radius: 9px;
        padding: 2.5px;
    }

    /* ALL 8 PHOTOS VISIBLE IN MOBILE CLUSTER FLOATING BEHIND EXPLORE BUTTON */
    .pgc-1 {
        left: 2%;
        top: 2%;
        width: 78px;
        height: 104px;
    }

    .pgc-2 {
        right: 2%;
        top: 2%;
        width: 82px;
        height: 110px;
    }

    .pgc-3 {
        left: 2%;
        bottom: 2%;
        width: 82px;
        height: 110px;
    }

    .pgc-4 {
        right: 2%;
        bottom: 2%;
        width: 78px;
        height: 104px;
    }

    .pgc-5 {
        left: -3%;
        top: 36%;
        width: 72px;
        height: 96px;
    }

    .pgc-6 {
        right: -3%;
        top: 34%;
        width: 74px;
        height: 98px;
    }

    /* CARDS 7 & 8 FLOATING DIRECTLY BEHIND THE EXPLORE BUTTON ON MOBILE */
    .pgc-7 {
        left: 22%;
        top: 22%;
        width: 88px;
        height: 118px;
        z-index: 1;
    }

    .pgc-8 {
        right: 20%;
        bottom: 20%;
        width: 90px;
        height: 120px;
        z-index: 1;
    }

    .portfolio-explore-btn {
        padding: 13px 30px;
        font-size: 0.82rem;
        gap: 8px;
    }


    /* =====================================================
       GALLERY
       ===================================================== */

    .gallery-section {

        padding:
            80px 10px;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:
            7px;

    }


    .gallery-tabs {

        justify-content:
            flex-start;

        overflow-x:
            auto;

        flex-wrap:
            nowrap;

        scrollbar-width:
            none;

    }


    .gallery-tabs::-webkit-scrollbar {

        display:
            none;

    }


    .tab {

        flex:
            0 0 auto;

        padding:
            8px 12px;

        font-size:
            .72rem;

    }


    /* =====================================================
       SERVICES
       ===================================================== */

    .services-section {

        padding:
            80px 15px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            auto;

        padding:
            30px 25px;

    }


    /* =====================================================
       CONTACT
       ===================================================== */

    .contact-section {

        padding:
            80px 20px;

    }


    .contact-container {

        grid-template-columns:
            1fr;

        gap:
            60px;

    }


    .contact-form {

        grid-template-columns:
            1fr;

    }


    .form-group-full {

        grid-column:
            auto;

    }


    .submit-button {

        grid-column:
            auto;

        width:
            100%;

    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer {

        padding:
            65px 15px 25px;

    }


    .footer-navigation {

        gap:
            15px 20px;

    }


    /* =====================================================
       FLOATING BUTTON
       ===================================================== */

    .floating-demo-button {

        right:
            15px;

        bottom:
            15px;

        padding:
            11px 14px;

        font-size:
            .82rem;

    }


    /* =====================================================
       LIGHTBOX
       ===================================================== */

    .lightbox {

        padding:
            15px;

    }


    .lightbox-image-wrapper {

        width:
            94vw;

        height:
            85vh;

    }


    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {

        width:
            42px;

        height:
            42px;

    }


}


/* =========================================================
   30. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {


    .hero-logo-image {

        width:
            clamp(170px, 48vw, 210px);

        margin-top:
            0;

        margin-bottom:
            -75px;

    }


    .brand-name,
    .brand-glint {

        font-size:
            clamp(2rem, 9.5vw, 2.6rem);

    }


    .brand-studio {

        font-size:
            .9rem;

        letter-spacing:
            .48em;

        padding-left:
            .48em;

    }


    .brand-tagline {

        margin-top:
            8px;

        font-size:
            clamp(0.95rem, 4.4vw, 1.15rem);

        letter-spacing:
            0.05em;

    }


    .floating-demo-button {

        max-width:
            calc(100vw - 30px);

    }


}


/* =========================================================
   31. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {


    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}


/* =========================================================
   32. TOP NAVIGATION BAR (EMERALD & GOLD)
   ========================================================= */

.portfolio-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3.5vw, 50px);
    background: rgba(6, 42, 35, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 90, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1002;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.3s ease;
}

.portfolio-nav-logo:hover {
    transform: scale(1.05);
}

.portfolio-nav-logo img {
    height: clamp(44px, 5vw, 60px);
    width: auto;
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 90, 0.45));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.portfolio-nav-logo:hover img {
    filter: drop-shadow(0 0 18px rgba(212, 175, 90, 0.75));
}

.portfolio-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.6vw, 18px);
}

.portfolio-nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-nav-links a:hover {
    color: var(--gold-light);
    background: rgba(212, 175, 90, 0.1);
    border-color: rgba(212, 175, 90, 0.3);
    transform: translateY(-1px);
}

.portfolio-nav-links a.active {
    color: var(--gold-light);
    background: rgba(212, 175, 90, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(212, 175, 90, 0.25);
}

.portfolio-nav-links a.portfolio-nav-wa-pill {
    background: linear-gradient(135deg, rgba(212, 175, 90, 0.22) 0%, rgba(6, 42, 35, 0.85) 100%);
    border: 1px solid rgba(212, 175, 90, 0.45);
    color: var(--gold-light);
    font-weight: 600;
}

.portfolio-nav-links a.portfolio-nav-wa-pill:hover {
    background: linear-gradient(135deg, rgba(212, 175, 90, 0.35) 0%, rgba(6, 42, 35, 0.95) 100%);
    border-color: var(--gold);
    color: #ffffff;
}

/* MOBILE NAVBAR RESPONSIVE: HORIZONTAL FINGER SWIPING */
@media (max-width: 768px) {
    .portfolio-nav {
        height: 66px;
        padding: 0 10px 0 14px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .portfolio-nav-logo {
        flex-shrink: 0;
        margin-right: 2px;
    }

    .portfolio-nav-logo img {
        height: 40px;
        width: auto;
        max-height: 40px;
    }

    .portfolio-nav-links {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 4px 6px 4px 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .portfolio-nav-links::-webkit-scrollbar {
        display: none;
    }

    .portfolio-nav-links a {
        flex: 0 0 auto;
        padding: 6px 13px;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(212, 175, 90, 0.22);
        color: rgba(255, 255, 255, 0.88);
        scroll-snap-align: start;
        transition: all 0.2s ease;
    }

    .portfolio-nav-links a:hover,
    .portfolio-nav-links a:active {
        color: var(--gold-light);
        border-color: rgba(212, 175, 90, 0.5);
    }

    .portfolio-nav-links a.active {
        background: rgba(212, 175, 90, 0.2);
        border-color: var(--gold);
        color: var(--gold-light);
        box-shadow: 0 0 12px rgba(212, 175, 90, 0.25);
    }

    .portfolio-nav-links a.portfolio-nav-wa-pill {
        padding: 6px 13px;
        border-color: rgba(212, 175, 90, 0.5);
        font-weight: 600;
    }
}

@media (max-width: 400px) {
    .portfolio-nav {
        padding: 0 6px 0 10px;
        gap: 8px;
    }

    .portfolio-nav-logo img {
        height: 36px;
    }

    .portfolio-nav-links {
        gap: 5px;
    }

    .portfolio-nav-links a {
        padding: 5px 11px;
        font-size: 0.68rem;
    }
}

/* =========================================================
   33. HARDWARE ACCELERATION & SMOOTH SCROLL OPTIMIZATIONS
   ========================================================= */
html {
    scroll-behavior: smooth;
}

.portfolio-nav,
.portfolio-nav-links,
.portfolio-video-window-frame,
.story-deck-card,
.portfolio-glass-card,
.portfolio-video-window-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.portfolio-nav-links {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   34. HOMEPAGE COLLECTION & PRICING TEASER SECTION
   ========================================================= */

.collection-teaser-section {
    position: relative;
    width: 100%;
    padding: clamp(70px, 10vw, 120px) 20px;
    background: radial-gradient(circle at 50% 50%, rgba(6, 42, 35, 0.95) 0%, #01140f 100%);
    border-top: 1px solid rgba(212, 175, 90, 0.22);
    border-bottom: 1px solid rgba(212, 175, 90, 0.22);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-teaser-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    max-width: 900px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(212, 175, 90, 0.12) 0%, rgba(2, 18, 14, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.collection-teaser-container {
    position: relative;
    z-index: 1;
    width: min(100%, 1000px);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 48px);
    background: rgba(4, 26, 21, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 90, 0.35);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 90, 0.15);
}

.collection-teaser-title {
    font-family: "Cinzel Decorative", "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--gold-light, #f4e8c1);
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin: 12px 0 16px;
    text-shadow: 0 0 24px rgba(212, 175, 90, 0.35);
}

.collection-teaser-desc {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 0 32px;
}

.collection-teaser-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2.5vw, 24px);
    margin-bottom: 38px;
    width: 100%;
}

.teaser-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 90, 0.2);
    transition: all 0.3s ease;
}

.teaser-highlight-item:hover,
.teaser-highlight-item.featured {
    background: rgba(212, 175, 90, 0.12);
    border-color: var(--gold, #d4af5a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 90, 0.2);
}

.teaser-highlight-item .highlight-title {
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.teaser-highlight-item .highlight-price {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light, #f4e8c1);
}

.teaser-highlight-divider {
    width: 1px;
    height: 36px;
    background: rgba(212, 175, 90, 0.25);
    display: block;
}

@media (max-width: 640px) {
    .teaser-highlight-divider {
        display: none;
    }
}

.collection-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d4af5a 0%, #b89344 100%);
    color: #02120e;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 90, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.collection-explore-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 90, 0.7);
    color: #000000;
    background: linear-gradient(135deg, #f4e8c1 0%, #d4af5a 100%);
}

.collection-explore-btn svg {
    transition: transform 0.3s ease;
}

.collection-explore-btn:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   35. PRODUCT / COLLECTIONS PAGE (PRODUCT.HTML)
   ========================================================= */

.product-page-main {
    padding-top: 100px;
    min-height: 100vh;
    background: #01140f;
}

.product-hero {
    position: relative;
    padding: clamp(50px, 8vw, 90px) 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.product-hero .section-eyebrow {
    margin-bottom: 12px;
}

.product-hero-title {
    font-family: "Cinzel Decorative", "Playfair Display", serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--gold-light, #f4e8c1);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(212, 175, 90, 0.3);
}

.product-hero-subtitle {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 36px;
}

/* CATEGORY SELECTOR PILLS */
.product-category-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 18px);
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.product-category-tab {
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 90, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.product-category-tab:hover,
.product-category-tab.active {
    background: linear-gradient(135deg, rgba(212, 175, 90, 0.25) 0%, rgba(6, 42, 35, 0.9) 100%);
    border-color: var(--gold, #d4af5a);
    color: var(--gold-light, #f4e8c1);
    box-shadow: 0 0 20px rgba(212, 175, 90, 0.25);
    transform: translateY(-2px);
}

/* PRODUCT PACKAGES GRID */
.product-grid-container {
    width: min(100% - 40px, 1280px);
    margin: 0 auto clamp(60px, 8vw, 100px);
}

.product-category-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-category-pane.active {
    display: block;
    opacity: 1;
    animation: fadeInCategoryPane 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInCategoryPane {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: stretch;
}

.product-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .product-grid-2col {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-grid,
    .product-grid-2col {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* LUXURY PRODUCT CARD */
.product-card {
    position: relative;
    background: rgba(4, 26, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 90, 0.35);
    border-radius: 24px;
    padding: clamp(32px, 4vw, 44px) clamp(24px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 90, 0.6), transparent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold, #d4af5a);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 90, 0.22);
}

.product-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, var(--gold, #d4af5a), transparent);
}

/* FEATURED / SIGNATURE CARD */
.product-card.featured-card {
    background: linear-gradient(180deg, rgba(6, 42, 35, 0.95) 0%, rgba(3, 20, 16, 0.98) 100%);
    border: 1.5px solid var(--gold, #d4af5a);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(212, 175, 90, 0.25);
}

.product-card.featured-card::before {
    height: 4px;
    background: linear-gradient(90deg, #d4af5a, #f4e8c1, #d4af5a);
    opacity: 1;
}

/* CARD BADGE */
.product-card-badge {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(212, 175, 90, 0.15);
    border: 1px solid rgba(212, 175, 90, 0.4);
    color: var(--gold-light, #f4e8c1);
}

.product-card.featured-card .product-card-badge {
    background: linear-gradient(135deg, #d4af5a 0%, #b89344 100%);
    color: #02120e;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 90, 0.6);
}

/* CARD HEADER */
.product-card-header {
    margin-bottom: 24px;
}

.product-card-tag {
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold, #d4af5a);
    margin-bottom: 8px;
    display: block;
}

.product-card-title {
    font-family: "Cinzel Decorative", "Playfair Display", serif;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.product-card-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
}

.product-card-price {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--gold-light, #f4e8c1);
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(212, 175, 90, 0.35);
}

.product-card-price-period {
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* CARD BODY */
.product-card-tagline {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light, #f4e8c1);
    line-height: 1.45;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 90, 0.2);
}

.product-card-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* CARD FEATURES */
.product-features-block {
    margin-bottom: 32px;
}

.product-features-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold, #d4af5a);
    margin: 0 0 16px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(212, 175, 90, 0.25);
    display: inline-block;
}

.product-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card-features li {
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.product-card-features li svg {
    flex-shrink: 0;
    color: var(--gold, #d4af5a);
}

/* CARD FOOTER & CTA */
.product-card-footer {
    margin-top: auto;
}

.product-interested-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 175, 90, 0.18) 0%, rgba(6, 42, 35, 0.85) 100%);
    border: 1px solid rgba(212, 175, 90, 0.45);
    color: var(--gold-light, #f4e8c1);
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.product-interested-btn:hover {
    background: linear-gradient(135deg, #d4af5a 0%, #b89344 100%);
    border-color: var(--gold-light, #f4e8c1);
    color: #02120e;
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 90, 0.4);
}

.product-card.featured-card .product-interested-btn {
    background: linear-gradient(135deg, #d4af5a 0%, #b89344 100%);
    color: #02120e;
    font-weight: 700;
    border-color: #ffffff;
    box-shadow: 0 6px 25px rgba(212, 175, 90, 0.4);
}

.product-card.featured-card .product-interested-btn:hover {
    background: linear-gradient(135deg, #f4e8c1 0%, #d4af5a 100%);
    color: #000000;
    box-shadow: 0 10px 35px rgba(212, 175, 90, 0.6);
}

/* PRODUCT ASSURANCE SECTION */
.product-assurance {
    width: min(100% - 40px, 1000px);
    margin: 0 auto clamp(60px, 8vw, 100px);
    padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
    background: rgba(4, 26, 21, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 90, 0.25);
    border-radius: 20px;
    text-align: center;
}

.product-assurance h3 {
    font-family: "Cinzel Decorative", "Playfair Display", serif;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    color: var(--gold-light, #f4e8c1);
    margin-bottom: 12px;
}

.product-assurance p {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 24px;
}

.product-assurance-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold, #d4af5a);
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.product-assurance-contact:hover {
    color: var(--gold-light, #f4e8c1);
}