/* ================================= */
/* RESET */
/* ================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}
body{

    background-color: #080003;
    overflow-x: hidden;
    color: white;
    font-family: 'Montserrat', sans-serif;
    position: relative;

}

/* ── BULLETPROOF VELVET BACKGROUND ───────────────────────────────────────
   Applied via a fixed pseudo-element. This is the ONLY reliable way to get
   a perfect 'background-size: cover' + 'background-attachment: fixed' effect
   on Android Chrome and iOS Safari without stretching or repaint storms.
   Using relative paths to ensure Cloudflare Pages compatibility anywhere.
   ──────────────────────────────────────────────────────────────────────── */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #080003;
    background-image:
        linear-gradient(
            rgba(4, 0, 2, 0.52),
            rgba(6, 0, 3, 0.60)
        ),
        url("../images/background/velvet-bg-fallback.jpg");
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    /* Hardware acceleration for smooth scrolling */
    transform: translateZ(0);
    will-change: transform;
}

/* WebP override for modern browsers */
@supports (background-image: -webkit-image-set(url("../images/background/velvet-bg.webp") 1x)) or
          (background-image: image-set(url("../images/background/velvet-bg.webp") 1x)) {

    body::before {
        background-image:
            linear-gradient(
                rgba(4, 0, 2, 0.52),
                rgba(6, 0, 3, 0.60)
            ),
            url("../images/background/velvet-bg.webp");
    }

}


/* ================================= */
/* BUTTON */
/* ================================= */
/* ================================= */
/* PREMIUM NAVBAR */
/* ================================= */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:rgba(10,0,5,0.45);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(241,210,154,0.08);

    transition:0.4s ease;

}

/* NAV CONTAINER */

.nav-container{

    width:92%;

    max-width:1450px;

    margin:auto;

    /* Taller bar gives logo breathing room */
    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    /* Prevent any child from shrinking the layout */
    gap:20px;

}

/* LOGO WRAPPER */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    /* Never let flexbox collapse the logo */
    flex-shrink:0;

    /* Reserve enough space for the logo at all viewports */
    min-width:110px;

}

/* LOGO IMAGE */

.logo img{

    /* clamp(min, preferred, max) — fluid but bounded */
    width: clamp(100px, 8vw, 130px);

    height:auto;

    /* Prevent flexbox from squashing the image */
    flex-shrink:0;

    object-fit:contain;

    /* Keep it sharp at all sizes */
    image-rendering:auto;

    /* Prevent blurring on GPU composited layers */
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;

    /* Smooth any GPU repaints */
    transform:translateZ(0);

    display:block;

}

/* LOGO TEXT */

.logo-text h1{

    color:#f1d29a;

    font-size:28px;

    line-height:1;

    font-family:'Cormorant Garamond',serif;

}

.logo-text p{

    color:#f1d29a;

    font-size:9px;

    letter-spacing:3px;

    margin-top:4px;

}

/* MENU */

.menu{

    display:flex;

    align-items:center;

    gap:42px;

}

/* MENU LINKS */

.menu a{

    color:white;

    text-decoration:none;

    font-size:11px;

    letter-spacing:4px;

    text-transform:uppercase;

    position:relative;

    transition:0.3s;

}

/* HOVER LINE */

.menu a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;

    height:1px;

    background:#f1d29a;

    transition:0.4s;

}

.menu a:hover{

    color:#f1d29a;

}

.menu a:hover::after{

    width:100%;

}

/* SCROLL EFFECT */

.navbar.scrolled{

    background:rgba(10,0,5,0.88);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.35);

}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — RESPONSIVE BREAKPOINTS + HAMBURGER MOBILE MENU
   ═══════════════════════════════════════════════════════════ */

/* ── TABLET ≤ 1024px ────────────────────────────────────── */

@media(max-width:1024px){

    .nav-container{
        height:80px;
    }

    .logo img{
        width: clamp(88px, 9vw, 108px);
    }

    .menu{
        gap:28px;
    }

}

/* ── MOBILE ≤ 768px — full hamburger menu ───────────────── */

@media(max-width:768px){

    /* Hamburger button — visible on mobile */
    .hamburger{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:6px;
        width:44px;
        height:44px;
        cursor:pointer;
        z-index:10001;
        flex-shrink:0;
        /* touch target */
        -webkit-tap-highlight-color:transparent;
    }

    .hamburger span{
        display:block;
        width:26px;
        height:2px;
        background:#f1d29a;
        border-radius:2px;
        transition:transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
        transform-origin:center;
    }

    /* X animation when active */
    .hamburger.active span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2){
        opacity:0;
        width:0;
    }
    .hamburger.active span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

    /* Nav container — keep logo + hamburger on one row */
    .nav-container{
        height:68px;
        position:relative;
    }

    /* Off-canvas mobile menu — slides down from navbar */
    .menu{
        position:fixed;
        top:68px;
        left:0;
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:0;
        background:rgba(6,0,3,0.97);
        backdrop-filter:blur(20px);
        -webkit-backdrop-filter:blur(20px);
        border-bottom:1px solid rgba(241,210,154,0.15);
        padding:0;
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease, padding 0.4s ease;
        z-index:9998;
    }

    /* Open state — toggled by JS adding .active */
    .menu.active{
        max-height:340px;
        padding:16px 0 24px;
    }

    .menu a{
        width:100%;
        text-align:center;
        padding:16px 24px;
        font-size:11px;
        letter-spacing:4px;
        border-bottom:1px solid rgba(255,255,255,0.04);
        /* comfortable touch target */
        min-height:52px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .menu a:last-child{
        border-bottom:none;
    }

    .menu a::after{
        /* Disable underline hover effect on mobile */
        display:none;
    }

    /* Logo */
    .logo img{
        width:80px;
    }

    .logo{
        min-width:80px;
    }

}

/* ── SMALL PHONE ≤ 480px ────────────────────────────────── */

