@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');
:root{
    --gold:#FFD54A;
    --gold-light:#FFF0A8;
    --gold-dark:#C99500;
    --black:#080808;
    --dark:#111111;
    --dark-2:#171717;
    --text:#F5F5F5;
    --muted:#B8B8B8;
    --glass:rgba(255,255,255,.05);
    --section-space:clamp(80px,9vw,120px);
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}
html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}
body{
    margin:0;
    padding:0;
    background:var(--black);
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}
img,
video{
    display:block;
    max-width:100%;
}
a{
    text-decoration:none;
    color:inherit;
}
button{
    border:0;
    outline:0;
    cursor:pointer;
    font-family:inherit;
}
section{
    position:relative;
    padding:
        var(--section-space)
        7%;
}
.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
::-webkit-scrollbar{
    width:8px;
}
::-webkit-scrollbar-track{
    background:#050505;
}
::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:30px;
}
a,
button,
img,
video,
.signature-card,
.review-card,
.order-card,
.feature-card,
.stat-box,
.about-video,
.discover-btn{
    transition:.35s ease;
}

#loader{
    position:fixed;
    inset:0;
    z-index:2147483000;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(255,213,74,.055),
            transparent 38%
        ),
        #050505;
    opacity:1;
    visibility:visible;
    transition:
        opacity .8s cubic-bezier(.77,0,.18,1),
        visibility .8s cubic-bezier(.77,0,.18,1);
}
#loader::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    top:50%;
    left:50%;
    transform:
        translate(-50%,-50%)
        scale(.65);
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.13),
            rgba(255,213,74,.045) 35%,
            transparent 70%
        );
    filter:blur(18px);
    opacity:0;
    pointer-events:none;
    animation:
        loaderGlowIn 1.5s ease .2s forwards,
        loaderGlowPulse 3s ease-in-out 1.7s infinite;
}
#loader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}
.loader-content{
    position:relative;
    z-index:2;
    isolation:isolate;
    width:100%;
    max-width:500px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:30px;
    animation:
        loaderContentIn 1.2s
        cubic-bezier(.16,1,.3,1)
        forwards;
}
.loader-content img{
    position:relative;
    z-index:2;
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    opacity:0;
    filter:
    blur(8px)
    brightness(.82)
    drop-shadow(
        0 0 24px
        rgba(255,213,74,.42)
    )
    drop-shadow(
        0 0 48px
        rgba(255,193,7,.25)
    )
    drop-shadow(
        0 0 75px
        rgba(255,180,0,.12)
    );
    transform:
        translateY(18px)
        scale(.72);
    box-shadow:
        0 0 0 rgba(255,213,74,0);
    animation:
        logoCinematicIn 1.15s
        cubic-bezier(.16,1,.3,1)
        .15s forwards,
        logoBreathing 3s
        ease-in-out
        1.7s infinite;
}
.loader-content h2{
    position:relative;
    z-index:2;
    margin-top:24px;
    font-family:
        'Cinzel',
        serif;
    font-size:
        clamp(1.6rem,4vw,2.2rem);
    letter-spacing:6px;
    font-weight:600;
    color:#fff;
    text-shadow:
        0 0 8px
        rgba(255,213,74,.12);
    opacity:0;
    transform:
        translateY(12px);
    animation:
        loaderTextIn .8s
        cubic-bezier(.16,1,.3,1)
        .85s forwards;
}
.loader-content h2 span{
    color:var(--gold);
}
.loader-content p{
    position:relative;
    z-index:2;
    margin-top:10px;
    color:
        rgba(255,255,255,.62);
    letter-spacing:3px;
    font-size:.8rem;
    text-transform:uppercase;
    opacity:0;
    transform:
        translateY(10px);
    animation:
        loaderTextIn .8s
        cubic-bezier(.16,1,.3,1)
        1.15s forwards;
}
@keyframes loaderContentIn{
    from{
        opacity:0;
        transform:scale(.98);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
@media(max-width:768px){
    .loader-content{
        padding:25px;
    }
    .loader-content img{
        width:125px;
        height:125px;
    }
    .loader-content h2{
        margin-top:18px;
        font-size:1.45rem;
        letter-spacing:4px;
    }
    .loader-content p{
        margin-top:8px;
        font-size:.58rem;
        letter-spacing:2px;
    }
}

/* =========================================================
   LOADER LOGO — CINEMATIC ENTRANCE
========================================================= */

@keyframes logoCinematicIn{
    0%{
        opacity:0;
        transform:
            translateY(18px)
            scale(.72);
        filter:
            blur(8px)
            brightness(.82)
            drop-shadow(
                0 0 24px
                rgba(255,213,74,.42)
            )
            drop-shadow(
                0 0 48px
                rgba(255,193,7,.25)
            )
            drop-shadow(
                0 0 75px
                rgba(255,180,0,.12)
            );
    }

    55%{
        opacity:1;
        transform:
            translateY(-2px)
            scale(1.04);
        filter:
            blur(1px)
            brightness(1)
            drop-shadow(
                0 0 30px
                rgba(255,213,74,.65)
            )
            drop-shadow(
                0 0 60px
                rgba(255,193,7,.38)
            )
            drop-shadow(
                0 0 90px
                rgba(255,180,0,.18)
            );
    }

    100%{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
        filter:
            blur(0)
            brightness(1)
            drop-shadow(
                0 0 24px
                rgba(255,213,74,.48)
            )
            drop-shadow(
                0 0 48px
                rgba(255,193,7,.28)
            )
            drop-shadow(
                0 0 75px
                rgba(255,180,0,.14)
            );
    }
}


/* =========================================================
   LOADER LOGO — SOFT BREATHING GLOW
========================================================= */

@keyframes logoBreathing{
    0%,
    100%{
        transform:
            translateY(0)
            scale(1);
        filter:
            blur(0)
            brightness(1)
            drop-shadow(
                0 0 24px
                rgba(255,213,74,.48)
            )
            drop-shadow(
                0 0 48px
                rgba(255,193,7,.28)
            );
    }

    50%{
        transform:
            translateY(0)
            scale(1.025);
        filter:
            blur(0)
            brightness(1.05)
            drop-shadow(
                0 0 34px
                rgba(255,213,74,.68)
            )
            drop-shadow(
                0 0 65px
                rgba(255,193,7,.38)
            );
    }
}

.hero{
    position:relative;
    min-height:600px;
    height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 7%;
    text-align:center;
    overflow:hidden;
    background:#050505;
    isolation:isolate;
}
.hero video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
    z-index:1;
    pointer-events:none;
    user-select:none;
    -webkit-user-select:none;
    opacity:1;
    filter:
        brightness(.88)
        contrast(1.03);
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}
.hero-video-cover{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:#050505;
    opacity:1;
    animation:
        heroVideoCoverFade
        .75s
        ease
        .15s
        forwards;
}
.hero::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:min(65vw,800px);
    height:min(65vw,800px);
    transform:
        translate(-50%,-50%);
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.09),
            rgba(255,213,74,.03) 38%,
            transparent 72%
        );
    filter:blur(45px);
    opacity:.65;
    z-index:3;
    pointer-events:none;
    animation:
        heroGlowBreath
        7s
        ease-in-out
        infinite
        alternate;
}
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:4;
    pointer-events:none;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.20),
            rgba(0,0,0,.40) 45%,
            rgba(0,0,0,.72)
        ),
        radial-gradient(
            circle at center,
            transparent 18%,
            rgba(0,0,0,.38) 100%
        );
}
.hero-content{
    position:relative;
    z-index:6;
    width:100%;
    max-width:900px;
    min-height:1px;
    opacity:1;
}
.hero .sound-btn{
    position:relative;
    z-index:7;
    opacity:1;
    pointer-events:auto;
}
@keyframes heroVideoCoverFade{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
        visibility:hidden;
    }
}
@keyframes heroGlowBreath{
    0%{
        opacity:.45;
        transform:
            translate(-50%,-50%)
            scale(.96);
    }
    100%{
        opacity:.72;
        transform:
            translate(-50%,-50%)
            scale(1.08);
    }
}
@media(max-width:768px){
    .hero{
        min-height:560px;
        height:82vh;
        padding:
            0 5%;
    }
    .hero video{
        object-position:center center;
        filter:
            brightness(.86)
            contrast(1.02);
    }
    .hero::before{
        width:120vw;
        height:120vw;
        filter:blur(38px);
        opacity:.55;
    }
    .hero::after{
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.18),
                rgba(0,0,0,.38) 45%,
                rgba(0,0,0,.70)
            ),
            radial-gradient(
                circle at center,
                transparent 15%,
                rgba(0,0,0,.34) 100%
            );
    }
}
@media(max-width:430px){
    .hero{
        min-height:520px;
        height:80vh;
    }
    .hero video{
        object-position:center center;
    }
    .hero::before{
        width:130vw;
        height:130vw;
        opacity:.48;
    }
}
@keyframes heroContentReveal{
    from{
        opacity:0;
        transform:
            translateY(25px)
            scale(.985);
    }
    to{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }
}
.section-title{
    position:relative;
    width:100%;
    max-width:800px;
    margin:
        0 auto 70px;
    text-align:center;
}
.section-title::before{
    content:"";
    display:block;
    width:70px;
    height:3px;
    margin:
        0 auto 18px;
    border-radius:50px;
    background:
        linear-gradient(
            90deg,
            var(--gold),
            #C89B3C
        );
    box-shadow:
        0 0 12px rgba(255,213,74,.5);
}
.section-title span{
    display:inline-block;
    margin-bottom:15px;
    color:var(--gold);
    letter-spacing:4px;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
}
.section-title h2{
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:800;
    line-height:1.2;
    letter-spacing:1px;
}
.section-title p{
    margin-top:18px;
    color:var(--muted);
    font-size:1rem;
}
.btn,
.order-btn,
.btn-outline,
.phone-btn,
.delivery-btn,
.social-btn{
    touch-action:manipulation;
}
.btn,
.order-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:
        14px 34px;
    border-radius:50px;
    background:var(--gold);
    color:#111;
    font-weight:800;
    letter-spacing:.5px;
}
.btn:hover,
.order-btn:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 35px rgba(255,213,74,.35);
}
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:
        14px 34px;
    border:1px solid var(--gold);
    border-radius:50px;
    background:transparent;
    color:#fff;
}
.btn-outline:hover{
    background:var(--gold);
    color:#111;
}
.phone-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:50px;
    padding:
        14px 28px;
    border-radius:50px;
    background:#111;
    color:var(--gold);
    border:1px solid rgba(255,213,74,.4);
}
.phone-btn:hover{
    background:var(--gold);
    color:#111;
}
.delivery-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:100%;
    min-height:55px;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    color:#fff;
    border:1px solid rgba(255,213,74,.2);
    font-weight:700;
}
.delivery-btn:hover{
    border-color:var(--gold);
    transform:translateY(-5px);
    box-shadow:
        0 15px 30px rgba(0,0,0,.4);
}
.social-btn{
    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--gold);
    background:#111;
    border:1px solid rgba(255,213,74,.25);
}
.social-btn:hover{
    background:var(--gold);
    color:#111;
    transform:
        translateY(-5px)
        rotate(5deg);
}
.glass{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
}
.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:.9s ease;
}
.reveal.active{
    opacity:1;
    transform:translateY(0);
}
.signature{
    background:
        radial-gradient(
            circle at top,
            rgba(255,213,74,.08),
            transparent 45%
        ),
        #080808;
    overflow:hidden;
}
.signature-grid{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
}
.signature-card{
    position:relative;
    min-width:0;
    padding:18px;
    overflow:hidden;
    border:1px solid rgba(255,213,74,.15);
    border-radius:30px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.02)
        );
    backdrop-filter:blur(12px);
    transition:.5s ease;
}
.signature-card:hover{
    transform:translateY(-15px);
    border-color:var(--gold);
    box-shadow:
        0 25px 60px rgba(255,213,74,.18);
}
.video-box{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:22px;
}
.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
}
.video-box::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.45)
        );
    pointer-events:none;
}
.tag{
    position:absolute;
    top:20px;
    right:20px;
    z-index:2;
    padding:
        7px 16px;
    border-radius:30px;
    background:var(--gold);
    color:#111;
    font-size:.75rem;
    font-weight:700;
}
.signature-content{
    padding:
        25px 10px 10px;
    text-align:center;
}
.signature-content h3{
    margin-bottom:10px;
    font-size:1.6rem;
}
.signature-content p{
    margin-bottom:25px;
    color:var(--muted);
    font-size:.95rem;
    line-height:1.8;
}
.card-bottom{
    display:flex;
    justify-content:center;
}

/* =========================================================
   HIGH JOINT — PLAYING CARDS MENU
   CLEAN RESPONSIVE VERSION
   ========================================================= */

/* =========================================================
   MENU
========================================================= */

.menu{
    position:relative;
    padding:var(--section-space) 4%;
    overflow:hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255,213,74,.08),
            transparent 48%
        ),
        #0b0b0b;
}

.menu-stage{
    position:relative;
    width:100%;
    max-width:1500px;
    min-height:1100px;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================================================
   CENTER BURGER
========================================================= */

.menu-center{
    position:absolute;
    left:50%;
    top:42%;
    transform:translate(-50%,-50%);
    z-index:1;
    pointer-events:none;
}

.menu-glow{
    position:absolute;
    width:520px;
    height:520px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.20),
            transparent 70%
        );

    filter:blur(80px);
}

.menu-burger{
    position:relative;
    width:clamp(250px,30vw,380px);
    max-width:80vw;

    animation:burgerFloat 4s ease-in-out infinite;

    filter:drop-shadow(
        0 20px 45px rgba(255,180,0,.30)
    );
}

/* =========================================================
   DECK
========================================================= */

.deck-stack{
    position:absolute;
    left:calc(50% + 35px);
    top:42%;
    transform:translate(-50%,-50%);

    width:clamp(280px,36vw,500px);
    height:clamp(392px,50.4vw,700px);

    z-index:5;
}

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

.menu-card{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    overflow:hidden;
    border-radius:clamp(20px,2vw,30px);

    cursor:pointer;
    transform-origin:center center;

    transition:
        transform 1s cubic-bezier(.22,.61,.36,1),
        box-shadow .7s ease;

    box-shadow:0 25px 55px rgba(0,0,0,.50);
    will-change:transform;
}

/* =========================================================
   CLOSED DECK
========================================================= */

.deck-stack .menu-card:nth-child(1){
    transform:rotate(0deg);
    z-index:6;
}

.deck-stack .menu-card:nth-child(2){
    transform:rotate(-2deg);
    z-index:5;
}

.deck-stack .menu-card:nth-child(3){
    transform:rotate(-1deg);
    z-index:4;
}

.deck-stack .menu-card:nth-child(4){
    transform:rotate(1deg);
    z-index:3;
}

.deck-stack .menu-card:nth-child(5){
    transform:rotate(2deg);
    z-index:2;
}

.deck-stack .menu-card:nth-child(6){
    transform:rotate(3deg);
    z-index:1;
}

/* =========================================================
   OPEN DECK — DESKTOP
========================================================= */

.menu .deck-stack.open .menu-card:nth-child(1){
    transform:translateX(230px) rotate(20deg);
}

.menu .deck-stack.open .menu-card:nth-child(2){
    transform:translateX(135px) rotate(12deg);
}

.menu .deck-stack.open .menu-card:nth-child(3){
    transform:translateX(45px) rotate(5deg);
}

.menu .deck-stack.open .menu-card:nth-child(4){
    transform:translateX(-45px) rotate(-5deg);
}

.menu .deck-stack.open .menu-card:nth-child(5){
    transform:translateX(-135px) rotate(-12deg);
}

.menu .deck-stack.open .menu-card:nth-child(6){
    transform:translateX(-230px) rotate(-20deg);
}

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

.menu-card.active{
    transform:
        translateY(-40px)
        scale(1.10)
        rotate(0deg) !important;

    z-index:999 !important;

    box-shadow:
        0 0 50px rgba(255,213,74,.80),
        0 30px 80px rgba(0,0,0,.60);
}

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

.menu-card img{
    display:block;
    width:100%;
    height:100%;

    object-fit:contain;
    background:transparent;

    border:2px solid rgba(255,213,74,.22);
    border-radius:clamp(20px,2vw,30px);

    pointer-events:none;
}

/* =========================================================
   BURGER FLOAT
========================================================= */

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

    50%{
        transform:translateY(-18px);
    }
}

/* =========================================================
   MAGNETIC CLOSE
========================================================= */

.menu .deck-stack.closing .menu-card{
    transition:
        transform .58s cubic-bezier(.22,.75,.25,1),
        filter .45s ease,
        box-shadow .45s ease;
}

.menu .deck-stack.closing .menu-card:nth-child(1){
    transform:translateX(0) rotate(0deg) !important;
    transition-delay:.02s;
}

.menu .deck-stack.closing .menu-card:nth-child(2){
    transform:translateX(0) rotate(0deg) !important;
    transition-delay:.07s;
}

.menu .deck-stack.closing .menu-card:nth-child(3){
    transform:translateX(0) rotate(0deg) !important;
    transition-delay:.12s;
}

.menu .deck-stack.closing .menu-card:nth-child(4){
    transform:translateX(0) rotate(0deg) !important;
    transition-delay:.17s;
}

.menu .deck-stack.closing .menu-card:nth-child(5){
    transform:translateX(0) rotate(0deg) !important;
    transition-delay:.22s;
}

.menu .deck-stack.closing .menu-card:nth-child(6){
    transform:translateX(0) rotate(0deg) !important;
    transition-delay:.27s;
}

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

