*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
	min-height: 100%;
	-webkit-text-size-adjust: none;
}

body {
	background-color: #ffffff;
	font-family: 'Geist', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #000000;
	margin: 0;
	width: 100%;
	padding-top: 72px;
	opacity: 0;
	animation: pageFadeIn 1600ms cubic-bezier(0.16, 1, 0.3, 1) 100ms forwards;
}

@keyframes pageFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body.is-leaving {
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1), transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-nav {
	position: fixed;
	top: 32px;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	height: 40px;
	padding: 0 2%;
	background-color: #ffffff;
}

.site-nav::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 32px;
	background-color: #ffffff;
	z-index: 9;
}

.site-nav a {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	mix-blend-mode: difference;
	transition: opacity 200ms ease;
}

.site-nav a:hover {
	opacity: 0.6;
}

#grid {
	padding: 0 2% 32px;
}

.row-bio {
	padding-top: 400px;
	padding-bottom: 64px;
}

.bio-text {
	font-size: clamp(20px, 2.8vw, 32px);
	font-weight: 500;
	line-height: 1.25;
	max-width: 75%;
}

.bio-text a {
	color: #767773;
	transition: color 200ms ease;
}

.bio-text a:hover {
	color: #000000;
}

.row-carousel {
	margin-bottom: 8px;
}

.carousel-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 8 / 3;
	overflow: hidden;
	user-select: none;
}

.carousel-inner {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	height: 100%;
	gap: 8px;
	transition: transform 400ms cubic-bezier(0.52, 0.16, 0.24, 1);
	will-change: transform;
}

.carousel-slide {
	flex-shrink: 0;
	width: calc(50% - 4px);
	height: 100%;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0;
	transition: opacity 300ms ease;
}

.carousel-slide img.loaded {
	opacity: 1;
}

.row-meta {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	margin-bottom: 64px;
}

.meta-text {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #767773;
	line-height: 1.2;
	display: block;
}

.meta-right {
	text-align: right;
}

.grid-information {
	padding: 0 2% 32px;
}

.row-info-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
	padding-top: 400px;
}

.col-info-left {
	padding-right: 0;
}

.col-info-right {
	padding-left: 0;
}

.info-block {
	margin-bottom: 32px;
}

.info-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 8px;
}

.info-text {
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	line-height: 1.5;
}

.info-text a {
	color: #767773;
	transition: color 200ms ease;
}

.info-text a:hover {
	color: #000000;
}

img[loading="lazy"] {
	opacity: 0;
	transition: opacity 400ms ease-out;
}

img[loading="lazy"].loaded {
	opacity: 1;
}

@media (max-width: 600px) {
	body {
		padding-top: 72px;
	}

	.site-nav {
		top: 32px;
		padding: 0 16px;
	}

	#grid {
		padding: 0 16px 32px;
	}

	.row-bio {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.bio-text {
		font-size: 20px;
		line-height: 1.3;
		max-width: 100%;
	}

	.carousel-wrap {
		aspect-ratio: 4 / 3;
	}

	.carousel-inner {
		position: relative;
	}

	.carousel-slide {
		width: 100%;
	}

	.row-meta {
		grid-template-columns: 1fr;
		gap: 4px;
		margin-bottom: 48px;
	}

	.meta-right {
		text-align: left;
	}

	.grid-information {
		padding: 0 16px 32px;
	}

	.row-info-content {
		grid-template-columns: 1fr;
		padding-top: 48px;
	}

	.col-info-left {
		padding-right: 0;
		margin-bottom: 32px;
	}

	.col-info-right {
		padding-left: 0;
	}
}


@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
		opacity: 1;
	}

	body.is-leaving {
		transition: none;
	}

	.carousel-track,
	img[loading="lazy"] {
		transition: none;
	}

	img[loading="lazy"] {
		opacity: 1;
	}
}
