* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #f4f1ed;
	color: #181716;
	font-family: "Merriweather", serif;
	font-size: 16px;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}


/* BIOGRAPHY
-------------------------------------------------- */

.biography {
	display: grid;
	grid-template-columns: minmax(0, 43%) minmax(0, 1fr);
	width: 100%;
	min-height: 100vh;
}

.biography__visual,
.biography__content,
.biography__text,
.bio-block,
.bio-copy {
	min-width: 0;
}


/* PHOTO
-------------------------------------------------- */

.biography__visual {
	position: relative;
	background: #111;
}

.biography__visual-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

.biography__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}


/* RIGHT SIDE
-------------------------------------------------- */

.biography__content {
	padding:
		clamp(4rem, 6vw, 7rem)
		clamp(2.5rem, 6vw, 7rem)
		clamp(5rem, 8vw, 9rem);
}


/* HEADER
-------------------------------------------------- */

.biography__header {
	max-width: 760px;
	margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.biography__label {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
	font-family: "Merriweather", serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.biography__label::after {
	content: "";
	width: 70px;
	height: 1px;
	background: currentColor;
	opacity: 0.3;
}

.biography__header h1 {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: clamp(4rem, 6vw, 7.5rem);
	font-weight: 500;
	line-height: 0.82;
	letter-spacing: -0.045em;
	color: #811601;
}

.biography__header h1 span {
 color:#000;	
}

.biography__subtitle {
	margin: 30px 0 0;
	font-family: "Playfair Display", serif;
	font-size: clamp(1.188rem, 1.104rem + 0.278vw, 1.438rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.3;
}


/* TEXT AREA
-------------------------------------------------- */

.biography__text {
	max-width: 800px;
}


/* BIO BLOCK
-------------------------------------------------- */

.bio-block {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: clamp(2rem, 3vw, 4rem);
	margin-top: clamp(2.5rem, 4vw, 4rem);
	padding-top: clamp(2.5rem, 4vw, 4rem);
	border-top: 1px solid rgba(24, 23, 22, 0.16);
}

.bio-block:first-child {
	margin-top: 0;
}


/* UNDATED BLOCK
-------------------------------------------------- */

.bio-block--no-year {
	display: block;
	margin-top: clamp(2.5rem, 4vw, 4rem);
	padding-top: clamp(2.5rem, 4vw, 4rem);
	border-top: 1px solid rgba(24, 23, 22, 0.16);
}

.bio-block--no-year .bio-copy {
	max-width: 740px;
}


/* YEAR
-------------------------------------------------- */

.bio-year {
	font-family: "Playfair Display", serif;
	font-size: clamp(2.8rem, 4vw, 4.5rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.045em;
	color: rgba(24, 23, 22, 0.22);
}

.bio-year--small {
	font-size: clamp(2.4rem, 3.3vw, 3.8rem);
}

.bio-year span {
	display: block;
	margin-top: 10px;
	font-family: "Merriweather", serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}


/* COPY
-------------------------------------------------- */

.bio-copy {
	max-width: 620px;
}

.bio-copy p {
	margin: 0;
	font-family: "Merriweather", serif;
	font-size: clamp(0.95rem, 0.9rem + 0.18vw, 1.05rem);
	font-weight: 300;
	line-height: 1.85;
}

.bio-copy p + p {
	margin-top: 1.6em;
}


/* WEBSITE
-------------------------------------------------- */

.biography__website {
	margin-top: clamp(5rem, 8vw, 8rem);
	padding-top: 30px;
	border-top: 1px solid rgba(24, 23, 22, 0.16);
}

.biography__website a {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.biography__website a:hover {
	text-decoration: underline;
}


/* TABLET
-------------------------------------------------- */

@media (max-width: 1100px) {

	.biography__content {
		padding-left: 40px;
		padding-right: 40px;
	}

	.bio-block {
		grid-template-columns: 95px minmax(0, 1fr);
		gap: 25px;
	}

}


/* TABLET / MOBILE
-------------------------------------------------- */

@media (max-width: 980px) {

	.biography {
		display: block;
	}

	.biography__visual-sticky {
		position: relative;
		height: 78svh;
	}

	.biography__image {
		object-position: center 15%;
	}

	.biography__content {
		padding: 70px 30px 100px;
	}

	.biography__header {
		max-width: 680px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: clamp(3rem, 5vw, 5rem);
	}

	.biography__header h1 {
		font-size: clamp(4rem, 15vw, 6rem);
	}

	.biography__text {
		max-width: 680px;
		margin-left: auto;
		margin-right: auto;
	}

	.bio-block {
		grid-template-columns: 90px minmax(0, 1fr);
		gap: 25px;
	}

	.bio-block--no-year .bio-copy {
		max-width: none;
	}

}


/* SMALL MOBILE
-------------------------------------------------- */

@media (max-width: 600px) {

	.biography__visual-sticky {
		height: 68svh;
	}

	.biography__content {
		padding: 55px 20px 80px;
	}

	.biography__header {
		margin-bottom: 50px;
	}

	.biography__label {
		margin-bottom: 25px;
	}

	.biography__header h1 {
		font-size: clamp(3.5rem, 17vw, 5rem);
	}

	.biography__subtitle {
		margin-top: 22px;
	}

	.bio-block,
	.bio-block--no-year {
		display: block;
		margin-top: 40px;
		padding-top: 40px;
	}

	.bio-year {
		margin-bottom: 27px;
		font-size: clamp(3.4rem, 17vw, 4.8rem);
	}

	.bio-year--small {
		font-size: clamp(3rem, 15vw, 4.2rem);
	}

	.bio-year span {
		display: inline-block;
		margin: 0 0 0 10px;
		vertical-align: middle;
	}

	.bio-copy {
		max-width: none;
	}

	.bio-copy p {
		font-size: 15px;
		line-height: 1.8;
	}

}