/* ========================================
   HOANG PHUC FURNITURE - LUXURY EDITION
   Premium Design System v2.0 - Liquid Glass
   ======================================== */

:root {
    /* NEW Design System Colors */
    --color-primary: #1C1917;
    --color-secondary: #44403C;
    --color-cta: #CA8A04;
    --color-background: #FAFAF9;
    --color-text: #0C0A09;

    /* Color Palette - Refined Luxury (Updated) */
    --lux-gold: #CA8A04;
    --lux-gold-light: #D4A830;
    --lux-gold-dark: #A67C03;
    --lux-black: #1C1917;
    --lux-charcoal: #292524;
    --lux-gray-dark: #44403C;
    --lux-gray: #78716C;
    --lux-gray-light: #A8A29E;
    --lux-cream: #FAFAF9;
    --lux-white: #ffffff;

    /* Typography - Cormorant Garamond + Josefin Sans (Vietnamese support) */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Josefin Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1400px;

    /* Liquid Glass Variables */
    --glass-bg: rgba(28, 25, 23, 0.7);
    --glass-border: rgba(202, 138, 4, 0.2);
    --glass-blur: 20px;

    /* Transitions - Liquid Glass Style */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-fluid: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;
    --duration-fluid: 0.5s;

    /* Shadow Depths */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(202, 138, 4, 0.25);
}


/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lux-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 60px;
}

/* Render below-the-fold sections lazily to improve scroll smoothness */
.lux-philosophy,
.lux-showcase,
.lux-portfolio,
.lux-services,
.lux-testimonials,
.lux-contact-cta {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

/* ========== PROFESSIONAL SLIDER ========== */
.lux-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--lux-black);
}

/* Ambient glow - static, no animation for performance */
.lux-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 98, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 35%);
    z-index: 3;
    pointer-events: none;
    opacity: 0.8;
}

.lux-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Individual Slides - GPU optimized */
.lux-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out;
    z-index: 1;
    will-change: opacity;
    transform: translateZ(0);
}

.lux-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.lux-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transform: translateZ(0);
}

.lux-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Ken Burns Effect - Simplified for performance */
.lux-slide.active .lux-slide-bg img {
    transform: scale(1.15) translateZ(0);
    transition: transform 8s ease-out;
}

.lux-slide[data-slide="2"].active .lux-slide-bg img {
    transform: scale(1.12) translate3d(1%, -0.5%, 0);
}

.lux-slide[data-slide="3"].active .lux-slide-bg img {
    transform: scale(1.14) translate3d(-0.5%, 0.5%, 0);
}

.lux-slide[data-slide="4"].active .lux-slide-bg img {
    transform: scale(1.1) translate3d(0.5%, 0.3%, 0);
}


.lux-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

/* Subtle gold accent - static for performance */
.lux-slide-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(202, 138, 4, 0.12) 0%, transparent 100%);
    pointer-events: none;
}



.lux-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    padding: 50px 40px;

    /* Glassmorphism background */
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Content Animation */
.lux-slide .lux-hero-label,
.lux-slide .lux-hero-title,
.lux-slide .lux-hero-tagline,
.lux-slide .lux-hero-cta {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.lux-slide.active .lux-hero-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.lux-slide.active .lux-hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.lux-slide.active .lux-hero-tagline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.lux-slide.active .lux-hero-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* Slider Navigation Arrows */
.lux-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.lux-slider-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-smooth);
    pointer-events: auto;
}

.lux-slider-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--lux-white);
    transition: color var(--duration-fast);
}

.lux-slider-arrow:hover {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
    transform: scale(1.1);
}

.lux-slider-arrow:hover svg {
    color: var(--lux-black);
}

/* Slider Dots */
.lux-slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
}

.lux-dot {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.lux-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--lux-gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.lux-dot span {
    position: relative;
    z-index: 2;
}

.lux-dot:hover,
.lux-dot.active {
    border-color: var(--lux-gold);
    color: var(--lux-black);
}

.lux-dot.active::before {
    transform: scale(1);
}

.lux-btn:focus-visible,
.lux-slider-arrow:focus-visible,
.lux-dot:focus-visible,
.lux-portfolio-prev:focus-visible,
.lux-portfolio-next:focus-visible,
.lux-thumb:focus-visible,
.lux-service-link:focus-visible {
    outline: 2px solid var(--lux-gold);
    outline-offset: 3px;
}

/* Progress Bar */
.lux-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.lux-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--lux-gold-dark), var(--lux-gold), var(--lux-gold-light));
    transition: width 0.1s linear;
}

.lux-progress-bar.animating {
    animation: progressFill 6s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Slider Frame */
.lux-slider-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    pointer-events: none;
    z-index: 50;
}

/* ========== LEGACY HERO SECTION (for fallback) ========== */
.lux-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--lux-black);
}

