.luxe-about-wrapper-ae279b86 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    padding: 100px 60px;
    background-color: #0A0D14;
    color: #ffffff;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

.luxe-about-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luxe-about-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #AB8A62;
    margin-bottom: 20px;
    display: block;
}

.luxe-about-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 40px 0;
    letter-spacing: -0.01em;
}

.luxe-about-content-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.luxe-about-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 380px;
    font-weight: 300;
}

.luxe-about-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.luxe-about-btn:hover {
    background-color: #AB8A62;
    border-color: #AB8A62;
    color: #ffffff;
}

.luxe-about-img-horizontal {
    width: 320px;
    height: 220px;
    overflow: hidden;
    margin-left: auto;
    margin-right: 40px;
}

.luxe-about-img-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Column Layout */
.luxe-about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    position: relative;
}

.luxe-stat-card {
    background-color: #121620;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 4px;
    width: 240px;
    box-sizing: border-box;
    align-self: flex-start;
}

.luxe-stat-number {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    color: #AB8A62;
    line-height: 1;
}

.luxe-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.luxe-about-img-vertical {
    width: 100%;
    max-width: 440px;
    height: 520px;
    overflow: hidden;
}

.luxe-about-img-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsiveness */
@media (max-width: 991px) {
    .luxe-about-wrapper-ae279b86 {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 30px;
    }
    .luxe-about-content-row {
        flex-direction: column;
        gap: 20px;
    }
    .luxe-about-img-horizontal {
        margin: 0;
        width: 100%;
        height: 250px;
    }
    .luxe-about-right {
        align-items: flex-start;
    }
    .luxe-about-img-vertical {
        max-width: 100%;
        height: 400px;
    }
}
