
html,
body {
    height: 100%;
    min-height: 100%;
}
body { margin: 0; }


@font-face {
    font-family: "HelveticaNeue";
    src: url("/CSS/HelveticaNeueRoman.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "HelveticaNeue";
    src: url("/CSS/HelveticaNeueBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}


body {
    background: #fff;
    color: #000;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* -----------------------------------
   DESKTOP LAYOUT
--------------------------------------*/
.landing-desktop {
    width: 100%;
    height: 100vh;
    display: flex;
}

.col-left,
.col-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.col-left img,
.col-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LOGO */
.landing-desktop .landing-logo {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 12vw;
	height: auto;
}

/* SEASON TEXT */
.season {
    position: absolute;
    bottom: 10%;
    right: 5vw;
    display: flex;
    gap: 5vw;
    font-weight: 300;
	font-size: 1.5vw;
	line-height: 1.1em;
	text-align: left;
    color: #FFF;
}
.season-inner {
    display: flex;
	gap: 2.5vw;
}

.season .year {
    font-weight: normal;
}

/* -----------------------------------
   MOBILE LAYOUT
--------------------------------------*/
.landing-mobile {
    display: none;
    position: relative;
    width: 100%;
	height: 100vh;
}

.landing-mobile img {
    width: 100%;
    height: 100%;
	object-fit: cover;
	position: absolute;
}

.mobile-text {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
}

.mobile-text .landing-logo {
    width: 30vw;
	min-width: 200px;
	height: auto;
	position: relative;
}

.mobile-text .coming {
    margin-top: 40px;
    font-size: 14px;
	color: #333333;
}

/* -----------------------------------
   RESPONSIVE BREAKPOINTS
--------------------------------------*/
@media (max-width: 850px) {
    .landing-desktop {
        display: none;
    }
    .landing-mobile {
        display: block;
    }
}