I'm trying to redraw existing figures with TikZ as an exercise to learn it. This time I have choosen an interesting logo and I'm having difficulties drawing the arc. Here is the logo

I noticed that the red arc looks almost like an incomplete ellipse and found the interesting arc option in the manual. This may not be the best approach since the end of the arc (close to the last 'n') seems to deviate from the ellipse shape. Anyway, what I'm really interested is not the arc construction (I may file a separate question for that), but how I could draw the arc with varying line thickness. I.e. it starts very thin, and smoothly increases and decreases again.
Here's what I got so far (note: font is not right ... probably propriatary):
\begin{tikzpicture}[font=\sffamily]
% font: the 'n' has some funny curvature
\definecolor{infblue}{HTML}{0066b3}
\definecolor{infred}{HTML}{ec1840}
% guessing boundary conditions
\coordinate (upperred) at (2.,1.6);
\coordinate (rightred) at (3.6,0.7);
% helpers
\fill[gray] (upperred) circle (1pt);
\fill[gray] (rightred) circle (1pt);
%\draw (upperred) .. controls (-4,4) and (6,0) .. (rightred);
%\draw plot [smooth,tension=0.7] coordinates {(upperred) (Iblue) (rightred)};
\node[rectangle] at (2,1) {\Huge \textcolor{infblue}{Infineon}};
\draw[thick,infred] (upperred) arc[start angle=85,end angle=330,x radius=18mm, y radius=6mm];
% todo: initial 'I' is shorter. replace.
\end{tikzpicture}




