I have a system of equations:
$w(1-v) = v(1+u) \tag{1}$
$(w-1)(u+1) = v-u^2 \tag{2}$
$u^2 (v+1)(w+3)+2 u v (w+1)-v (w+3)+w-1=0 \tag{3}$
First, I would like to know if this system of equations could be further simplified (specially the third equation). You can assume that $u,v,w$ are real numbers with values close to $u=0.389, v=0.469, w=1.229$.
Second (bonus question): Are the solutions to this system related in any interesting way to the golden ratio $\phi$.
Edit: I added a figure below to give an idea where $u,v,w$ came from. In this figure, $u,v,w$ are the (absolute value of) inverse of the slope of the green, red and blue lines.

The roots $u,\,v,\,w = 0.389, 0.469, 1.229$ are roots of cubics with coefficients that are powers of the golden ratio $\phi$ namely,
$$u^3 - 3\phi^2 u^2 + \phi^6u - \phi^2\sqrt{5} = 0$$ $$v^3 + 3\phi^{-2}v^2 + \phi^{-6}v - \phi^{-2} = 0$$ $$w^3 + 3w^2 + \phi^{-2}w - \phi^4 = 0$$
Edit: Courtesy of Somos' answer, we have,
$$u = \phi-w\\ v = w/\phi^2$$
I find $w$ can also be expressed as the nice cubic,
$$\frac{(w+1)^3}{w+3}=\phi^2$$
Using trigonometric or hyperbolic functions, we can solve it simply as,
where $\cos^{-1}x=\text{arccos}\,x$. More traditionally,
$$w = -1+x_1^{1/3}+x_2^{1/3}\approx 1.229\tag{1.1}$$
and $x_i$ are the two roots of,
$$x^2-2\phi^2\,x+\frac{\phi^6}{27}=0$$
$\color{blue}{\text{Further edit:}}$ To address a comment of the OP, the solution to the general cubic,
$$x^3+ax^2+bx+c=0$$
is,
where the $z_i$ are the two roots of the quadratic Lagrange resolvent,
$$z^2 + (2 a^3 - 9 a b + 27 c) z + (a^2 - 3 b)^3 = 0$$
Alternatively,
where $z_1$ is any non-zero root of the resolvent.
The advantage of $(1)$ is it somehow more symmetrical (which I prefer), while the advantage of $(2)$ is you take the cube root of only one value (which is the default of Mathematica) and is useful when the $z_i$ are complex.