@media (max-width:768px){

    .menu-stage{
        min-height:700px;
    }

    .deck-stack{
        left:50%;
        top:43%;
        width:220px;
        height:308px;
    }

    .menu-card{
        border-radius:18px;
        box-shadow:0 18px 38px rgba(0,0,0,.42);
    }

    .menu .deck-stack.open .menu-card:nth-child(1){
        transform:translateX(78px) rotate(12deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(2){
        transform:translateX(47px) rotate(8deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(3){
        transform:translateX(16px) rotate(3.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(4){
        transform:translateX(-16px) rotate(-3.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(5){
        transform:translateX(-47px) rotate(-8deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(6){
        transform:translateX(-78px) rotate(-12deg);
    }

    .menu-card.active{
        transform:
            translateY(-18px)
            scale(1.04)
            rotate(0deg) !important;

        box-shadow:
            0 0 38px rgba(255,213,74,.72),
            0 24px 55px rgba(0,0,0,.50);
    }

    .menu-card img{
        border-radius:18px;
    }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:430px){

    .menu-stage{
        min-height:660px;
    }

    .deck-stack{
        top:42%;
        width:205px;
        height:287px;
    }

    .menu .deck-stack.open .menu-card:nth-child(1){
        transform:translateX(72px) rotate(11deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(2){
        transform:translateX(43px) rotate(7deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(3){
        transform:translateX(14px) rotate(3deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(4){
        transform:translateX(-14px) rotate(-3deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(5){
        transform:translateX(-43px) rotate(-7deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(6){
        transform:translateX(-72px) rotate(-11deg);
    }
}

/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:380px){

    .menu-stage{
        min-height:620px;
    }

    .deck-stack{
        top:41%;
        width:190px;
        height:266px;
    }

    .menu .deck-stack.open .menu-card:nth-child(1){
        transform:translateX(66px) rotate(10deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(2){
        transform:translateX(40px) rotate(6.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(3){
        transform:translateX(13px) rotate(2.8deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(4){
        transform:translateX(-13px) rotate(-2.8deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(5){
        transform:translateX(-40px) rotate(-6.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(6){
        transform:translateX(-66px) rotate(-10deg);
    }
}



.about-features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}
.feature-card{
    position:relative;
    min-height:175px;
    padding:24px 24px 22px;
    overflow:hidden;
    border:1px solid rgba(255,213,74,.16);
    border-radius:22px;
    background:
        linear-gradient(
            145deg,
            rgba(255,213,74,.055),
            rgba(255,255,255,.025) 45%,
            rgba(0,0,0,.35)
        );
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 12px 35px rgba(0,0,0,.22);
    transition:
        transform .45s cubic-bezier(.22,.61,.36,1),
        border-color .45s ease,
        box-shadow .45s ease;
}
.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:18px;
    right:18px;
    height:1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,213,74,.65),
            transparent
        );
    opacity:.45;
}
.feature-card::after{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    top:-70px;
    right:-60px;
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.13),
            transparent 70%
        );
    filter:blur(8px);
    pointer-events:none;
}
.feature-card i{
    display:flex;
    width:46px;
    height:46px;
    margin-bottom:18px;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,213,74,.28);
    border-radius:14px;
    color:#FFD54A;
    font-size:1.25rem;
    background:
        linear-gradient(
            145deg,
            rgba(255,213,74,.14),
            rgba(255,213,74,.035)
        );
    box-shadow:
        0 0 18px rgba(255,213,74,.08),
        inset 0 0 12px rgba(255,213,74,.04);
    filter:
        drop-shadow(
            0 0 8px rgba(255,213,74,.25)
        );
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}
.feature-card h4{
    position:relative;
    margin:0 0 8px;
    color:#fff;
    font-size:
        clamp(.98rem,1.25vw,1.2rem);
    font-weight:700;
    letter-spacing:.2px;
}
.feature-card p{
    margin:0;
    color:#aaa;
    line-height:1.65;
    font-size:
        clamp(.78rem,.9vw,.92rem);
}
.feature-card:hover{
    transform:
        translateY(-7px)
        scale(1.015);
    border-color:
        rgba(255,213,74,.5);
    box-shadow:
        0 0 28px rgba(255,213,74,.10),
        0 18px 40px rgba(0,0,0,.3),
        inset 0 1px 0 rgba(255,213,74,.12);
}
.feature-card:hover i{
    transform:
        translateY(-2px)
        scale(1.08);
    box-shadow:
        0 0 25px rgba(255,213,74,.18),
        inset 0 0 15px rgba(255,213,74,.08);
}
.about-stats{
    width:100%;
    max-width:
        clamp(900px,78vw,1200px);
    margin:
        clamp(55px,6vw,80px)
        auto 0;
    display:grid;
    grid-template-columns:
        repeat(4,minmax(0,1fr));
    gap:16px;
}
.stat-box{
    position:relative;
    min-width:0;
    min-height:170px;
    padding:24px 16px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border:
        1px solid rgba(255,213,74,.15);
    border-radius:22px;
    background:
        linear-gradient(
            145deg,
            rgba(255,213,74,.045),
            rgba(255,255,255,.018),
            rgba(0,0,0,.3)
        );
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 12px 35px rgba(0,0,0,.2);
    transition:
        transform .45s cubic-bezier(.22,.61,.36,1),
        border-color .45s ease,
        box-shadow .45s ease;
}
.stat-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255,213,74,.12),
            transparent 48%
        );
    opacity:.45;
    pointer-events:none;
}
.stat-box::after{
    content:"";
    position:absolute;
    top:0;
    left:22%;
    right:22%;
    height:1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #FFD54A,
            transparent
        );
    opacity:.5;
}
.stat-box i{
    position:relative;
    z-index:2;
    display:flex;
    width:48px;
    height:48px;
    margin-bottom:12px;
    align-items:center;
    justify-content:center;
    border:
        1px solid rgba(255,213,74,.28);
    border-radius:50%;
    color:#FFD54A;
    font-size:1.15rem;
    background:
        rgba(255,213,74,.06);
    box-shadow:
        0 0 20px rgba(255,213,74,.08);
}
.stat-box h3{
    position:relative;
    z-index:2;
    margin:0 0 7px;
    color:#fff;
    font-size:
        clamp(1.9rem,3vw,2.7rem);
    line-height:1;
    font-weight:800;
    letter-spacing:-1px;
    text-shadow:
        0 0 22px rgba(255,213,74,.08);
}
.stat-box h3 span{
    color:#FFD54A;
    text-shadow:
        0 0 18px rgba(255,213,74,.22);
}
.stat-box p{
    position:relative;
    z-index:2;
    margin:0;
    color:#aaa;
    font-size:
        clamp(.72rem,.85vw,.9rem);
    line-height:1.5;
    letter-spacing:1px;
}
.stat-box:hover{
    transform:
        translateY(-8px);
    border-color:
        rgba(255,213,74,.48);
    box-shadow:
        0 0 30px rgba(255,213,74,.11),
        0 20px 45px rgba(0,0,0,.3);
}
.stat-box:hover i{
    box-shadow:
        0 0 25px rgba(255,213,74,.2),
        0 0 45px rgba(255,213,74,.06);
}
@media(max-width:768px){
    .about-features{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
        gap:14px;
    }
    .feature-card{
        min-height:185px;
        padding:20px 17px;
        border-radius:20px;
    }
    .feature-card i{
        width:42px;
        height:42px;
        margin-bottom:14px;
        border-radius:13px;
        font-size:1.1rem;
    }
    .feature-card h4{
        font-size:.92rem;
        line-height:1.3;
        margin-bottom:8px;
    }
    .feature-card p{
        font-size:.73rem;
        line-height:1.55;
    }
    .about-stats{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
        gap:14px;
        margin-top:50px;
    }
    .stat-box{
        min-height:155px;
        padding:20px 12px;
        border-radius:20px;
    }
    .stat-box i{
        width:43px;
        height:43px;
        margin-bottom:11px;
        font-size:1rem;
    }
    .stat-box h3{
        font-size:2rem;
        margin-bottom:7px;
    }
    .stat-box p{
        font-size:.72rem;
        letter-spacing:.7px;
    }
}
@media(max-width:420px){
    .about-features{
        gap:11px;
    }
    .feature-card{
        min-height:175px;
        padding:18px 14px;
    }
    .feature-card i{
        width:39px;
        height:39px;
        font-size:1rem;
    }
    .feature-card h4{
        font-size:.86rem;
    }
    .feature-card p{
        font-size:.68rem;
    }
    .about-stats{
        gap:11px;
    }
    .stat-box{
        min-height:145px;
        padding:18px 10px;
    }
    .stat-box h3{
        font-size:1.8rem;
    }
}
@media (max-width:1100px){
    .navbar{
        gap:20px;
    }
    .about-grid{
        grid-template-columns:1fr;
        max-width:800px;
        gap:35px;
    }
    .about-features{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
    .about-stats{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
        max-width:700px;
    }
}
@media (max-width:768px){
    .header{
        height:64px;
        padding:
            0 4%;
    }
    .logo img{
        width:58px;
        height:58px;
    }
    .navbar{
        display:none;
    }
  .menu-btn{
    display:flex;
    flex-shrink:0;
    position:relative;
    z-index:10001;
}
    .loader-content img{
        width:105px;
        height:105px;
    }
    .hero{
        min-height:560px;
        height:82vh;
        padding:
            0 5%;
    }
    .hero-content{
        max-width:95%;
    }
    .hero-content h1{
        font-size:
            clamp(2.2rem,9vw,4rem);
        letter-spacing:
            clamp(2px,.5vw,5px);
    }
    .hero-content p{
        max-width:95%;
        margin-bottom:30px;
        font-size:
            clamp(.82rem,2.5vw,1rem);
    }
    .hero-buttons{
        gap:12px;
    }
    .btn,
    .btn-outline{
        min-height:48px;
        padding:
            12px 25px;
    }
    .signature-grid{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
        gap:22px;
    }
    .video-box{
        height:
            clamp(300px,52vw,380px);
    }
}
@media (max-width:700px){
    .about-luxury{
        padding:
            60px 5% 70px;
    }
    .about-badge{
        padding:
            8px 17px;
        letter-spacing:1.7px;
        font-size:.62rem;
    }
    .about-title{
        margin-top:20px;
        font-size:
            clamp(1.55rem,7vw,2rem);
        letter-spacing:1.5px;
    }
    .about-heading{
        margin-top:12px;
        font-size:
            clamp(.98rem,4.2vw,1.2rem);
        line-height:1.45;
    }
    .about-intro{
        max-width:95%;
        margin:
            20px auto 45px;
        font-size:.82rem;
        line-height:1.75;
    }
    .about-divider{
        width:65px;
        margin:
            20px auto 25px;
    }
    .about-grid{
        gap:25px;
    }
    .about-video{
        border-radius:19px;
    }
    .film-label{
        top:12px;
        left:12px;
        padding:
            6px 12px;
        font-size:.6rem;
        letter-spacing:1.5px;
    }
    .about-features{
        grid-template-columns:1fr;
        gap:13px;
    }
    .feature-card{
        min-height:0;
        padding:18px;
        border-radius:18px;
    }
    .feature-card i{
        margin-bottom:10px;
        font-size:1.5rem;
    }
    .feature-card h4{
        margin-bottom:7px;
        font-size:.95rem;
    }
    .feature-card p{
        font-size:.79rem;
        line-height:1.65;
    }
    .about-quote{
        margin-top:55px;
    }
    .about-quote p{
        max-width:94%;
        font-size:.9rem;
        line-height:1.65;
    }
    .about-stats{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
        gap:10px;
        margin:
            55px auto;
    }
    .stat-box{
        padding:
            19px 9px;
        border-radius:18px;
    }
    .stat-box i{
        margin-bottom:9px;
        font-size:1.4rem;
    }
    .stat-box h3{
        margin-bottom:7px;
        font-size:
            clamp(1.45rem,6.5vw,1.9rem);
    }
    .stat-box p{
        font-size:.65rem;
        letter-spacing:.3px;
    }
    .discover-btn{
        margin-top:30px;
        padding:
            12px 23px;
        font-size:.78rem;
    }
}
@media (max-width:430px){
}
@media (max-width:380px){
    section{
        padding-left:4%;
        padding-right:4%;
    }
    .header{
        padding:
            0 3%;
    }
    .logo img{
        width:54px;
        height:54px;
    }
    .about-luxury{
        padding:
            55px 4% 65px;
    }
    .about-title{
        font-size:1.42rem;
    }
    .about-heading{
        font-size:.9rem;
    }
    .about-intro{
        font-size:.75rem;
    }
    .feature-card{
        padding:16px;
    }
    .feature-card p{
        font-size:.74rem;
    }
    .stat-box{
        padding:
            17px 8px;
    }
    .stat-box h3{
        font-size:1.35rem;
    }
}
@media (max-width:340px){
    .header{
        height:60px;
    }
    .logo img{
        width:50px;
        height:50px;
    }
    .menu-btn{
        width:42px;
        height:42px;
        font-size:1.55rem;
    }
    .hero{
        min-height:520px;
    }
    .hero-content h1{
        font-size:2rem;
    }
    .hero-content p{
        font-size:.78rem;
    }
    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
    .btn,
    .btn-outline{
        width:100%;
        max-width:260px;
    }
    .signature-grid{
        grid-template-columns:1fr;
    }
    .video-box{
        height:360px;
    }
}
.cinematic-book-gallery{
    position:relative;
    width:100%;
    min-height:100vh;
    min-height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:100px 20px 60px;
    background:
        radial-gradient(
            circle at center,
            rgba(255,213,74,.06),
            transparent 45%
        ),
        #080808;
    perspective:1800px;
}
.book-ambient{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(
            ellipse at center,
            rgba(255,213,74,.10),
            transparent 42%
        );
    filter:blur(20px);
}
.gallery-heading{
    position:absolute;
    top:55px;
    left:50%;
    width:min(90%,900px);
    transform:translateX(-50%);
    text-align:center;
    z-index:30;
    pointer-events:none;
}
.gallery-heading span{
    display:block;
    margin-bottom:10px;
    color:var(--gold);
    font-family:'Poppins',sans-serif;
    font-size:clamp(18px,3vw,25px);
    letter-spacing:4px;
}
.gallery-heading h2{
    margin:0;
    color:#fff;
    font-family:'Cinzel',serif;
    font-size:clamp(24px,5vw,38px);
    font-weight:700;
    letter-spacing:.04em;
}
.gallery-heading p{
    margin:10px 0 0;
    color:rgba(255,255,255,.55);
    font-family:'Poppins',sans-serif;
    font-size:10px;
    letter-spacing:.08em;
}
.book-stage{
    position:relative;
    width:min(440px,76vw);
    aspect-ratio:.72;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
    transition:
        transform 1.1s cubic-bezier(.22,.61,.36,1),
        opacity .8s ease;
}
.book-closed{
    position:relative;
    width:100%;
    height:100%;
    transform-style:preserve-3d;
    transform:
        rotateY(-8deg)
        rotateX(2deg)
        rotateZ(0deg);
    filter:
        drop-shadow(
            -18px 28px 35px rgba(0,0,0,.75)
        );
    transition:
        transform 1.2s cubic-bezier(.22,.61,.36,1),
        opacity .8s ease;
}
.book-cover{
    position:absolute;
    inset:0;
    overflow:hidden;
    border-radius:
        8px
        18px
        18px
        8px;
    background:#080808;
    border:1px solid rgba(255,213,74,.90);
    box-shadow:
        inset 0 0 0 1px rgba(255,235,150,.55),
        inset 0 0 0 3px rgba(70,48,5,.85),
        inset 0 0 0 4px rgba(255,213,74,.45),
        inset 0 0 25px rgba(255,213,74,.08),
        -18px 25px 48px rgba(0,0,0,.78),
        0 0 14px rgba(255,213,74,.28),
        0 0 32px rgba(255,213,74,.14);
    transform-style:preserve-3d;
}
.book-cover::before{
    content:"";
    position:absolute;
    inset:4px;
    z-index:4;
    border:1px solid rgba(255,213,74,.38);
    border-radius:
        5px
        15px
        15px
        5px;
    box-shadow:
        inset 0 0 12px rgba(255,213,74,.05),
        0 0 8px rgba(255,213,74,.10);
    pointer-events:none;
}
.book-cover::after{
    content:"";
    position:absolute;
    inset:-30%;
    z-index:5;
    pointer-events:none;
    background:
        linear-gradient(
            115deg,
            transparent 35%,
            rgba(255,213,74,.10) 48%,
            rgba(255,255,255,.10) 50%,
            rgba(255,213,74,.06) 52%,
            transparent 65%
        );
    transform:
        translateX(-75%)
        rotate(8deg);
    animation:
        coverLuxuryShine 7s ease-in-out infinite;
    mix-blend-mode:screen;
}
@keyframes coverLuxuryShine{
    0%,
    55%{
        transform:
            translateX(-75%)
            rotate(8deg);
        opacity:0;
    }
    65%{
        opacity:.8;
    }
    78%,
    100%{
        transform:
            translateX(75%)
            rotate(8deg);
        opacity:0;
    }
}
.book-cover-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
    background:#080808;
    filter:
        contrast(1.05)
        saturate(1.05);
    transition:
        transform 1.5s ease,
        filter 1s ease;
}
.cover-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.15) 40%,
            rgba(0,0,0,.58)
        );
    pointer-events:none;
}
.cover-content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:24px;
    color:#fff;
    text-align:center;
}
.cover-brand{
    position:relative;
    z-index:3;
    color:var(--gold);
    font-family:'Cinzel',serif;
    font-size:clamp(22px,4vw,34px);
    font-weight:600;
    letter-spacing:.28em;
    white-space:nowrap;
    text-shadow:
        0 2px 12px rgba(0,0,0,.8);
}
.cover-line{
    width:70px;
    height:1px;
    margin:16px 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}
.cover-title{
    position:relative;
    z-index:3;
    margin-bottom:32px;
    color:rgba(255,255,255,.85);
    font-family:'Poppins',sans-serif;
    font-size:11px;
    letter-spacing:.35em;
}
.book-lock{
    position:relative;
    width:76px;
    height:76px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,213,74,.75);
    background:rgba(8,8,8,.65);
    color:var(--gold);
    font-size:27px;
    cursor:pointer;
    box-shadow:
        0 0 0 7px rgba(255,213,74,.04),
        0 0 30px rgba(255,213,74,.18);
    backdrop-filter:blur(8px);
}
.book-lock:hover{
    transform:scale(1.08);
    box-shadow:
        0 0 0 10px rgba(255,213,74,.05),
        0 0 45px rgba(255,213,74,.35);
}
.book-lock:active{
    transform:scale(.94);
}
.lock-shackle{
    position:absolute;
    top:17px;
    width:22px;
    height:19px;
    border:3px solid var(--gold);
    border-bottom:0;
    border-radius:
        13px
        13px
        0
        0;
    opacity:.95;
    transition:.5s ease;
}
.lock-body{
    position:relative;
    margin-top:13px;
    font-size:22px;
    line-height:1;
    filter:
        drop-shadow(
            0 0 8px rgba(255,213,74,.45)
        );
}
.cover-hint{
    margin-top:18px;
    color:rgba(255,255,255,.55);
    font-family:'Poppins',sans-serif;
    font-size:8px;
    letter-spacing:.32em;
}
.book-spine{
    position:absolute;
    left:-7px;
    top:3px;
    width:10px;
    height:calc(100% - 6px);
    border-radius:5px 0 0 5px;
    background:
        linear-gradient(
            90deg,
            #1a1a1a,
            #343434,
            #151515
        );
    box-shadow:
        inset -2px 0 5px rgba(0,0,0,.6);
}
.book-open{
    position:absolute;
    width:min(1200px,94vw);
    height:min(680px,68vh);
    z-index:10;
    opacity:0;
    visibility:hidden;
    transform:
        scale(.45)
        rotateX(8deg);
    transform-origin:center center;
    transition:
        opacity .7s ease,
        transform 1.2s cubic-bezier(.22,.61,.36,1),
        visibility 0s linear 1.2s;
}
.book-pages{
    position:relative;
    width:100%;
    height:100%;
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    background:#101010;
    border-radius:16px;
    overflow:hidden;
    transform-style:preserve-3d;
    box-shadow:
        0 30px 65px rgba(0,0,0,.82),
        0 0 35px rgba(255,213,74,.12),
        0 0 80px rgba(255,213,74,.045);
}
.book-page{
    position:relative;
    flex:0 0 50% !important;
    width:50% !important;
    max-width:50% !important;
    height:100% !important;
    overflow:hidden;
    background:
        radial-gradient(
            ellipse at center,
            #292929 0%,
            #1b1b1b 38%,
            #101010 72%,
            #080808 100%
        ) !important;
    border:none !important;
    outline:none !important;
    box-shadow:
        inset 0 0 45px rgba(255,213,74,.055),
        inset 0 0 80px rgba(0,0,0,.75),
        inset 0 1px 0 rgba(255,255,255,.06),
        inset 0 -1px 0 rgba(0,0,0,.8);
    transform-style:preserve-3d;
}
.book-page-left{
    border-radius:
        14px
        0
        0
        14px;
    background:
        radial-gradient(
            ellipse at 72% 50%,
            rgba(255,213,74,.08),
            transparent 48%
        ),
        linear-gradient(
            90deg,
            #080808 0%,
            #171717 45%,
            #252525 100%
        ) !important;
}
.book-page-right{
    border-radius:
        0
        14px
        14px
        0;
    background:
        radial-gradient(
            ellipse at 28% 50%,
            rgba(255,213,74,.08),
            transparent 48%
        ),
        linear-gradient(
            270deg,
            #080808 0%,
            #171717 45%,
            #252525 100%
        ) !important;
}
.page-inner{
    position:relative;
    width:100%;
    height:100%;
    padding:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.media-frame{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:10px;
    background:#080808;
    box-shadow:
        0 12px 30px rgba(0,0,0,.65),
        0 0 18px rgba(255,213,74,.06);
}
.media-frame img,
.media-frame video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.page-number{
    position:absolute;
    bottom:18px;
    color:rgba(255,255,255,.35);
    font-family:'Cinzel',serif;
    font-size:10px;
    letter-spacing:.2em;
}
.book-page-left .page-number{
    left:28px;
}
.book-page-right .page-number{
    right:28px;
}
.book-binding{
    position:absolute;
    z-index:20;
    left:50%;
    top:0;
    width:16px;
    height:100%;
    transform:translateX(-50%);
    pointer-events:none;
    background:
        linear-gradient(
            90deg,
            #3b2b08 0%,
            #9a7622 18%,
            #f4d77a 38%,
            #fff0a8 50%,
            #f4d77a 62%,
            #9a7622 82%,
            #3b2b08 100%
        );
    box-shadow:
        inset 0 0 5px rgba(255,255,255,.65),
        inset 0 0 12px rgba(255,213,74,.35),
        0 0 10px rgba(255,213,74,.55),
        0 0 25px rgba(255,213,74,.22);
    border-left:1px solid rgba(255,240,168,.75);
    border-right:1px solid rgba(255,240,168,.75);
}
.book-shadow{
    position:absolute;
    left:8%;
    right:8%;
    bottom:-32px;
    height:65px;
    border-radius:50%;
    background:
        radial-gradient(
            ellipse,
            rgba(0,0,0,.58),
            rgba(0,0,0,.25) 45%,
            transparent 72%
        );
    filter:blur(18px);
    opacity:.9;
}
.cinematic-book-gallery:not(.is-open) .book-stage::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-18px;
    width:68%;
    height:22px;
    transform:translateX(-50%);
    z-index:20;
    pointer-events:none;
    border-radius:
        0
        0
        12px
        12px;
    background:
        linear-gradient(
            180deg,
            #fff1a8,
            #ffd54a 25%,
            #a8750c 65%,
            #4f3404
        );
    box-shadow:
        0 5px 12px rgba(0,0,0,.8),
        0 0 12px rgba(255,213,74,.65),
        0 0 28px rgba(255,213,74,.25);
}
.cinematic-book-gallery:not(.is-open) .book-open{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
}
.cinematic-book-gallery.is-open .book-open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto;
    transform:
        scale(1)
        rotateX(0deg);
    transition:
        opacity .7s ease,
        transform 1.2s cubic-bezier(.22,.61,.36,1),
        visibility 0s;
}
.cinematic-book-gallery.is-open .book-stage{
    opacity:0;
    transform:scale(.65);
    pointer-events:none;
}
.cinematic-book-gallery.is-open .book-cover-image{
    filter:
        brightness(.65)
        contrast(1.05);
    transform:scale(1.05);
}
.cinematic-book-gallery.is-open .book-lock{
    transform:
        scale(0)
        rotate(180deg);
    opacity:0;
}
.cinematic-book-gallery.is-open .lock-shackle{
    transform:
        translateY(-8px)
        rotate(-18deg);
}
.cinematic-book-gallery.is-open .book-open::before,
.cinematic-book-gallery.is-open .book-open::after,
.cinematic-book-gallery.is-open .book-pages::before,
.cinematic-book-gallery.is-open .book-pages::after{
    content:none !important;
    display:none !important;
}
.cinematic-book-gallery::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:7%;
    width:min(760px,82vw);
    height:90px;
    transform:translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(255,213,74,.14),
            rgba(255,213,74,.04) 35%,
            transparent 72%
        );
    filter:blur(28px);
    pointer-events:none;
    z-index:2;
}
.page-turn-layer{
    position:absolute;
    inset:0;
    z-index:50;
    pointer-events:none;
    perspective:2200px;
    transform-style:preserve-3d;
}
.page-turn{
    position:absolute;
    top:0;
    width:50%;
    height:100%;
    overflow:hidden;
    background:#fffdf8;
    transform-style:preserve-3d;
    backface-visibility:hidden;
    box-shadow:
        0 0 25px rgba(0,0,0,.22);
}
.page-turn.next{
    right:0;
    transform-origin:left center;
    animation:
        turnNext 1.5s
        cubic-bezier(.22,.61,.36,1)
        forwards;
}
.page-turn.prev{
    left:0;
    transform-origin:right center;
    animation:
        turnPrev 1.5s
        cubic-bezier(.22,.61,.36,1)
        forwards;
}
.page-turn::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.18),
            transparent 25%,
            transparent 75%,
            rgba(0,0,0,.10)
        );
    opacity:.8;
}
.page-turn::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        linear-gradient(
            105deg,
            transparent 35%,
            rgba(255,213,74,.04) 44%,
            rgba(255,255,255,.18) 49%,
            rgba(255,213,74,.10) 51%,
            transparent 62%
        );
    transform:translateX(-100%);
    animation:
        pageLuxuryShine 1.5s
        cubic-bezier(.22,.61,.36,1)
        forwards;
    mix-blend-mode:screen;
}
@keyframes pageLuxuryShine{
    0%{
        transform:translateX(-100%);
        opacity:0;
    }
    25%{
        opacity:.25;
    }
    50%{
        opacity:.65;
    }
    75%{
        opacity:.25;
    }
    100%{
        transform:translateX(100%);
        opacity:0;
    }
}
@keyframes turnNext{
    0%{
        transform:rotateY(0deg);
    }
    18%{
        transform:rotateY(-18deg);
    }
    50%{
        transform:rotateY(-105deg);
    }
    78%{
        transform:rotateY(-158deg);
    }
    100%{
        transform:rotateY(-180deg);
    }
}
@keyframes turnPrev{
    0%{
        transform:rotateY(0deg);
    }
    18%{
        transform:rotateY(18deg);
    }
    50%{
        transform:rotateY(105deg);
    }
    78%{
        transform:rotateY(158deg);
    }
    100%{
        transform:rotateY(180deg);
    }
}
.reviews{
    background:
        linear-gradient(
            180deg,
            #080808,
            #111
        );
}
.reviews-grid{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}
.review-card{
    padding:35px 25px;
    text-align:center;
    border:1px solid rgba(255,213,74,.15);
    border-radius:28px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}
.review-card:hover{
    transform:translateY(-12px);
    border-color:var(--gold);
    box-shadow:
        0 20px 50px rgba(255,213,74,.18);
}
.review-card i{
    margin:3px;
    color:var(--gold);
    font-size:1.5rem;
}
.review-card p{
    margin:25px 0;
    color:#ddd;
    line-height:1.8;
}
.review-card h4{
    color:#fff;
    font-size:1.1rem;
}
.review-card span{
    color:var(--gold);
    font-size:.85rem;
}
.contact{
    background:#090909;
}
.contact-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);
    gap:50px;
    align-items:center;
}
.contact-info h3{
    margin-bottom:20px;
    font-size:clamp(1.7rem,4vw,2.2rem);
}
.contact-info p{
    margin-bottom:30px;
    color:var(--muted);
    line-height:1.9;
}
.contact-details{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,213,74,.12);
}
.contact-item i{
    width:45px;
    height:45px;
    flex:0 0 45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--gold);
    color:#111;
}
.contact-map{
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:30px;
    border:1px solid rgba(255,213,74,.15);
}
.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}
.order-section{
    background:#111;
}
.order-grid{
    width:100%;
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}
.order-card{
    padding:40px 25px;
    text-align:center;
    border-radius:28px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,213,74,.15);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}
