/* Homepage hero */
.hero {
	position: relative;
	display: grid;
	min-height: clamp(42rem, 78vh, 52rem);
	align-items: center;
	overflow: hidden;
	background: var(--tt-navy-950);
	color: var(--tt-white);
	isolation: isolate;
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__media {
	z-index: -3;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero__overlay {
	z-index: -2;
	background: var(--tt-gradient-hero);
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	height: 30%;
	background: linear-gradient(0deg, rgba(6, 20, 47, 0.56), transparent);
	content: "";
}

.hero__inner {
	width: 100%;
	padding-block: clamp(5rem, 11vw, 8rem);
}

.hero__content {
	max-width: 760px;
}

.hero h1 {
	margin-bottom: 1.3rem;
	color: var(--tt-white);
	font-size: clamp(2.784rem, 6.09vw, 4.698rem);
	line-height: 0.98;
	text-wrap: balance;
}

.hero__lead {
	max-width: 68ch;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.25rem, 4vw, 3.25rem);
	margin: 3rem 0 0;
	padding: 0;
	list-style: none;
}

.hero__trust li {
	display: grid;
	gap: 0.1rem;
}

.hero__trust strong {
	color: var(--tt-gold-200);
	font-family: var(--tt-font-heading);
	font-size: 1.6rem;
	line-height: 1;
}

.hero__trust span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero__route-lines {
	position: absolute;
	z-index: -1;
	right: -7rem;
	bottom: 4rem;
	width: min(44vw, 640px);
	height: 18rem;
	opacity: 0.65;
	pointer-events: none;
}

.hero__route {
	position: absolute;
	display: block;
	border: 1px solid rgba(236, 199, 128, 0.55);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-radius: 50%;
	transform: rotate(-11deg);
}

.hero__route--one {
	inset: 1rem 2rem 2rem 0;
}

.hero__route--two {
	inset: 4rem 0 0 6rem;
	border-color: rgba(11, 99, 182, 0.55);
	border-right-color: transparent;
	border-bottom-color: transparent;
}

.hero__route-dot {
	position: absolute;
	width: 0.7rem;
	height: 0.7rem;
	border: 2px solid var(--tt-white);
	border-radius: 50%;
	background: var(--tt-gold-500);
	box-shadow: 0 0 22px rgba(236, 199, 128, 0.9);
}

.hero__route-dot--one {
	top: 1.2rem;
	left: 9rem;
}

.hero__route-dot--two {
	right: 5rem;
	bottom: 3rem;
}

.hero__scroll-cue {
	position: absolute;
	right: var(--tt-gutter);
	bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.hero__scroll-cue span {
	width: 1px;
	height: 3rem;
	background: linear-gradient(var(--tt-gold-500), transparent);
}

.services-preview {
	position: relative;
}