@media(max-width:480px){

    .nav-container{
        height:62px;
    }

    .menu{
        top:62px;
    }

    .logo img{
        width:72px;
    }

    .logo{
        min-width:72px;
    }

    .hamburger span{
        width:24px;
    }

}


.hero-buttons{

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}

.btn{

    padding:18px 42px;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:12px;

    transition:0.4s;

}

.btn-gold{

    background:#f1d29a;
    color:black;

}

.btn-outline{

    border:1px solid #f1d29a;
    color:#f1d29a;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(241,210,154,0.25);

}

/* ================================= */
/* GENERAL SECTION */
/* ================================= */

section{

    padding:130px 0;

}

.container{

    width:90%;
    max-width:1400px;

    margin:auto;

}

.section-title{

    text-align:center;

    margin-bottom:90px;

}

.section-title p{

    color:#f1d29a;

    letter-spacing:8px;

    font-size:12px;

    margin-bottom:25px;

}

.section-title h2{

    font-size:75px;

    line-height:1.1;

    font-family:'Cormorant Garamond',serif;

}

/* ================================= */
/* ABOUT */
/* ================================= */

.about{
    background:transparent;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border:1px solid rgba(241,210,154,0.18);

}

.about-content h2{

    font-size:72px;

    line-height:1.15;

    margin-bottom:35px;

    font-family:'Cormorant Garamond',serif;

}

.about-content p{

    color:#d4d4d4;

    line-height:2;

    font-size:18px;

    margin-bottom:28px;

}

/* ================================= */
/* COLLECTION */
/* ================================= */
.collections{
    background:transparent;
}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card{

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(241,210,154,0.15);

    overflow:hidden;

    transition:0.5s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(241,210,154,0.12);

}

.card-image{

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:560px;

    object-fit:cover;

    transition:0.8s;

}

.card:hover img{

    transform:scale(1.08);

}

.card-content{

    padding:40px;

}

.card-content p{

    color:#f1d29a;

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:11px;

    margin-bottom:18px;

}

.card-content h3{

    font-size:45px;

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.card-content span{

    color:#d0d0d0;

    line-height:1.9;

    font-size:16px;

}

/* ================================= */
/* GALLERY */
/* ================================= */

.gallery{

    background:transparent;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.gallery-grid img{

    width:100%;

    height:520px;

    object-fit:cover;

    border:1px solid rgba(241,210,154,0.15);

    transition:0.7s;

}

.gallery-grid img:hover{

    transform:scale(1.04);

}

/* ================================= */
/* LUXURY BANNER */
/* ================================= */

.luxury-banner{

    min-height:90vh;

    

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:120px 20px;

}

.luxury-content{

    max-width:950px;

}

.luxury-content p{

    color:#f1d29a;

    letter-spacing:8px;

    font-size:12px;

    margin-bottom:30px;

}

.luxury-content h2{

    font-size:85px;

    line-height:1.1;

    margin-bottom:35px;

    font-family:'Cormorant Garamond',serif;

}

.luxury-content span{

    display:block;

    color:#d4d4d4;

    line-height:2;

    font-size:20px;

    margin-bottom:50px;

}

.luxury-banner-btn{

    display:inline-block;

    padding:20px 45px;

    background:#f1d29a;

    color:black;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:12px;

    transition:0.4s;

}

.luxury-banner-btn:hover{

    transform:translateY(-5px);

}

/* ================================= */
/* STATS */
/* ================================= */

.stats-section{

    background:transparent;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat-item{

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(241,210,154,0.12);

    text-align:center;

    padding:60px 20px;

    transition:0.4s;

}

.stat-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(241,210,154,0.08);

}

.stat-item h2{

    color:#f1d29a;

    font-size:75px;

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.stat-item p{

    color:#d4d4d4;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:12px;

}

/* ================================= */
/* CONTACT */
/* ================================= */

.contact{
    background:transparent;
}

.contact-form{

    max-width:900px;

    margin:auto;

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    margin-bottom:30px;

}

input,
textarea{

    width:100%;

    background:transparent;

    border:none;

    border-bottom:1px solid rgba(255,255,255,0.2);

    padding:20px 0;

    color:white;

    font-size:16px;

    outline:none;

}

textarea{

    height:160px;

    resize:none;

}

.submit-btn{

    margin-top:35px;

    background:#f1d29a;

    color:black;

    border:none;

    padding:18px 45px;

    text-transform:uppercase;

    letter-spacing:3px;

    cursor:pointer;

    transition:0.4s;

}

.submit-btn:hover{

    transform:translateY(-5px);

}

/* ============================================================ */
/* FORM NOTIFICATIONS — success & error cards                   */
/* ============================================================ */

/* FADE-SLIDE-UP KEYFRAME */

@keyframes notifyFadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* BASE CARD */

.form-notify {

    display: none; /* shown via JS: style.display = 'flex' */

    align-items: flex-start;

    gap: 14px;

    margin-top: 28px;

    padding: 18px 22px;

    border-radius: 4px;

    border: 1px solid transparent;

    background: rgba(255,255,255,0.03);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    font-size: 13px;

    letter-spacing: 0.8px;

    line-height: 1.85;

    opacity: 0;

    transition: opacity 0.4s ease, transform 0.4s ease;

}

/* VISIBLE STATE — triggered by JS .classList.add('form-notify--visible') */

.form-notify--visible {

    opacity: 1;

    animation: notifyFadeIn 0.4s ease forwards;

}

/* ICON */

.form-notify__icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    margin-top: 1px;

}

/* TEXT */

.form-notify__text {

    flex: 1;

    padding-top: 2px;

}

/* SUCCESS VARIANT — gold */

.form-notify--success {

    border-color: rgba(241,210,154,0.25);

    color: #f1d29a;

    background: rgba(241,210,154,0.06);

}

.form-notify--success .form-notify__icon {

    background: rgba(241,210,154,0.1);

    border: 1px solid rgba(241,210,154,0.3);

    color: #f1d29a;

}

/* ERROR VARIANT — muted rose */

.form-notify--error {

    border-color: rgba(220,130,130,0.25);

    color: #dda0a0;

    background: rgba(220,100,100,0.06);

}

.form-notify--error .form-notify__icon {

    background: rgba(220,100,100,0.1);

    border: 1px solid rgba(220,100,100,0.3);

    color: #e07070;

}

/* MOBILE */

@media(max-width:600px){

    .form-notify {

        font-size: 12px;

        padding: 14px 16px;

        gap: 12px;

    }

    .form-notify__icon {

        width: 30px;

        height: 30px;

    }

}

/* REDUCED MOTION */

@media(prefers-reduced-motion: reduce){

    .form-notify,
    .form-notify--visible {

        animation: none;

        transition: opacity 0.15s;

    }

}

/* ============================================================ */

/* ================================= */
/* PREMIUM LUXURY FOOTER */
/* ================================= */


.footer{

    background:
    linear-gradient(
        180deg,
        #080003,
        #120006
    );

    padding:120px 0 35px;

    border-top:
    1px solid rgba(241,210,154,0.08);

    position:relative;

    overflow:hidden;

}

/* GOLD GLOW */

.footer::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:
    radial-gradient(
        rgba(241,210,154,0.08),
        transparent 70%
    );

    top:-250px;

    right:-150px;

}

/* GRID */

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr;

    gap:80px;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

/* BRAND */

.footer-brand img{

    width:90px;

    margin-bottom:30px;

}

.footer-brand h2{

    color:#f1d29a;

    font-size:56px;

    margin-bottom:25px;

    font-family:
    'Cormorant Garamond',
    serif;

}

.footer-brand p{

    color:#d4d4d4;

    line-height:2;

    max-width:420px;

    font-size:15px;

}

/* TITLES */

.footer-links h3,
.footer-contact h3{

    color:#f1d29a;

    font-size:30px;

    margin-bottom:35px;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* LINKS */

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#d0d0d0;

    text-decoration:none;

    margin-bottom:18px;

    transition:0.4s;

    letter-spacing:1px;

}

.footer-links a:hover{

    color:#f1d29a;

    transform:translateX(6px);

}

/* CONTACT LINKS — icon + text rows */

.footer-contact-link{

    display:flex;

    align-items:center;

    gap:14px;

    color:#d0d0d0;

    text-decoration:none;

    margin-bottom:22px;

    transition:color 0.35s ease, transform 0.35s ease;

    letter-spacing:0.5px;

    font-size:14px;

}

.footer-contact-link:hover{

    color:#f1d29a;

    transform:translateX(6px);

}

/* ICON WRAPPER */

.fc-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:36px;

    height:36px;

    flex-shrink:0;

    border:1px solid rgba(241,210,154,0.18);

    border-radius:50%;

    color:rgba(241,210,154,0.7);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;

}

