.about-hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background: #101010;
	color: #fff;
}

.about-hero__media {
	position: absolute;
	inset: 0 0 0 auto;
	width: 46%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.about-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	filter: grayscale(100%);
	transform: scale(1.02);
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			#101010 0%,
			#101010 46%,
			rgba(16, 16, 16, 0.75) 59%,
			rgba(16, 16, 16, 0.08) 100%
		),
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.55) 0%,
			transparent 28%,
			rgba(0, 0, 0, 0.35) 100%
		);
}

.about-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 100svh;
	padding-top: clamp(10rem, 18vh, 14rem);
	padding-bottom: clamp(2rem, 5vw, 4rem);
	flex-direction: column;
	justify-content: space-between;
}

.about-hero__content {
	width: min(68%, 68rem);
}

.about-hero__eyebrow {
	margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.about-hero__eyebrow::before {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	margin-right: 0.75rem;
	border-radius: 0.15rem;
	background: var(--color-accent, #d52b22);
	content: "";
}

.about-hero__title {
	max-width: 13ch;
	margin: 0;
	color: #fff;
	font-size: clamp(4rem, 8.7vw, 10.5rem);
	font-weight: 700;
	line-height: 0.86;
	letter-spacing: -0.065em;
	text-transform: uppercase;
}

.about-hero__title > span {
	display: block;
}

.about-hero__title > span:last-child {
	color: transparent;
	-webkit-text-stroke: clamp(1px, 0.12vw, 2px) #fff;
}

.about-hero__lead {
	max-width: 39rem;
	margin: clamp(2rem, 4vw, 3.5rem) 0 0;
	font-size: clamp(1rem, 1.35vw, 1.25rem);
	line-height: 1.5;
}

.about-hero__meta {
	display: flex;
	width: min(52%, 47rem);
	padding-top: 1.25rem;
	justify-content: space-between;
	gap: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-hero__meta p {
	margin: 0;
}

@media (max-width: 959px) {
	.about-hero__media {
		inset: 0;
		width: 100%;
	}

	.about-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(0, 0, 0, 0.72) 0%,
				rgba(0, 0, 0, 0.35) 42%,
				rgba(0, 0, 0, 0.92) 100%
			);
	}

	.about-hero__content,
	.about-hero__meta {
		width: 100%;
	}

	.about-hero__title {
		font-size: clamp(3.5rem, 13vw, 7rem);
	}

	.about-hero__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.5rem;
	}
}

.about-hero__title-word {
	display: inline-block;
	will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
	.about-hero__media img,
	.about-hero__eyebrow,
	.about-hero__title-word,
	.about-hero__lead,
	.about-hero__meta p {
		opacity: 1 !important;
		transform: none !important;
	}
}