/**
 * HINT Home — hero with full-bleed video.
 */

.hint-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
	color: #ffffff;
	background-color: #0a0a0a;
	padding-inline: var(--hint-space-3);
	padding-block: calc(var(--hint-header-height) + var(--hint-space-6)) calc(var(--hint-footer-height, 72px) + var(--hint-space-5));
	box-sizing: border-box;
}

.hint-hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.hint-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.48);
	pointer-events: none;
}

/* Centered box; text stack left-aligned inside. */
.hint-hero__box {
	position: relative;
	z-index: 2;
	width: min(100%, 42rem);
	text-align: left;
}

.hint-hero__brand,
.hint-hero__tagline,
.hint-hero__year,
.hint-hero__soon,
.hint-hero__more {
	margin: 0;
}

.hint-hero__brand {
	font-family: var(--hint-font-heading);
	font-size: clamp(4rem, 12vw, 7.5rem);
	font-weight: var(--hint-weight-bold);
	line-height: 0.92;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	color: #ffffff;
}

.hint-hero__tagline {
	margin-top: var(--hint-space-3);
	font-family: var(--hint-font-body);
	font-size: clamp(1.05rem, 2.2vw, 1.375rem);
	font-weight: var(--hint-weight-regular);
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.9);
	max-width: 22em;
}

.hint-hero__year {
	margin-top: var(--hint-space-3);
	display: flex;
	align-items: baseline;
	gap: 0.35em;
	font-family: var(--hint-font-heading);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: var(--hint-weight-medium);
	line-height: var(--hint-leading-heading);
	letter-spacing: 0.12em;
	color: var(--hint-color-accent);
	text-transform: lowercase;
}

.hint-hero__year-sep {
	display: inline-block;
	font-size: 1.35em;
	font-weight: var(--hint-weight-bold);
	line-height: 1;
	letter-spacing: 0;
	transform: translateY(0.05em);
}

.hint-hero__soon {
	margin-top: var(--hint-space-5);
	font-family: var(--hint-font-heading);
	font-size: clamp(3rem, 9vw, 5.5rem);
	font-weight: var(--hint-weight-bold);
	line-height: 0.95;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.hint-hero__more {
	margin-top: var(--hint-space-4);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45em 0.75em;
	font-family: var(--hint-font-body);
	font-size: clamp(1rem, 2vw, 1.125rem);
	font-weight: var(--hint-weight-regular);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.88);
}

.hint-hero__more-label {
	font-weight: var(--hint-weight-medium);
}

.hint-hero a.hint-hero__more-email {
	/* Color from Elementor Theme Style → Links. */
	text-decoration: none;
	border-bottom: var(--hint-border-width) solid currentColor;
	transition: color 0.15s ease, border-color 0.15s ease;
	opacity: 0.95;
}

.hint-hero a.hint-hero__more-email:hover,
.hint-hero a.hint-hero__more-email:focus-visible {
	opacity: 1;
	border-bottom-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
	.hint-hero__video {
		display: none;
	}
}
