.about-page {
	background: #050c18;
}

.about-page + .site-footer {
	background: #050c18;
}

.about-hero {
	position: relative;
	display: flex;
	min-height: 100svh;
	overflow: clip;
	background: #050c18;
	color: #fff;
}

.about-hero__media,
.about-hero__veil,
.about-hero__grain {
	position: absolute;
	inset: 0;
}

.about-hero__media {
	z-index: 0;
	overflow: hidden;
}

.about-hero__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.about-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.84) contrast(1.03) brightness(0.88);
	transform: scale(1.015);
}

.about-hero__veil {
	z-index: 1;
	background:
		radial-gradient(ellipse at 50% 46%, rgba(5, 12, 24, 0.18) 0%, rgba(5, 12, 24, 0.42) 48%, rgba(5, 12, 24, 0.72) 100%),
		linear-gradient(180deg, rgba(5, 12, 24, 0.44) 0%, rgba(5, 12, 24, 0.12) 34%, rgba(5, 12, 24, 0.72) 100%);
	pointer-events: none;
}

.about-hero__grain {
	z-index: 2;
	opacity: 0.09;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
	pointer-events: none;
}

.about-hero__shell {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(calc(100% - (2 * var(--ldh-gutter))), 1560px);
	min-height: 100svh;
	margin-inline: auto;
	padding: clamp(8rem, 14vh, 10rem) 0 clamp(7rem, 12vh, 9rem);
	text-align: center;
}

.about-hero__chapter {
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
	color: rgba(255, 255, 255, 0.58);
	transform: translateY(-50%);
}

.about-hero__chapter-number,
.about-hero__chapter-label,
.about-hero__location {
	font-size: 0.61rem;
	font-weight: 600;
	letter-spacing: 0.19em;
	line-height: 1;
	text-transform: uppercase;
}

.about-hero__chapter-line {
	width: 1px;
	height: clamp(4.5rem, 12vh, 8rem);
	background: linear-gradient(180deg, #d4bd8d, rgba(212, 189, 141, 0.12));
}

.about-hero__chapter-label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.about-hero__content {
	width: min(100%, 64rem);
	padding-inline: clamp(1rem, 4vw, 4rem);
}

.about-hero__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin: 0 0 clamp(1.5rem, 3vh, 2.25rem);
	color: #d4bd8d;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.4;
	text-transform: uppercase;
}

.about-hero__eyebrow::before,
.about-hero__eyebrow::after {
	width: 2.5rem;
	height: 1px;
	background: currentColor;
	content: "";
}

.about-hero__title {
	max-width: 13ch;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.94);
	font-family: var(--ldh-serif);
	font-size: clamp(3rem, 5vw, 5.8rem);
	font-weight: 400;
	letter-spacing: -0.06em;
	line-height: 0.91;
	text-wrap: balance;
	text-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.28);
}

.about-hero__copy {
	max-width: 46rem;
	margin: clamp(1.8rem, 4vh, 3rem) auto 0;
	padding-top: clamp(1.25rem, 2.5vh, 1.8rem);
	border-top: 1px solid rgba(212, 189, 141, 0.55);
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.12rem);
	line-height: 1.75;
}

.about-hero__copy > :last-child {
	margin-bottom: 0;
}

.about-hero__footer {
	position: absolute;
	right: 0;
	bottom: clamp(1.5rem, 3vh, 2.5rem);
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-hero__location {
	color: rgba(255, 255, 255, 0.52);
}

.about-hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.64rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-decoration: none;
	text-transform: uppercase;
}

.about-hero__scroll-arrow {
	display: grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid rgba(212, 189, 141, 0.5);
	border-radius: 50%;
	transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.about-hero__scroll:hover .about-hero__scroll-arrow,
.about-hero__scroll:focus-visible .about-hero__scroll-arrow {
	background: #d4bd8d;
	color: #050c18;
	transform: translateY(0.2rem);
}

.about-page__continuation {
	height: 1px;
	background: #050c18;
	scroll-margin-top: 6rem;
}

body.ldh-about-page .site-header-wrap:not(.is-scrolled):not(.is-menu-open) {
	border-bottom-color: transparent;
	background: transparent;
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
}

@media (max-width: 900px) {
	.about-hero__image {
		object-position: center center;
	}

	.about-hero__veil {
		background:
			radial-gradient(ellipse at 50% 44%, rgba(5, 12, 24, 0.2) 0%, rgba(5, 12, 24, 0.5) 58%, rgba(5, 12, 24, 0.76) 100%),
			linear-gradient(180deg, rgba(5, 12, 24, 0.46) 0%, rgba(5, 12, 24, 0.18) 30%, rgba(5, 12, 24, 0.8) 100%);
	}

	.about-hero__chapter {
		display: none;
	}
}

@media (max-width: 640px) {
	.about-hero__image {
		object-position: center center;
	}

	.about-hero__veil {
		background:
			radial-gradient(ellipse at 50% 42%, rgba(5, 12, 24, 0.18) 0%, rgba(5, 12, 24, 0.48) 54%, rgba(5, 12, 24, 0.82) 100%),
			linear-gradient(180deg, rgba(5, 12, 24, 0.52) 0%, rgba(5, 12, 24, 0.22) 28%, rgba(5, 12, 24, 0.88) 100%);
	}

	.about-hero__shell {
		justify-content: center;
		width: min(calc(100% - 2.5rem), 36rem);
		padding: 7rem 0 6.5rem;
	}

	.about-hero__content {
		width: 100%;
		padding: 0;
		text-align: left;
	}

	.about-hero__eyebrow {
		justify-content: flex-start;
	}

	.about-hero__eyebrow::after {
		display: none;
	}

	.about-hero__title {
		max-width: 12ch;
		margin-left: 0;
		font-size: clamp(2.5rem, 11vw, 3.8rem);
	}

	.about-hero__copy {
		margin: 1.5rem 0 0;
		padding-top: 1.25rem;
		font-size: 0.95rem;
		line-height: 1.62;
	}

	.about-hero__location {
		display: none;
	}

	.about-hero__footer {
		bottom: 1.2rem;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-hero__scroll-arrow {
		transition: none;
	}
}
