/* Reset */

body,
*,
*::before,
*::after {
	box-sizing: border-box;
}
body,
* {
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
body {
	background: #fff;
	color: #6d777e;
	font: 20px Inter, sans-serif;
	position: relative;
}
main {
	display: block;
}
img {
	max-width: 100%;
}
svg {
	overflow: hidden;
}
img,
picture {
	display: inline-block;
}
picture > img {
	vertical-align: top;
}

/* Fonts */

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 200;
	src: url('/assets/fonts/inter-extralight.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 300;
	src: url('/assets/fonts/inter-light.woff2') format('woff2');
	font-display: swap;
}

/* Page */

body {
	font-weight: 300;
	letter-spacing: -0.02em;
}
.wrapper {
	margin: 0 auto;
	max-width: 1920px;
	padding: 40px 0 120px;
}
.header {
	margin: 0 20px;
}
.logo {
	height: 32px;
	position: relative;
	width: 100px;
}
.logo.-sticky {
	position: fixed;
	top: 40px;
}
.copy {
	margin: 0 20px;
	max-width: 340px;
	padding: 50px 0 40px 0;
	position: relative;
}
.copy__title {
	font-size: 46px;
	font-weight: 200;
	line-height: 1em;
	margin-bottom: 30px;
	text-transform: lowercase;
}
.copy__body {
	line-height: 1.5em;
	margin-bottom: 0;
}
.cta {
	background: #fff;
	bottom: 20px;
	font-size: 18px;
	left: 0;
	padding: 14px 30px 18px 20px;
	position: fixed;
	z-index: 100;
}
.cta__label {
	margin-bottom: 6px;
}
.cta__links {
	display: flex;
}
.cta__link {
	color: #6d777e;
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
}
.cta__link:hover {
	color: #41474b;
}
.cta__link:active {
	color: #000;
}
.cta__link:first-child {
	margin-right: 12px;
}
.photos {
	margin-bottom: 30px;
}
.photos__image > img {
	height: auto;
	margin-bottom: 12px;
	width: 100%;
}
.footer {
	font-size: 16px;
	margin: 0 20px;
}

@media (min-width: 640px) {
	body {
		font-size: 20px;
	}
	.wrapper {
		padding-bottom: 140px;
	}
	.header {
		margin-left: 40px;
	}
	.copy {
		max-width: 520px;
		margin: 0 40px;
		padding-bottom: 70px;
		padding-top: 60px;
	}
	.copy__title {
		font-size: 72px;
	}
	.copy__body {
		font-size: 22px;
		max-width: 490px;
	}
	.cta {
		bottom: 40px;
		display: flex;
		font-size: 20px;
		padding: 30px 50px 30px 40px;
	}
	.cta__label {
		margin-bottom: 0;
		margin-right: 16px;
	}
	.photos__image > img {
		margin-bottom: 20px;
	}
	.footer {
		margin: 0 40px;
	}
}

@media (min-width: 1280px) {
	.header {
		margin-bottom: 60px;
		margin-left: 60px;
	}
	.main {
		display: flex;
		flex-direction: row-reverse;
	}
	.copy {
		flex-shrink: 0;
		margin-left: 80px;
		margin-right: 60px;
		padding-bottom: 0;
		padding-top: 40px;
	}
	.copy__title {
		margin-bottom: 50px;
	}
	.copy__body {
		margin-bottom: 30px;
	}
	.photos {
		max-width: calc(100% - 600px);
	}
	.footer {
		margin-left: 60px;
	}
}

@media (min-width: 1280px) and (min-height: 640px) {
	.wrapper {
		padding-bottom: 40px;
	}
	.copy {
		align-self: flex-start;
		position: sticky;
		top: 60px;
	}
	.cta {
		padding: 0;
		position: static;
	}
}

@media (min-width: 1360px) {
	.copy {
		margin-right: 80px;
	}
}

@media (min-width: 1440px) {
	.copy {
		margin-right: 10%;
	}
}

/* Animations */

.logo {
	animation: logoAnimation ease 1s;
}

@keyframes logoAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.copy__title,
.copy__body,
.cta {
	animation: copyAnimation ease 0.8s;
}

@keyframes copyAnimation {
	0% {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.photos__image {
	animation: photosAnimation ease 1.2s;
}

@keyframes photosAnimation {
	0% {
		opacity: 0;
		transform: translate3d(0, 30px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}