.lux-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.lux-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s linear;
}

.lux-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.2) 50%, rgba(13, 13, 13, 0.7) 100%),
        linear-gradient(90deg, rgba(13, 13, 13, 0.6) 0%, transparent 50%, rgba(13, 13, 13, 0.4) 100%);
}

.lux-hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Hero Frame */
.lux-hero-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 5;
    pointer-events: none;
}

.lux-frame-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: rgba(201, 169, 98, 0.3);
    border-style: solid;
    border-width: 0;
}

.lux-frame-tl {
    top: 0;
    left: 0;
    border-top-width: 1px;
    border-left-width: 1px;
}

.lux-frame-tr {
    top: 0;
    right: 0;
    border-top-width: 1px;
    border-right-width: 1px;
}

.lux-frame-bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.lux-frame-br {
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

/* Hero Content */
.lux-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px;
}

.lux-hero-label {
    display: none;
}

.lux-label-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.lux-label-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--lux-gold);
}

/* Main Hero Title Wrapper */
.lux-hero-title {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    /* Tiny gap for cohesion */
}

.lux-hero-label {
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.lux-label-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202, 138, 4, 0.6), transparent);
}

.lux-label-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lux-hero-tagline {
    display: block !important;
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 3px;
    text-transform: none;
    margin-top: 30px;

    /* Rose Gold Gradient */
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            #F5DEB3 30%,
            #FFFFFF 50%,
            #E8C8A0 70%,
            #FFFFFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: taglineShimmer 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
    position: relative;
}

@keyframes taglineShimmer {

    0%,
    100% {
        background-position: 200% center;
    }

    50% {
        background-position: -200% center;
    }
}

.lux-hero-tagline::before,
.lux-hero-tagline::after {
    content: '✦';
    color: rgba(202, 138, 4, 0.7);
    font-size: 14px;
    margin: 0 15px;
    vertical-align: middle;
    -webkit-text-fill-color: rgba(202, 138, 4, 0.7);
}

.lux-hero-divider {
    display: none !important;
}

.lux-title-small {
    display: block !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(52px, 11vw, 95px) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.04em !important;

    /* Clean vertical gold gradient */
    background: linear-gradient(180deg,
            #D4AF37 0%,
            #F5D76E 50%,
            #D4AF37 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    /* Subtle shadow for depth */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) !important;
}

@keyframes goldShine {

    0%,
    100% {
        background-position: 200% center;
    }

    50% {
        background-position: -200% center;
    }
}

.lux-title-main {
    display: block !important;
    font-family: var(--font-body) !important;
    font-size: clamp(16px, 3vw, 26px) !important;
    font-weight: 400 !important;
    letter-spacing: clamp(8px, 2.5vw, 18px) !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    margin-top: 10px !important;
    margin-right: -18px !important;

    /* Simple elegant gold */
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

    /* Subtle top border */
    padding-top: 15px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.4) !important;
}

@keyframes roseGoldShimmer {

    0%,
    100% {
        background-position: 200% center;
    }

    50% {
        background-position: -200% center;
    }
}

@keyframes silverShimmer {

    0%,
    100% {
        background-position: 200% center;
    }

    50% {
        background-position: -200% center;
    }
}

/* Removed decorative diamonds */