.order-card:hover{
    transform:translateY(-12px);
    border-color:var(--gold);
    box-shadow:
        0 20px 50px rgba(255,213,74,.2);
}
.order-card i{
    margin-bottom:20px;
    color:var(--gold);
    font-size:45px;
}
.order-card h3{
    margin-bottom:12px;
}
.order-card span{
    color:var(--gold);
}
.footer{
    padding:80px 7% 15px;
    text-align:center;
    background:#050505;
    border-top:1px solid rgba(255,213,74,.15);
}
.footer-content{
    width:100%;
    max-width:900px;
    margin:auto;
}
.footer-logo{
    width:110px;
    height:110px;
    margin:0 auto 25px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:
        0 0 35px rgba(255,213,74,.25);
}
.footer h2{
    margin-bottom:15px;
    color:var(--gold);
    font-size:2.2rem;
    letter-spacing:3px;
}
.footer p{
    color:var(--muted);
    line-height:1.9;
}
.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:35px 0;
}
.footer-links a:hover{
    color:var(--gold);
}
.footer-social{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:35px 0;
}
.footer-social a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:var(--gold);
    border:1px solid rgba(255,213,74,.2);
}
.footer-social a:hover{
    background:var(--gold);
    color:#111;
    transform:translateY(-6px);
}
.copyright{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#777;
    font-size:.9rem;
}
.sound-btn{
    position:absolute;
    right:25px;
    bottom:25px;
    z-index:5;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    border:1px solid rgba(255,216,106,.75);
    backdrop-filter:blur(8px);
    color:#FFD86A;
    font-size:20px;
    cursor:pointer;
    box-shadow:
        0 0 14px rgba(255,216,106,.35),
        0 0 30px rgba(255,216,106,.14),
        inset 0 0 10px rgba(255,216,106,.08);
}
.sound-btn:hover{
    transform:scale(1.08);
    background:#D4AF37;
    color:#111;
}
.wheel-scene{
    position:relative;
    width:100%;
    max-width:1200px;
    min-height:650px;
    margin:auto;
}
.gallery-card{
    max-width:100%;
}
@media (max-width:1024px){
    section{
        padding-left:5%;
        padding-right:5%;
    }
    .signature-grid,
    .reviews-grid,
    .order-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .contact-container{
        grid-template-columns:1fr;
    }
    .about-grid{
        gap:35px;
    }
    .about-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .wheel-scene{
        min-height:600px;
    }
    .book-open{
        width:min(94vw,1000px);
        height:min(600px,62vh);
    }
}
@media (max-width:768px){
    html,
    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }
    section{
        padding:
            90px
            5%;
    }
    .hero{
        min-height:650px;
        height:auto;
        padding:
            100px
            5%
            70px;
    }
    .hero-content h1{
        font-size:clamp(2.2rem,9vw,2.8rem);
        letter-spacing:3px;
    }
    .hero-content p{
        font-size:.95rem;
    }
    .hero-buttons{
        width:100%;
        flex-direction:column;
        gap:14px;
    }
    .btn,
    .btn-outline{
        width:100%;
    }
    .section-title{
        margin-bottom:50px;
    }
    .section-title h2{
        font-size:2.1rem;
    }
    .signature-grid,
    .reviews-grid,
    .order-grid{
        grid-template-columns:1fr;
    }
    .video-box{
        height:350px;
    }
    .about-luxury{
        padding:90px 25px;
    }
    .about-title{
        font-size:2.4rem;
        line-height:1.2;
    }
    .about-heading{
        font-size:1.5rem;
    }
    .about-intro{
        font-size:1rem;
        margin-bottom:50px;
    }
    .about-grid{
        display:flex;
        flex-direction:column;
        gap:35px;
    }
    .about-video{
        width:100%;
        border-radius:25px;
    }
    .about-features{
        grid-template-columns:1fr;
    }
    .feature-card{
        width:100%;
        min-height:auto;
        padding:28px;
    }
    .feature-card h4{
        font-size:1.3rem;
    }
    .feature-card p{
        font-size:1rem;
    }
    .about-quote{
        margin-top:65px;
    }
    .about-quote p{
        font-size:1.25rem;
    }
    .about-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:18px;
        margin:65px auto;
    }
    .stat-box{
        padding:28px 18px;
    }
    .stat-box h3{
        font-size:2rem;
    }
    .stat-box i{
        font-size:1.6rem;
    }
    .discover-btn{
        width:90%;
        max-width:330px;
        justify-content:center;
        padding:15px 18px;
        font-size:13px;
    }
    .cinematic-book-gallery{
        min-height:100svh;
        padding:
            30px
            8px
            45px;
    }
    .gallery-heading{
        top:45px;
        width:92%;
    }
    .gallery-heading h2{
        font-size:clamp(20px,6vw,22px);
    }
    .gallery-heading p{
        font-size:8px;
    }
    .book-stage{
        width:min(330px,78vw);
    }
    .cover-brand{
        font-size:21px;
    }
    .book-lock{
        width:68px;
        height:68px;
    }
    .book-open{
        width:100%;
        max-width:none;
        height:min(64vw,540px);
    }
    .book-pages{
        display:flex !important;
        flex-direction:row !important;
        flex-wrap:nowrap !important;
        width:100%;
        height:100%;
        border-radius:10px;
    }
    .book-page{
        flex:0 0 50% !important;
        width:50% !important;
        max-width:50% !important;
        height:100% !important;
    }
    .page-inner{
        padding:8px;
    }
    .media-frame{
        border-radius:7px;
    }
    .book-binding{
        width:12px;
    }
    .book-shadow{
        bottom:-24px;
        height:48px;
    }
    .cinematic-book-gallery::after{
        bottom:8%;
        width:90vw;
        height:65px;
        filter:blur(24px);
    }
    .book-cover::after{
        animation-duration:9s;
    }
    .cinematic-book-gallery:not(.is-open) .book-stage::after{
        bottom:-14px;
        width:62%;
        height:18px;
    }
    .contact-container{
        grid-template-columns:1fr;
        gap:30px;
    }
    .contact-map{
        height:320px;
        border-radius:20px;
    }
    .order-grid{
        gap:20px;
    }
    .order-card{
        padding:30px 20px;
    }
    .footer{
        padding:60px 5% 30px;
    }
    .footer-logo{
        width:90px;
        height:90px;
    }
    .footer h2{
        font-size:1.7rem;
        letter-spacing:2px;
    }
    .footer-links{
        gap:18px;
        flex-direction:column;
    }
    .footer-social a{
        width:45px;
        height:45px;
    }
    .sound-btn{
        right:15px;
        bottom:15px;
        width:50px;
        height:50px;
    }
    a,
    button{
        min-height:48px;
    }
}
@media (max-width:600px){
    .book-open{
        width:100%;
        height:min(66vw,540px);
    }
    .book-pages{
        border-radius:10px;
    }
    .page-inner{
        padding:6px;
    }
    .media-frame{
        border-radius:6px;
    }
    .book-binding{
        width:10px;
    }
    .about-stats{
        gap:14px;
    }
    .stat-box{
        padding:24px 12px;
    }
    .stat-box h3{
        font-size:1.8rem;
    }
}
@media (max-width:420px){
    .hero-content h1{
        font-size:2.1rem;
    }
    .section-title h2{
        font-size:1.8rem;
    }
    .signature-card{
        padding:12px;
    }
    .about-title{
        font-size:2rem;
        letter-spacing:2px;
    }
    .about-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .book-stage{
        width:76vw;
    }
    .book-open{
        width:100%;
        height:min(68vw,450px);
    }
    .book-lock{
        width:62px;
        height:62px;
    }
    .cover-title{
        margin-bottom:22px;
    }
    .cover-content{
        padding:16px;
    }
    .page-number{
        bottom:12px;
        font-size:8px;
    }
    .book-page-left .page-number{
        left:14px;
    }
    .book-page-right .page-number{
        right:14px;
    }
}
@media (prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        scroll-behavior:auto !important;
    }
    .book-stage,
    .book-closed,
    .book-open,
    .book-cover-image,
    .book-lock,
    .book-cover::after,
    .page-turn::before,
    .menu-burger,
    .hero-content,
    .discover-btn i,
    .review-card,
    .order-card{
        animation:none !important;
        transition:none !important;
    }
}
.top-bar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:38px;
    min-height:38px;
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    overflow:hidden;
    background:var(--gold);
    color:#000;
    z-index:1000000;
}
.top-bar-track{
    display:block;
    width:max-content;
    min-width:max-content;
    padding-left:100vw;
    white-space:nowrap;
    color:#000;
    animation:HJ_v8_marquee 18s linear infinite;
}
@keyframes HJ_v8_marquee{
    from{transform:translateX(0);}
    to{transform:translateX(-100%);}
}
.header{
    position:fixed;
    top:38px;
    left:0;
    right:0;
    width:100%;
    height:82px;
    padding:0 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(12,12,12,.75);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    border-bottom:1px solid rgba(255,215,0,.12);
    z-index:999999;
}
.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}
.logo img{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:50%;
    display:block;
}
.navbar{
    display:flex;
    align-items:center;
    gap:28px;
}
.navbar a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}
@media (max-width:768px){
    .header{
        top:38px;
        height:64px;
        padding:0 4%;
    }
    .logo img{
        width:58px;
        height:58px;
    }
    .navbar{
        position:fixed;
        top:102px;
        right:0;
        left:auto;
        bottom:0;
        width:min(300px,82vw);
        height:auto;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:10px;
        padding:22px 18px 28px;
        background:rgba(8,8,8,.97);
        border-top:1px solid rgba(255,213,74,.22);
        border-left:1px solid rgba(255,213,74,.25);
        border-radius:18px 0 0 0;
        box-shadow:-18px 0 45px rgba(0,0,0,.55);
        overflow-y:auto;
        overflow-x:hidden;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateX(105%);
        transition:transform .35s ease,opacity .25s ease,visibility 0s linear .35s;
        z-index:999998;
    }
    .navbar.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateX(0);
    }
    .navbar a{
        width:100%;
        min-height:48px;
        padding:10px 16px;
        color:#fff;
        border-radius:12px;
    }
    .menu-btn{
        display:flex;
        flex:0 0 52px;
        width:52px;
        height:52px;
        min-width:52px;
        min-height:52px;
        position:relative;
        align-items:center;
        justify-content:center;
        margin-left:auto;
        border:1px solid rgba(255,213,74,.55);
        border-radius:50%;
        background:linear-gradient(145deg,rgba(255,213,74,.14),rgba(8,8,8,.85));
        box-shadow:0 0 18px rgba(255,213,74,.14),inset 0 0 12px rgba(255,213,74,.05);
        z-index:1000001;
        pointer-events:auto;
        touch-action:manipulation;
    }
    .menu-btn i{display:none;}
}
.hero::after{
    display:none !important;
    content:none !important;
    opacity:0 !important;
    animation:none !important;
}
.hero::before{
    display:none !important;
    content:none !important;
    opacity:0 !important;
    animation:none !important;
}
.hero video,
#heroVideo{
    filter:none !important;
    opacity:1 !important;
}
.top-bar{
    height:28px !important;
    min-height:28px !important;
    background:rgba(212,175,55,.22) !important;
    border-bottom:1px solid rgba(212,175,55,.72) !important;
    color:#e2c45c !important;
    box-sizing:border-box !important;
}
.top-bar-track{
    height:28px !important;
    display:flex !important;
    align-items:center !important;
    color:#e2c45c !important;
    font-size:11px !important;
    line-height:1 !important;
    letter-spacing:1.2px !important;
    text-shadow:0 0 8px rgba(0,0,0,.55) !important;
}
.header{
    top:28px !important;
}
.menu-btn{
    display:none;
    position:relative !important;
    width:48px !important;
    height:48px !important;
    min-width:48px !important;
    min-height:48px !important;
    flex:0 0 48px !important;
    padding:0 !important;
    margin:0 !important;
    border:1px solid rgba(212,175,55,.58) !important;
    border-radius:50% !important;
    background:
        radial-gradient(
            circle at center,
            rgba(255,213,74,.07),
            rgba(8,8,8,.88) 72%
        ) !important;
    color:#dcb94f !important;
    box-shadow:
        0 0 14px rgba(255,213,74,.08),
        inset 0 0 12px rgba(255,213,74,.035) !important;
    overflow:visible !important;
    z-index:1000002 !important;
    isolation:isolate !important;
    pointer-events:auto !important;
    touch-action:manipulation !important;
    transition:
        transform .28s cubic-bezier(.16,1,.3,1),
        border-color .3s ease,
        box-shadow .3s ease;
}
.menu-btn i{
    display:none !important;
}
.menu-btn::before{
    content:"" !important;
    position:absolute !important;
    top:50% !important;
    left:50% !important;
    width:22px !important;
    height:2px !important;
    border-radius:20px !important;
    background:#dcb94f !important;
    transform:
        translate(-50%,-50%) !important;
    box-shadow:
        0 -7px 0 #dcb94f,
        0 7px 0 #c9a83d !important;
    pointer-events:none !important;
    transition:
        transform .38s cubic-bezier(.68,-.4,.27,1.4),
        width .3s ease,
        box-shadow .38s ease,
        background .3s ease !important;
}
.menu-btn::after{
    content:"" !important;
    position:absolute !important;
    width:4px !important;
    height:4px !important;
    top:8px !important;
    right:8px !important;
    border-radius:50% !important;
    background:#dcb94f !important;
    box-shadow:
        0 0 6px rgba(255,213,74,.35) !important;
    pointer-events:none !important;
    transition:
        opacity .25s ease,
        transform .3s ease !important;
}
@media (min-width:769px){
    .menu-btn:hover{
        transform:scale(1.06);
        border-color:
            rgba(255,213,74,.78) !important;
        box-shadow:
            0 0 20px rgba(255,213,74,.14),
            inset 0 0 14px rgba(255,213,74,.05) !important;
    }
}
.menu-btn:active{
    transform:scale(.94) !important;
}
.menu-btn[aria-expanded="true"]{
    border-color:
        rgba(255,213,74,.72) !important;
    box-shadow:
        0 0 20px rgba(255,213,74,.13),
        inset 0 0 14px rgba(255,213,74,.05) !important;
}
.menu-btn[aria-expanded="true"]::before{
    width:23px !important;
    background:#dcb94f !important;
    transform:
        translate(-50%,-50%)
        rotate(45deg) !important;
    box-shadow:
        0 0 0 transparent !important;
}
.menu-btn[aria-expanded="true"]::after{
    width:23px !important;
    height:2px !important;
    top:50% !important;
    right:auto !important;
    left:50% !important;
    background:#c9a83d !important;
    box-shadow:
        0 0 5px rgba(255,213,74,.22) !important;
    transform:
        translate(-50%,-50%)
        rotate(-45deg) !important;
    border-radius:20px !important;
}
@media (max-width:768px){
    .menu-btn{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        z-index:1000002 !important;
    }
}
loader-content img{
    opacity:1 !important;
    filter:blur(0) brightness(1) !important;
    transform:translateY(0) scale(1) !important;
    animation:none !important;
}
.hero{
    position:relative !important;
}
.hero .sound-btn,
.sound-btn{
    position:absolute !important;
    right:22px !important;
    left:auto !important;
    top:auto !important;
    bottom:22px !important;
    z-index:2147482000 !important;
    opacity:1 !important;
    visibility:visible !important;
    display:flex !important;
}
@media (max-width:768px){
    .hero .sound-btn,
    .sound-btn{
        right:16px !important;
        bottom:16px !important;
    }
}
@media (min-width:701px){
    .menu .menu-card::after{
        content:"";
        position:absolute;
        top:-20%;
        left:-80%;
        width:35%;
        height:140%;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(255,213,74,.16),
                rgba(255,255,255,.12),
                rgba(255,213,74,.16),
                transparent
            );
        transform:skewX(-18deg);
        opacity:0;
        pointer-events:none;
        z-index:20;
        clip-path:
            inset(
                0
                round
                clamp(20px,2vw,30px)
            );
    }
    .menu .menu-card.active::after{
        animation:
            cardGoldShine .75s ease-out forwards;
    }
    @keyframes cardGoldShine{
        0%{
            left:-80%;
            opacity:0;
        }
        15%{
            opacity:.55;
        }
        70%{
            opacity:.35;
        }
        100%{
            left:150%;
            opacity:0;
        }
    }
}
@media (min-width:701px){
    .menu .deck-stack .menu-card:hover{
        filter:
            brightness(1.035)
            drop-shadow(
                0 0 5px
                rgba(255,213,74,.18)
            );
        cursor:pointer;
    }
}
#loader .loader-content h2{
    opacity:1 !important;
    visibility:visible !important;
    color:
        rgba(255,248,225,.92) !important;
    text-shadow:
        0 0 8px
        rgba(255,213,74,.10);
}
#loader .loader-content p{
    opacity:1 !important;
    visibility:visible !important;
    display:block !important;
    color:
        rgba(255,213,74,.68) !important;
    letter-spacing:3px;
    text-shadow:
        0 0 6px
        rgba(255,213,74,.12);
}
.header{
    transition:
        background .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}
