.brand-story-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.brand-story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    padding-right: 20px;
}

.story-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    margin: 20px 0 40px;
}

.story-intro strong {
    color: var(--global-palette1);
    font-weight: 700;
}

.story-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.story-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff914d;
    color: #ff914d;
    transition: all 0.3s ease;
}

.story-point:hover .point-icon svg {
    stroke: var(--global-palette1);
    color: var(--global-palette1);
    transform: scale(1.1);
}

.point-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 8px;
}

.point-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--global-palette3);
}

.mission h4,
.vision h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--global-palette3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mission p,
.vision p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 60px;
}

.visual-placeholder svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .brand-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-story-section {
        padding: 60px 20px;
    }
    
    .story-point {
        flex-direction: column;
        text-align: center;
    }
}