.lux-hero-tagline {
    display: block !important;
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.lux-hero-divider {
    margin: 30px 0;
}

.lux-divider-diamond {
    color: var(--lux-gold);
    font-size: 12px;
    opacity: 0.6;
}

.lux-hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Buttons - Liquid Glass Premium Style */
.lux-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Premium Gold Button - Liquid Glass Effect */
.lux-btn-gold {
    background: linear-gradient(135deg,
            rgba(202, 138, 4, 0.9) 0%,
            rgba(212, 168, 48, 0.95) 50%,
            rgba(202, 138, 4, 0.9) 100%);
    color: var(--lux-black);
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow:
        0 4px 15px rgba(202, 138, 4, 0.4),
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Shine sweep effect */
.lux-btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

.lux-btn-gold:hover::before {
    left: 100%;
}

/* Glowing border animation */
.lux-btn-gold::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            #CA8A04,
            #FFD700,
            #FFF8DC,
            #FFD700,
            #CA8A04);
    background-size: 400% 400%;
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 3s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

.lux-btn-gold:hover::after {
    opacity: 1;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hover state */
.lux-btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(202, 138, 4, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg,
            rgba(212, 168, 48, 1) 0%,
            rgba(255, 215, 0, 1) 50%,
            rgba(212, 168, 48, 1) 100%);
    color: #1a1a1a;
}

/* Active/pressed state */
.lux-btn-gold:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 3px 10px rgba(202, 138, 4, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Arrow animation */
.lux-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lux-btn-gold:hover .lux-btn-arrow {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.25);
}



.lux-btn-outline {
    background: transparent;
    border: 1px solid var(--lux-gold);
    color: var(--lux-gold);
}

.lux-btn-outline:hover {
    background: var(--lux-gold);
    color: var(--lux-black);
}

.lux-btn-dark {
    background: var(--lux-charcoal);
    color: var(--lux-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-btn-dark:hover {
    background: var(--lux-gold);
    color: var(--lux-black);
    border-color: var(--lux-gold);
}

.lux-btn-arrow {
    font-size: 18px;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.lux-btn:hover .lux-btn-arrow {
    transform: translateX(5px);
}

/* Hero Scroll Indicator */
.lux-hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.lux-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--lux-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 60px;
    }

    50% {
        opacity: 0.5;
        height: 40px;
    }
}

.lux-hero-scroll span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

/* Hero Social */
.lux-hero-social {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lux-hero-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-white);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--duration-fast) var(--ease-smooth);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.lux-hero-social a:hover {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
    transform: scale(1.1);
}

/* ========== SECTION STYLES ========== */
.lux-section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.lux-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 1px;
    background: var(--lux-gold);
}

.lux-section-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 500;
    color: var(--lux-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lux-section-title em {
    font-style: italic;
    color: var(--lux-gold);
}

.lux-section-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 500px;
}

.lux-text-center {
    text-align: center;
}

.lux-text-center .lux-section-label {
    padding-left: 0;
}

.lux-text-center .lux-section-label::before {
    display: none;
}

.lux-text-center .lux-section-desc {
    margin: 0 auto;
}

/* ========== PHILOSOPHY SECTION ========== */
.lux-philosophy {
    padding: var(--section-padding) 0;
    background: var(--lux-black);
    overflow: visible;
}

.lux-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.lux-philosophy-content .lux-section-title {
    margin-bottom: 40px;
    color: var(--lux-white);
}

.lux-philosophy-text {
    margin-bottom: 50px;
}

.lux-philosophy-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    margin-bottom: 25px;
}

.lux-philosophy-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-philosophy-signature img {
    height: 50px;
    opacity: 0.7;
}

.lux-sig-name {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--lux-gold);
}

.lux-sig-title {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.lux-philosophy-image {
    position: relative;
}

.lux-image-wrapper {
    position: relative;
}

.lux-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.lux-image-border {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--lux-gold);
    z-index: -1;
}

.lux-philosophy-stats {
    position: absolute;
    bottom: -40px;
    right: 40px;
    display: flex;
    gap: 40px;
    background: var(--lux-charcoal);
    padding: 40px 50px;
}

.lux-stat {
    text-align: center;
}

.lux-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--lux-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.lux-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== SERVICES SECTION ========== */
.lux-services {
    position: relative;
    padding: var(--section-padding) 0;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(202, 138, 4, 0.12), transparent 60%),
        linear-gradient(180deg, #201d1b 0%, #181513 100%);
    overflow: hidden;
}

.lux-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 98, 0.04) 0%, transparent 40%);
}

.lux-services .lux-section-header {
    margin-bottom: 80px;
    text-align: center;
}

.lux-services .lux-section-title {
    color: var(--lux-white);
}

.lux-services-intro {
    max-width: 760px;
    margin: 18px auto 0;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.lux-services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lux-service-item {
    position: relative;
    padding: 36px 28px 30px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(202, 138, 4, 0.16);
    border-radius: 18px;
    transition: transform var(--duration-normal) var(--ease-smooth), border-color var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.lux-service-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lux-service-item::before {
    content: attr(data-number);
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 38px;
    color: rgba(202, 138, 4, 0.12);
    letter-spacing: 2px;
    line-height: 1;
}

.lux-service-item:hover {
    border-color: rgba(202, 138, 4, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(202, 138, 4, 0.16) inset;
}

.lux-service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    color: var(--lux-gold);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(202, 138, 4, 0.3);
    background: rgba(12, 10, 9, 0.5);
}

.lux-service-icon svg {
    width: 100%;
    height: 100%;
}

.lux-service-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #f5d77f;
    background: rgba(202, 138, 4, 0.12);
    border: 1px solid rgba(202, 138, 4, 0.3);
}

.lux-service-item h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--lux-white);
    margin-bottom: 12px;
}

.lux-service-item p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 16px;
}

.lux-service-points {
    list-style: none;
    margin: 0 0 22px 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.lux-service-points li {
    position: relative;
    padding-left: 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.74);
}

.lux-service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lux-gold);
    box-shadow: 0 0 10px rgba(202, 138, 4, 0.7);
}

.lux-service-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #15120f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ca8a04, #e2b13f);
    box-shadow: 0 8px 18px rgba(202, 138, 4, 0.35);
    transition: transform var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast) var(--ease-smooth), gap var(--duration-fast) var(--ease-smooth);
}

