Consider the code
\documentclass{book}
\usepackage{lipsum}
\usepackage{titlesec}
\titleformat{\section}
{\sffamily\Large\bfseries}
{\thesection}{1em}{}
\renewcommand{\thesection}{\arabic{section}}
\begin{document}
\thispagestyle{empty}
\section{\leftskip\fill\rightskip-\leftskip\parfillskip\stretch{2}%
I would like to center the Arabic section number above the section title; Moreover, I would like to both left and right justify the title text---with the last line being perfectly centered.}
\lipsum[1]
\end{document}
which produces the output
Remark: For some reason, the command \leftskip\fill\rightskip-\leftskip\parfillskip\stretch{2}% seems to have no effect here.
QUESTION: How may I center the Arabic section number atop the title (which I would like to be both left and right justified---with the last line being centered)? I compile the code with lualatex.
Thank you.