.header.scrolled{
    background:
        linear-gradient(
            180deg,
            rgba(8,8,8,.94),
            rgba(8,8,8,.82)
        ) !important;
    border-bottom:
        1px solid
        rgba(255,213,74,.28) !important;
    box-shadow:
        0 10px 35px rgba(0,0,0,.38),
        0 1px 18px rgba(255,213,74,.07);
}
.header::after{
    content:"";
    position:absolute;
    left:5%;
    right:5%;
    bottom:-1px;
    height:1px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,213,74,.15) 15%,
            rgba(255,213,74,.55) 50%,
            rgba(255,213,74,.15) 85%,
            transparent 100%
        );
    opacity:0;
    transform:
        scaleX(.7);
    transition:
        opacity .45s ease,
        transform .45s ease;
    pointer-events:none;
}
.header.scrolled::after{
    opacity:1;
    transform:
        scaleX(1);
}
.header .logo img{
    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        filter .4s ease;
}
.header.scrolled .logo img{
    transform:
        scale(1.06);
    filter:
        drop-shadow(
            0 0 9px
            rgba(255,213,74,.20)
        );
}
@media (min-width:769px){
    .navbar a{
        position:relative;
        transition:
            color .3s ease,
            transform .3s ease;
    }
    .navbar a::after{
        content:"";
        position:absolute;
        left:50%;
        bottom:-7px;
        width:0;
        height:1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                var(--gold),
                transparent
            );
        transform:
            translateX(-50%);
        transition:
            width .3s ease;
    }
    .navbar a:hover{
        color:var(--gold);
        transform:
            translateY(-2px);
    }
    .navbar a:hover::after{
        width:75%;
    }
}
@media (max-width:768px){
    .header.scrolled .logo img{
        transform:
            scale(1.035);
        filter:
            drop-shadow(
                0 0 8px
                rgba(255,213,74,.18)
            );
    }
    .header::after{
        left:4%;
        right:4%;
    }
}
.menu-btn:active{
    transform:
        scale(.94);
}
@media (max-width:768px){
    .header{
        overflow:visible !important;
    }
    .navbar{
        position:fixed !important;
        top:92px !important;
        right:0 !important;
        left:auto !important;
        bottom:0 !important;
        width:min(300px,82vw) !important;
        height:calc(100dvh - 92px) !important;
        max-height:none !important;
        box-sizing:border-box !important;
        display:flex !important;
        flex-direction:column !important;
        padding:18px 14px 30px !important;
        overflow-y:auto !important;
        overflow-x:hidden !important;
        background:rgba(8,8,8,.97) !important;
        border-left:1px solid
            rgba(255,213,74,.28) !important;
        border-radius:18px 0 0 0 !important;
        box-shadow:
            -18px 0 45px
            rgba(0,0,0,.45) !important;
        opacity:0 !important;
        visibility:hidden !important;
        pointer-events:none !important;
        transform:translate3d(105%,0,0) !important;
        transition:
            transform .32s ease,
            opacity .25s ease,
            visibility 0s linear .32s !important;
        z-index:1000000 !important;
    }
    .navbar.active{
        opacity:1 !important;
        visibility:visible !important;
        pointer-events:auto !important;
        transform:translate3d(0,0,0) !important;
        transition:
            transform .32s ease,
            opacity .25s ease !important;
    }
    .navbar a{
        flex:0 0 auto !important;
        width:100% !important;
        min-height:48px !important;
        box-sizing:border-box !important;
        display:flex !important;
        align-items:center !important;
        padding:11px 15px !important;
        color:#fff !important;
        border:1px solid
            rgba(255,213,74,.10) !important;
        border-radius:10px !important;
        background:
            rgba(255,255,255,.025) !important;
        white-space:nowrap !important;
    }
    .navbar a:hover,
    .navbar a:active{
        color:#FFD54A !important;
        border-color:
            rgba(255,213,74,.30) !important;
        background:
            rgba(255,213,74,.055) !important;
    }
}
.about-features{
    gap:22px;
}
.feature-card{
    position:relative;
    min-height:220px;
    padding:38px 32px 32px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.28);
    border-radius:26px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,213,74,.075),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(8,8,8,.72)
        );
    backdrop-filter:blur(18px);
    box-shadow:
        0 18px 45px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.035);
    transition:
        transform .55s cubic-bezier(.22,.61,.36,1),
        border-color .55s ease,
        box-shadow .55s ease;
}
.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37,
            #FFD54A,
            #D4AF37,
            transparent
        );
    opacity:.55;
    transition:
        opacity .45s ease,
        box-shadow .45s ease;
}
.feature-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    top:-100px;
    right:-80px;
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.16),
            transparent 68%
        );
    filter:blur(8px);
    opacity:.35;
    pointer-events:none;
    transition:
        opacity .5s ease,
        transform .7s ease;
}
.feature-card:hover{
    transform:
        translateY(-9px)
        scale(1.012);
    border-color:
        rgba(255,213,74,.65);
    box-shadow:
        0 25px 60px rgba(0,0,0,.42),
        0 0 35px rgba(255,213,74,.10),
        inset 0 0 25px rgba(255,213,74,.035);
}
.feature-card:hover::before{
    opacity:1;
    box-shadow:
        0 0 18px rgba(255,213,74,.65);
}
.feature-card:hover::after{
    opacity:.8;
    transform:scale(1.35);
}
.feature-card i{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    margin-bottom:26px;
    border:1px solid rgba(255,213,74,.42);
    border-radius:20px;
    color:#FFD54A;
    font-size:1.8rem;
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.12),
            rgba(255,213,74,.025) 65%,
            transparent 70%
        );
    box-shadow:
        0 0 22px rgba(255,213,74,.08),
        inset 0 0 15px rgba(255,213,74,.04);
    filter:
        drop-shadow(
            0 0 8px rgba(255,213,74,.22)
        );
    transition:
        transform .5s ease,
        box-shadow .5s ease,
        border-color .5s ease;
}
.feature-card:hover i{
    transform:
        translateY(-4px)
        scale(1.06);
    border-color:#FFD54A;
    box-shadow:
        0 0 28px rgba(255,213,74,.20),
        inset 0 0 20px rgba(255,213,74,.08);
}
.feature-card h4{
    position:relative;
    margin:0 0 12px;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:
        clamp(1.05rem,1.35vw,1.3rem);
    font-weight:700;
    line-height:1.35;
}
.feature-card h4::after{
    content:"";
    display:block;
    width:38px;
    height:2px;
    margin-top:12px;
    background:
        linear-gradient(
            90deg,
            #D4AF37,
            #FFD54A,
            transparent
        );
    box-shadow:
        0 0 8px rgba(255,213,74,.35);
    transition:
        width .45s ease;
}
.feature-card:hover h4::after{
    width:65px;
}
.feature-card p{
    position:relative;
    color:#bdbdbd;
    line-height:1.75;
    font-size:
        clamp(.88rem,1vw,1rem);
    max-width:520px;
}
.about-stats{
    gap:18px;
    margin:
        clamp(70px,7vw,100px)
        auto;
}
.stat-box{
    min-height:150px;
    padding:24px 22px;
    display:grid;
    grid-template-columns:70px 1fr;
    grid-template-rows:auto auto;
    column-gap:18px;
    align-items:center;
    text-align:left;
    border:
        1px solid rgba(212,175,55,.25);
    border-radius:24px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,213,74,.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(5,5,5,.78)
        );
    box-shadow:
        0 15px 40px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.035);
    transition:
        transform .5s ease,
        border-color .5s ease,
        box-shadow .5s ease;
}
.stat-box i{
    grid-row:
        1 / span 2;
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    border:
        1px solid rgba(255,213,74,.38);
    border-radius:50%;
    color:#FFD54A;
    font-size:1.45rem;
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.12),
            transparent 70%
        );
    box-shadow:
        0 0 20px rgba(255,213,74,.08);
}
.stat-box h3{
    margin:0;
    color:#FFD54A;
    font-family:'Poppins',sans-serif;
    font-size:
        clamp(1.8rem,2.6vw,2.5rem);
    line-height:1;
    font-weight:800;
    text-shadow:
        0 0 18px rgba(255,213,74,.12);
}
.stat-box p{
    margin-top:8px;
    color:#aaa;
    letter-spacing:.7px;
    font-size:
        clamp(.75rem,.9vw,.9rem);
}
.stat-box:hover{
    transform:
        translateY(-8px);
    border-color:
        rgba(255,213,74,.65);
    box-shadow:
        0 20px 50px rgba(0,0,0,.38),
        0 0 30px rgba(255,213,74,.09);
}
.stat-box:hover i{
    box-shadow:
        0 0 28px rgba(255,213,74,.20);
}
.about-quote{
    position:relative;
    margin:
        clamp(70px,8vw,115px)
        auto
        0;
    padding:
        10px 20px 0;
    text-align:center;
}
.about-quote p{
    position:relative;
    max-width:900px;
    margin:0 auto;
    color:#f7f7f7;
    font-family:'Cinzel',serif;
    font-size:
        clamp(1.2rem,2vw,1.8rem);
    font-style:italic;
    line-height:1.75;
    text-shadow:
        0 0 25px rgba(255,213,74,.08);
}
.about-quote::before{
    content:"“";
    position:absolute;
    left:50%;
    top:-45px;
    transform:
        translateX(-50%);
    color:#FFD54A;
    font-family:Georgia,serif;
    font-size:5rem;
    line-height:1;
    opacity:.8;
    text-shadow:
        0 0 25px rgba(255,213,74,.25);
}
.about-quote::after{
    content:"◆";
    display:block;
    width:170px;
    height:1px;
    margin:28px auto 0;
    color:#FFD54A;
    font-size:10px;
    line-height:0;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37,
            #FFD54A,
            #D4AF37,
            transparent
        );
    box-shadow:
        0 0 12px rgba(255,213,74,.3);
}
.discover-btn{
    position:relative;
    width:
        min(560px,90%);
    height:68px;
    margin:
        42px auto 0;
    padding:0 82px 0 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:
        1px solid #FFD54A;
    border-radius:999px;
    color:#FFD54A;
    font-size:
        clamp(.72rem,.95vw,.9rem);
    font-weight:700;
    letter-spacing:
        clamp(1.5px,.22vw,3px);
    text-transform:uppercase;
    background:
        linear-gradient(
            120deg,
            rgba(255,213,74,.025),
            rgba(255,213,74,.09),
            rgba(255,213,74,.025)
        );
    box-shadow:
        0 0 25px rgba(255,213,74,.08),
        inset 0 0 20px rgba(255,213,74,.025);
    overflow:hidden;
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        background .45s ease;
}
.discover-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-35%;
    width:28%;
    height:100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.30),
            transparent
        );
    transform:skewX(-20deg);
    animation:
        buttonShine 4s infinite;
}
.discover-btn::after{
    content:"";
    position:absolute;
    left:10px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#FFD54A;
    box-shadow:
        0 0 10px #FFD54A,
        0 0 22px rgba(255,213,74,.8);
    opacity:.8;
}
.discover-btn i{
    position:absolute;
    right:9px;
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:
        1px solid rgba(255,213,74,.7);
    border-radius:50%;
    color:#FFD54A;
    font-size:20px;
    background:
        rgba(255,213,74,.055);
    box-shadow:
        0 0 15px rgba(255,213,74,.08);
    animation:none;
    transition:
        transform .45s ease,
        background .45s ease,
        box-shadow .45s ease;
}
.discover-btn:hover{
    transform:
        translateY(-6px);
    background:
        linear-gradient(
            120deg,
            rgba(255,213,74,.07),
            rgba(255,213,74,.16),
            rgba(255,213,74,.07)
        );
    box-shadow:
        0 15px 45px rgba(255,213,74,.18),
        0 0 35px rgba(255,213,74,.12),
        inset 0 0 25px rgba(255,213,74,.05);
}
.discover-btn:hover i{
    transform:
        translateY(4px);
    background:
        rgba(255,213,74,.12);
    box-shadow:
        0 0 22px rgba(255,213,74,.20);
}
@keyframes buttonShine{
    0%,
    55%{
        left:-35%;
    }
    75%,
    100%{
        left:125%;
    }
}
@media(max-width:768px){
    .feature-card{
        min-height:0;
        padding:
            32px 26px 30px;
        border-radius:24px;
    }
    .feature-card i{
        width:68px;
        height:68px;
        margin-bottom:22px;
    }
    .feature-card h4{
        font-size:1.15rem;
    }
    .feature-card p{
        font-size:.92rem;
        line-height:1.75;
    }
    .about-stats{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
        gap:14px;
        margin-top:65px;
    }
    .stat-box{
        min-height:145px;
        padding:
            22px 16px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        gap:9px;
    }
    .stat-box i{
        width:58px;
        height:58px;
        font-size:1.3rem;
    }
    .stat-box h3{
        font-size:2rem;
    }
    .stat-box p{
        margin:0;
        font-size:.78rem;
        line-height:1.5;
    }
    .about-quote{
        margin-top:72px;
        padding:0 18px;
    }
    .about-quote p{
        font-size:1.15rem;
        line-height:1.8;
    }
    .about-quote::before{
        top:-42px;
        font-size:4rem;
    }
    .discover-btn{
        width:calc(100% - 20px);
        height:62px;
        padding:
            0 68px 0 20px;
        font-size:.68rem;
        letter-spacing:1.4px;
    }
    .discover-btn i{
        width:46px;
        height:46px;
        right:7px;
        font-size:18px;
    }
}
@media(max-width:390px){
    .feature-card{
        padding:
            28px 22px;
    }
    .feature-card i{
        width:62px;
        height:62px;
        font-size:1.55rem;
    }
    .feature-card h4{
        font-size:1.05rem;
    }
    .feature-card p{
        font-size:.86rem;
    }
    .stat-box{
        min-height:135px;
        padding:18px 10px;
    }
    .stat-box h3{
        font-size:1.75rem;
    }
    .discover-btn{
        font-size:.61rem;
        letter-spacing:1px;
    }
}
.about-features{
    display:grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;
    gap:22px !important;
    width:100% !important;
}
.feature-card{
    min-height:230px !important;
    height:230px !important;
    padding:30px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    box-sizing:border-box !important;
}
.feature-card i{
    width:62px !important;
    height:62px !important;
    min-width:62px !important;
    min-height:62px !important;
    margin:0 0 20px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-shrink:0 !important;
}
.feature-card h4{
    margin:0 0 10px !important;
    font-size:
        clamp(1rem,1.25vw,1.2rem) !important;
    line-height:1.3 !important;
}
.feature-card p{
    margin:0 !important;
    font-size:
        clamp(.82rem,.95vw,.95rem) !important;
    line-height:1.65 !important;
}
.about-stats{
    display:grid !important;
    grid-template-columns:
        repeat(4,minmax(0,1fr)) !important;
    gap:16px !important;
    width:100% !important;
}
.stat-box{
    min-height:105px !important;
    height:105px !important;
    padding:18px 20px !important;
    display:grid !important;
    grid-template-columns:52px 1fr !important;
    grid-template-rows:auto auto !important;
    column-gap:14px !important;
    align-items:center !important;
    text-align:left !important;
    box-sizing:border-box !important;
}
.stat-box i{
    grid-row:1 / span 2 !important;
    width:48px !important;
    height:48px !important;
    min-width:48px !important;
    min-height:48px !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:1.1rem !important;
}
.stat-box h3{
    margin:0 !important;
    font-size:
        clamp(1.45rem,2vw,2rem) !important;
    line-height:1 !important;
}
.stat-box p{
    margin:5px 0 0 !important;
    font-size:
        clamp(.68rem,.8vw,.82rem) !important;
    line-height:1.3 !important;
    letter-spacing:.4px !important;
}
@media(max-width:768px){
    .about-features{
        grid-template-columns:
            repeat(2,minmax(0,1fr)) !important;
        gap:12px !important;
    }
    .feature-card{
        width:100% !important;
        height:190px !important;
        min-height:190px !important;
        padding:20px 16px !important;
        border-radius:20px !important;
    }
    .feature-card i{
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        min-height:44px !important;
        margin-bottom:12px !important;
        border-radius:13px !important;
        font-size:1.05rem !important;
    }
    .feature-card h4{
        font-size:.82rem !important;
        margin-bottom:7px !important;
        line-height:1.3 !important;
    }
    .feature-card h4::after{
        width:28px !important;
        margin-top:7px !important;
    }
    .feature-card p{
        font-size:.66rem !important;
        line-height:1.5 !important;
    }
    .about-stats{
        grid-template-columns:
            repeat(2,minmax(0,1fr)) !important;
        gap:12px !important;
        margin-top:48px !important;
    }
    .stat-box{
        height:92px !important;
        min-height:92px !important;
        padding:14px 12px !important;
        grid-template-columns:
            40px 1fr !important;
        column-gap:10px !important;
        border-radius:17px !important;
    }
    .stat-box i{
        width:38px !important;
        height:38px !important;
        min-width:38px !important;
        min-height:38px !important;
        font-size:.9rem !important;
    }
    .stat-box h3{
        font-size:1.35rem !important;
    }
    .stat-box p{
        margin-top:4px !important;
        font-size:.62rem !important;
        line-height:1.3 !important;
    }
}
@media(max-width:380px){
    .feature-card{
        height:180px !important;
        min-height:180px !important;
        padding:17px 13px !important;
    }
    .feature-card i{
        width:40px !important;
        height:40px !important;
        min-width:40px !important;
        min-height:40px !important;
        margin-bottom:10px !important;
    }
    .feature-card h4{
        font-size:.76rem !important;
    }
    .feature-card p{
        font-size:.61rem !important;
    }
    .stat-box{
        height:88px !important;
        min-height:88px !important;
        padding:12px 9px !important;
    }
    .stat-box i{
        width:34px !important;
        height:34px !important;
        min-width:34px !important;
        min-height:34px !important;
    }
    .stat-box h3{
        font-size:1.2rem !important;
    }
    .stat-box p{
        font-size:.58rem !important;
    }
}
.about-luxury{
    position:relative;
}
.about-badge{
    position:relative;
    border:none !important;
    padding:0 25px !important;
    color:#D4AF37 !important;
    font-family:'Poppins',sans-serif;
    font-size:
        clamp(.62rem,.75vw,.78rem) !important;
    font-weight:600 !important;
    letter-spacing:
        clamp(2.5px,.42vw,5px) !important;
    background:transparent !important;
    box-shadow:none !important;
    text-shadow:
        0 0 18px rgba(255,213,74,.16);
    opacity:.95;
}
.about-badge::before,
.about-badge::after{
    content:"";
    position:absolute;
    top:50%;
    width:38px;
    height:1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37
        );
}
.about-badge::before{
    right:100%;
}
.about-badge::after{
    left:100%;
    transform:rotate(180deg);
}
.about-divider{
    width:110px !important;
    height:1px !important;
    margin:
        25px auto 28px !important;
    background:
        linear-gradient(
            90deg,
            transparent,
            #8f7120,
            #FFD54A,
            #8f7120,
            transparent
        ) !important;
    box-shadow:
        0 0 14px rgba(255,213,74,.3) !important;
    position:relative;
}
.about-divider::after{
    content:"◆";
    position:absolute;
    left:50%;
    top:50%;
    transform:
        translate(-50%,-50%);
    padding:0 8px;
    color:#FFD54A;
    font-size:7px;
    background:#050505;
    text-shadow:
        0 0 12px rgba(255,213,74,.7);
}
.about-title{
    position:relative;
    margin-top:0 !important;
    color:#fff !important;
    font-family:'Cinzel',serif !important;
    font-size:
        clamp(2.35rem,5vw,4.3rem) !important;
    font-weight:600 !important;
    letter-spacing:
        clamp(3px,.5vw,7px) !important;
    line-height:1.15 !important;
    text-shadow:
        0 0 35px rgba(255,213,74,.10),
        0 4px 20px rgba(0,0,0,.5);
    overflow:visible !important;
}
.about-title::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:-18px;
    width:55px;
    height:2px;
    transform:
        translateX(-50%);
    background:#FFD54A;
    box-shadow:
        0 0 15px rgba(255,213,74,.65);
}
.about-heading{
    position:relative;
    max-width:800px;
    margin:
        42px auto 0 !important;
    color:#f5f5f5 !important;
    font-family:'Poppins',sans-serif !important;
    font-size:
        clamp(1.35rem,2.4vw,2.15rem) !important;
    font-weight:300 !important;
    line-height:1.55 !important;
    letter-spacing:
        clamp(.5px,.08vw,1px);
    text-shadow:
        0 0 25px rgba(255,255,255,.06);
}
.about-heading br{
    display:block;
}
.about-intro{
    position:relative;
    max-width:720px !important;
    margin:
        28px auto
        clamp(55px,6vw,85px) !important;
    color:#9f9f9f !important;
    font-family:'Poppins',sans-serif !important;
    font-size:
        clamp(.88rem,1vw,1.02rem) !important;
    font-weight:300 !important;
    line-height:1.95 !important;
    letter-spacing:.25px;
    text-align:center;
    text-shadow:
        0 2px 15px rgba(0,0,0,.5);
}
.about-heading,
.about-intro{
    animation:
        aboutTextReveal 1.1s ease both;
}
.about-intro{
    animation-delay:.15s;
}
@keyframes aboutTextReveal{
    from{
        opacity:0;
        transform:
            translateY(18px);
        filter:blur(5px);
    }
    to{
        opacity:1;
        transform:
            translateY(0);
        filter:blur(0);
    }
}
@media(max-width:768px){
    .about-badge{
        font-size:.58rem !important;
        letter-spacing:2.5px !important;
        padding:0 12px !important;
    }
    .about-badge::before,
    .about-badge::after{
        width:22px;
    }
    .about-divider{
        width:85px !important;
        margin:
            22px auto 26px !important;
    }
    .about-title{
        font-size:
            clamp(2rem,9vw,2.8rem) !important;
        letter-spacing:
            2.5px !important;
        line-height:1.15 !important;
    }
    .about-title::before{
        bottom:-14px;
        width:42px;
    }
    .about-heading{
        margin-top:34px !important;
        font-size:
            clamp(1.15rem,5.2vw,1.55rem) !important;
        line-height:1.65 !important;
        padding:0 10px;
    }
    .about-intro{
        max-width:90% !important;
        margin:
            25px auto
            55px !important;
        font-size:.82rem !important;
        line-height:1.9 !important;
    }
}
@media(max-width:390px){
    .about-badge{
        font-size:.52rem !important;
        letter-spacing:2px !important;
    }
    .about-title{
        font-size:1.85rem !important;
        letter-spacing:2px !important;
    }
    .about-heading{
        font-size:1.08rem !important;
    }
    .about-intro{
        font-size:.78rem !important;
    }
}
.about-luxury{
    position:relative;
    overflow:hidden;
    padding-top:110px;
    padding-bottom:100px;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255,213,74,.045),
            transparent 34%
        ),
        #050505;
}
.about-luxury::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    top:80px;
    left:50%;
    transform:translateX(-50%);
    background:
        radial-gradient(
            circle,
            rgba(255,213,74,.055),
            transparent 68%
        );
    filter:blur(25px);
    pointer-events:none;
}
.about-badge{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    max-width:90%;
    margin:0 auto 34px;
    color:#D4AF37;
    font-family:'Poppins',sans-serif;
    font-size:.72rem;
    font-weight:500;
    letter-spacing:3.5px;
    text-transform:uppercase;
    text-align:center;
}
.about-badge::before,
.about-badge::after{
    content:"";
    width:55px;
    height:1px;
    margin:0 17px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37
        );
    box-shadow:
        0 0 9px rgba(255,213,74,.35);
}
.about-badge::after{
    background:
        linear-gradient(
            90deg,
            #D4AF37,
            transparent
        );
}
.about-divider{
    position:relative;
    width:90px;
    height:1px;
    margin:0 auto 38px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37,
            transparent
        );
    box-shadow:
        0 0 12px rgba(255,213,74,.35);
}
.about-divider::after{
    content:"◆";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:28px;
    color:#FFD54A;
    font-size:8px;
    background:#080808;
    text-shadow:
        0 0 12px rgba(255,213,74,.65);
}
.about-title{
    position:relative;
    margin:0 auto;
    color:#fff;
    font-family:'Cinzel',serif;
    font-size:
        clamp(2rem,4vw,3.4rem);
    font-weight:500;
    letter-spacing:2px;
    line-height:1.2;
    text-align:center;
    text-shadow:
        0 3px 25px rgba(255,255,255,.06);
}
.about-title::after{
    content:"";
    display:block;
    width:76px;
    height:2px;
    margin:25px auto 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37,
            #FFD54A,
            #D4AF37,
            transparent
        );
    box-shadow:
        0 0 14px rgba(255,213,74,.45);
}
.about-heading{
    position:relative;
    max-width:850px;
    margin:42px auto 0;
    color:#f5f5f5;
    font-family:'Poppins',sans-serif;
    font-size:
        clamp(1.2rem,2vw,1.65rem);
    font-weight:500;
    line-height:1.75;
    letter-spacing:.2px;
    text-align:center;
}
.about-intro{
    position:relative;
    max-width:780px;
    margin:30px auto 0;
    color:#969696;
    font-family:'Poppins',sans-serif;
    font-size:
        clamp(.9rem,1.2vw,1.05rem);
    font-weight:300;
    line-height:1.95;
    letter-spacing:.25px;
    text-align:center;
}
.about-grid{
    position:relative;
    margin-top:70px;
}
.about-video{
    position:relative;
    padding:0;
    background:transparent;
}
.film-label{
    position:relative;
    margin:0 0 14px 4px;
    color:#D4AF37;
    font-family:'Poppins',sans-serif;
    font-size:.68rem;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
}
.about-video video{
    position:relative;
    display:block;
    width:100%;
    border:1px solid rgba(212,175,55,.32);
    border-radius:2px;
    background:#000;
    object-fit:cover;
    box-shadow:
        0 25px 70px rgba(0,0,0,.58),
        0 0 45px rgba(255,213,74,.055);
    transition:
        border-color .5s ease,
        box-shadow .5s ease,
        transform .5s ease;
}
.about-video::before{
    content:"";
    position:absolute;
    z-index:3;
    top:31px;
    left:-1px;
    width:46px;
    height:46px;
    border-top:1px solid #FFD54A;
    border-left:1px solid #FFD54A;
    opacity:.8;
    pointer-events:none;
}
.about-video::after{
    content:"";
    position:absolute;
    z-index:3;
    right:-1px;
    bottom:-1px;
    width:46px;
    height:46px;
    border-right:1px solid #FFD54A;
    border-bottom:1px solid #FFD54A;
    opacity:.8;
    pointer-events:none;
}
.about-video:hover video{
    border-color:rgba(255,213,74,.58);
    box-shadow:
        0 30px 80px rgba(0,0,0,.65),
        0 0 55px rgba(255,213,74,.10);
    transform:scale(1.006);
}
.about-quote{
    position:relative;
    max-width:850px;
    margin:85px auto 0;
    padding:0 25px;
    text-align:center;
}
.about-quote::before{
    content:"“";
    position:absolute;
    left:50%;
    top:-42px;
    transform:translateX(-50%);
    color:#D4AF37;
    font-family:Georgia,serif;
    font-size:4rem;
    line-height:1;
    opacity:.7;
    text-shadow:
        0 0 22px rgba(255,213,74,.25);
}
.about-quote p{
    margin:0;
    color:#f0f0f0;
    font-family:'Cinzel',serif;
    font-size:
        clamp(1.1rem,2vw,1.65rem);
    font-style:italic;
    line-height:1.8;
    text-shadow:
        0 0 20px rgba(255,213,74,.06);
}
.discover-btn{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:min(520px,90%);
    height:64px;
    margin:38px auto 0;
    padding:0 70px 0 28px;
    border:1px solid rgba(255,213,74,.72);
    border-radius:999px;
    color:#FFD54A;
    font-family:'Poppins',sans-serif;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    background:
        linear-gradient(
            120deg,
            rgba(255,213,74,.025),
            rgba(255,213,74,.10),
            rgba(255,213,74,.025)
        );
    box-shadow:
        0 0 25px rgba(255,213,74,.07),
        inset 0 0 20px rgba(255,213,74,.025);
    overflow:hidden;
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        background .45s ease;
}
.discover-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-40%;
    width:25%;
    height:100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.3),
            transparent
        );
    transform:skewX(-20deg);
    animation:
        aboutButtonShine 4s infinite;
}
.discover-btn i{
    position:absolute;
    right:8px;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,213,74,.7);
    border-radius:50%;
    color:#FFD54A;
    background:
        rgba(255,213,74,.055);
    box-shadow:
        0 0 18px rgba(255,213,74,.08);
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        background .45s ease;
}
.discover-btn:hover{
    transform:translateY(-5px);
    background:
        linear-gradient(
            120deg,
            rgba(255,213,74,.06),
            rgba(255,213,74,.16),
            rgba(255,213,74,.06)
        );
    box-shadow:
        0 15px 45px rgba(255,213,74,.16),
        0 0 35px rgba(255,213,74,.10);
}
.discover-btn:hover i{
    transform:translateY(4px);
    background:
        rgba(255,213,74,.12);
    box-shadow:
        0 0 25px rgba(255,213,74,.22);
}
@keyframes aboutButtonShine{
    0%,55%{
        left:-40%;
    }
    75%,100%{
        left:130%;
    }
}
@media(max-width:768px){
    .about-luxury{
        padding-top:85px;
        padding-bottom:80px;
    }
    .about-luxury::before{
        width:360px;
        height:360px;
    }
    .about-badge{
        font-size:.58rem;
        letter-spacing:2px;
        margin-bottom:28px;
        white-space:nowrap;
    }
    .about-badge::before,
    .about-badge::after{
        width:28px;
        margin:0 9px;
    }
    .about-divider{
        width:72px;
        margin-bottom:32px;
    }
    .about-title{
        font-size:
            clamp(1.8rem,8vw,2.45rem);
        letter-spacing:1px;
    }
    .about-title::after{
        width:62px;
        margin-top:19px;
    }
    .about-heading{
        margin-top:32px;
        font-size:1.15rem;
        line-height:1.8;
        text-align:left;
        padding:0 18px;
    }
    .about-intro{
        margin-top:26px;
        padding:0 20px;
        font-size:.88rem;
        line-height:1.9;
        text-align:center;
    }
    .about-grid{
        margin-top:58px;
    }
    .film-label{
        margin-left:4px;
        margin-bottom:13px;
        font-size:.59rem;
        letter-spacing:2.4px;
    }
    .about-video video{
        width:100%;
        border-radius:2px;
    }
    .about-video::before{
        top:29px;
        width:34px;
        height:34px;
    }
    .about-video::after{
        width:34px;
        height:34px;
    }
    .about-quote{
        margin-top:70px;
        padding:0 18px;
    }
    .about-quote p{
        font-size:1.05rem;
        line-height:1.85;
    }
    .about-quote::before{
        top:-36px;
        font-size:3.5rem;
    }
    .discover-btn{
        width:calc(100% - 30px);
        height:60px;
        margin-top:34px;
        padding:
            0 65px 0 18px;
        font-size:.61rem;
        letter-spacing:1.2px;
    }
    .discover-btn i{
        width:45px;
        height:45px;
        right:7px;
    }
}
@media(max-width:390px){
    .about-luxury{
        padding-top:72px;
    }
    .about-badge{
        font-size:.53rem;
        letter-spacing:1.6px;
    }
    .about-badge::before,
    .about-badge::after{
        width:20px;
        margin:0 6px;
    }
    .about-title{
        font-size:1.65rem;
    }
    .about-heading{
        font-size:1.05rem;
    }
    .about-intro{
        font-size:.84rem;
    }
    .discover-btn{
        font-size:.57rem;
        letter-spacing:.9px;
    }
}