.lux-service-link::after {
    content: '->';
}

.lux-service-link:hover {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(202, 138, 4, 0.42);
}

/* ========== PROJECTS SHOWCASE - PREMIUM DESIGN ========== */
.lux-showcase {
    padding: var(--section-padding) 0;
    background: var(--lux-black);
}

.lux-showcase .lux-section-header {
    margin-bottom: 80px;
}

/* Section Divider */
.lux-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.lux-section-divider span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.lux-section-divider i {
    color: var(--lux-gold);
    font-size: 14px;
}

/* Masonry Container */
.lux-showcase-masonry {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

/* Showcase Rows */
.lux-showcase-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.lux-showcase-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Showcase Column */
.lux-showcase-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

/* Showcase Card */
.lux-showcase-card {
    position: relative;
    background: var(--lux-charcoal);
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-smooth),
        box-shadow var(--duration-normal) var(--ease-smooth);
}

.lux-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Featured Card */
.lux-showcase-featured {
    flex: 1.5;
}

.lux-showcase-featured .lux-showcase-frame {
    height: 450px;
}

/* Project Number */
.lux-showcase-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--lux-gold);
    opacity: 0.3;
    z-index: 10;
    line-height: 1;
    transition: opacity var(--duration-fast);
}

.lux-showcase-card:hover .lux-showcase-number {
    opacity: 0.6;
}

/* Frame Container */
.lux-showcase-frame {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Image */
.lux-showcase-image {
    width: 100%;
    height: 100%;
}

.lux-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.lux-showcase-card:hover .lux-showcase-image img {
    transform: scale(1.1);
}

/* Overlay */
.lux-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.lux-showcase-card:hover .lux-showcase-overlay {
    opacity: 1;
}

/* View Button */
.lux-showcase-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--lux-white);
    text-decoration: none;
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.lux-showcase-card:hover .lux-showcase-view {
    transform: translateY(0);
}

.lux-showcase-view i {
    width: 60px;
    height: 60px;
    border: 2px solid var(--lux-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lux-gold);
    transition: all var(--duration-fast);
}

.lux-showcase-view:hover i {
    background: var(--lux-gold);
    color: var(--lux-black);
}

.lux-showcase-view span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Info Section */
.lux-showcase-info {
    padding: 25px;
}

/* Badge */
.lux-showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-dark) 100%);
    color: var(--lux-black);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.lux-showcase-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--lux-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.lux-showcase-info p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Details */
.lux-showcase-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.lux-showcase-details span {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lux-showcase-details i {
    color: var(--lux-gold);
    font-size: 11px;
}

/* CTA */
.lux-showcase-cta {
    text-align: center;
}

.lux-btn-large {
    padding: 22px 50px;
    font-size: 12px;
}

.lux-showcase-cta-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .lux-showcase-row {
        flex-direction: column;
    }

    .lux-showcase-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-showcase-featured .lux-showcase-frame {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .lux-showcase-row-3 {
        grid-template-columns: 1fr;
    }

    .lux-showcase-frame {
        height: 220px;
    }

    .lux-showcase-featured .lux-showcase-frame {
        height: 280px;
    }

    .lux-showcase-number {
        font-size: 36px;
    }

    .lux-showcase-info h3 {
        font-size: 18px;
    }

    /* Leave hover styles intact; handled separately for touch devices */
}

@media (hover: none) and (pointer: coarse) {
    .lux-showcase-overlay {
        opacity: 0;
        background: rgba(13, 13, 13, 0);
        pointer-events: none;
    }

    .lux-showcase-view {
        transform: translateY(0);
        opacity: 0;
        pointer-events: none;
    }

    .lux-showcase-card:hover {
        transform: none;
        box-shadow: none;
    }

    .lux-showcase-card:hover .lux-showcase-image img {
        transform: none;
    }

    .lux-showcase-card:hover .lux-showcase-number {
        opacity: 0.3;
    }
}


/* ========== PORTFOLIO SECTION - PREMIUM INTERACTIVE ========== */
.lux-portfolio {
    padding: var(--section-padding) 0;
    background: var(--lux-charcoal);
    overflow: hidden;
}

/* Portfolio Header */
.lux-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.lux-portfolio-title-group {
    flex: 1;
}

/* Counter */
.lux-portfolio-counter {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lux-counter-current {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 300;
    color: var(--lux-gold);
    line-height: 1;
}

.lux-counter-divider {
    font-family: var(--font-body);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.lux-counter-total {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

/* Gallery Layout */
.lux-portfolio-gallery {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    margin-bottom: 60px;
}

/* Main Slider Area */
.lux-portfolio-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--lux-black);
}

.lux-portfolio-slider {
    position: relative;
    height: 550px;
}

/* Portfolio Slide */
.lux-portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

.lux-portfolio-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Image */
.lux-portfolio-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.lux-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 6s linear;
}

.lux-portfolio-slide.active .lux-portfolio-image img {
    transform: scale(1.1);
}

/* Info Panel */
.lux-portfolio-info {
    flex: 0.8;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--lux-black) 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease-smooth) 0.3s, transform 0.6s var(--ease-smooth) 0.3s;
}

