/*
 * ParentRoute Home Hero
 */

.pr-home-hero {
	--pr-hero-min-height: 650px;
	--pr-hero-overlay-opacity: 0.15;

	padding-top: 44px;
	padding-bottom: 56px;
}

.pr-home-hero__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			circle at 8% 8%,
			rgba(111, 137, 121, 0.16),
			transparent 33%
		),
		radial-gradient(
			circle at 90% 55%,
			rgba(111, 137, 121, 0.11),
			transparent 30%
		);
}

.pr-home-hero__layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1.03fr)
		minmax(360px, 0.97fr);
	align-items: center;
	gap: clamp(42px, 7vw, 96px);
	min-height: var(--pr-hero-min-height);
}

.pr-home-hero__content {
	max-width: 760px;
}

.pr-home-hero__heading {
	max-width: 14ch;
	margin: 0;
	color: var(--pr-home-text);
	font-family: inherit;
	font-size: clamp(48px, 6.2vw, 90px);
	font-weight: 700;
	line-height: 0.97;
	letter-spacing: -0.06em;
	text-wrap: balance;
}

.pr-home-hero__heading em {
	color: var(--pr-home-accent);
	font-style: normal;
}

.pr-home-hero__text {
	max-width: 650px;
	margin: 26px 0 0;
	color: var(--pr-home-text);
	font-size: clamp(17px, 1.55vw, 21px);
	font-weight: 400;
	line-height: 1.65;
	opacity: 0.76;
}

.pr-home-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.pr-home-hero__micro-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 23px 0 0;
	padding: 0;
	color: var(--pr-home-text);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	list-style: none;
	opacity: 0.72;
}

.pr-home-hero__micro-trust li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.pr-home-hero__micro-trust li span {
	color: var(--pr-home-accent);
	font-weight: 700;
}

.pr-home-hero__media {
	position: relative;
	isolation: isolate;
	min-height: clamp(470px, 52vw, 700px);
	overflow: hidden;
	border-radius: clamp(28px, 4vw, 54px);
	background: #eef1ef;
	box-shadow: 0 34px 90px rgba(20, 29, 24, 0.15);
}

.pr-home-hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pr-home-hero__media-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			to top,
			rgba(9, 18, 13, var(--pr-hero-overlay-opacity)),
			transparent 45%
		);
}

.pr-home-hero__badge {
	position: absolute;
	z-index: 2;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	gap: 11px;
	max-width: calc(100% - 48px);
	padding: 12px 17px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: #17201c;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
	backdrop-filter: blur(14px);
}

.pr-home-hero__badge-icon {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--pr-home-accent);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 989px) {
	.pr-home-hero {
		padding-top: 36px;
	}

	.pr-home-hero__layout {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.pr-home-hero__content {
		max-width: 760px;
	}

	.pr-home-hero__heading {
		max-width: 13ch;
	}

	.pr-home-hero__media {
		min-height: clamp(420px, 80vw, 650px);
	}
}

@media (max-width: 749px) {
	.pr-home-hero {
		padding-top: 28px;
		padding-bottom: 40px;
	}

	.pr-home-hero__layout {
		gap: 34px;
	}

	.pr-home-hero__heading {
		max-width: none;
		font-size: clamp(44px, 13vw, 64px);
	}

	.pr-home-hero__text {
		margin-top: 20px;
		font-size: 17px;
	}

	.pr-home-hero__buttons {
		align-items: stretch;
		margin-top: 26px;
	}

	.pr-home-hero__micro-trust {
		display: grid;
		gap: 8px;
		margin-top: 20px;
	}

	.pr-home-hero__media {
		min-height: min(118vw, 600px);
		border-radius: 28px;
	}

	.pr-home-hero__badge {
		bottom: 14px;
		left: 14px;
		max-width: calc(100% - 28px);
		padding: 10px 14px;
		font-size: 12px;
	}

	.pr-home-hero__badge-icon {
		width: 25px;
		height: 25px;
	}
}