/* Hero section Background Image Auto-Fit */
.flat-slider, 
.hero-banner,
.page-title,
.slider-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
}



/* =========================================
   LANDCHASE CEO & FOUNDER - SEPARATE SECTION
========================================= */

.lc-ceo-section {
    width: 100%;
    position: relative;
    padding: 90px 20px;
    box-sizing: border-box;
    overflow: hidden;
    background:
        linear-gradient(135deg, #11140f 0%, #1b2118 50%, #10130e 100%);
    font-family: Arial, Helvetica, sans-serif;
}

/* subtle premium background glow */
.lc-ceo-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    top: -250px;
    right: -150px;
    background: rgba(216, 174, 92, 0.08);
    pointer-events: none;
}

.lc-ceo-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -250px;
    left: -100px;
    background: rgba(216, 174, 92, 0.05);
    pointer-events: none;
}

.lc-ceo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}

/* =========================================
   IMAGE SIDE
========================================= */

.lc-ceo-image-wrap {
    position: relative;
    width: 100%;
}

.lc-ceo-image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;

    padding: 10px;
    box-sizing: border-box;

    border: 1px solid rgba(216, 174, 92, 0.6);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}

.lc-ceo-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
}

/* decorative gold line */
.lc-ceo-image-frame::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 2px;
    background: #d8ae5c;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================
   CONTENT SIDE
========================================= */

.lc-ceo-content {
    max-width: 700px;
}

.lc-ceo-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #d8ae5c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.lc-ceo-label::before {
    content: "";
    width: 45px;
    height: 1px;
    background: #d8ae5c;
}

.lc-ceo-content h2 {
    margin: 0 0 10px;

    color: #ffffff;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.lc-ceo-position {
    display: block;

    color: #e5c477;
    font-size: 19px;
    font-weight: 500;

    margin-bottom: 28px;
}

.lc-ceo-divider {
    width: 80px;
    height: 2px;
    background: #d8ae5c;
    margin-bottom: 28px;
}

.lc-ceo-content p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

/* Quote */

.lc-ceo-quote-box {
    margin-top: 32px;
    padding: 24px 28px;

    border-left: 3px solid #d8ae5c;

    background: rgba(255, 255, 255, 0.035);

    color: #ffffff;

    font-size: 18px;
    line-height: 1.7;
    font-style: italic;

    border-radius: 0 8px 8px 0;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .lc-ceo-section {
        padding: 70px 20px;
    }

    .lc-ceo-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .lc-ceo-image-frame {
        max-width: 360px;
    }

    .lc-ceo-content {
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }

    .lc-ceo-label {
        justify-content: center;
    }

    .lc-ceo-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .lc-ceo-quote-box {
        text-align: left;
    }

}

@media (max-width: 500px) {

    .lc-ceo-section {
        padding: 60px 16px;
    }

    .lc-ceo-container {
        gap: 45px;
    }

    .lc-ceo-content h2 {
        font-size: 40px;
    }

    .lc-ceo-position {
        font-size: 17px;
    }

    .lc-ceo-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .lc-ceo-quote-box {
        font-size: 16px;
        padding: 20px;
    }

}