.footer-contact-link:hover .fc-icon{

    background:rgba(241,210,154,0.1);

    border-color:rgba(241,210,154,0.55);

    color:#f1d29a;

    box-shadow:0 0 18px rgba(241,210,154,0.18);

}

/* TEXT LABEL */

.fc-text{

    line-height:1.4;

}

/* MUTED VARIANT — used for location */

.fc-icon--muted{

    width:28px;

    height:28px;

    border-color:rgba(255,255,255,0.1);

    color:rgba(200,200,200,0.5);

}


/* LOCATION — icon + text inline */

.footer-location{

    display:flex;

    align-items:center;

    gap:10px;

    color:#888;

    margin-top:28px;

    letter-spacing:1.5px;

    font-size:13px;

}

/* BOTTOM — two column: copyright | social pills */

.footer-bottom{

    border-top:1px solid rgba(241,210,154,0.08);

    padding-top:32px;

    color:#777;

    font-size:12px;

    letter-spacing:2px;

    position:relative;

    z-index:2;

}

.footer-bottom-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;

}

/* SOCIAL ICON PILL GROUP */

.footer-socials{

    display:flex;

    align-items:center;

    gap:12px;

}

/* INDIVIDUAL PILL */

.footer-social-pill{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:36px;

    height:36px;

    border:1px solid rgba(241,210,154,0.2);

    border-radius:50%;

    color:rgba(241,210,154,0.55);

    text-decoration:none;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;

}

.footer-social-pill:hover{

    background:rgba(241,210,154,0.12);

    border-color:#f1d29a;

    color:#f1d29a;

    box-shadow:0 0 20px rgba(241,210,154,0.2);

    transform:translateY(-3px);

}

/* MOBILE — stack bottom bar vertically */

@media(max-width:900px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .footer-bottom-inner{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:20px;

    }

}

/* TABLET refinement */

@media(max-width:600px){

    .footer-social-pill{

        width:40px;

        height:40px;

    }

    .footer-contact-link{

        font-size:13px;

    }

}


/* ================================= */
/* LUXURY IMAGE SLIDER */
/* ================================= */

.luxury-slider{

    width:100%;

    overflow:hidden;

    padding:40px 0;

    background:#1a0008;

    position:relative;

    z-index:2;

}

.slider-track{

    display:flex;

    width:calc(380px * 12);

    animation:sliderMove 35s linear infinite;

}

.slider-track img{

    width:340px;
    height:420px;

    object-fit:cover;

    margin:0 20px;

    border:1px solid rgba(241,210,154,0.2);

    transition:0.5s;

}

.slider-track img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 40px rgba(241,210,154,0.2);

}

/* SLIDER ANIMATION */

@keyframes sliderMove{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(calc(-380px * 6));

    }

}
/* LEFT & RIGHT FADE */

.luxury-slider::before,
.luxury-slider::after{

    content:'';

    position:absolute;

    top:0;

    width:180px;
    height:100%;

    z-index:5;

}

.luxury-slider::before{

    left:0;

    background:linear-gradient(
        to right,
        #1a0008,
        transparent
    );

}