/* =========================================================
   PLAYING CARDS MENU — MOBILE FINAL OVERRIDES
   Keep the working desktop deck untouched.
========================================================= */
@media (max-width:768px){
    .menu-stage{
        min-height:760px;
    }

    .deck-stack{
        left:50%;
        top:44%;
        width:220px;
        height:308px;
    }

    .menu-card{
        border-radius:18px;
        box-shadow:0 18px 38px rgba(0,0,0,.42);
    }

    .menu .deck-stack.open .menu-card:nth-child(1){
        transform:translateX(92px) rotate(14deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(2){
        transform:translateX(55px) rotate(9deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(3){
        transform:translateX(18px) rotate(4deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(4){
        transform:translateX(-18px) rotate(-4deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(5){
        transform:translateX(-55px) rotate(-9deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(6){
        transform:translateX(-92px) rotate(-14deg);
    }

    .menu-card.active{
        transform:
            translateY(-20px)
            scale(1.04)
            rotate(0deg) !important;

        box-shadow:
            0 0 38px rgba(255,213,74,.72),
            0 24px 55px rgba(0,0,0,.50);
    }

    .menu-card img{
        border-radius:18px;
    }
}

@media (max-width:430px){
    .menu-stage{
        min-height:700px;
    }

    .deck-stack{
        top:43%;
        width:205px;
        height:287px;
    }

    .menu .deck-stack.open .menu-card:nth-child(1){
        transform:translateX(84px) rotate(13deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(2){
        transform:translateX(50px) rotate(8deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(3){
        transform:translateX(16px) rotate(3.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(4){
        transform:translateX(-16px) rotate(-3.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(5){
        transform:translateX(-50px) rotate(-8deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(6){
        transform:translateX(-84px) rotate(-13deg);
    }
}

@media (max-width:380px){
    .menu-stage{
        min-height:650px;
    }

    .deck-stack{
        top:42%;
        width:190px;
        height:266px;
    }

    .menu .deck-stack.open .menu-card:nth-child(1){
        transform:translateX(76px) rotate(12deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(2){
        transform:translateX(45px) rotate(7.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(3){
        transform:translateX(14px) rotate(3deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(4){
        transform:translateX(-14px) rotate(-3deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(5){
        transform:translateX(-45px) rotate(-7.5deg);
    }

    .menu .deck-stack.open .menu-card:nth-child(6){
        transform:translateX(-76px) rotate(-12deg);
    }
}


/* =========================================================
   HIGH JOINT — DIRECT ORDER MENU / CART / CHECKOUT
   Added as a single clean layer; existing visual system preserved.
========================================================= */
.order-menu-wrap{max-width:1280px;margin:70px auto 0;padding:0 2%;}
.order-menu-head{text-align:center;margin-bottom:30px;}
.order-menu-head span,.external-ordering-head span{display:block;color:var(--gold);letter-spacing:4px;font-size:.78rem;font-weight:800;text-transform:uppercase;margin-bottom:10px;}
.order-menu-head h3,.external-ordering-head h3{font-family:'Cinzel',serif;font-size:clamp(1.8rem,4vw,2.7rem);margin-bottom:10px;}
.order-menu-head p,.external-ordering-head p{color:var(--muted);}
.menu-filter{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin:0 auto 35px;}
.menu-filter-btn{padding:10px 16px;border:1px solid rgba(255,213,74,.2);background:rgba(255,255,255,.045);color:#fff;border-radius:999px;font-weight:700;cursor:pointer;}
.menu-filter-btn:hover,.menu-filter-btn.active{background:var(--gold);color:#111;border-color:var(--gold);box-shadow:0 0 24px rgba(255,213,74,.22);}
.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;}
.product-card{position:relative;padding:24px;border:1px solid rgba(255,213,74,.14);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));backdrop-filter:blur(12px);overflow:hidden;display:flex;flex-direction:column;min-height:245px;}
.product-card::before{content:"";position:absolute;inset:-50% auto auto -30%;width:70%;height:120%;background:radial-gradient(circle,rgba(255,213,74,.10),transparent 65%);pointer-events:none;}
.product-card:hover{transform:translateY(-6px);border-color:rgba(255,213,74,.5);box-shadow:0 20px 50px rgba(0,0,0,.35),0 0 35px rgba(255,213,74,.08);}
.product-top{display:flex;justify-content:space-between;gap:15px;align-items:flex-start;position:relative;z-index:1;}
.product-category{font-size:.68rem;letter-spacing:2px;text-transform:uppercase;color:var(--gold);font-weight:800;}
.product-price{font-size:1.1rem;font-weight:900;color:var(--gold);white-space:nowrap;}
.product-card h4{font-size:1.15rem;margin:12px 0 8px;position:relative;z-index:1;}
.product-card p{color:#aaa;font-size:.86rem;line-height:1.65;position:relative;z-index:1;flex:1;}
.product-actions{display:flex;gap:10px;margin-top:18px;position:relative;z-index:1;}
.add-product{flex:1;min-height:44px;border-radius:14px;background:var(--gold);color:#111;font-weight:900;}
.add-product:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(255,213,74,.25);}
.product-card.is-hidden{display:none;}
.checkout-layout{max-width:1250px;margin:0 auto;display:grid;grid-template-columns:minmax(300px,.8fr) minmax(0,1.4fr);gap:25px;align-items:start;}
.cart-panel,.checkout-card,.success-card{background:rgba(255,255,255,.045);border:1px solid rgba(255,213,74,.16);border-radius:28px;box-shadow:0 20px 70px rgba(0,0,0,.25);backdrop-filter:blur(18px);}
.cart-panel{padding:25px;position:sticky;top:20px;}
.cart-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:18px;}.cart-head span{font-size:.7rem;letter-spacing:3px;color:var(--gold);font-weight:800;}.cart-head h3{font-family:'Cinzel',serif;margin-top:5px;}.cart-close-mobile{display:none;background:none;color:#fff;font-size:28px;}
.cart-items{display:flex;flex-direction:column;gap:12px;max-height:430px;overflow:auto;padding-right:3px;}
.cart-item{padding:15px;border-radius:18px;background:rgba(0,0,0,.25);border:1px solid rgba(255,255,255,.07);}.cart-item-main{display:flex;justify-content:space-between;gap:10px}.cart-item h4{font-size:.92rem}.cart-item-price{color:var(--gold);font-weight:800;white-space:nowrap}.cart-item-controls{display:flex;align-items:center;justify-content:space-between;margin-top:12px}.qty-controls{display:flex;align-items:center;gap:8px}.qty-controls button{width:30px;height:30px;border-radius:50%;background:#222;color:#fff;border:1px solid rgba(255,213,74,.2)}.qty-controls button:hover{background:var(--gold);color:#111}.remove-item{background:none;color:#aaa;font-size:.78rem}.remove-item:hover{color:#fff}.cart-empty{text-align:center;padding:35px 10px;color:#888}.cart-empty i{font-size:35px;color:var(--gold);margin-bottom:12px}.cart-empty p{margin-bottom:15px}.cart-totals{border-top:1px solid rgba(255,255,255,.08);margin-top:18px;padding-top:18px}.cart-totals>div{display:flex;justify-content:space-between;margin:8px 0;color:#aaa}.cart-totals strong{color:#fff}.cart-totals .cart-total{margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,213,74,.15);font-size:1.15rem;color:#fff}.cart-totals .cart-total strong{color:var(--gold);font-size:1.3rem}.cart-checkout-btn{width:100%;margin-top:18px;}.cart-checkout-btn:disabled{opacity:.35;cursor:not-allowed;transform:none!important;box-shadow:none!important}
.checkout-panel{min-width:0}.checkout-progress{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;margin-bottom:15px}.checkout-progress span{padding:10px 5px;text-align:center;font-size:.7rem;color:#777;border-bottom:2px solid #292929}.checkout-progress span.active{color:var(--gold);border-color:var(--gold)}.checkout-step{display:none}.checkout-step.active{display:block}.checkout-card{padding:28px}.checkout-card h3{font-family:'Cinzel',serif;font-size:1.45rem;margin-bottom:22px}.choice-grid,.payment-options{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-bottom:22px}.payment-options{grid-template-columns:repeat(3,1fr)}.choice-card,.payment-option{display:block;cursor:pointer}.choice-card input,.payment-option input{position:absolute;opacity:0}.choice-card>span,.payment-option>span{display:flex;flex-direction:column;gap:6px;padding:18px;border:1px solid rgba(255,213,74,.12);border-radius:18px;background:rgba(0,0,0,.2);height:100%}.choice-card input:checked+span,.payment-option input:checked+span{border-color:var(--gold);box-shadow:0 0 25px rgba(255,213,74,.1)}.choice-card i,.payment-option i{color:var(--gold);font-size:1.2rem}.choice-card b,.payment-option b{font-size:.92rem}.choice-card small,.payment-option small{color:#888}.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px}.form-grid label{display:flex;flex-direction:column;gap:7px;color:#aaa;font-size:.78rem;font-weight:700}.form-grid label.full{grid-column:1/-1}.form-grid input,.form-grid textarea{width:100%;border:1px solid rgba(255,255,255,.1);background:#0d0d0d;color:#fff;border-radius:14px;padding:13px 14px;outline:none;font:inherit;resize:vertical}.form-grid input:focus,.form-grid textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(255,213,74,.06)}.step-actions{display:flex;justify-content:flex-end;gap:12px;margin-top:24px}.review-items{display:flex;flex-direction:column;gap:10px}.review-row{display:flex;justify-content:space-between;gap:15px;padding:13px;border-radius:14px;background:rgba(0,0,0,.2)}.review-total{display:flex;justify-content:space-between;border-top:1px solid rgba(255,213,74,.15);margin-top:15px;padding-top:15px;font-size:1.15rem}.review-total strong{color:var(--gold)}.secure-note{padding:12px 15px;border:1px solid rgba(255,213,74,.15);border-radius:14px;background:rgba(255,213,74,.05);color:#bbb;font-size:.78rem;margin-bottom:16px}.secure-note i{color:var(--gold);margin-right:7px}.success-card{text-align:center;padding:50px 30px}.success-icon{width:75px;height:75px;border-radius:50%;display:grid;place-items:center;margin:0 auto 20px;background:var(--gold);color:#111;font-size:30px;box-shadow:0 0 45px rgba(255,213,74,.3)}.success-card>span{color:var(--gold);letter-spacing:3px;font-size:.75rem;font-weight:900}.success-card h3{font-family:'Cinzel',serif;font-size:clamp(1.7rem,4vw,2.5rem);margin:12px 0}.success-card p{color:#aaa}.success-order{margin:22px auto;padding:15px;border-radius:15px;background:rgba(0,0,0,.22);max-width:450px;color:#ddd}.external-ordering{max-width:1100px;margin:55px auto 0}.external-ordering-head{text-align:center;margin-bottom:25px}.external-ordering .order-grid{grid-template-columns:repeat(5,1fr);gap:12px}.floating-cart{position:fixed;right:22px;bottom:22px;width:62px;height:62px;border-radius:50%;background:var(--gold);color:#111;z-index:999999;box-shadow:0 0 30px rgba(255,213,74,.3);font-size:20px}.floating-cart span{position:absolute;right:-2px;top:-4px;min-width:23px;height:23px;padding:0 6px;border-radius:999px;background:#111;color:var(--gold);border:1px solid var(--gold);font-size:.72rem;display:grid;place-items:center;font-weight:900}.floating-cart.bump{animation:cartBump .45s ease}@keyframes cartBump{50%{transform:scale(1.15)}}
@media(max-width:1024px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.checkout-layout{grid-template-columns:1fr}.cart-panel{position:relative;top:auto}.external-ordering .order-grid{grid-template-columns:repeat(3,1fr)}.payment-options{grid-template-columns:1fr}}
@media(max-width:650px){.order-menu-wrap{padding:0}.menu-filter{justify-content:flex-start;overflow:auto;flex-wrap:nowrap;padding-bottom:5px}.menu-filter-btn{white-space:nowrap}.product-grid{grid-template-columns:1fr}.checkout-card,.cart-panel{padding:20px;border-radius:22px}.choice-grid,.form-grid{grid-template-columns:1fr}.form-grid label.full{grid-column:auto}.external-ordering .order-grid{grid-template-columns:1fr}.checkout-progress span{font-size:.58rem}.floating-cart{right:15px;bottom:15px}.step-actions{flex-direction:column}.step-actions button{width:100%}}

/* =========================================================
   HIGH JOINT — FINAL LUXURY POLISH V3
   Delivery partners • direct order menu • signature cards
========================================================= */

/* Delivery partners: premium glass tiles */
.external-ordering{
    position:relative;
    padding:38px 24px 8px;
    margin-top:72px;
    border:1px solid rgba(255,213,74,.16);
    border-radius:32px;
    background:
      radial-gradient(circle at 50% 0%,rgba(255,213,74,.10),transparent 46%),
      linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
    box-shadow:0 30px 90px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
    overflow:hidden;
}
.external-ordering::before{
    content:"";
    position:absolute;
    top:0;left:12%;right:12%;height:1px;
    background:linear-gradient(90deg,transparent,rgba(255,213,74,.75),transparent);
}
.external-ordering-head{position:relative;z-index:2}
.external-ordering-head span{font-size:.68rem;letter-spacing:.28em;text-shadow:0 0 18px rgba(255,213,74,.25)}
.external-ordering-head h3{font-size:clamp(1.7rem,3vw,2.45rem);margin-bottom:7px}
.external-ordering-head::after{
    content:"Choose your preferred delivery partner";
    display:block;
    color:rgba(255,255,255,.42);
    font-size:.78rem;
    margin-top:8px;
}
.external-ordering .order-grid{position:relative;z-index:2;display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.external-ordering .delivery-btn{
    position:relative;
    min-height:76px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(0,0,0,.18));
    color:#f7f1df;
    font-weight:800;
    letter-spacing:.01em;
    text-decoration:none;
    overflow:hidden;
    transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease,background .35s ease;
}
.external-ordering .delivery-btn::before{
    content:"";
    position:absolute;
    width:100px;height:100px;
    top:-60px;left:-55px;
    background:rgba(255,213,74,.11);
    filter:blur(22px);
    transition:.4s ease;
}
.external-ordering .delivery-btn i{font-size:1.25rem;color:var(--gold);position:relative;z-index:1;transition:transform .35s ease}
.external-ordering .delivery-btn::after{
    content:"↗";
    position:absolute;
    right:11px;top:9px;
    color:rgba(255,213,74,.45);
    font-size:.75rem;
}
.external-ordering .delivery-btn:hover{
    transform:translateY(-7px);
    border-color:rgba(255,213,74,.55);
    background:linear-gradient(145deg,rgba(255,213,74,.11),rgba(255,255,255,.025));
    box-shadow:0 18px 45px rgba(0,0,0,.35),0 0 28px rgba(255,213,74,.10);
}
.external-ordering .delivery-btn:hover i{transform:scale(1.12) translateY(-2px)}

/* Direct order menu: elegant reveal */
.order-menu-wrap{
    position:relative;
    margin-top:80px;
    padding:42px 28px 34px;
    border-radius:34px;
    border:1px solid rgba(255,213,74,.14);
    background:
      radial-gradient(circle at 50% 0%,rgba(255,213,74,.07),transparent 42%),
      rgba(4,4,4,.58);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.035),0 30px 90px rgba(0,0,0,.22);
}
.order-menu-head span{font-size:.68rem;letter-spacing:.28em}
.order-menu-head h3{margin-bottom:8px}
.order-menu-head p{max-width:650px;margin:0 auto 24px}
.menu-filter{scrollbar-width:none}
.menu-filter::-webkit-scrollbar{display:none}
.menu-filter-btn{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,213,74,.12);
    background:rgba(255,255,255,.025);
    transition:.3s ease;
}
.menu-filter-btn::after{
    content:"";position:absolute;left:50%;bottom:0;width:0;height:2px;background:var(--gold);transform:translateX(-50%);transition:.3s ease;
}
.menu-filter-btn:hover::after,.menu-filter-btn.active::after{width:65%}
.product-grid .product-card,
.product-grid>*{
    animation:hjProductIn .65s cubic-bezier(.2,.75,.2,1) both;
}
.product-grid>*:nth-child(2){animation-delay:.04s}.product-grid>*:nth-child(3){animation-delay:.08s}.product-grid>*:nth-child(4){animation-delay:.12s}.product-grid>*:nth-child(5){animation-delay:.16s}.product-grid>*:nth-child(6){animation-delay:.20s}
@keyframes hjProductIn{from{opacity:0;transform:translateY(18px) scale(.985)}to{opacity:1;transform:none}}

/* Make the playing-card reveal feel cinematic without changing its structure */
.menu-stage{perspective:1600px}
.deck-stack::before{
    content:"";
    position:absolute;
    inset:-10%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,213,74,.12),transparent 60%);
    filter:blur(28px);
    opacity:.65;
    pointer-events:none;
    z-index:-1;
}
.deck-stack.open .menu-card{
    box-shadow:0 25px 65px rgba(0,0,0,.62),0 0 26px rgba(255,213,74,.10);
}
.deck-stack.open .menu-card:nth-child(odd){filter:brightness(1.03)}
.deck-stack.open .menu-card:nth-child(even){filter:brightness(.98)}

/* Signature cards — premium framing + mobile cinematic crop */
.signature-card{
    box-shadow:0 22px 65px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.05);
}
.signature-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    padding:1px;
    background:linear-gradient(145deg,rgba(255,213,74,.45),transparent 28%,transparent 72%,rgba(255,213,74,.16));
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    z-index:3;
}
.signature-card .video-box{box-shadow:inset 0 0 0 1px rgba(255,213,74,.10),0 18px 35px rgba(0,0,0,.35)}
.signature-card .video-box video{transform:scale(1.025);transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .8s ease;filter:saturate(1.05) contrast(1.03)}
.signature-card:hover .video-box video{transform:scale(1.075);filter:saturate(1.12) contrast(1.05)}
.signature-content h3{font-family:'Cinzel',serif;letter-spacing:.02em}
.signature-content .order-btn{box-shadow:0 10px 30px rgba(255,213,74,.12)}

@media(max-width:1024px){
    .external-ordering .order-grid{grid-template-columns:repeat(3,1fr)}
    .external-ordering .delivery-btn:nth-child(4){grid-column:2}
}
@media(max-width:650px){
    .external-ordering{padding:30px 14px 8px;margin-top:52px;border-radius:26px}
    .external-ordering .order-grid{grid-template-columns:repeat(2,1fr);gap:9px}
    .external-ordering .delivery-btn{min-height:72px;border-radius:16px;font-size:.78rem}
    .external-ordering .delivery-btn:nth-child(4){grid-column:auto}
    .external-ordering .delivery-btn:first-child{grid-column:1/-1}
    .order-menu-wrap{margin-top:55px;padding:30px 12px 24px;border-radius:26px}
    .menu-filter{gap:7px}
    .menu-filter-btn{font-size:.72rem;padding:9px 12px}
    .signature{padding-left:4%;padding-right:4%}
    .signature-grid{grid-template-columns:1fr;gap:18px;max-width:430px}
    .signature-card{padding:12px;border-radius:25px}
    .video-box{height:360px;border-radius:19px}
    .signature-content{padding:20px 8px 9px}
    .signature-content h3{font-size:1.45rem}
    .signature-content p{font-size:.88rem;line-height:1.65;margin-bottom:18px}
}
@media(max-width:390px){.video-box{height:315px}.external-ordering .delivery-btn{font-size:.72rem}.external-ordering .delivery-btn i{font-size:1.05rem}}
.menu-card:not(.active){transform:translateX(var(--card-x,0)) rotate(var(--mx,0deg)) rotateY(var(--my,0deg));}

/* Signature V9 compact luxury layout */
.signature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;max-width:1180px;margin:0 auto;}
.signature-card{min-width:0;border-radius:22px;overflow:hidden;}
.signature-card .video-box{aspect-ratio:1.25/1;}
.signature-card .signature-content{padding:18px 18px 20px;}
.signature-card .signature-content h3{font-size:24px;}
@media(max-width:900px){.signature-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}}
@media(max-width:600px){.signature-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}.signature-card .video-box{aspect-ratio:1/1;}.signature-card .signature-content{padding:13px;}.signature-card .signature-content h3{font-size:18px;}.signature-card .signature-content p{font-size:12px;line-height:1.45;}.signature-card .order-btn{font-size:11px;padding:10px 8px;}}

/* =========================================================
   HIGH JOINT — FINAL MENU GRID V11
   Product menu: 3 desktop / 2 tablet / 1 mobile.
   Image paths are encoded in JS so spaces, &, parentheses work.
========================================================= */
.hj-products-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:22px !important;
  width:100%;
}
.hj-product{
  min-width:0;
  overflow:hidden;
}
.hj-product-media{
  position:relative;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#0b0b0b;
}
.hj-product-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
@media (max-width: 1050px){
  .hj-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width: 650px){
  .hj-products-grid{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }
}

/* V13 SAFETY: keep the page flowing after the playing-card menu */
html, body { min-height: 100%; overflow-x: hidden; overflow-y: auto !important; }
#menu-cards { position: relative; display: block !important; height: auto !important; max-height: none !important; overflow: visible; }
#menu-cards .menu-stage { min-height: 820px; height: auto; overflow: visible; }
#online-order, #gallery, #reviews, #contact, footer { display: block !important; visibility: visible !important; position: relative; }
.hj-order-section { display: block !important; visibility: visible !important; }
@media (max-width: 700px){ #menu-cards .menu-stage { min-height: 620px; } }


/* V14 FINAL PAGE FLOW + ORDER GRID */
html,body{min-height:100%;overflow-x:hidden;}
body.hj-lock{overflow:hidden;}
.menu-card-deck{position:relative;display:block;min-height:900px;overflow:visible;}
.menu-card-deck + .cinematic-book-gallery,.menu-card-deck + .gallery,.menu-card-deck ~ section{visibility:visible;opacity:1;}
.hj-order-section{display:block!important;visibility:visible!important;opacity:1!important;position:relative;clear:both;z-index:2;}
.hj-products-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;}
@media(max-width:1000px){.hj-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}
@media(max-width:680px){.hj-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}


/* =========================================================
   V15 FINAL FIXES — KEEP ORIGINAL DECK + SECOND MENU
========================================================= */
/* The playing-card deck stays centered in its own section. */
.menu-card-deck .menu-stage{display:flex;align-items:center;justify-content:center;}
.menu-card-deck .deck-stack{left:50%;}

/* Compact signature cards: 3 desktop, 2 on smaller screens, never huge single cards. */
.signature-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:18px !important;max-width:1180px;margin-inline:auto;}
.signature-card{min-width:0 !important;}
.signature-card .video-box{height:250px !important;}
@media(max-width:900px){.signature-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}.signature-card .video-box{height:220px !important;}}
@media(max-width:560px){.signature-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px !important;}.signature-card .video-box{height:165px !important;}.signature-content{padding:13px !important;}.signature-content h3{font-size:17px !important;}.signature-content p{font-size:11px !important;line-height:1.45 !important;}.signature-card .order-btn{font-size:10px !important;padding:9px 8px !important;}}

/* Gallery book: closed and open versions share the exact same center point. */
.cinematic-book-gallery .book-open{left:50%;top:50%;transform:translate(-50%,-50%) scale(.45) rotateX(8deg);}
.cinematic-book-gallery.is-open .book-open{transform:translate(-50%,-50%) scale(1) rotateX(0deg);}
.cinematic-book-gallery .book-stage{left:0;right:0;margin-inline:auto;}

/* The second menu is a real 3-column product grid on desktop. */
.hj-products-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
@media(max-width:1000px){.hj-products-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:560px){.hj-products-grid{grid-template-columns:1fr !important;}}

/* HIGH JOINT always sits above the category title, never beside it. */
.hj-category-heading{display:block !important;align-items:initial !important;}
.hj-category-heading span{position:static !important;transform:none !important;display:block !important;margin:0 0 8px !important;line-height:1 !important;}
.hj-category-title-row{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;}
.hj-category-title-row h3{margin:0 !important;line-height:1.15 !important;}

/* Do not replace a missing food photo with the restaurant logo. */
.hj-product-media img.image-missing{display:block;width:100%;height:100%;background:radial-gradient(circle at center,rgba(255,213,74,.10),transparent 60%),#101010;}

/* Visible payment panel — the real checkout still opens from this button. */
.hj-secure-panel{max-width:1180px;margin:20px auto 0;padding:28px;border:1px solid rgba(255,213,74,.22);border-radius:24px;background:linear-gradient(145deg,#11110d,#090909);display:grid;grid-template-columns:1.4fr 1fr;gap:20px;align-items:center;}
.hj-secure-copy span{color:#ffd54a;letter-spacing:.22em;font-size:11px;font-weight:800;}.hj-secure-copy h3{margin:8px 0;font-size:28px;}.hj-secure-copy p{margin:0;opacity:.62;line-height:1.7;}.hj-payment-options{display:grid;grid-template-columns:1fr 1fr;gap:10px;}.hj-payment-options span{padding:13px 14px;border:1px solid #252525;border-radius:13px;color:#ddd;background:#0b0b0b;text-align:center;}.hj-payment-options span:last-child{grid-column:1/-1;}.hj-secure-open{grid-column:2;}
@media(max-width:700px){.hj-secure-panel{grid-template-columns:1fr;padding:20px;}.hj-secure-open{grid-column:auto;}.hj-payment-options{grid-template-columns:1fr 1fr;}}

/* V20 — premium payment navigation + elevated contact */
.hj-checkout-nav{display:flex;gap:10px;align-items:center;justify-content:flex-start;margin:0 55px 16px 0;flex-wrap:wrap;}
.hj-checkout-nav-btn{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,213,74,.28);background:linear-gradient(135deg,rgba(255,213,74,.10),rgba(255,255,255,.035));color:#f7f7f7;border-radius:999px;padding:10px 15px;font:700 12px Poppins,sans-serif;cursor:pointer;transition:.25s ease;box-shadow:0 8px 24px rgba(0,0,0,.18);}
.hj-checkout-nav-btn i{color:#ffd54a;}
.hj-checkout-nav-btn:hover{transform:translateY(-2px);border-color:#ffd54a;box-shadow:0 0 24px rgba(255,213,74,.16);}
@media(max-width:560px){.hj-checkout-nav{margin-right:42px;gap:7px}.hj-checkout-nav-btn{font-size:10px;padding:8px 11px;}}

/* Contact: luxury cards, phone emphasized, correct direction */
.contact-container{gap:28px !important;}
.contact-info{background:linear-gradient(145deg,rgba(255,213,74,.065),rgba(255,255,255,.025));border:1px solid rgba(255,213,74,.18);border-radius:28px;padding:30px !important;box-shadow:0 20px 55px rgba(0,0,0,.24);}
.contact-info h3{font-family:Cinzel,serif !important;letter-spacing:.06em;}
.contact-details{display:grid;gap:12px !important;margin-top:24px;}
.contact-item{display:flex !important;align-items:center !important;gap:14px !important;min-height:58px;padding:12px 15px;border:1px solid rgba(255,255,255,.07);border-radius:16px;background:rgba(0,0,0,.22);transition:.25s ease;}
.contact-item:hover{transform:translateX(4px);border-color:rgba(255,213,74,.28);background:rgba(255,213,74,.045);}
.contact-item i{width:38px;height:38px;display:grid !important;place-items:center;background:rgba(255,213,74,.09);border:1px solid rgba(255,213,74,.24);border-radius:12px;color:#ffd54a !important;font-size:16px !important;flex:0 0 38px;}
.contact-item a,.contact-item span{color:#eee !important;}
.contact-item a[href^="tel:"]{direction:ltr !important;unicode-bidi:isolate !important;color:#ffd54a !important;font-weight:800;letter-spacing:.03em;text-decoration:none;}
.contact-map{border:1px solid rgba(255,213,74,.18);border-radius:28px;overflow:hidden;box-shadow:0 20px 55px rgba(0,0,0,.24);}
.contact-map iframe{width:100%;height:100%;min-height:360px;border:0;filter:grayscale(.2) contrast(1.05);}
@media(max-width:800px){.contact-container{grid-template-columns:1fr !important}.contact-map iframe{min-height:300px}.contact-info{padding:22px !important;}}

/* Payment method buttons — colorful, premium, alive */
.hj-payment-method{position:relative;overflow:hidden;isolation:isolate;display:flex;align-items:center;gap:10px;min-height:62px;padding:12px 14px;border:1px solid rgba(255,255,255,.09);border-radius:18px;background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(0,0,0,.25));color:#fff;cursor:pointer;transition:.28s ease;box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 10px 28px rgba(0,0,0,.18);}
.hj-payment-method::before{content:"";position:absolute;inset:-35%;background:radial-gradient(circle,rgba(255,213,74,.14),transparent 52%);opacity:0;transform:scale(.7);transition:.35s ease;z-index:-1;}
.hj-payment-method:hover{transform:translateY(-3px);border-color:rgba(255,213,74,.45);box-shadow:0 0 28px rgba(255,213,74,.13),0 14px 32px rgba(0,0,0,.22);}
.hj-payment-method:hover::before{opacity:1;transform:scale(1);}
.hj-payment-method:active{transform:translateY(-1px) scale(.99);}
.hj-pay-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:linear-gradient(145deg,#171717,#090909);border:1px solid rgba(255,213,74,.2);font-size:21px;flex:0 0 42px;box-shadow:0 0 0 rgba(255,213,74,0);transition:.3s ease;}
.hj-payment-method:hover .hj-pay-icon{box-shadow:0 0 22px rgba(255,213,74,.22);transform:rotate(-3deg) scale(1.05);}
.hj-payment-method:nth-child(1) .hj-pay-icon{color:#ffd54a;}
.hj-payment-method:nth-child(2) .hj-pay-icon{color:#fff;}
.hj-payment-method:nth-child(3) .hj-pay-icon{color:#4aa3ff;}
.hj-pay-label{font-weight:800;font-size:13px;}
.hj-payment-method small{margin-left:auto;color:#888;font-size:9px;text-transform:uppercase;letter-spacing:.08em;}


/* V21 — product name appears only below the image; no category/name overlay on image */
.hj-product-media > .cat { display:none !important; }
.hj-product-media img { display:block; }


/* ==========================================================
   HIGH JOINT V24 — FINAL RESPONSIVE HARDENING
   Desktop + tablet + mobile
   Restores full page structure and prevents stretched cards.
========================================================== */

/* Global width/overflow guard */
html,body{width:100%;max-width:100%;overflow-x:hidden;}
*,*::before,*::after{box-sizing:border-box;}

/* ---------------- MENU 2: PRODUCT CARDS ---------------- */
#online-order .hj-products-grid{
  width:min(1180px,100%);
  margin-inline:auto;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:22px !important;
  align-items:stretch;
}
#online-order .hj-product{
  width:100%;
  min-width:0;
  min-height:0;
  height:auto;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:22px;
}
#online-order .hj-product-media{
  width:100%;
  height:auto !important;
  aspect-ratio:1.45 / 1 !important;
  min-height:0 !important;
  flex:none;
  overflow:hidden;
}
#online-order .hj-product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
#online-order .hj-product-media .hj-price{
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:4;
  font-size:14px;
  line-height:1;
  padding:9px 11px;
  border-radius:11px;
  white-space:nowrap;
}
#online-order .hj-product-content{
  flex:1 1 auto;
  min-height:0;
  padding:16px 17px 17px;
}
#online-order .hj-product-content h3{
  font-family:'Poppins',sans-serif;
  font-size:19px;
  font-weight:700;
  line-height:1.3;
  margin:0 0 7px;
}
#online-order .hj-product-content p{
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:400;
  line-height:1.55;
  margin:0 0 13px;
  opacity:.82;
}
#online-order .hj-product-bottom{margin-top:auto;}
#online-order .hj-add{font-size:12px;padding:10px 13px;}

/* ---------------- GALLERY BOOK ---------------- */
.cinematic-book-gallery{
  position:relative;
  min-height:900px;
  padding:145px 20px 80px !important;
  overflow:hidden;
}
.gallery-heading{
  position:absolute;
  top:34px !important;
  left:50%;
  transform:translateX(-50%);
  width:min(92%,900px);
  z-index:50;
  text-align:center;
}
.gallery-heading span{display:block;margin-bottom:8px;}
.gallery-heading h2{margin:0;}
.book-stage{
  position:relative;
  z-index:5;
  width:min(400px,55vw) !important;
  margin:78px auto 0 !important;
}

/* ---------------- CART DRAWER ---------------- */
.hj-cart{
  top:auto !important;
  bottom:0 !important;
  height:auto !important;
  max-height:min(82vh,760px) !important;
  width:min(440px,94vw) !important;
  overflow:hidden !important;
  display:flex !important;
  flex-direction:column !important;
  border-radius:24px 0 0 0;
}
.hj-cart-items{
  flex:1 1 auto !important;
  min-height:60px;
  max-height:min(45vh,390px);
  overflow-y:auto !important;
  overscroll-behavior:contain;
}
.hj-cart-summary{flex:none !important;}

/* ---------------- SIGNATURE ---------------- */
.signature-grid,.signature-cards{
  max-width:1180px;
  margin-inline:auto;
}
@media (min-width:1001px){
  .signature-grid,.signature-cards{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}

/* ---------------- TABLET ---------------- */
@media (max-width:1000px){
  #online-order .hj-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px !important;
  }
  .cinematic-book-gallery{min-height:820px;padding-top:135px !important;}
  .book-stage{width:min(380px,64vw) !important;margin-top:65px !important;}
}

/* ---------------- MOBILE ---------------- */
@media (max-width:680px){
  #online-order .hj-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
  }
  #online-order .hj-product{border-radius:17px;}
  #online-order .hj-product-media{aspect-ratio:1.18 / 1 !important;}
  #online-order .hj-product-media .hj-price{
    right:8px;bottom:8px;font-size:11px;padding:7px 8px;
  }
  #online-order .hj-product-content{padding:11px 10px 12px;}
  #online-order .hj-product-content h3{font-size:15px;line-height:1.28;}
  #online-order .hj-product-content p{font-size:10.5px;line-height:1.45;}
  #online-order .hj-add{font-size:10px;padding:9px 7px;}
  .cinematic-book-gallery{
    min-height:760px;
    padding:125px 14px 55px !important;
  }
  .gallery-heading{top:28px !important;width:94%;}
  .gallery-heading span{font-size:12px;letter-spacing:2.5px;}
  .gallery-heading h2{font-size:clamp(22px,7vw,30px);}
  .book-stage{width:min(360px,78vw) !important;margin-top:58px !important;}
  .hj-cart{
    left:3vw;
    width:94vw !important;
    max-height:86vh !important;
    border-radius:22px 22px 0 0;
  }
  .hj-cart-items{max-height:42vh;}
}

@media (max-width:430px){
  #online-order .hj-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  #online-order .hj-product-content h3{font-size:14px;}
  #online-order .hj-product-content p{font-size:10px;}
  #online-order .hj-add{font-size:9.5px;}
}

/* Hero video fallback: no broken native control/play icon */
.hero-video-cover{z-index:2;}
#heroVideo{z-index:1;}


/* ==========================================================
   HIGH JOINT V25 — FINAL LUXURY POLISH
   - Gallery title never collides with the open book
   - Customer Love upgraded to premium editorial treatment
   - Signature cards compact + balanced
   - Secure checkout/payment remains visible and polished
   - Mobile/tablet spacing hardened
========================================================== */

/* ---------- OPEN BOOK: move the actual open book below its title ---------- */
.cinematic-book-gallery{
  isolation:isolate;
}
.cinematic-book-gallery .gallery-heading{
  pointer-events:none;
}
.cinematic-book-gallery .book-open{
  top:calc(50% + 62px) !important;
}
.cinematic-book-gallery.is-open .book-open{
  transform:translate(-50%,-50%) scale(1) rotateX(0deg) !important;
}
@media (max-width:1000px){
  .cinematic-book-gallery .book-open{top:calc(50% + 48px) !important;}
}
@media (max-width:680px){
  .cinematic-book-gallery .book-open{top:calc(50% + 42px) !important;}
  .cinematic-book-gallery{
    min-height:790px;
    padding-bottom:65px !important;
  }
}

/* ---------- SIGNATURE: premium compact cards ---------- */
.signature-grid{
  gap:22px !important;
  align-items:stretch;
}
.signature-card{
  border:1px solid rgba(255,213,74,.20) !important;
  border-radius:24px !important;
  background:
    radial-gradient(circle at 50% 0,rgba(255,213,74,.08),transparent 42%),
    linear-gradient(145deg,#151515,#090909) !important;
  box-shadow:0 20px 55px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.05) !important;
  overflow:hidden;
}
.signature-card:hover{
  transform:translateY(-7px) !important;
  border-color:rgba(255,213,74,.48) !important;
  box-shadow:0 28px 70px rgba(0,0,0,.48),0 0 35px rgba(255,213,74,.08) !important;
}
.signature-card .video-box{
  aspect-ratio:16/10 !important;
  min-height:0 !important;
}
.signature-card .video-box video{
  object-fit:cover;
}
.signature-card .signature-content{
  padding:20px 20px 18px !important;
}
.signature-card .signature-content h3{
  font-family:'Cinzel',serif !important;
  font-size:clamp(20px,2vw,27px) !important;
  letter-spacing:.02em;
}
.signature-card .signature-content p{
  font-size:13px !important;
  line-height:1.6 !important;
  color:rgba(255,255,255,.68);
  min-height:42px;
}
.signature-card .card-bottom{
  margin-top:14px !important;
}
.signature-card .order-btn,
.signature-card .hj-signature-add{
  width:100% !important;
  min-height:43px !important;
  border-radius:13px !important;
  letter-spacing:.08em;
  font-weight:800;
}

/* ---------- CUSTOMER LOVE: premium editorial section ---------- */
.premium-love{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 18%,rgba(255,213,74,.075),transparent 30%),
    linear-gradient(180deg,#090909 0%,#050505 100%);
  border-top:1px solid rgba(255,213,74,.10);
  border-bottom:1px solid rgba(255,213,74,.08);
}
.premium-love::before{
  content:"";
  position:absolute;
  inset:20px 6%;
  border:1px solid rgba(255,213,74,.08);
  border-radius:38px;
  pointer-events:none;
}
.love-title{
  position:relative;
  z-index:2;
}
.love-title span{
  color:#ffd54a !important;
  letter-spacing:.32em !important;
  font-size:11px !important;
  font-weight:700 !important;
}
.love-title h2{
  font-family:'Cinzel',serif !important;
  font-size:clamp(38px,6vw,72px) !important;
  letter-spacing:.015em;
  text-shadow:0 0 35px rgba(255,213,74,.10);
}
.love-title p{
  max-width:620px;
  margin-inline:auto;
}
.love-rating{
  position:relative;
  z-index:2;
  width:max-content;
  max-width:92%;
  margin:22px auto 38px;
  display:flex;
  align-items:center;
  gap:13px;
  padding:10px 18px;
  border:1px solid rgba(255,213,74,.20);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  box-shadow:0 14px 40px rgba(0,0,0,.30);
}
.love-stars,.mini-stars{
  color:#ffd54a;
  letter-spacing:.13em;
}
.love-rating strong{
  font-family:'Cinzel',serif;
  color:#fff;
  font-size:19px;
}
.love-rating span{
  color:rgba(255,255,255,.55);
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.love-grid{
  position:relative;
  z-index:2;
  max-width:1180px !important;
  gap:20px !important;
}
.love-card{
  position:relative;
  min-height:255px !important;
  padding:24px 24px 21px !important;
  border:1px solid rgba(255,213,74,.15) !important;
  border-radius:24px !important;
  background:
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)),
    #0b0b0b !important;
  box-shadow:0 22px 60px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.05) !important;
}
.love-card:hover{
  transform:translateY(-8px) !important;
  border-color:rgba(255,213,74,.40) !important;
  box-shadow:0 30px 70px rgba(0,0,0,.48),0 0 32px rgba(255,213,74,.07) !important;
}
.love-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.love-mark{
  font-family:Georgia,serif;
  font-size:48px;
  line-height:.6;
  color:#ffd54a;
  opacity:.9;
}
.verified{
  color:rgba(255,255,255,.55);
  font-size:9px;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.verified i{color:#ffd54a;margin-right:5px;}
.love-card .mini-stars{
  margin:15px 0 11px;
  font-size:11px;
}
.love-card p{
  font-size:14px !important;
  line-height:1.75 !important;
  color:rgba(255,255,255,.80) !important;
  min-height:74px;
}
.review-person{
  display:flex;
  align-items:center;
  gap:11px;
  margin-top:15px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.07);
}
.review-person .avatar{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#0a0a0a;
  background:linear-gradient(145deg,#fff0a8,#ffd54a,#c99500);
  font-weight:900;
  font-size:11px;
}
.review-person h4{font-size:13px;margin:0 0 1px;}
.review-person small{font-size:9px;color:rgba(255,255,255,.42);}
.love-footer{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:14px;
  max-width:760px;
  margin:38px auto 0;
  color:rgba(255,255,255,.42);
  font-size:9px;
  letter-spacing:.22em;
  text-align:center;
}
.love-footer span{
  flex:1;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,213,74,.30));
}
.love-footer span:last-child{
  background:linear-gradient(90deg,rgba(255,213,74,.30),transparent);
}

/* ---------- SECURE CHECKOUT / PAYMENT ---------- */
#secure-checkout-panel{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,213,74,.20) !important;
  background:
    radial-gradient(circle at 85% 10%,rgba(255,213,74,.10),transparent 28%),
    linear-gradient(145deg,#121212,#080808) !important;
  box-shadow:0 24px 70px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.05);
}
#secure-checkout-panel::after{
  content:"";
  position:absolute;
  right:-90px;bottom:-100px;
  width:260px;height:260px;
  border-radius:50%;
  border:1px solid rgba(255,213,74,.08);
  box-shadow:0 0 0 24px rgba(255,213,74,.025),0 0 0 48px rgba(255,213,74,.015);
  pointer-events:none;
}
.hj-secure-copy span{
  color:#ffd54a !important;
  font-size:10px !important;
  font-weight:800 !important;
  letter-spacing:.25em !important;
}
.hj-secure-copy h3{
  font-family:'Cinzel',serif !important;
}
.hj-secure-open{
  position:relative;
  z-index:2;
  min-height:48px !important;
  border-radius:14px !important;
  font-weight:800 !important;
  letter-spacing:.04em;
}
.hj-cart-fab{
  z-index:900 !important;
  box-shadow:0 16px 45px rgba(0,0,0,.45),0 0 25px rgba(255,213,74,.10) !important;
}

/* ---------- DELIVERY PARTNERS ---------- */
.external-ordering{
  position:relative;
  padding:74px 7% !important;
  background:#060606;
}
.external-ordering-head span{
  color:#ffd54a !important;
  letter-spacing:.25em !important;
  font-size:10px !important;
}
.external-ordering-head h3{
  font-family:'Cinzel',serif !important;
  font-size:clamp(25px,4vw,40px) !important;
}
.delivery-btn{
  border:1px solid rgba(255,213,74,.16) !important;
  background:linear-gradient(145deg,#151515,#0a0a0a) !important;
  border-radius:16px !important;
  min-height:54px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
.delivery-btn:hover{
  border-color:rgba(255,213,74,.45) !important;
  box-shadow:0 16px 35px rgba(0,0,0,.35),0 0 22px rgba(255,213,74,.08);
}

/* ---------- MOBILE FINAL ---------- */
@media(max-width:680px){
  .signature-grid{gap:13px !important;}
  .signature-card{border-radius:18px !important;}
  .signature-card .signature-content{padding:14px 13px 13px !important;}
  .signature-card .signature-content h3{font-size:17px !important;}
  .signature-card .signature-content p{font-size:10.5px !important;line-height:1.48 !important;min-height:45px;}
  .signature-card .order-btn,.signature-card .hj-signature-add{min-height:39px !important;font-size:9.5px !important;padding:8px 7px !important;}
  .love-rating{
    gap:7px;
    padding:8px 11px;
  }
  .love-rating .love-stars{font-size:10px;}
  .love-rating strong{font-size:16px;}
  .love-rating span{font-size:7.5px;}
  .love-grid{gap:12px !important;}
  .love-card{
    min-height:0 !important;
    padding:18px 16px 16px !important;
    border-radius:18px !important;
  }
  .love-card p{font-size:11.5px !important;line-height:1.6 !important;min-height:0;}
  .love-card .mini-stars{font-size:9px;margin:11px 0 8px;}
  .review-person{margin-top:11px;padding-top:10px;}
  .review-person .avatar{width:32px;height:32px;font-size:9px;}
  .review-person h4{font-size:11px;}
  .review-person small{font-size:7.5px;}
  .love-footer{font-size:7px;letter-spacing:.12em;}
  .premium-love::before{inset:12px 3%;}
  .external-ordering{padding:55px 5% !important;}
}

/* ==========================================================
   V25 CLEAN FINAL PASS — VISUAL / ASSET / RESPONSIVE HARDENING
========================================================== */

/* Logos: restore strong visual presence without pushing layout */
.loader-content img{
  width:190px !important;
  height:190px !important;
  object-fit:cover !important;
}
.header .logo img{
  width:72px !important;
  height:72px !important;
}
@media (max-width:768px){
  .header .logo img{width:62px !important;height:62px !important;}
  .loader-content img{width:165px !important;height:165px !important;}
}

/* Playing-card menu: preserve the deck concept, improve legibility and opening scale */
#menu-cards .section-title{position:relative;z-index:20;margin-bottom:12px;}
#menu-cards .menu-stage{min-height:980px;overflow:visible;}
#menu-cards .deck-stack{
  width:clamp(320px,40vw,590px) !important;
  height:clamp(463px,56vw,820px) !important;
  top:48% !important;
}
#menu-cards .menu-card{
  background:#0b0b0b;
  border:1px solid rgba(255,213,74,.24);
}
#menu-cards .menu-card img{
  object-fit:cover !important;
  object-position:center !important;
  background:#0b0b0b;
}
#menu-cards .menu-card.active{
  transform:translateY(-28px) scale(1.14) rotate(0deg) !important;
}
@media (max-width:900px){
  #menu-cards .menu-stage{min-height:820px;}
  #menu-cards .deck-stack{
    width:clamp(270px,58vw,430px) !important;
    height:clamp(390px,81vw,600px) !important;
    top:49% !important;
  }
}
@media (max-width:768px){
  #menu-cards .menu-stage{min-height:690px;}
  #menu-cards .deck-stack{
    width:230px !important;
    height:332px !important;
    top:46% !important;
  }
  #menu-cards .menu-card.active{
    transform:translateY(-18px) scale(1.08) rotate(0deg) !important;
  }
}
@media (max-width:430px){
  #menu-cards .menu-stage{min-height:650px;}
  #menu-cards .deck-stack{width:215px !important;height:310px !important;}
}

/* Gallery heading must always sit above the book, never on the open pages */
#gallery{position:relative;overflow:visible;}
#gallery .gallery-heading{position:relative;z-index:30;margin-bottom:70px;}
#gallery .book-stage{position:relative;z-index:5;}
#gallery .book-open{z-index:6;}

/* Desktop order menu: keep the existing 3-category / 2-card layout clean */
@media (min-width:1001px){
  #online-order .hj-products{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:42px 28px !important;
    align-items:start;
  }
  #online-order .hj-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
  }
  #online-order .hj-product{border-radius:20px;}
  #online-order .hj-product-content{padding:16px 14px 16px;}
  #online-order .hj-product-content h3{font-size:20px;}
  #online-order .hj-product-content p{font-size:12px;line-height:1.55;}
  #online-order .hj-product-media .hj-price{font-size:13px;padding:8px 9px;border-radius:10px;}
  #online-order .hj-add{font-size:12px;padding:10px 8px;border-radius:11px;}
}

/* Never leave a broken-image icon on the page */
img.image-missing{display:none !important;}


/* ==========================================================
   HIGH JOINT — HANDOFF / PRODUCTION POLISH
   Final visual pass: hierarchy, policies, deck legibility,
   delivery cards, focus states and responsive stability.
========================================================== */

/* Stronger, cleaner desktop logo presence */
@media (min-width: 769px){
  .header .logo img{width:78px !important;height:78px !important;}
  .loader-content img{width:205px !important;height:205px !important;}
}

/* Playing-card menu: give the selected card enough breathing room to read the artwork */
@media (min-width: 901px){
  #menu-cards .deck-stack{width:min(590px,42vw) !important;height:auto !important;aspect-ratio:9/13 !important;}
  #menu-cards .menu-card.active{transform:translateY(-34px) scale(1.20) rotate(0deg) !important;}
  #menu-cards .menu-stage{min-height:1030px !important;}
}
@media (min-width: 1200px){
  #menu-cards .deck-stack{width:600px !important;}
  #menu-cards .menu-stage{min-height:1080px !important;}
  #menu-cards .menu-card.active{transform:translateY(-38px) scale(1.24) rotate(0deg) !important;}
}

/* Order menu: premium category columns without crushing product cards */
#online-order .hj-products{max-width:1240px !important;}
#online-order .hj-menu-category{min-width:0;}
#online-order .hj-category-heading{position:relative;}
#online-order .hj-category-heading:after{
  content:"";
  display:block;
  width:54px;
  height:1px;
  margin-top:12px;
  background:linear-gradient(90deg,#ffd54a,transparent);
}
#online-order .hj-product{overflow:hidden;}
#online-order .hj-product-media img{transition:transform .6s cubic-bezier(.2,.7,.2,1);}
#online-order .hj-product:hover .hj-product-media img{transform:scale(1.045);}
#online-order .hj-add{position:relative;overflow:hidden;}
#online-order .hj-add:after{
  content:"";position:absolute;inset:0;transform:translateX(-110%);
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.28),transparent);
  transition:transform .55s ease;
}
#online-order .hj-add:hover:after{transform:translateX(110%);}

/* Footer legal navigation: makes the handoff feel complete and gives policy pages a clear home */
.footer-legal{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:9px 20px;
  margin:24px auto 4px;
  max-width:760px;
}
.footer-legal a{
  color:rgba(255,255,255,.48);
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:color .25s ease;
}
.footer-legal a:hover,
.footer-legal a:focus-visible{color:#ffd54a;}

/* Keyboard focus is intentionally visible for a production-ready site */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid #ffd54a !important;
  outline-offset:3px;
}

@media (max-width:680px){
  #menu-cards .menu-stage{min-height:700px !important;}
  #menu-cards .deck-stack{width:230px !important;height:332px !important;}
  #menu-cards .menu-card.active{transform:translateY(-20px) scale(1.10) rotate(0deg) !important;}
  .footer-legal{gap:8px 13px;margin-top:20px;}
  .footer-legal a{font-size:8px;}
}

/* ==========================================================
   V25.1 — FINAL VISUAL CORRECTIONS
   1) Playing-card artwork must never be cropped.
   2) Desktop order cards get real breathing room.
   3) Gallery title stays physically above the open book.
   4) Intro logo balanced: desktop strong, mobile refined.
========================================================== */

/* PLAYING CARDS — show the complete card artwork */
#menu-cards .menu-card img{
  object-fit:contain !important;
  object-position:center center !important;
  background:#080808 !important;
}
#menu-cards .menu-stage{
  overflow:visible !important;
  padding-inline:24px;
}
@media (min-width:901px){
  #menu-cards .deck-stack{
    width:min(570px,40vw) !important;
    aspect-ratio:9/13 !important;
    height:auto !important;
  }
  #menu-cards .menu-card.active{
    transform:translateY(-24px) scale(1.15) rotate(0deg) !important;
  }
}
@media (min-width:1200px){
  #menu-cards .deck-stack{width:580px !important;}
  #menu-cards .menu-card.active{
    transform:translateY(-26px) scale(1.16) rotate(0deg) !important;
  }
}

/* ORDER MENU — wider, more luxurious desktop presentation */
@media (min-width:1001px){
  #online-order .hj-products{
    width:min(1500px,94vw) !important;
    max-width:1500px !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    column-gap:34px !important;
    row-gap:46px !important;
  }
  #online-order .hj-products-grid{
    width:100% !important;
    max-width:none !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:18px !important;
  }
  #online-order .hj-product-content{
    padding:17px 15px 17px !important;
  }
  #online-order .hj-product-content h3{
    font-size:18px !important;
  }
  #online-order .hj-product-content p{
    font-size:11.5px !important;
    line-height:1.55 !important;
  }
}

