/* Base Section Styles */
.lux-hero-9bfbd5cf {
    position: relative;
    width: 100%;
    height: 850px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
    color: #F7F4EC;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lux-hero-overlay-9bfbd5cf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 22, 40, 0.45);
    z-index: 1;
}

.lux-hero-container-9bfbd5cf {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-left: 120px;
    padding-right: 20px;
}

.lux-hero-content-9bfbd5cf {
    max-width: 650px;
}

/* Typography */
.lux-hero-subtitle-9bfbd5cf {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #B98F49; /* Default Accent */
}

.lux-hero-title-9bfbd5cf {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: inherit;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lux-hero-desc-9bfbd5cf {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(247, 244, 236, 0.85);
    margin: 0 0 50px 0;
    font-weight: 300;
}

/* Stats Layout */
.lux-hero-stats-wrap-9bfbd5cf {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lux-hero-stat-9bfbd5cf {
    position: relative;
    padding-right: 40px;
    transition: transform 0.3s ease;
}

.lux-hero-stat-9bfbd5cf:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: rgba(247, 244, 236, 0.25);
}

.lux-hero-stat-9bfbd5cf:hover {
    transform: translateY(-3px);
}

.lux-stat-val-9bfbd5cf {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.lux-stat-lbl-9bfbd5cf {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.7);
}

/* Animations */
.animate-fade-in {
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .lux-hero-9bfbd5cf {
        height: 700px;
    }
    .lux-hero-container-9bfbd5cf {
        padding-left: 60px;
    }
    .lux-hero-title-9bfbd5cf {
        font-size: 56px;
    }
    .lux-hero-stats-wrap-9bfbd5cf {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lux-hero-9bfbd5cf {
        height: 600px;
    }
    .lux-hero-container-9bfbd5cf {
        padding-left: 30px;
        padding-right: 30px;
    }
    .lux-hero-title-9bfbd5cf {
        font-size: 42px;
    }
    .lux-hero-desc-9bfbd5cf {
        font-size: 16px;
    }
    .lux-hero-stats-wrap-9bfbd5cf {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .lux-hero-stat-9bfbd5cf {
        padding-right: 0;
        width: 100%;
        padding-bottom: 20px;
    }
    .lux-hero-stat-9bfbd5cf:not(:last-child)::after {
        right: auto;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        height: 1px;
    }
}