.luxury-slider::after{

    right:0;

    background:linear-gradient(
        to left,
        #1a0008,
        transparent
    );

}





/* CONTENT ABOVE VIDEO */

.hero-content{

    position:relative;

    z-index:2;

}

/* GOLD NAVBAR GLOW */

.navbar.scrolled{

    border-bottom:
    1px solid rgba(241,210,154,0.15);

}

/* ================================= */
/* FINAL HERO FIX */
/* ================================= */

.hero{

    position:relative !important;

    min-height:100vh !important;

    width:100% !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    overflow:hidden !important;

    padding:140px 20px 120px !important;

    background:black !important;

}

/* VIDEO */

.hero-video{

    position:absolute !important;

    top:0 !important;
    left:0 !important;

    width:100% !important;
    height:100% !important;

    object-fit:cover !important;

    z-index:1 !important;

}

/* OVERLAY */

.hero-overlay{

    position:absolute !important;

    top:0 !important;
    left:0 !important;

    width:100% !important;
    height:100% !important;

    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.82)
    ) !important;

    z-index:2 !important;

}

/* CONTENT */

.hero-content{

    position:relative !important;

    z-index:3 !important;

    max-width:1100px !important;

    width:100% !important;

    margin:auto !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

}

/* LOGO */

.hero-logo{

    /* Fluid sizing: min 160px → scales with viewport → max 320px
       clamp() ensures it never shrinks on small screens
       and never becomes too large on ultra-wide displays        */
    width: clamp(160px, 22vw, 320px) !important;

    /* Always preserve aspect ratio — never squash or stretch    */
    height: auto !important;

    /* Block-level so it doesn't inherit inline baseline gap     */
    display: block !important;

    /* Prevent flexbox from ever compressing the logo            */
    flex-shrink: 0 !important;

    /* Safety guard — never overflow parent on tiny viewports    */
    max-width: 90% !important;

    margin-bottom: 35px !important;

    /* GPU layer for crisp compositing — NO will-change:transform
       (that caused subpixel compression in some GPU paths)      */
    transform: translateZ(0);

}

/* TITLE */

.hero h1{

    font-size:90px !important;

    line-height:1.1 !important;

    margin-bottom:30px !important;

    font-family:'Cormorant Garamond',serif !important;

}

/* TEXT */

.hero p{

    max-width:850px !important;

    margin:auto auto 45px !important;

    color:#dddddd !important;

    line-height:2 !important;

    font-size:20px !important;

}

/* BUTTONS */

.hero-buttons{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    gap:25px !important;

    flex-wrap:wrap !important;

}
/* ================================= */
/* PREMIUM FOOTER */
/* ================================= */

.footer{

    background:#080003;

    padding:110px 0 40px;

    border-top:
    1px solid rgba(241,210,154,0.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr;

    gap:70px;

    margin-bottom:70px;

}

/* BRAND */

.footer-brand img{

    width:90px;

    margin-bottom:25px;

}

.footer-brand h2{

    color:#f1d29a;

    font-size:54px;

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.footer-brand p{

    color:#bbbbbb;

    line-height:2;

    max-width:400px;

}

/* LINKS */

.footer-links h3,
.footer-contact h3{

    color:#f1d29a;

    font-size:28px;

    margin-bottom:30px;

    font-family:'Cormorant Garamond',serif;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#cccccc;

    text-decoration:none;

    margin-bottom:18px;

    transition:0.4s;

}

.footer-links a:hover{

    color:#f1d29a;

    transform:translateX(6px);

}

/* CONTACT */

.footer-contact p{

    color:#cccccc;

    margin-bottom:18px;

}

/* BOTTOM */

.footer-bottom{

    border-top:
    1px solid rgba(241,210,154,0.08);

    padding-top:30px;

    text-align:center;

    color:#999999;

    font-size:14px;

}

/* MOBILE */

@media(max-width:900px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

}
/* ================================= */
/* TESTIMONIALS */
/* ================================= */

.testimonials{

    background:#25000d;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/* CARD */

.testimonial-card{

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(241,210,154,0.12);

    padding:50px 40px;

    position:relative;

    transition:0.5s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:
    rgba(241,210,154,0.35);

}

/* QUOTE */

.quote{

    color:#f1d29a;

    font-size:90px;

    line-height:1;

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

/* TEXT */

.testimonial-card p{

    color:#d6d6d6;

    line-height:2;

    margin-bottom:35px;

    font-size:15px;

}

/* NAME */

.testimonial-card h3{

    font-size:30px;

    margin-bottom:8px;

    font-family:'Cormorant Garamond',serif;

}

/* ROLE */

.testimonial-card span{

    color:#f1d29a;

    letter-spacing:2px;

    font-size:11px;

    text-transform:uppercase;

}

/* MOBILE */

@media(max-width:900px){

    .testimonial-grid{

        grid-template-columns:1fr;

    }

}
/* ================================= */
/* APPOINTMENT BANNER */
/* ================================= */

.appointment-banner{

    position:relative;

    min-height:75vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    padding:120px 20px;

   background:
linear-gradient(
    135deg,
    #120006,
    #2a0010,
    #120006
);

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

/* OVERLAY */

.appointment-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.82)
    );

}

/* CONTENT */

.appointment-content{

    position:relative;

    z-index:2;

    max-width:950px;

}

.appointment-content p{

    color:#f1d29a;

    letter-spacing:8px;

    font-size:12px;

    margin-bottom:28px;

}

.appointment-content h2{

    font-size:85px;

    line-height:1.1;

    margin-bottom:35px;

    font-family:'Cormorant Garamond',serif;

}

.appointment-content span{

    display:block;

    color:#d8d8d8;

    line-height:2;

    font-size:18px;

    margin-bottom:45px;

}

/* BUTTON */

.appointment-btn{

    display:inline-block;

    padding:20px 42px;

    background:#f1d29a;

    color:black;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:12px;

    transition:0.4s;

}

.appointment-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(241,210,154,0.25);

}

/* MOBILE */

@media(max-width:900px){

    .appointment-content h2{

        font-size:52px;

    }

}
/* ================================= */
/* ERROR MESSAGE */
/* ================================= */

.error-message{

    display:block;

    color:#ff6b6b;

    font-size:13px;

    margin-top:8px;

    margin-bottom:15px;

    text-align:left;

}
/* SCROLLBAR */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#120006;

}