/* GALLERY — title has its own reserved zone; book begins below it */
#gallery .gallery-heading{
  position:absolute !important;
  top:34px !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  margin:0 !important;
  z-index:60 !important;
}
#gallery .book-stage{
  position:relative !important;
  z-index:5 !important;
  margin-top:155px !important;
}
@media (max-width:1000px){
  #gallery .book-stage{margin-top:135px !important;}
}
@media (max-width:680px){
  #gallery .book-stage{margin-top:112px !important;}
}

/* INTRO / LOADER LOGO — desktop presence, mobile restraint */
@media (min-width:769px){
  .loader-content img{width:205px !important;height:205px !important;}
}
@media (max-width:768px){
  .loader-content img{width:145px !important;height:145px !important;}
}
@media (max-width:430px){
  .loader-content img{width:138px !important;height:138px !important;}
}

/* ==========================================================
   V26 REAL VISUAL FIX — FINAL HANDOFF PASS
   Verified against the four reported visual defects.
========================================================== */

/* 1) PLAYING CARDS — preserve the complete artwork and give the deck
      enough vertical breathing room when the fan/active card opens. */
#menu-cards,
#menu-cards .menu-stage,
#menu-cards .deck-stack{overflow:visible !important;}
#menu-cards .menu-stage{padding:0 42px !important;}
#menu-cards .menu-card{overflow:hidden !important;}
#menu-cards .menu-card img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:contain !important;
  object-position:center !important;
  background:#080808 !important;
}
@media (min-width:1001px){
  #menu-cards .menu-stage{min-height:1120px !important;}
  #menu-cards .deck-stack{
    width:min(600px,41vw) !important;
    height:auto !important;
    aspect-ratio:9/13 !important;
    top:50% !important;
  }
  #menu-cards .menu-card.active{
    transform:translateY(-18px) scale(1.12) rotate(0deg) !important;
  }
}
@media (min-width:1400px){
  #menu-cards .deck-stack{width:620px !important;}
  #menu-cards .menu-card.active{
    transform:translateY(-18px) scale(1.14) rotate(0deg) !important;
  }
}