.lux-portfolio-slide.active .lux-portfolio-info {
    opacity: 1;
    transform: translateX(0);
}

.lux-portfolio-category {
    display: inline-block;
    background: var(--lux-gold);
    color: var(--lux-black);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    align-self: flex-start;
}

.lux-portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--lux-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.lux-portfolio-info p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.lux-portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.lux-portfolio-meta span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lux-portfolio-meta i {
    color: var(--lux-gold);
    font-size: 12px;
}

/* Portfolio Link */
.lux-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lux-gold);
    text-decoration: none;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    transition: gap var(--duration-fast);
}

.lux-portfolio-link:hover {
    gap: 20px;
}

.lux-portfolio-link i {
    transition: transform var(--duration-fast);
}

.lux-portfolio-link:hover i {
    transform: translateX(5px);
}

/* Navigation */
.lux-portfolio-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-portfolio-prev,
.lux-portfolio-next {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.lux-portfolio-prev:hover,
.lux-portfolio-next:hover {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
    color: var(--lux-black);
    transform: scale(1.1);
}

/* Thumbnails Sidebar */
.lux-portfolio-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lux-thumb {
    position: relative;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--duration-fast);
}

.lux-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-fast);
}

.lux-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity var(--duration-fast);
}

.lux-thumb-number {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast);
}

.lux-thumb:hover {
    border-color: rgba(201, 169, 98, 0.5);
}

.lux-thumb:hover .lux-thumb-overlay {
    opacity: 0.7;
}

.lux-thumb:hover img {
    transform: scale(1.1);
}

.lux-thumb.active {
    border-color: var(--lux-gold);
}

.lux-thumb.active .lux-thumb-overlay {
    background: rgba(201, 169, 98, 0.3);
}

.lux-thumb.active .lux-thumb-number {
    color: var(--lux-gold);
}

/* CTA */
.lux-portfolio-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .lux-portfolio-gallery {
        grid-template-columns: 1fr 150px;
    }

    .lux-portfolio-slider {
        height: 480px;
    }

    .lux-portfolio-info h3 {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .lux-portfolio-gallery {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .lux-portfolio-thumbs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        order: 2;
    }

    .lux-thumb {
        flex: 0 0 100px;
        height: 70px;
    }

    .lux-portfolio-main {
        order: 1;
    }

    .lux-portfolio-slider {
        position: relative;
        height: auto;
        min-height: 480px;
    }

    .lux-portfolio-slide {
        position: relative;
        flex-direction: column;
        display: none;
    }

    .lux-portfolio-slide.active {
        display: flex;
    }

    .lux-portfolio-image {
        height: 280px;
        flex: none;
    }

    .lux-portfolio-info {
        padding: 30px;
        flex: none;
        opacity: 1;
        transform: none;
    }

    .lux-portfolio-nav {
        position: absolute;
        top: 240px;
        right: 15px;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 0;
        padding: 4px;
        gap: 6px;
    }

    .lux-portfolio-prev,
    .lux-portfolio-next {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .lux-portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .lux-counter-current {
        font-size: 42px;
    }

    .lux-portfolio-slider {
        min-height: 420px;
    }

    .lux-portfolio-image {
        height: 250px;
    }

    .lux-portfolio-info h3 {
        font-size: 22px;
    }

    .lux-portfolio-nav {
        top: 210px;
    }
}

@media (max-width: 480px) {
    .lux-portfolio-slider {
        min-height: 380px;
    }

    .lux-portfolio-image {
        height: 200px;
    }

    .lux-portfolio-nav {
        top: 160px;
        right: 10px;
    }

    .lux-portfolio-info {
        padding: 25px 20px;
    }

    .lux-portfolio-info h3 {
        font-size: 18px;
    }

    .lux-portfolio-info p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .lux-portfolio-meta {
        gap: 12px;
        margin-bottom: 20px;
    }

    .lux-portfolio-meta span {
        font-size: 11px;
    }

    .lux-thumb {
        flex: 0 0 70px;
        height: 55px;
    }

    .lux-thumb-number {
        font-size: 16px;
    }
}



/* ========== COLLECTION SECTION ========== */

.lux-collection {
    padding: var(--section-padding) 0;
    background: var(--lux-white);
}

.lux-collection .lux-section-header {
    margin-bottom: 80px;
}

.lux-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.lux-product-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-normal) var(--ease-smooth);
    transition-delay: var(--delay, 0s);
}