::-webkit-scrollbar-thumb{

    background:#f1d29a;

    border-radius:20px;

}
/* ================================ */
/* EDITORIAL WHY US */
/* ================================ */

.why-us{

    overflow:hidden;

}
/* GRID */

.editorial-grid{

    display:grid;

    grid-template-columns:
    34%
    33%
    33%;

}

/* TEXT SIDE */

.editorial-text{

    min-height:1000px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:70px;

    background:
rgba(10,10,10,0.45);

backdrop-filter:blur(10px);

-webkit-backdrop-filter:blur(10px);

}

/* INNER */

.editorial-inner{

    max-width:420px;

}

/* SMALL TEXT */

.editorial-small{

    color:#f1d29a;

    letter-spacing:8px;

    font-size:11px;

    margin-bottom:25px;

}

/* TITLE */

.editorial-text h2{

    font-size:82px;

    line-height:1;

    margin-bottom:30px;

    font-family:'Cormorant Garamond',serif;

}

/* LINE */

.editorial-line{

    width:90px;

    height:1px;

    background:#f1d29a;

    margin-bottom:35px;

}

/* TEXT */

.editorial-text span{

    display:block;

    color:#d8d8d8;

    line-height:2;

    margin-bottom:40px;

}

/* POINTS */

.editorial-points{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:45px;

}

.editorial-points div{

    color:#f1d29a;

    letter-spacing:1px;

}

/* BUTTON */

.editorial-text a{

    display:inline-block;

    padding:18px 36px;

    border:1px solid #f1d29a;

    color:#f1d29a;

    text-decoration:none;

    letter-spacing:3px;

    font-size:12px;

    text-transform:uppercase;

    transition:0.4s;

}

.editorial-text a:hover{

    background:#f1d29a;

    color:black;

}

/* IMAGES */

.editorial-image{

    height:1000px;

    overflow:hidden;

}

.editorial-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:0.7s;

}

.editorial-image:hover img{

    transform:scale(1.05);

}

/* MOBILE */

@media(max-width:1000px){

    .editorial-grid{

        grid-template-columns:1fr;

    }

    .editorial-text{

        min-height:auto;

        padding:80px 40px;

    }

    .editorial-text h2{

        font-size:56px;

    }

    .editorial-image{

        height:700px;

    }

}
.about,
.collections,
.gallery,
.contact,
.stats-section,
.why-us{

    backdrop-filter:blur(2px);

    -webkit-backdrop-filter:blur(2px);

}
/* ================================= */
/* LUXURY SHOWCASE */
/* ================================= */

.luxury-showcase{

    position:relative !important;

    overflow:hidden !important;

    padding:120px 0;

}

/* CONTAINER */

.showcase-container{

    width:92%;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    overflow:hidden;

    border-radius:30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(241,210,154,0.12);

    position:relative !important;

}

/* LEFT */

.showcase-image{

    height:850px;

    overflow:hidden;

}

.showcase-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* RIGHT */

.showcase-content{

    padding:100px 70px 140px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    text-align:center;

    background:
    rgba(10,10,10,0.4);

    backdrop-filter:blur(10px);

}

/* SMALL */

.showcase-small{

    color:#f1d29a;

    letter-spacing:7px;

    font-size:11px;

    margin-bottom:30px;

}

/* TITLE */

.showcase-content h2{

    font-size:72px;

    line-height:1;

    margin-bottom:25px;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* LINE */

.showcase-line{

    width:120px;

    height:1px;

    background:#f1d29a;

    margin:0 auto 40px;

}

/* DIAMOND */

.diamond-shape{

    width:180px;

    margin:0 auto 40px;

}

/* SUBTITLE */

.showcase-content h3{

    font-size:42px;

    color:#f1d29a;

    margin-bottom:30px;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* TEXT */

.showcase-content p{

    color:#d8d8d8;

    line-height:2;

    max-width:600px;

    margin:auto;

}

/* BUTTON */

.showcase-btn{

    margin:50px auto 0;

    width:fit-content;

    padding:18px 36px;

    border:
    1px solid #f1d29a;

    background:transparent;

    color:#f1d29a;

    letter-spacing:3px;

    text-transform:uppercase;

    cursor:pointer;

    transition:0.4s;

}

.showcase-btn:hover{

    background:#f1d29a;

    color:black;

}

/* ARROWS */

/* DEDICATED NAVIGATION SYSTEM */
.showcase-navigation {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important; /* Let clicks pass through to content */
    z-index: 20 !important;
}

.showcase-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: auto !important; /* Re-enable clicks for buttons */
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(241,210,154,0.3) !important;
    background: rgba(28,5,12,0.85) !important;
    color: #f1d29a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.showcase-arrow.left {
    left: 24px !important;
    right: auto !important;
}

.showcase-arrow.right {
    right: 24px !important;
    left: auto !important;
}

.showcase-arrow svg {
    width: 20px !important;
    height: 20px !important;
}

.showcase-arrow:hover {
    transform: translateY(-50%) scale(0.92) !important;
    background: rgba(241,210,154,0.15) !important;
    border-color: rgba(241,210,154,0.6) !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.5) !important;
}

/* MOBILE */

@media(max-width:1000px){

    .showcase-container{

        grid-template-columns:1fr;

    }

    .showcase-image{

        height:600px;

    }

    .showcase-content{

        padding:80px 35px;

    }

    .showcase-content h2{

        font-size:52px;

    }

}
/* ================================= */
/* CINEMATIC SHOWCASE ANIMATION */
/* ================================= */

