/* ==============================
    SECTION 02 BRAND STORY
============================== */

.olle-brand-section {
    position: relative;
    width: 100%;
    min-height: 820px;
    padding: 210px 20px 190px;
    box-sizing: border-box;
    background: #fff;
}

.olle-brand-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.olle-brand-label {
    margin: 0 0 48px;
    color: #ff7817;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.olle-brand-title {
    margin: 0;
    color: #1d1d1d;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.24;
    letter-spacing: -0.055em;
}

.olle-brand-desc {
    margin: 52px 0 0;
    color: #222;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.045em;
}

.olle-ceo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    height: 66px;
    margin-top: 76px;
    padding: 0 36px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background: #fff;
    color: #555;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.olle-ceo-btn:hover {
    border-color: #ff7817;
    background: #ff7817;
    color: #fff;
    transform: translateY(-2px);
}

/* ==============================
    CEO MODAL
============================== */

.olle-ceo-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.olle-ceo-modal-open .olle-ceo-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.olle-ceo-modal-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
}

.olle-ceo-modal-box {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 1180px;
    max-height: calc(100vh - 80px);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.3s ease;
}

body.olle-ceo-modal-open .olle-ceo-modal-box {
    transform: translateY(0) scale(1);
}

.olle-ceo-picture {
    display: block;
    width: auto;
    height: auto;
    line-height: 0;
    background: transparent;
}

.olle-ceo-picture img {
    display: block;
    width: auto;
    max-width: min(1180px, calc(100vw - 80px));
    height: auto;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

/* 닫기 버튼 */
.olle-ceo-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    transition: background 0.25s ease, transform 0.25s ease;
}

.olle-ceo-modal-close:hover {
    background: #ff7817;
    transform: rotate(90deg);
}

.olle-ceo-modal-close span {
    position: absolute;
    top: 22px;
    left: 13px;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
}

.olle-ceo-modal-close span:nth-child(1) {
    transform: rotate(45deg);
}

.olle-ceo-modal-close span:nth-child(2) {
    transform: rotate(-45deg);
}

body.olle-ceo-modal-open {
    overflow: hidden;
}

/* ==============================
    RESPONSIVE
============================== */

@media (max-width: 1280px) {
    .olle-brand-section {
        min-height: 760px;
        padding: 180px 20px 160px;
    }

    .olle-brand-title {
        font-size: 58px;
    }

    .olle-brand-desc {
        font-size: 24px;
    }

    .olle-ceo-picture img {
        max-width: calc(100vw - 80px);
    }
}

@media (max-width: 1024px) {
    .olle-brand-section {
        min-height: 680px;
        padding: 150px 22px 140px;
    }

    .olle-brand-label {
        margin-bottom: 36px;
        font-size: 16px;
    }

    .olle-brand-title {
        font-size: 46px;
    }

    .olle-brand-desc {
        margin-top: 38px;
        font-size: 21px;
    }

    .olle-ceo-btn {
        height: 58px;
        margin-top: 58px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .olle-brand-section {
        min-height: auto;
        padding: 120px 20px 115px;
    }

    .olle-brand-label {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .olle-brand-title {
        font-size: 34px;
        line-height: 1.3;
        letter-spacing: -0.06em;
    }

    .olle-brand-desc {
        margin-top: 30px;
        font-size: 18px;
        line-height: 1.65;
    }

    .olle-ceo-btn {
        min-width: 150px;
        height: 54px;
        margin-top: 46px;
        padding: 0 28px;
        font-size: 17px;
    }

    .olle-ceo-modal {
        padding: 24px;
    }

    .olle-ceo-modal-box {
        max-width: calc(100vw - 48px);
        max-height: calc(100vh - 48px);
        background: transparent;
    }

    .olle-ceo-picture img {
        width: auto;
        max-width: calc(100vw - 48px);
        max-height: calc(100vh - 48px);
        border-radius: 8px;
    }

    .olle-ceo-modal-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        background: rgba(0, 0, 0, 0.68);
    }

    .olle-ceo-modal-close span {
        top: 18px;
        left: 10px;
        width: 18px;
    }
}

@media (max-width: 480px) {
    .olle-brand-section {
        padding: 95px 18px 95px;
    }

    .olle-brand-title {
        font-size: 30px;
    }

    .olle-brand-desc {
        font-size: 16px;
    }

    .olle-ceo-btn {
        height: 50px;
        margin-top: 38px;
        font-size: 16px;
    }

    .olle-ceo-modal {
        padding: 18px;
    }

    .olle-ceo-modal-box {
        max-width: calc(100vw - 36px);
        max-height: calc(100vh - 36px);
    }

    .olle-ceo-picture img {
        max-width: calc(100vw - 36px);
        max-height: calc(100vh - 36px);
    }
}