.lux-product-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lux-product-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: var(--lux-cream);
}

.lux-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.lux-product-card:hover .lux-product-image img {
    transform: scale(1.08);
}

.lux-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.lux-product-card:hover .lux-product-overlay {
    opacity: 1;
}

.lux-product-view {
    padding: 15px 30px;
    border: 1px solid var(--lux-white);
    color: var(--lux-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-smooth);
    transform: translateY(20px);
}

.lux-product-card:hover .lux-product-view {
    transform: translateY(0);
}

.lux-product-view:hover {
    background: var(--lux-white);
    color: var(--lux-black);
}

.lux-product-info {
    padding: 25px 0;
}

.lux-product-category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 10px;
    display: block;
}

.lux-product-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.lux-product-title a {
    color: var(--lux-charcoal);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.lux-product-title a:hover {
    color: var(--lux-gold);
}

.lux-product-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--lux-charcoal);
}

.lux-product-price del {
    font-size: 13px;
    color: var(--lux-gray-light);
    margin-right: 10px;
}

.lux-collection-cta {
    text-align: center;
}

/* ========== PROJECTS SECTION ========== */
.lux-projects {
    background: var(--lux-charcoal);
    padding-bottom: var(--section-padding);
}

.lux-projects-header {
    padding: var(--section-padding) 0 60px;
}

.lux-projects-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 60px;
}

.lux-project-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    text-decoration: none;
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.lux-project-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lux-project-image {
    width: 100%;
    height: 100%;
}

.lux-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.lux-project-item:hover .lux-project-image img {
    transform: scale(1.1);
}

.lux-project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.lux-project-item:hover .lux-project-content {
    transform: translateY(0);
    opacity: 1;
}

.lux-project-type {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 10px;
}

.lux-project-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--lux-white);
    margin-bottom: 15px;
}

.lux-project-arrow {
    font-size: 20px;
    color: var(--lux-gold);
}

.lux-projects-cta {
    text-align: center;
}

/* ========== TESTIMONIALS SECTION ========== */
.lux-testimonials {
    padding: var(--section-padding) 0;
    background: var(--lux-black);
}

.lux-testimonials-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: center;
}

.lux-testimonials-header .lux-section-title {
    margin-bottom: 40px;
    color: var(--lux-white);
}

.lux-testimonials-nav {
    display: flex;
    gap: 15px;
}

.lux-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--lux-white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.lux-nav-btn:hover {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
    color: var(--lux-black);
}

.lux-testimonials-slider {
    position: relative;
    min-height: 300px;
}

.lux-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.lux-testimonial.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.lux-testimonial-quote {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--lux-gold);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}

.lux-testimonial blockquote {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--lux-white);
    line-height: 1.6;
    margin-bottom: 40px;
}

.lux-testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-author-info strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--lux-gold);
    margin-bottom: 5px;
}

.lux-author-info span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.lux-author-rating {
    color: var(--lux-gold);
    font-size: 16px;
    letter-spacing: 3px;
}

/* ========== CONTACT CTA SECTION ========== */
.lux-contact-cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.lux-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.lux-contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
}

.lux-contact-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lux-contact-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    color: var(--lux-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lux-contact-title em {
    font-style: italic;
    color: var(--lux-gold);
}

.lux-contact-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.lux-contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.lux-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.lux-contact-item:hover {
    transform: translateY(-3px);
}

.lux-contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    color: var(--lux-gold);
    font-size: 20px;
}

.lux-contact-text {
    text-align: left;
}

.lux-contact-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.lux-contact-text strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--lux-white);
}