.showcase-image img{

    transition:
    transform 1s cubic-bezier(
        0.22,
        1,
        0.36,
        1
    ),
    opacity 1s ease;

}

/* CONTENT */

.showcase-content{

    transition:
    transform 0.9s cubic-bezier(
        0.22,
        1,
        0.36,
        1
    ),
    opacity 0.9s ease;

}

/* EXIT */

.slide-out-left{

    opacity:0;

    transform:
    translateX(-120px)
    scale(1.05);

}

.slide-out-right{

    opacity:0;

    transform:
    translateX(120px);

}

/* ENTER */

.slide-in{

    opacity:1;

    transform:
    translateX(0px)
    scale(1);

}
/* ================================= */
/* CUSTOM ENQUIRY SECTION */
/* ================================= */

.custom-section{

    padding:120px 0;

}

/* GRID */

.custom-grid{

    width:92%;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    gap:50px;

    align-items:center;

}

/* LEFT */

.custom-left{

    position:relative;

}

.custom-line{

    width:100%;

    height:1px;

    background:
    rgba(255,255,255,0.4);

    margin-bottom:60px;

}

/* GALLERY */

.custom-gallery{

    display:flex;

    gap:25px;

    align-items:flex-start;

}

/* CARD */

.custom-card{

    flex:1;

}

.custom-card img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:30px;

}

.custom-card h3{

    margin-top:25px;

    font-size:42px;

    line-height:1.1;

    color:#f1d29a;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* CENTER */

.custom-center{

    flex:1;

    padding-top:40px;

}

.custom-center h2{

    font-size:56px;

    line-height:1;

    margin-bottom:35px;

    color:white;

    font-family:
    'Cormorant Garamond',
    serif;

}

.custom-center img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:30px;

}

/* WHATSAPP */

.whatsapp-box{

    margin-top:70px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    border-radius:30px;

    padding:35px 40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.whatsapp-box span{

    color:#f1d29a;

    letter-spacing:3px;

    font-size:12px;

}

.whatsapp-box h4{

    margin-top:10px;

    font-size:42px;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* BUTTON */

.whatsapp-btn{

    padding:18px 34px;

    border:
    1px solid #f1d29a;

    color:#f1d29a;

    text-decoration:none;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:0.4s;

}

.whatsapp-btn:hover{

    background:#f1d29a;

    color:black;

}

/* FORM */

.custom-form-box{

    background:
    rgba(255,255,255,0.92);

    border-radius:35px;

    padding:70px;

    color:black;

}

/* TITLE */

.custom-form-box h2{

    text-align:center;

    font-size:72px;

    line-height:1;

    margin-bottom:30px;

    color:#0f5f52;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* LINE */

.form-line{

    width:160px;

    height:1px;

    background:#0f5f52;

    margin:0 auto 50px;

}

/* LABEL */

.contact-form label{

    display:block;

    margin-bottom:10px;

    margin-top:20px;

    font-weight:600;

}

/* INPUT */

.contact-form input,
.contact-form textarea{
color:#111;
    width:100%;

    padding:20px 22px;

    border:
    1px solid rgba(0,0,0,0.08);

    border-radius:18px;

    outline:none;

    font-size:16px;

    background:
    rgba(255,255,255,0.95);

    transition:0.4s;

    font-family:'Montserrat',sans-serif;

}
.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#0f5f52;

    box-shadow:
    0 0 0 4px rgba(15,95,82,0.08);

}
.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#777;

}
/* BUTTON */

.contact-form button{

    margin-top:40px;

    padding:18px 46px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #0f5f52,
        #157562
    );

    color:white;

    font-weight:600;

    letter-spacing:3px;

    cursor:pointer;

    transition:0.4s;

    text-transform:uppercase;

}

.contact-form button:hover{

    transform:translateY(-3px);

}

/* MOBILE */

@media(max-width:1000px){

    .custom-grid{

        grid-template-columns:1fr;

    }

    .custom-gallery{

        flex-direction:column;

    }

.custom-form-box{

    position:relative;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.96),
        rgba(245,245,245,0.92)
    );

    border-radius:40px;

    padding:80px 70px;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.25);

    border:
    1px solid rgba(255,255,255,0.6);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

}

   .custom-form-box h2{

    text-align:center;

    font-size:78px;

    line-height:1;

    margin-bottom:35px;

    color:#0f5f52;

    font-family:
    'Cormorant Garamond',
    serif;

    letter-spacing:2px;

}

}
/* GOLD DIAMOND GLOW */

.custom-form-box::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:
    radial-gradient(
        rgba(241,210,154,0.22),
        transparent 70%
    );

    right:-120px;

    bottom:-120px;

    z-index:0;

}

/* CONTENT ABOVE GLOW */

.custom-form-box *{

    position:relative;

    z-index:2;

}
/* ================================= */
/* LUXURY CONTACT BUTTON */
/* ================================= */

.luxury-contact-btn{

    padding:18px 38px;

    border:
    1px solid #f1d29a;

    border-radius:14px;

    color:#f1d29a;

    text-decoration:none;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:13px;

    transition:0.4s;

    background:
    rgba(255,255,255,0.03);

    backdrop-filter:blur(8px);

}

/* HOVER */

.luxury-contact-btn:hover{

    background:#f1d29a;

    color:black;

    transform:translateY(-3px);

}
.footer-contact-link{

    display:block;

    color:#cccccc;

    text-decoration:none;

    margin-bottom:18px;

    transition:0.4s;

}

.footer-contact-link:hover{

    color:#f1d29a;

    transform:translateX(6px);

}
/* ================================= */
/* FINAL MOBILE RESPONSIVE FIXES */
/* ================================= */

