:root {
	--page-bg: #e8e8e8;
	--ink: #070707;
	--nav-bg: #000000;
	--nav-on: #ffffff;
	--nav-active: #9a9a9a;
	--body-font: "Roboto", sans-serif;
	--title-font: "Monoton", sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-width: 1440px;
	background: #1f1f1f;
	color: var(--ink);
	font-family: var(--body-font);
}

.page-shell {
	width: 1440px;
	margin: 0 auto;
	background: var(--page-bg);
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.top-nav {
	height: 180px;
	background: var(--nav-bg);
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.top-nav nav {
	display: flex;
	align-items: center;
	gap: 45px;
	padding: 66px 0 0 86px;
}

.top-nav a {
	color: var(--nav-on);
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.js-enabled .top-nav a[data-nav] {
	opacity: 0;
	filter: blur(14px);
}

.top-nav a.active,
.top-nav a[aria-current="page"] {
	color: var(--nav-active);
}

.canvas {
	position: relative;
	z-index: 1;
}

.page-copy {
	position: relative;
	z-index: 2;
	font-size: 23px;
	line-height: 1.217;
}

.page-copy p {
	margin: 0;
}

.page-copy p + p {
	margin-top: 20px;
}

.home-canvas {
	min-height: 1520px;
}

.home-hero h1 {
	position: absolute;
	top: 40px;
	left: 160px;
	margin: 0;
	z-index: 3;
	font-family: var(--title-font);
	font-weight: 400;
	line-height: 0.92;
	color: #c10091;
}

.home-hero .line-1,
.home-hero .line-2 {
	display: block;
	font-size: 160px;
	letter-spacing: 2px;
}

.home-hero .hero-line {
	display: block;
	overflow: hidden;
	white-space: nowrap;
}

.home-hero .hero-letter {
	display: inline-block;
	will-change: transform, opacity;
}

.home-hero .line-2 {
	margin-left: 240px;
	margin-top: -12px;
}

.home-portrait {
	position: absolute;
	top: 296px;
	left: 76px;
	width: 581px;
	height: 581px;
	object-fit: cover;
	border-radius: 1000px;
	z-index: 1;
}

.home-copy {
	width: 800px;
	margin-left: 99px;
	padding-top: 918px;
	padding-bottom: 90px;
}

.content-canvas {
	min-height: 1590px;
	padding-bottom: 80px;
}

.copy-block {
	width: 1036px;
	margin-left: 101px;
	padding-top: 90px;
}

.feature-image {
	display: block;
	position: relative;
	z-index: 3;
}

.contribution-image {
	width: 538px;
	height: 673px;
	margin: 90px auto 0;
	object-fit: cover;
}

.inspiring-image {
	width: 642px;
	height: 908px;
	margin: 44px auto 0;
	object-fit: cover;
}

.inspiring-copy {
	width: 800px;
	margin: 70px 0 0 330px;
}

.typeface-copy {
	width: 900px;
	margin-left: 330px;
	padding-top: 123px;
}

.typeface-wordmark {
	width: 740px;
	height: 290px;
	object-fit: cover;
	margin-left: 330px;
	margin-top: 70px;
}

.typeface-sheet {
	width: 1135px;
	height: 542px;
	object-fit: cover;
	margin-left: 179px;
	margin-top: 40px;
}

.analysis-copy {
	width: 1036px;
	margin-left: 298px;
	padding-top: 48px;
}

.analysis-image {
	width: 639px;
	height: 894px;
	object-fit: cover;
	margin-left: 101px;
	margin-top: 68px;
}

.page-home .page-shell {
	background-image: url('../img/sergihomepagebg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-contribution .page-shell {
	background-image: url('../img/sergicontributionpagebg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-inspiring .page-shell {
	background-image: url('../img/sergiinspirepagebg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-typeface .page-shell {
	background-image: url('../img/sergitypefacepagebg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-analysis .page-shell {
	background-image: url('../img/sergianalysispagebg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}