.lux-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .lux-container {
        padding: 0 40px;
    }

    .lux-title-main {
        font-size: 72px;
        letter-spacing: 15px;
    }

    .lux-services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-projects-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .lux-project-item {
        height: 350px;
    }

    .lux-testimonials-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    .lux-philosophy {
        padding-bottom: 30px;
    }

    .lux-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lux-philosophy-content {
        order: 2;
    }

    .lux-philosophy-image {
        order: 1;
    }

    .lux-image-wrapper img {
        height: 280px;
    }

    .lux-image-border {
        display: none;
    }

    .lux-philosophy-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        justify-content: center;
    }

    .lux-section-title {
        font-size: 42px;
    }

    .lux-contact-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .lux-container {
        padding: 0 25px;
    }

    .lux-hero-frame {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .lux-frame-corner {
        width: 40px;
        height: 40px;
    }

    .lux-title-small {
        font-size: 42px !important;
        /* Make sure it stays big on mobile too */
        letter-spacing: 2px !important;
    }

    .lux-title-main {
        font-size: 12px !important;
        letter-spacing: 12px !important;
        margin-right: -12px !important;
    }

    .lux-hero-tagline {
        font-size: 16px;
    }

    .lux-hero-desc {
        font-size: 14px;
    }

    .lux-hero-desc br {
        display: none;
    }

    .lux-hero-social {
        display: none;
    }

    .lux-services-showcase {
        grid-template-columns: 1fr;
    }

    .lux-collection-grid {
        grid-template-columns: 1fr;
    }

    .lux-product-image {
        height: 300px;
    }

    .lux-projects-gallery {
        grid-template-columns: 1fr;
    }

    .lux-project-item {
        height: 300px;
    }

    .lux-testimonial blockquote {
        font-size: 22px;
    }

    .lux-contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .lux-contact-item {
        justify-content: center;
    }

    .lux-btn {
        padding: 16px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .lux-title-main {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .lux-section-title {
        font-size: 32px;
    }

    .lux-section-label {
        padding-left: 0;
    }

    .lux-section-label::before {
        display: none;
    }

    .lux-philosophy-stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .lux-image-border {
        display: none;
    }

    .lux-contact-title {
        font-size: 32px;
    }

    .lux-contact-text strong {
        font-size: 18px;
    }
}

/* ========== SLIDER RESPONSIVE ========== */
@media (max-width: 1024px) {
    .lux-slider-arrow {
        width: 50px;
        height: 50px;
    }

    .lux-slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .lux-slider-dots {
        bottom: 40px;
        gap: 15px;
    }

    .lux-dot {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .lux-slider-frame {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .lux-slider-nav {
        padding: 0 15px;
    }

    .lux-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .lux-slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .lux-slider-dots {
        bottom: 30px;
        gap: 10px;
    }

    .lux-dot {
        width: 35px;
        height: 35px;
        font-size: 9px;
    }

    .lux-slide-content {
        width: 92%;
        padding: 30px 25px;
        border-radius: 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.45);
    }

    .lux-title-small {
        font-size: clamp(36px, 10vw, 56px) !important;
        margin-bottom: 12px !important;
    }

    .lux-title-main {
        font-size: 14px !important;
        letter-spacing: 6px !important;
        padding-top: 10px !important;
    }

    .lux-hero-tagline {
        font-size: 13px !important;
        letter-spacing: 2px !important;
        margin-top: 15px !important;
    }

    .lux-hero-label {
        margin-bottom: 15px;
    }

    .lux-label-text {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .lux-label-line {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .lux-slider-nav {
        display: none;
    }

    .lux-slider-dots {
        bottom: 20px;
        gap: 6px;
    }

    .lux-dot {
        width: 28px;
        height: 28px;
        font-size: 8px;
    }

    .lux-slide-content {
        width: 94%;
        padding: 25px 20px;
        border-radius: 14px;
    }

    .lux-title-small {
        font-size: clamp(28px, 9vw, 42px) !important;
        letter-spacing: 0.02em !important;
        margin-bottom: 10px !important;
    }

    .lux-title-main {
        font-size: 12px !important;
        letter-spacing: 4px !important;
        margin-right: -4px !important;
    }

    .lux-hero-tagline {
        font-size: 12px !important;
        letter-spacing: 1px !important;
    }

    .lux-hero-cta {
        margin-top: 15px;
    }

    .lux-btn-gold {
        padding: 12px 25px !important;
        font-size: 11px !important;
    }
}

/* ========================================
   LIQUID GLASS EFFECTS - Design System v2.0
   ======================================== */

/* Glass Card */
.lux-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all var(--duration-fluid) var(--ease-fluid);
}

.lux-glass:hover {
    background: rgba(28, 25, 23, 0.85);
    border-color: rgba(202, 138, 4, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Glass Button */
.lux-glass-btn {
    background: rgba(202, 138, 4, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(202, 138, 4, 0.3);
    color: var(--lux-gold);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.lux-glass-btn:hover {
    background: var(--lux-gold);
    color: var(--lux-black);
    border-color: var(--lux-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Fluid Animation */
.lux-fluid {
    transition: all var(--duration-fluid) var(--ease-fluid);
}

/* Morphing Shadow Effect */
.lux-morph-shadow {
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(202, 138, 4, 0.1);
    transition: box-shadow var(--duration-slow) var(--ease-fluid);
}

.lux-morph-shadow:hover {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(202, 138, 4, 0.2);
}

/* Golden Glow Effect */
.lux-gold-glow {
    position: relative;
}

.lux-gold-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(202, 138, 4, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.lux-gold-glow:hover::after {
    opacity: 1;
}


/* ========== HERO STATS BAR ========== */
.lux-stats-bar {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.lux-stats-bar-bg {
    position: absolute;
    inset: 0;
}

.lux-stats-bar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-stats-bar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.85) 100%);
    backdrop-filter: blur(5px);
}

.lux-stats-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.lux-stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.lux-stat-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lux-stat-item:nth-child(3) {
    transition-delay: 0.1s;
}

.lux-stat-item:nth-child(5) {
    transition-delay: 0.2s;
}

.lux-stat-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    background: linear-gradient(180deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.lux-stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    background: linear-gradient(180deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lux-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.lux-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(202, 138, 4, 0.4), transparent);
}


/* ========== PROCESS TIMELINE ========== */
.lux-process {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.lux-process-bg {
    position: absolute;
    inset: 0;
}

.lux-process-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.lux-process-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--lux-cream) 0%, #f5f0eb 50%, var(--lux-cream) 100%);
}

.lux-process .lux-container {
    position: relative;
    z-index: 2;
}

.lux-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.lux-process-step {
    position: relative;
    background: var(--lux-white);
    border-radius: 16px;
    padding: 40px 30px 30px;
    border: 1px solid rgba(202, 138, 4, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--ease-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.lux-process-step.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lux-process-step:nth-child(2) {
    transition-delay: 0.1s;
}

.lux-process-step:nth-child(3) {
    transition-delay: 0.2s;
}

.lux-process-step:nth-child(4) {
    transition-delay: 0.3s;
}

.lux-process-step:nth-child(5) {
    transition-delay: 0.4s;
}

.lux-process-step:nth-child(6) {
    transition-delay: 0.5s;
}

.lux-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(202, 138, 4, 0.2);
}

.lux-process-badge {
    position: absolute;
    top: -18px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--lux-black);
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.4);
}

.lux-process-icon {
    width: 56px;
    height: 56px;
    background: rgba(202, 138, 4, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-smooth);
}

.lux-process-step:hover .lux-process-icon {
    background: var(--lux-gold);
}

.lux-process-icon i {
    font-size: 22px;
    color: var(--lux-gold);
    transition: color 0.4s var(--ease-smooth);
}

.lux-process-step:hover .lux-process-icon i {
    color: var(--lux-white);
}

.lux-process-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--lux-black);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.lux-process-step:hover h3 {
    color: var(--lux-gold);
}

.lux-process-step>p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--lux-gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.lux-process-details {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.lux-process-details li {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--lux-gray-dark);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.lux-process-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--lux-gold);
    border-radius: 50%;
}

.lux-process-duration {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--lux-gold);
}

.lux-process-duration i {
    margin-right: 5px;
    font-size: 12px;
}

.lux-process-cta {
    text-align: center;
    margin-top: 60px;
}

.lux-process-cta p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--lux-gray);
    margin-bottom: 25px;
}


/* ========== GALLERY MASONRY ========== */
.lux-gallery {
    padding: var(--section-padding) 0;
    background: var(--lux-black);
}

.lux-gallery .lux-section-label {
    color: var(--lux-gold);
}

.lux-gallery .lux-section-title {
    color: var(--lux-white);
}

.lux-gallery .lux-section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.lux-gallery .lux-section-divider i {
    color: var(--lux-gold);
}

.lux-gallery .lux-section-divider span {
    background: rgba(202, 138, 4, 0.3);
}

.lux-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
    margin-top: 20px;
}

.lux-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.lux-gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lux-gallery-item:nth-child(2) {
    transition-delay: 0.05s;
}

.lux-gallery-item:nth-child(3) {
    transition-delay: 0.1s;
}

.lux-gallery-item:nth-child(4) {
    transition-delay: 0.15s;
}

.lux-gallery-item:nth-child(5) {
    transition-delay: 0.2s;
}

.lux-gallery-item:nth-child(6) {
    transition-delay: 0.25s;
}

.lux-gallery-item:nth-child(7) {
    transition-delay: 0.3s;
}

.lux-gallery-item:nth-child(8) {
    transition-delay: 0.35s;
}

.lux-gallery-item:nth-child(9) {
    transition-delay: 0.4s;
}

.lux-gallery-item:nth-child(10) {
    transition-delay: 0.45s;
}

.lux-gallery-tall {
    grid-row: span 2;
}

.lux-gallery-wide {
    grid-column: span 2;
}

.lux-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.lux-gallery-item:hover img {
    transform: scale(1.1);
}

.lux-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-smooth);
}

.lux-gallery-item:hover .lux-gallery-overlay {
    transform: translateY(0);
}

.lux-gallery-cat {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 4px;
    display: block;
}

.lux-gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--lux-white);
    margin: 0;
}

.lux-gallery-cta {
    text-align: center;
    margin-top: 50px;
}


/* ========== RESPONSIVE - NEW SECTIONS ========== */
@media (max-width: 1024px) {
    .lux-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .lux-stats-bar {
        padding: 50px 0;
    }

    .lux-stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .lux-stat-divider {
        width: 60px;
        height: 1px;
    }

    .lux-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lux-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .lux-gallery-tall {
        grid-row: span 1;
    }

    .lux-gallery-wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .lux-gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
}