@media(max-width:768px){

    /* HERO TITLE */

    .hero h1{

        font-size:48px !important;

        line-height:1.15;

    }

    /* HERO LOGO — fluid clamp on mobile; never shrinks below 140px */

    .hero-logo {

        /* On mobile: 38vw scales nicely from 360px phones to 768px tablets
           Floor 140px → never tiny; ceiling 200px → never overlarge        */
        width: clamp(140px, 38vw, 200px) !important;

        margin-bottom: 28px !important;

    }

    /* HERO TEXT */

    .hero p{

        font-size:16px !important;

        line-height:1.8;

    }

    /* WHY US IMAGES */

    .editorial-image{

        height:420px;

    }

    /* CUSTOM FORM TITLE */

    .custom-form-box h2{

        font-size:46px;

    }

    /* SHOWCASE TITLE */

    .showcase-content h2{

        font-size:46px;

    }

    /* SHOWCASE ARROWS */

    .showcase-arrow{

        width:50px;

        height:50px;

        font-size:22px;

    }

    /* ABOUT TITLE */

    .about-content h2{

        font-size:46px;

    }

    /* APPOINTMENT TITLE */

    .appointment-content h2{

        font-size:48px;

    }

    /* FOOTER TITLE */

    .footer-brand h2{

        font-size:42px;

    }

    /* FOOTER PADDING */

    .footer{

        padding:90px 0 30px;

    }

}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   Karigari Luxury Jewellery — Android / iPhone / Tablet
   Breakpoints: 768px | 480px | 375px | 320px
   ═══════════════════════════════════════════════════════════════ */

/* ── GLOBAL MOBILE BASELINE ─────────────────────────────────── */

