.t4s-hero {
	position: relative;
	height: 85vh;
	overflow: hidden;
}

.t4s-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	transform-origin: center center;
	will-change: transform;
}

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

.t4s-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 50%;
	right: auto;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
	pointer-events: none;
	z-index: 1;
}

.t4s-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.t4s-hero__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 1.5rem;
}

.t4s-hero__title {
	margin: 0;
	font-family: 'Origin Display', sans-serif;
	font-size: clamp(1.75rem, 4vw, 3.25rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
}

.t4s-hero__title strong {
	font-weight: 900;
}

.t4s-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin-top: 0.25rem;
	text-decoration: none;
	color: #fff;
}

.t4s-hero__btn-label {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0.9rem 1.75rem;
	border: 1px solid #fff;
	border-radius: 8px;
	transform: skewX(-18deg);
	background: transparent;
	z-index: 0;
}

.t4s-hero__btn-label::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #fff;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: -1;
}

.t4s-hero__btn-label > span {
	position: relative;
	display: block;
	transform: skewX(18deg);
	font-family: 'Origin', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.35s ease 0.05s;
	z-index: 1;
}

.t4s-hero__btn img {
	width: 2.5rem;
	height: auto;
	margin-left: -0.35rem;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.t4s-hero__btn:hover .t4s-hero__btn-label::before {
	transform: scaleX(1);
}

.t4s-hero__btn:hover .t4s-hero__btn-label > span {
	color: #111;
}

.t4s-hero__btn:hover img {
	transform: translateX(0.85rem);
}

@media (prefers-reduced-motion: reduce) {
	.t4s-hero__btn-label::before,
	.t4s-hero__btn-label > span,
	.t4s-hero__btn img {
		transition: none;
	}

	.t4s-hero__btn:hover .t4s-hero__btn-label {
		background: #fff;
	}
}

@media (max-width: 999px) {
	.t4s-hero {
		height: 75vh;
		min-height: 0;
	}

	.t4s-hero__media::after {
		display: block;
		width: 100%;
		right: 0;
		background: rgba(0, 0, 0, 0.2);
	}

	.t4s-hero__img {
		width: 118%;
		max-width: none;
		height: 100%;
		object-fit: cover;
		object-position: 50% center;
		position: absolute;
		left: 0;
		right: auto;
		top: 0;
	}

	.t4s-hero__content {
		justify-content: flex-end;
		padding-bottom: 4.5rem;
		gap: 1.15rem;
	}

	.t4s-hero__title {
		font-size: clamp(2.35rem, 9vw, 3.1rem);
	}

	.t4s-hero__btn-label {
		padding: 0.75rem 1.25rem;
		transform: skewX(-14deg);
	}

	.t4s-hero__btn-label > span {
		transform: skewX(14deg);
		font-size: 0.75rem;
	}

	.t4s-hero__btn img {
		width: 2rem;
		margin-left: -0.25rem;
	}
}

@media (max-width: 480px) {
	.t4s-hero__content {
		padding-bottom: 6.75rem;
	}

	.t4s-hero__title {
		font-size: 2.25rem;
		line-height: 1.08;
	}
}
