/* ==========================================================
   JT MAISON — Branding Intro Widget
   ========================================================== */

.jtm-branding-intro {
    width: 100%;
    padding: 100px 40px;
    background: var(--jtm-white);
    box-sizing: border-box;
}

.jtm-branding-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* === TOP SECTION === */
.jtm-branding-intro__top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

/* Left: Top aligned */
.jtm-branding-intro__top-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Center: Image dictates height */
.jtm-branding-intro__top-center {
    flex: 0 0 35%; /* Adjust width of image */
    align-self: center;
}

.jtm-branding-intro__top-center img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right: Bottom aligned */
.jtm-branding-intro__top-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

.jtm-branding-intro__title-huge {
    font-family: var(--jtm-font-ui);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: bold;
    color: var(--jtm-dark);
    margin: 0;
    line-height: 1.2;
}

.jtm-branding-intro__subtext {
    font-family: var(--jtm-font-ui);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    max-width: 280px; /* Force it to wrap like the design */
    margin: 20px 0 0 0;
    line-height: 1.5;
}

/* === BOTTOM SECTION === */
.jtm-branding-intro__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 140px;
    gap: 60px;
}

.jtm-branding-intro__bottom-left {
    flex: 0 0 45%;
}

.jtm-branding-intro__subtitle {
    font-family: var(--jtm-font-ui);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.jtm-branding-intro__title {
    font-family: var(--jtm-font-ui);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: bold;
    color: var(--jtm-dark);
    margin: 0;
    line-height: 1.2;
}

.jtm-branding-intro__bottom-right {
    flex: 0 0 45%;
    margin-top: 36px; /* Push down to align with title text visually */
}

.jtm-branding-intro__desc {
    font-family: var(--jtm-font-ui);
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    margin: 0;
}

.jtm-branding-intro__desc p {
    margin: 0 0 16px 0;
}

.jtm-branding-intro__desc p:last-child {
    margin-bottom: 0;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
    .jtm-branding-intro {
        padding: 60px 24px;
    }
    
    .jtm-branding-intro__top {
        flex-direction: column;
        gap: 30px;
    }
    
    .jtm-branding-intro__top-left {
        align-items: flex-start;
        text-align: left;
    }
    
    .jtm-branding-intro__top-center {
        width: 100%; /* Image takes full width or mostly full width */
    }
    
    .jtm-branding-intro__top-right {
        align-items: flex-end;
        text-align: right;
    }
    
    .jtm-branding-intro__title-huge {
        font-size: 36px;
    }
    
    .jtm-branding-intro__bottom {
        flex-direction: column;
        margin-top: 80px;
        gap: 30px;
    }
    
    .jtm-branding-intro__bottom-left,
    .jtm-branding-intro__bottom-right {
        flex: 1 1 100%;
        margin-top: 0;
    }
    
    .jtm-branding-intro__title {
        font-size: 28px;
    }
}