@media(max-width:768px){

    /* Prevent ANY horizontal overflow site-wide */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }

    /* ── STRICT BOUNDARIES ── */
    section, .container, .editorial-grid, .custom-grid, .footer-grid, .stats-grid {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ── COMPACT SECTION PADDING ── */
    section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    /* ── HERO ── */
    .hero {
        padding: 80px 16px 50px !important;
        min-height: 85svh !important; /* Slightly more compact hero */
    }

    .hero-content {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 36px) !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        font-weight: 400 !important;
    }

    .hero p {
        font-size: clamp(13px, 4vw, 15px) !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    .small-heading {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-logo {
        width: clamp(100px, 28vw, 140px) !important;
        margin-bottom: 20px !important;
    }

    /* ── HERO BUTTONS ── */
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .btn {
        width: 100% !important;
        max-width: 240px !important;
        padding: 14px 24px !important;
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
        text-align: center !important;
    }

    /* ── LUXURY SLIDER ── */
    .slider-track img {
        width: 200px;
        height: 250px;
        margin: 0 8px;
    }

    .slider-track {
        width: calc(216px * 12);
    }

    /* ── ABOUT SECTION (COMPACT EDITORIAL) ── */
    .about {
        padding: 50px 16px !important;
    }

    .about-grid {
        display: grid !important;
        grid-template-columns: 1fr 1.2fr !important; /* Asymmetric side-by-side! */
        align-items: center !important;
        gap: 16px !important;
    }

    .about-image {
        order: -1 !important; /* Image on left */
    }

    .about-image img {
        width: 100%;
        height: auto !important;
        aspect-ratio: 4/5 !important;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: clamp(18px, 5vw, 24px) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .about-content p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* ── SHOWCASE / COLLECTIONS (50/50 SPLIT) ── */
    .luxury-showcase {
        padding: 40px 0 !important;
    }

    .showcase-container {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Stacked Mobile Layout */
        gap: 0 !important;
        background: rgba(8, 0, 3, 0.8) !important;
        border-top: 1px solid rgba(241, 210, 154, 0.15) !important;
        border-bottom: 1px solid rgba(241, 210, 154, 0.15) !important;
        position: relative !important;
        padding-bottom: 0 !important; 
    }

    .showcase-image {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }

    .showcase-image img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4/5 !important; /* Premium vertical portrait framing */
        object-fit: cover !important;
        object-position: center 30% !important; /* Focus on jewellery details */
    }

    .showcase-content {
        width: 100% !important;
        margin: 0 !important; 
        padding: 40px 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        align-items: center !important;
        position: static !important;
        z-index: 2 !important;
    }

    .showcase-content h2 {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
    }
    
    .showcase-content p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        max-width: 90% !important;
    }

    .showcase-line {
        margin: 12px auto !important;
    }

    .diamond-shape {
        width: 30px !important;
        height: 30px !important;
        margin: 6px 0 !important;
    }

    /* ── ELEGANT LUXURY SLIDER CONTROLS ── */
    .showcase-arrow {
        width: 44px !important;
        height: 44px !important;
        background: rgba(28, 5, 12, 0.8) !important; 
        border: 1px solid rgba(241, 210, 154, 0.25) !important; 
        color: #f1d29a !important; 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .showcase-arrow.left {
        left: 12px !important;
    }

    .showcase-arrow.right {
        right: 12px !important;
    }

    .showcase-arrow svg {
        width: 16px !important;
        height: 16px !important;
    }

    .showcase-arrow:active,
    .showcase-arrow:hover {
        transform: translateY(-50%) scale(0.92) !important;
        background: rgba(241, 210, 154, 0.15) !important;
        border-color: rgba(241, 210, 154, 0.5) !important;
        color: #fff !important;
    }

    /* ── WHY US / EDITORIAL (COMPACT MASONRY) ── */
    .why-us {
        padding: 0 !important;
    }
    .editorial-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .editorial-text {
        grid-column: 1 / -1 !important;
        padding: 40px 16px 20px !important;
        min-height: auto !important;
        background: rgba(241, 210, 154, 0.02) !important; /* Subtle block */
    }

    .editorial-text h2 {
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.2 !important;
    }

    .editorial-text span {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    .editorial-image:nth-child(2) {
        margin-top: 0 !important;
    }
    
    .editorial-image:nth-child(3) {
        margin-top: 24px !important; /* Tighter stagger */
    }

    .editorial-image, .editorial-image img {
        height: auto !important;
        aspect-ratio: 4/5 !important;
        width: 100% !important;
    }

    .editorial-points {
        gap: 12px !important;
        font-size: 12px !important;
    }

    /* ── STATS ── */
    .stats-section {
        padding: 50px 16px !important;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 16px !important;
    }

    .stat-item h2 {
        font-size: clamp(24px, 6vw, 32px) !important;
        margin-bottom: 6px !important;
    }
    
    .stat-item p {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    /* ── APPOINTMENT BANNER ── */
    .appointment-banner {
        padding: 60px 16px !important;
    }

    .appointment-content h2 {
        font-size: clamp(22px, 6vw, 30px) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .appointment-content span {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    .appointment-btn {
        padding: 14px 28px !important;
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
    }

    /* ── CUSTOM ENQUIRY SECTION ── */
    .custom-section {
        padding: 50px 0 !important;
    }

    .custom-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .custom-left {
        padding: 40px 16px 30px !important;
    }

    .custom-gallery {
        display: grid !important;
        grid-template-columns: 1fr 1.3fr 1fr !important;
        align-items: start !important;
        gap: 8px !important; /* Tighter */
    }

    .custom-center {
        order: unset !important;
        margin-top: 16px !important; /* Tighter stagger */
    }

    .custom-center h2 {
        font-size: clamp(12px, 3.5vw, 15px) !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .custom-center img {
        height: auto !important;
        aspect-ratio: 4/5 !important;
        width: 100% !important;
        border-radius: 6px !important;
    }

    .custom-card {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .custom-card img {
        height: auto !important;
        aspect-ratio: 4/5 !important;
        width: 100% !important;
        border-radius: 6px !important;
    }

    .custom-card h3 {
        font-size: clamp(10px, 3vw, 12px) !important;
        margin-top: 6px !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }

    .custom-form-box {
        padding: 50px 16px !important;
        background: #080003 !important; /* Solid block like reference */
    }

    .custom-form-box h2 {
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    /* ── FORM GRID ── */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    input, textarea {
        font-size: 13px !important;
        padding: 14px 16px !important;
    }

    .send-btn {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
    }

    /* ── WHATSAPP BOX ── */
    .whatsapp-box {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 20px !important;
    }

    .luxury-contact-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 11px !important;
    }

    /* ── FOOTER ── */
    .footer {
        padding: 60px 16px 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-brand img {
        width: 70px !important;
    }

    .footer-brand h2 {
        font-size: clamp(20px, 6vw, 26px) !important;
    }

    .footer-brand p {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    .footer-contact-link {
        font-size: 12px !important;
    }

    .footer-bottom-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
        font-size: 10px !important;
    }

    /* ── FORM NOTIFICATION ── */
    .form-notify {
        font-size: 12px !important;
        padding: 12px 14px !important;
    }

}

/* ── SMALL PHONES ≤ 480px ───────────────────────────────────── */

@media(max-width:480px){
    .hero { padding: 70px 16px 40px !important; }
    .hero h1 { font-size: 26px !important; }
    .hero-logo { width: 100px !important; }
    .stats-grid { gap: 20px 12px !important; }
    .editorial-text { padding: 40px 16px 20px !important; }
    .appointment-content h2 { font-size: 20px !important; }
    .btn { max-width: 220px !important; padding: 12px 20px !important; font-size: 10px !important; }
}

/* ── VERY SMALL ≤ 375px ─────────────────────────────────────── */

@media(max-width:375px){
    .hero { padding: 60px 12px 30px !important; }
    .hero h1 { font-size: 24px !important; }
    .hero p { font-size: 12px !important; }
    .hero-logo { width: 90px !important; }
    .btn { max-width: 200px !important; }
    .about-content h2, .editorial-text h2, .custom-form-box h2, .appointment-content h2 { font-size: 18px !important; }
    .stat-item h2 { font-size: 22px !important; }
}

/* ── MINIMUM ≤ 320px ────────────────────────────────────────── */

@media(max-width:320px){
    .hero h1 { font-size: 22px !important; }
    .hero-logo { width: 80px !important; }
    .footer-contact-link { flex-direction: column !important; align-items: flex-start !important; gap: 4px !important; }
}

/* ============================================================ */
/* PRODUCTION PERFORMANCE ADDITIONS                             */
/* ============================================================ */


/* GPU COMPOSITING — promotes animated elements to their own
   compositor layer, preventing layout/paint during animation  */

.hero-video,
.hero-overlay,
.slider-track,
.showcase-image img,
.showcase-content,
.editorial-image img,
.card,
.stat-item,
.about-grid {
    will-change: transform;
}

/* .hero-content intentionally excluded — will-change:transform
   creates a GPU compositing context that can cause subpixel
   compression of child elements (hero logo shrink bug)         */

/* Limit will-change after element has been composited         */
/* (browsers handle this automatically but explicit helps)     */

.navbar {
    will-change: background, box-shadow;
}

/* ── Smooth image rendering ─────────────────────────────── */

img {
    -webkit-backface-visibility: hidden;
    backface-visibility:         hidden;
    image-rendering:             auto;
}

/* ── Video fill fix on older Safari ────────────────────── */

video {
    object-fit: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility:         hidden;
}

/* ── content-visibility: auto — skip paint for off-screen sections
   NOTE: .luxury-slider and .luxury-showcase intentionally excluded
   because CSS keyframe animations and JS-driven slides break under
   layout containment.                                               */

.about,
.why-us,
.stats-section,
.appointment-banner,
.custom-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* ── REDUCED MOTION — respect user OS accessibility setting  */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:   0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration:  0.01ms !important;
        scroll-behavior:      auto   !important;
    }

    .slider-track {
        animation: none;
    }

    .hero-video {
        display: none; /* video auto-plays = motion; hide it */
    }

}

/* ── FOCUS VISIBLE — keyboard accessibility ring            */

:focus-visible {
    outline: 2px solid #f1d29a;
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ── PRINT — hide decorative elements                       */

@media print {
    .hero-video,
    .particles,
    .navbar,
    .luxury-slider,
    .appointment-banner {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}