/* 2) BUILD YOUR ORDER — three premium category columns, with two
      comfortable product cards per category on desktop. */
@media (min-width:1001px){
  #online-order .hj-products{
    width:min(1720px,96vw) !important;
    max-width:1720px !important;
    margin-inline:auto !important;
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    column-gap:24px !important;
    row-gap:48px !important;
  }
  #online-order .hj-menu-category{
    min-width:0 !important;
    width:100% !important;
  }
  #online-order .hj-products-grid{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
  }
  #online-order .hj-product{
    min-width:0 !important;
    width:100% !important;
    border-radius:20px !important;
  }
  #online-order .hj-product-media{
    aspect-ratio:1.12 / 1 !important;
  }
  #online-order .hj-product-content{
    padding:15px 13px 15px !important;
  }
  #online-order .hj-product-content h3{
    font-size:17px !important;
    line-height:1.28 !important;
  }
  #online-order .hj-product-content p{
    font-size:11.5px !important;
    line-height:1.5 !important;
  }
  #online-order .hj-add{
    min-height:40px !important;
    font-size:11.5px !important;
  }
}

/* 3) GALLERY — create a real title zone. The open book is positioned
      independently below it, so it cannot physically cover the heading. */
#gallery.cinematic-book-gallery{
  min-height:1120px !important;
  padding-top:150px !important;
  overflow:visible !important;
}
#gallery .gallery-heading{
  top:48px !important;
  width:min(92%,980px) !important;
  z-index:100 !important;
}
#gallery .book-stage{
  margin-top:180px !important;
  z-index:5 !important;
}
#gallery .book-open{
  top:66% !important;
  left:50% !important;
  z-index:6 !important;
}
#gallery.is-open .book-open,
#gallery.cinematic-book-gallery.is-open .book-open{
  transform:translate(-50%,-50%) scale(1) rotateX(0deg) !important;
}
@media (max-width:1000px){
  #gallery.cinematic-book-gallery{
    min-height:900px !important;
    padding-top:130px !important;
  }
  #gallery .gallery-heading{top:34px !important;}
  #gallery .book-stage{margin-top:135px !important;}
  #gallery .book-open{top:64% !important;}
}
@media (max-width:680px){
  #gallery.cinematic-book-gallery{
    min-height:820px !important;
    padding-top:115px !important;
  }
  #gallery .gallery-heading{top:26px !important;}
  #gallery .book-stage{margin-top:105px !important;}
  #gallery .book-open{top:62% !important;}
}

/* 4) INTRO LOGO — desktop strong, mobile intentionally restrained. */
@media (min-width:769px){
  .loader-content img{width:205px !important;height:205px !important;}
}
@media (max-width:768px){
  .loader-content img{width:142px !important;height:142px !important;}
}
@media (max-width:430px){
  .loader-content img{width:136px !important;height:136px !important;}
}


/* ==========================================================
   V27 — DECK SCALE / GALLERY TITLE FINAL POLISH
========================================================== */
@media (min-width:769px){
  #menu-cards .menu-stage{min-height:1180px !important;}
  #menu-cards .deck-stack{width:min(680px,46vw) !important;}
  #menu-cards .menu-card.active{transform:translateY(-28px) scale(1.18) rotate(0deg) !important;}
}
@media (min-width:1200px){
  #menu-cards .deck-stack{width:680px !important;}
  #menu-cards .menu-card.active{transform:translateY(-30px) scale(1.20) rotate(0deg) !important;}
}
@media (max-width:768px){
  #menu-cards .menu-stage{min-height:760px !important;padding-inline:12px !important;}
  #menu-cards .deck-stack{width:260px !important;height:376px !important;}
  #menu-cards .menu-card.active{transform:translateY(-18px) scale(1.09) rotate(0deg) !important;}
}
@media (max-width:430px){
  #menu-cards .menu-stage{min-height:710px !important;}
  #menu-cards .deck-stack{width:245px !important;height:354px !important;}
  #menu-cards .menu-card.active{transform:translateY(-16px) scale(1.07) rotate(0deg) !important;}
}

#gallery .gallery-heading{pointer-events:none;}

/* ==========================================================
   V28 — GALLERY CLOSE CONTROL / HANDOFF POLISH
   ========================================================== */
.book-close{
  position:absolute !important;
  top:16px !important;
  right:16px !important;
  z-index:999 !important;
  width:46px !important;
  height:46px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(255,213,74,.65) !important;
  border-radius:50% !important;
  background:rgba(5,5,5,.78) !important;
  color:#FFD54A !important;
  font:500 30px/1 Arial,sans-serif !important;
  cursor:pointer !important;
  box-shadow:0 8px 28px rgba(0,0,0,.45),0 0 24px rgba(255,213,74,.12) !important;
  backdrop-filter:blur(10px) !important;
  -webkit-backdrop-filter:blur(10px) !important;
  transition:transform .25s ease, background .25s ease, box-shadow .25s ease !important;
}
.book-close:hover{
  transform:scale(1.08) !important;
  background:rgba(255,213,74,.10) !important;
  box-shadow:0 10px 32px rgba(0,0,0,.5),0 0 34px rgba(255,213,74,.24) !important;
}
.book-close:active{transform:scale(.94) !important;}
@media (max-width:680px){
  .book-close{
    top:9px !important;
    right:9px !important;
    width:40px !important;
    height:40px !important;
    font-size:26px !important;
  }
}


/* =========================================================
   V29 — PREMIUM STICKY HEADER COMPRESSION
   Full header at top -> elegant compact bar after scroll.
   Keeps navigation accessible without stealing screen space.
========================================================= */
.header{
    transition:
        height .42s cubic-bezier(.16,1,.3,1),
        padding .42s cubic-bezier(.16,1,.3,1),
        background .42s ease,
        box-shadow .42s ease,
        border-color .42s ease;
}
.header .logo img{
    transition:
        width .42s cubic-bezier(.16,1,.3,1),
        height .42s cubic-bezier(.16,1,.3,1),
        transform .42s cubic-bezier(.16,1,.3,1),
        filter .42s ease;
}
@media (min-width:769px){
    .header.scrolled{
        height:62px !important;
        padding-left:6% !important;
        padding-right:6% !important;
        background:
            linear-gradient(180deg,rgba(8,8,8,.97),rgba(8,8,8,.88)) !important;
        box-shadow:
            0 12px 34px rgba(0,0,0,.46),
            0 1px 18px rgba(255,213,74,.08) !important;
    }
    .header.scrolled .logo img{
        width:48px !important;
        height:48px !important;
        transform:none !important;
    }
    .header.scrolled .navbar{
        gap:24px;
    }
}
@media (max-width:768px){
    .header.scrolled{
        height:56px !important;
        padding-left:4% !important;
        padding-right:4% !important;
        background:
            linear-gradient(180deg,rgba(8,8,8,.97),rgba(8,8,8,.90)) !important;
        box-shadow:
            0 10px 28px rgba(0,0,0,.48),
            0 1px 14px rgba(255,213,74,.07) !important;
    }
    .header.scrolled .logo img{
        width:48px !important;
        height:48px !important;
        transform:none !important;
    }
    .header.scrolled .menu-btn{
        width:46px !important;
        height:46px !important;
        min-width:46px !important;
        min-height:46px !important;
        flex-basis:46px !important;
    }
    .navbar{
        top:92px !important;
    }
    .header.scrolled + .hero + *{}
}


/* =========================================================
   V30 — FINAL TICKER + EASY-TOUCH BOOK OPEN
   ========================================================= */
.top-bar{
    overflow:hidden !important;
    white-space:nowrap !important;
}
.top-bar-track{
    width:max-content !important;
    min-width:max-content !important;
    white-space:nowrap !important;
    flex:0 0 auto !important;
    display:block !important;
    padding-left:100vw !important;
    line-height:1 !important;
    animation:HJ_v30_marquee 22s linear infinite !important;
    will-change:transform;
}
@keyframes HJ_v30_marquee{
    from{transform:translate3d(0,0,0)}
    to{transform:translate3d(-100%,0,0)}
}

.book-closed,
.book-cover{
    cursor:pointer !important;
    touch-action:manipulation !important;
    -webkit-tap-highlight-color:transparent !important;
}
.book-lock{
    touch-action:manipulation !important;
    -webkit-tap-highlight-color:transparent !important;
}
.book-close{
    touch-action:manipulation !important;
    -webkit-tap-highlight-color:transparent !important;
}
@media (max-width:680px){
    .book-close{
        width:48px !important;
        height:48px !important;
        top:8px !important;
        right:8px !important;
        font-size:28px !important;
    }
}


/* =========================================================
   V31 — TICKER CONTAINMENT / NO OVERLAP
   Keeps the premium one-line marquee strictly inside its bar.
   ========================================================= */
.top-bar{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:28px !important;
    min-height:28px !important;
    max-height:28px !important;
    padding:0 !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    overflow:hidden !important;
    isolation:isolate !important;
    box-sizing:border-box !important;
    background:#17130a !important;
    border-bottom:1px solid rgba(212,175,55,.58) !important;
    z-index:2147483000 !important;
}
.top-bar::before{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    background:linear-gradient(90deg,rgba(212,175,55,.14),rgba(212,175,55,.06),rgba(212,175,55,.14)) !important;
    pointer-events:none !important;
}
.top-bar-track{
    position:relative !important;
    z-index:1 !important;
    display:flex !important;
    align-items:center !important;
    flex:0 0 auto !important;
    width:max-content !important;
    min-width:max-content !important;
    height:100% !important;
    padding:0 !important;
    margin:0 !important;
    white-space:nowrap !important;
    will-change:transform !important;
    animation:HJ_v31_marquee 24s linear infinite !important;
}
.top-bar-item{
    display:inline-flex !important;
    align-items:center !important;
    flex:0 0 auto !important;
    height:100% !important;
    padding:0 9vw 0 9vw !important;
    white-space:nowrap !important;
    color:#e2c45c !important;
    font-size:10px !important;
    line-height:28px !important;
    letter-spacing:1.15px !important;
    text-shadow:0 0 8px rgba(0,0,0,.55) !important;
    box-sizing:border-box !important;
}
@keyframes HJ_v31_marquee{
    from{transform:translate3d(0,0,0)}
    to{transform:translate3d(-50%,0,0)}
}
.header{
    top:28px !important;
    background:rgba(8,8,8,.96) !important;
}
@media (prefers-reduced-motion:reduce){
    .top-bar-track{animation:none !important; transform:none !important;}
}

/* =========================================================
   V32 — CLEAN INTRO / TICKER STARTS AFTER HERO
   The gold marquee stays off the opening hero for a calmer,
   more premium first impression, then appears once the intro
   has been left.
   ========================================================= */
body.intro-mode .top-bar{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translateY(-100%) !important;
}
body.intro-mode .header{
    top:0 !important;
}
body:not(.intro-mode) .top-bar{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
}
.top-bar,
.header{
    transition:
        top .28s ease,
        opacity .28s ease,
        transform .28s ease,
        visibility .28s ease !important;
}
@media (prefers-reduced-motion:reduce){
    .top-bar,
    .header{
        transition:none !important;
    }
}


/* ==========================================================
   V33 FINAL — LAST SCREENSHOT PASS
   These rules intentionally come last so older iterative CSS
   cannot override the final mobile/browser treatment.
========================================================== */

/* INTRO: legacy gold flash/sweep effects removed at source. */

/* Signature — full brand experience, no food cards/prices/cart buttons. */
.signature-experience{
  position:relative !important;
  overflow:hidden !important;
  padding:clamp(76px,8vw,124px) 5% clamp(62px,7vw,100px) !important;
  background:radial-gradient(circle at 50% 0%,rgba(255,213,74,.07),transparent 30%),linear-gradient(180deg,#090909 0%,#040404 100%) !important;
}
.signature-experience::before{
  content:"";position:absolute;inset:22px 3%;border:1px solid rgba(255,213,74,.075);border-radius:30px;pointer-events:none;
}
.signature-hero-copy{position:relative;z-index:2;max-width:820px;margin:0 auto 48px;text-align:center;}
.signature-kicker{display:inline-block;margin-bottom:15px;color:#ffd54a;font-size:9px;font-weight:800;letter-spacing:.32em;text-transform:uppercase;}
.signature-hero-copy h2{margin:0;font-family:'Cinzel',serif;font-size:clamp(34px,5.7vw,70px);line-height:1.04;color:#fff;}
.signature-hero-copy h2 em{color:#ffd54a;font-style:normal;}
.signature-hero-copy p{max-width:620px;margin:18px auto 0;color:rgba(255,255,255,.57);font-size:clamp(11px,1.35vw,14px);line-height:1.8;}
.signature-rule{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:23px;color:rgba(255,213,74,.62);font-size:7px;font-weight:800;letter-spacing:.25em;}
.signature-rule i{width:64px;height:1px;background:linear-gradient(90deg,transparent,rgba(255,213,74,.42));}.signature-rule i:last-child{transform:scaleX(-1);}
.signature-showcase{position:relative;z-index:2;width:min(1320px,100%);margin:auto;display:grid;grid-template-columns:1.12fr .94fr .94fr;gap:16px;align-items:stretch;}
.signature-scene-media{position:relative;height:480px;min-height:0;overflow:hidden;border:1px solid rgba(255,213,74,.15);border-radius:24px;background:#070707;box-shadow:0 22px 60px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.04);}
.signature-scene-main .signature-scene-media{height:540px;}
.signature-scene-media video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transform:scale(1.015);transition:transform 1s cubic-bezier(.2,.7,.2,1);}
.signature-scene:hover .signature-scene-media video{transform:scale(1.06);}
.signature-scene-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.04) 28%,rgba(0,0,0,.14) 50%,rgba(0,0,0,.9) 100%);}
.signature-scene-index{position:absolute;top:16px;left:16px;width:39px;height:39px;display:grid;place-items:center;border:1px solid rgba(255,213,74,.3);border-radius:50%;color:#ffd54a;background:rgba(0,0,0,.42);backdrop-filter:blur(9px);font:700 9px Poppins,sans-serif;}
.signature-scene-copy{position:absolute;left:22px;right:22px;bottom:22px;}.signature-scene-copy span{color:#ffd54a;font-size:8px;font-weight:800;letter-spacing:.25em;}.signature-scene-copy h3{margin:6px 0 0;color:#fff;font-family:'Cinzel',serif;font-size:clamp(18px,2.15vw,29px);line-height:1.16;}
.signature-endline{position:relative;z-index:2;display:flex;align-items:center;gap:12px;max-width:650px;margin:30px auto 0;color:rgba(255,255,255,.4);font-size:7px;letter-spacing:.22em;text-align:center;}.signature-endline span{flex:1;height:1px;background:linear-gradient(90deg,transparent,rgba(255,213,74,.24));}.signature-endline span:last-child{background:linear-gradient(90deg,rgba(255,213,74,.24),transparent);}

/* Browser: eliminate the excessive vertical air around the deck. */
#menu-cards .menu-stage{min-height:700px !important;height:auto !important;overflow:visible !important;}
@media (min-width:901px){#menu-cards .menu-stage{min-height:680px !important;}#menu-cards .deck-stack{margin-top:0;}}

/* Order grid: retain the premium 3-across desktop / 2-across phone rhythm. */
#online-order .hj-products-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:18px !important;}
@media(max-width:1000px){#online-order .hj-products-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}

/* Gallery title gets a clean reserved area rather than sitting on the book. */
#gallery .gallery-heading{z-index:40 !important;}

@media(max-width:680px){
  .signature-experience{padding:68px 5% 72px !important;}
  .signature-experience::before{inset:14px 2%;border-radius:22px;}
  .signature-hero-copy{margin-bottom:34px;}
  .signature-kicker{font-size:7.5px;letter-spacing:.23em;}
  .signature-hero-copy h2{font-size:clamp(30px,9.5vw,46px);}
  .signature-hero-copy p{font-size:11px;line-height:1.7;max-width:350px;}
  .signature-rule{font-size:6.5px;margin-top:20px;}.signature-rule i{width:38px;}
  .signature-showcase{grid-template-columns:1fr;gap:12px;}
  .signature-scene-media,.signature-scene-main .signature-scene-media{height:370px;min-height:370px;border-radius:19px;}
  .signature-scene-index{width:34px;height:34px;top:12px;left:12px;font-size:8px;}
  .signature-scene-copy{left:17px;right:17px;bottom:17px;}.signature-scene-copy span{font-size:7px;}.signature-scene-copy h3{font-size:20px;}
  .signature-endline{margin-top:25px;font-size:6.5px;gap:8px;}

  /* Phone: keep the header elegant, not oversized. */
  .header{height:60px !important;padding:0 4% !important;}
  .header .logo img{width:52px !important;height:52px !important;}
  .menu-btn{width:40px !important;height:40px !important;}

  /* Phone menu: the screenshots show two cards per row; never collapse to one. */
  #online-order .hj-products-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:11px !important;}
  #online-order .hj-product{border-radius:16px !important;}
  #online-order .hj-product-media{aspect-ratio:1.12/1 !important;}
  #online-order .hj-product-content{padding:10px 9px 11px !important;}
  #online-order .hj-product-content h3{font-size:13px !important;line-height:1.28 !important;}
  #online-order .hj-product-content p{font-size:9.5px !important;line-height:1.45 !important;}
  #online-order .hj-add{font-size:9px !important;padding:8px 6px !important;}

  #menu-cards .menu-stage{min-height:620px !important;}
}
@media(max-width:390px){
  #menu-cards .menu-stage{min-height:590px !important;}
  .signature-scene-media,.signature-scene-main .signature-scene-media{height:350px;min-height:350px;}
}

html,body{overflow-x:hidden !important;}

/* FINAL DELIVERY POLISH — measured against the supplied mobile/browser screenshots */
@media (min-width:769px){
  .about-luxury{padding-left:4%;padding-right:4%;}
  .about-luxury .about-title{font-size:clamp(42px,5vw,68px);}
  .about-luxury .about-intro{max-width:760px;margin-left:auto;margin-right:auto;}
  .about-luxury .about-grid{max-width:1240px;margin-left:auto;margin-right:auto;}
}
@media (max-width:680px){
  .about-luxury{padding-top:60px !important;padding-bottom:62px !important;}
  .about-badge{margin-bottom:20px !important;}
  .about-divider{margin-bottom:24px !important;}
  .about-heading{margin-top:24px !important;line-height:1.55 !important;}
  .about-intro{margin-top:18px !important;line-height:1.65 !important;}
  .about-grid{margin-top:38px !important;}
  .about-quote{margin-top:48px !important;}
  .about-quote p{font-size:.92rem !important;line-height:1.65 !important;}
  .discover-btn{margin-top:26px !important;height:56px !important;}
  .cinematic-book-gallery{min-height:710px !important;padding-top:22px !important;padding-bottom:48px !important;}
  .cinematic-book-gallery .gallery-heading{top:28px !important;}
  .cinematic-book-gallery .book-open{top:calc(50% + 30px) !important;}
}
@media (max-width:430px){
  .cinematic-book-gallery{min-height:680px !important;}
  .cinematic-book-gallery .gallery-heading{top:25px !important;}
  .cinematic-book-gallery .book-open{top:calc(50% + 26px) !important;}
}


/* ==========================================================
   FINAL SIGNATURE EXPERIENCE — EDITORIAL LUXURY PASS
   Replaces the flatter three-card treatment with a stronger
   visual hierarchy while keeping the section compact.
========================================================== */
.signature-experience{
  isolation:isolate !important;
  padding:clamp(84px,8vw,128px) 4.5% clamp(70px,7vw,104px) !important;
  background:
    radial-gradient(ellipse at 50% 8%,rgba(255,213,74,.085),transparent 34%),
    radial-gradient(ellipse at 8% 65%,rgba(255,213,74,.035),transparent 28%),
    #050505 !important;
}
.signature-experience::after{
  content:"" !important;
  position:absolute !important;
  top:0 !important; left:50% !important;
  width:min(760px,70vw) !important; height:1px !important;
  transform:translateX(-50%) !important;
  background:linear-gradient(90deg,transparent,rgba(255,213,74,.5),transparent) !important;
  opacity:.75 !important;
}
.signature-hero-copy{max-width:900px !important;margin:0 auto clamp(38px,4vw,56px) !important;}
.signature-kicker{font-size:8px !important;letter-spacing:.42em !important;color:rgba(255,213,74,.82) !important;}
.signature-hero-copy h2{font-size:clamp(39px,6vw,78px) !important;letter-spacing:-.025em !important;text-shadow:0 10px 35px rgba(0,0,0,.45);}
.signature-hero-copy h2 em{background:linear-gradient(180deg,#ffe58a,#ffd54a 58%,#b88718);-webkit-background-clip:text;background-clip:text;color:transparent !important;}
.signature-hero-copy p{max-width:590px !important;color:rgba(255,255,255,.54) !important;letter-spacing:.02em !important;}
.signature-rule{margin-top:26px !important;color:rgba(255,213,74,.58) !important;letter-spacing:.34em !important;}
.signature-rule i{width:82px !important;background:linear-gradient(90deg,transparent,rgba(255,213,74,.5)) !important;}
.signature-showcase{width:min(1260px,100%) !important;grid-template-columns:1.18fr .91fr .91fr !important;gap:14px !important;align-items:end !important;}
.signature-scene{position:relative !important;min-width:0 !important;}
.signature-scene-media{height:430px !important;border-radius:28px !important;border:1px solid rgba(255,213,74,.13) !important;background:#080808 !important;box-shadow:0 28px 70px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.055) !important;}
.signature-scene-main .signature-scene-media{height:520px !important;border-color:rgba(255,213,74,.28) !important;box-shadow:0 34px 90px rgba(0,0,0,.58),0 0 0 1px rgba(255,213,74,.035),inset 0 1px 0 rgba(255,255,255,.06) !important;}
.signature-scene-media::after{content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.035);border-radius:inherit;pointer-events:none;z-index:4;}
.signature-scene-media video{filter:saturate(.94) contrast(1.07);transition:transform 1.15s cubic-bezier(.2,.7,.2,1),filter 1.15s ease !important;}
.signature-scene:hover .signature-scene-media video{transform:scale(1.055) !important;filter:saturate(1.08) contrast(1.08) !important;}
.signature-scene-shade{background:linear-gradient(180deg,rgba(0,0,0,.03) 18%,rgba(0,0,0,.08) 42%,rgba(0,0,0,.86) 100%) !important;z-index:2;}
.signature-scene-index{top:18px !important;left:18px !important;width:42px !important;height:42px !important;border-radius:50% !important;border-color:rgba(255,213,74,.4) !important;color:#ffd54a !important;background:rgba(4,4,4,.52) !important;z-index:5 !important;box-shadow:0 8px 24px rgba(0,0,0,.28),inset 0 0 0 1px rgba(255,255,255,.03);}
.signature-scene-copy{left:25px !important;right:25px !important;bottom:24px !important;z-index:5 !important;}
.signature-scene-copy span{font-size:7px !important;letter-spacing:.34em !important;color:#ffd54a !important;}
.signature-scene-copy h3{font-size:clamp(19px,2.25vw,31px) !important;letter-spacing:.005em !important;margin:7px 0 0 !important;}
.signature-scene-copy p{margin:7px 0 0 !important;color:rgba(255,255,255,.5) !important;font-size:9px !important;letter-spacing:.08em !important;}
.signature-endline{margin-top:34px !important;max-width:700px !important;color:rgba(255,255,255,.35) !important;letter-spacing:.3em !important;}
.signature-endline b{font-weight:700 !important;color:rgba(255,213,74,.55) !important;white-space:nowrap;}
@media(max-width:900px){
  .signature-showcase{grid-template-columns:1fr 1fr !important;align-items:stretch !important;}
  .signature-scene-main{grid-column:1/-1 !important;}
  .signature-scene-media,.signature-scene-main .signature-scene-media{height:390px !important;}
  .signature-scene-main .signature-scene-media{height:455px !important;}
}
@media(max-width:680px){
  .signature-experience{padding:68px 5% 68px !important;}
  .signature-experience::before{inset:12px 2.5% !important;border-radius:22px !important;}
  .signature-hero-copy{margin-bottom:28px !important;}
  .signature-kicker{font-size:7px !important;letter-spacing:.3em !important;}
  .signature-hero-copy h2{font-size:clamp(32px,10vw,45px) !important;line-height:1.02 !important;}
  .signature-hero-copy p{font-size:10.5px !important;line-height:1.7 !important;max-width:340px !important;margin-top:15px !important;}
  .signature-rule{font-size:6px !important;margin-top:18px !important;letter-spacing:.23em !important;}
  .signature-rule i{width:30px !important;}
  .signature-showcase{grid-template-columns:1fr !important;gap:10px !important;}
  .signature-scene-main{grid-column:auto !important;}
  .signature-scene-media,.signature-scene-main .signature-scene-media{height:315px !important;min-height:315px !important;border-radius:19px !important;}
  .signature-scene-main .signature-scene-media{height:350px !important;min-height:350px !important;}
  .signature-scene-index{width:32px !important;height:32px !important;top:11px !important;left:11px !important;font-size:7px !important;}
  .signature-scene-copy{left:16px !important;right:16px !important;bottom:16px !important;}
  .signature-scene-copy span{font-size:6.5px !important;letter-spacing:.25em !important;}
  .signature-scene-copy h3{font-size:19px !important;margin-top:5px !important;}
  .signature-scene-copy p{font-size:8px !important;margin-top:5px !important;}
  .signature-endline{margin-top:22px !important;font-size:6px !important;gap:7px !important;letter-spacing:.2em !important;}
}
@media(max-width:390px){
  .signature-scene-media,.signature-scene-main .signature-scene-media{height:300px !important;min-height:300px !important;}
  .signature-scene-main .signature-scene-media{height:325px !important;min-height:325px !important;}
}

/* Intro: gold ticker remains part of the site, but is physically hidden during intro. */
body.intro-mode .top-bar,
body.intro-mode .top-bar-track,
body.intro-mode .top-bar-item{opacity:0 !important;visibility:hidden !important;animation:none !important;}


/* =========================================================
   HIGH JOINT — FINAL MASTER POLISH
   Signature: editorial luxury / cinematic gallery
========================================================= */
.signature-master{
  position:relative!important;
  isolation:isolate;
  overflow:hidden!important;
  min-height:900px;
  padding:clamp(92px,9vw,138px) clamp(20px,5vw,72px) 82px!important;
  background:
    radial-gradient(ellipse at 50% 12%,rgba(255,213,74,.095),transparent 34%),
    radial-gradient(ellipse at 8% 75%,rgba(255,213,74,.035),transparent 28%),
    #050505!important;
}
.signature-master-bg{
  position:absolute;inset:0;pointer-events:none;z-index:-1;
  background:
    linear-gradient(90deg,transparent 0,rgba(255,213,74,.035) 50%,transparent 100%);
}
.signature-master::after{
  content:"";position:absolute;left:4%;right:4%;top:28px;bottom:28px;
  border:1px solid rgba(255,213,74,.10);border-radius:34px;pointer-events:none;
}
.signature-master-head{
  position:relative;z-index:2;text-align:center;max-width:920px;margin:0 auto 56px;
}
.signature-master-kicker{
  display:flex;justify-content:center;align-items:center;gap:14px;
  color:#ffd54a;font-size:8px;font-weight:800;letter-spacing:.38em;text-transform:uppercase;
}
.signature-master-kicker i{display:block;width:44px;height:1px;background:linear-gradient(90deg,transparent,#ffd54a);}
.signature-master-kicker i{transform:rotate(180deg)}
.signature-master-head h2{
  margin:18px 0 0!important;font-family:Cinzel,serif!important;
  font-size:clamp(44px,7.2vw,92px)!important;line-height:.94!important;
  letter-spacing:.015em!important;color:#f8f5ec!important;font-weight:500!important;
}
.signature-master-head h2 em{font-style:normal;color:#ffd54a;text-shadow:0 0 36px rgba(255,213,74,.12)}
.signature-master-head p{
  max-width:610px;margin:23px auto 0!important;color:rgba(255,255,255,.55)!important;
  font-size:clamp(11px,1.25vw,14px)!important;line-height:1.8!important;
}
.signature-master-number{
  margin-top:20px;color:rgba(255,213,74,.46);font:700 8px Poppins,sans-serif;letter-spacing:.3em;
}
.signature-master-stage{
  position:relative;z-index:2;width:min(1280px,100%);margin:auto;
  display:grid;grid-template-columns:minmax(0,1.34fr) minmax(260px,.66fr);gap:18px;
}
.signature-master-media{
  position:relative;overflow:hidden;background:#080808;border:1px solid rgba(255,213,74,.18);
  box-shadow:0 28px 70px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.045);
}
.signature-master-feature .signature-master-media{height:640px;border-radius:30px}
.signature-master-card .signature-master-media{height:311px;border-radius:24px}
.signature-master-media video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transform:scale(1.015);transition:transform 1.2s cubic-bezier(.2,.7,.2,1),filter 1s ease;
}
.signature-master-feature:hover video,.signature-master-card:hover video{transform:scale(1.065);filter:saturate(1.08) contrast(1.04)}
.signature-master-vignette{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.04) 25%,rgba(0,0,0,.08) 48%,rgba(0,0,0,.91) 100%);
}
.signature-master-frame{
  position:absolute;inset:13px;border:1px solid rgba(255,213,74,.12);border-radius:20px;pointer-events:none;
}
.signature-master-feature .signature-master-frame{inset:17px;border-radius:24px}
.signature-master-index{
  position:absolute;top:19px;left:19px;width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;color:#ffd54a;background:rgba(0,0,0,.48);
  border:1px solid rgba(255,213,74,.32);backdrop-filter:blur(10px);
  font:700 9px Poppins,sans-serif;letter-spacing:.08em;
}
.signature-master-copy{position:absolute;left:27px;right:27px;bottom:25px}
.signature-master-copy span{color:#ffd54a;font:800 8px Poppins,sans-serif;letter-spacing:.3em}
.signature-master-copy h3{margin:7px 0 4px!important;color:#fff;font:500 clamp(22px,2.4vw,36px) Cinzel,serif!important;line-height:1.05!important}
.signature-master-copy p{margin:0!important;color:rgba(255,255,255,.56)!important;font-size:10px!important;letter-spacing:.08em}
.signature-master-side{display:grid;grid-template-rows:1fr 1fr;gap:18px}
.signature-master-footer{position:relative;z-index:2;max-width:900px;margin:36px auto 0;text-align:center}
.signature-master-footer>div{display:flex;align-items:center;gap:13px;color:rgba(255,255,255,.42);font-size:7px;letter-spacing:.3em}
.signature-master-footer>div span{height:1px;flex:1;background:linear-gradient(90deg,transparent,rgba(255,213,74,.28))}
.signature-master-footer>div span:last-child{background:linear-gradient(90deg,rgba(255,213,74,.28),transparent)}
.signature-master-footer p{margin:13px 0 0;color:rgba(255,213,74,.42);font-size:7px;letter-spacing:.35em}

/* Global final visual polish */
body{background:#050505!important}
.header{backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}
.hero{min-height:clamp(610px,82vh,900px)!important}
.about-luxury,.menu-card-deck,.cinematic-book-gallery,.reviews,.contact{
  scroll-margin-top:70px;
}
.section-title h2{letter-spacing:.01em}
.menu-card-deck{background:radial-gradient(circle at 50% 15%,rgba(255,213,74,.055),transparent 30%),#060606!important}
.hj-order-section{background:linear-gradient(180deg,#060606,#090909)!important}
.cinematic-book-gallery{background:radial-gradient(circle at 50% 15%,rgba(255,213,74,.045),transparent 28%),#050505!important}
.external-ordering{background:linear-gradient(180deg,#080808,#050505)!important}
.contact{background:#050505!important}
.reviews.premium-love{background:radial-gradient(circle at 50% 12%,rgba(255,213,74,.06),transparent 32%),#050505!important}

/* Intro: absolutely no gold line/bar before loader finishes.
   Gold line remains available everywhere after intro-mode is removed. */
html body.intro-mode .top-bar,
html body.intro-mode .top-bar-track,
html body.intro-mode .top-bar-item,
html body.intro-mode .header::after,
html body.intro-mode .header,
html body.intro-mode .cover-line{
  opacity:0!important;
  visibility:hidden!important;
  animation:none!important;
  transition:none!important;
}
html body.intro-mode .top-bar{transform:translateY(-110%)!important}

/* desktop */
@media(max-width:900px){
  .signature-master{padding:76px 16px 64px!important;min-height:auto}
  .signature-master::after{inset:16px 7px;border-radius:24px}
  .signature-master-head{margin-bottom:38px}
  .signature-master-stage{grid-template-columns:1fr;gap:13px}
  .signature-master-feature .signature-master-media{height:500px;border-radius:24px}
  .signature-master-card .signature-master-media{height:260px;border-radius:20px}
  .signature-master-side{grid-template-columns:1fr 1fr;grid-template-rows:none;gap:13px}
  .signature-master-frame{inset:10px;border-radius:15px}
  .signature-master-feature .signature-master-frame{inset:13px;border-radius:19px}
  .signature-master-copy{left:18px;right:18px;bottom:18px}
  .signature-master-copy h3{font-size:21px!important}
  .signature-master-copy p{font-size:9px!important}
  .signature-master-index{top:13px;left:13px;width:36px;height:36px;font-size:8px}
}
@media(max-width:560px){
  .signature-master{padding:68px 12px 54px!important}
  .signature-master-head h2{font-size:clamp(39px,12vw,58px)!important}
  .signature-master-head p{font-size:10.5px!important;line-height:1.7!important}
  .signature-master-kicker{font-size:6.5px;letter-spacing:.27em;gap:8px}
  .signature-master-kicker i{width:27px}
  .signature-master-stage{gap:11px}
  .signature-master-feature .signature-master-media{height:430px;border-radius:21px}
  .signature-master-side{grid-template-columns:1fr;grid-template-rows:auto;gap:11px}
  .signature-master-card .signature-master-media{height:255px;border-radius:19px}
  .signature-master-footer{margin-top:25px}
  .signature-master-footer>div{font-size:5.8px;letter-spacing:.2em;gap:8px}
  .signature-master-footer p{font-size:5.5px}
  .hero{min-height:590px!important}
}

/* =========================================================
   HIGH JOINT — FINAL MASTER VISUAL LOCK
   Last-pass rules: keep gold accents on the site, never during intro.
========================================================= */

/* INTRO: suppress every known decorative/ticker line until the loader is gone.
   These selectors are scoped ONLY to intro-mode, so the gold treatment returns
   normally for the rest of the site. */
html body.intro-mode .top-bar,
html body.intro-mode .top-bar::before,
html body.intro-mode .top-bar-track,
html body.intro-mode .top-bar-item,
html body.intro-mode .header,
html body.intro-mode .header::before,
html body.intro-mode .header::after,
html body.intro-mode .cover-line,
html body.intro-mode .cover-title,
html body.intro-mode .cover-hint{
  opacity:0 !important;
  visibility:hidden !important;
  animation:none !important;
  transition:none !important;
}
html body.intro-mode .top-bar,
html body.intro-mode .header{
  pointer-events:none !important;
}

/* Keep the Signature unmistakably editorial, not a food-menu grid. */
.signature-master{
  min-height:auto !important;
  padding-top:clamp(92px,9vw,136px) !important;
  padding-bottom:clamp(70px,7vw,94px) !important;
}
.signature-master-head h2{
  font-family:'Cinzel',serif !important;
  font-weight:500 !important;
  letter-spacing:.018em !important;
}
.signature-master-stage{
  grid-template-columns:minmax(0,1.52fr) minmax(280px,.68fr) !important;
  gap:20px !important;
}
.signature-master-feature .signature-master-media{
  height:clamp(560px,48vw,680px) !important;
}
.signature-master-side{
  gap:20px !important;
}
.signature-master-card .signature-master-media{
  height:calc((clamp(560px,48vw,680px) - 20px)/2) !important;
}
.signature-master-media::before{
  content:"";
  position:absolute;
  z-index:4;
  left:18px;top:18px;bottom:18px;
  width:1px;
  background:linear-gradient(180deg,transparent,rgba(255,213,74,.55),transparent);
  opacity:.65;
  pointer-events:none;
}
.signature-master-feature .signature-master-media::before{
  left:20px;top:20px;bottom:20px;
}
.signature-master-copy h3{
  font-family:'Cinzel',serif !important;
  font-weight:500 !important;
}
.signature-master-footer b{
  font-weight:600 !important;
  color:rgba(255,213,74,.72) !important;
}

/* Global consistency: tighter luxury rhythm on small screens. */
@media (max-width:900px){
  .signature-master-stage{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
  .signature-master-feature .signature-master-media{
    height:500px !important;
  }
  .signature-master-side{
    grid-template-columns:1fr 1fr !important;
    gap:14px !important;
  }
  .signature-master-card .signature-master-media{
    height:285px !important;
  }
}
@media (max-width:560px){
  .signature-master{
    padding:70px 12px 58px !important;
  }
  .signature-master::after{
    inset:14px 7px !important;
    border-radius:23px !important;
  }
  .signature-master-head{
    margin-bottom:30px !important;
  }
  .signature-master-head h2{
    font-size:clamp(38px,11.8vw,56px) !important;
  }
  .signature-master-stage{
    gap:11px !important;
  }
  .signature-master-feature .signature-master-media{
    height:420px !important;
    border-radius:20px !important;
  }
  .signature-master-side{
    grid-template-columns:1fr !important;
    gap:11px !important;
  }
  .signature-master-card .signature-master-media{
    height:245px !important;
    border-radius:18px !important;
  }
  .signature-master-media::before{
    left:12px;top:12px;bottom:12px;
  }
}

/* Accessibility/performance: avoid oversized motion on reduced-motion devices. */
@media (prefers-reduced-motion:reduce){
  .signature-master-media video{
    transition:none !important;
    transform:none !important;
  }
}
