* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
}

html,
body {
	margin: 0;
	background: #0a0a0a;
	color: #fff;
	font-family: "Montserrat", "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.stage,
.about {
	height: 100dvh;
	min-height: 100dvh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.stage {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.veil {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.32);
}

.coords {
	position: absolute;
	top: 1.4rem;
	right: 1.6rem;
	z-index: 1;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.1em;
	font-family: "EB Garamond", "Times New Roman", serif;
	font-size: clamp(0.78rem, 1.4vw, 1rem);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.25;
	color: #fff;
}

.title {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 1.5rem 1.5rem 4.5rem;
	text-align: center;
	line-height: 1.05;
	letter-spacing: -0.07em;
}

.brand {
	display: block;
	font-size: clamp(2.6rem, 8vw, 6.5rem);
	font-weight: 400;
	text-shadow: 2px 2px 0 #000;
}

.brand b {
	font-weight: 700;
}

.line {
	display: block;
	margin-top: 0.18em;
	font-size: clamp(1.35rem, 3.6vw, 2.6rem);
	font-weight: 400;
	letter-spacing: -0.04em;
}

.down {
	position: absolute;
	left: 50%;
	bottom: 3.25rem;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	color: #fff;
	text-decoration: none;
	translate: -50% 0;
	filter: drop-shadow(1px 1px 0 #000);
}

.down-icon {
	display: grid;
	place-items: center;
	animation: bounce 1.5s ease-in-out infinite;
}

.about {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	background: #0a0a0a;
}

.about-copy {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1.75rem, 6vw, 5rem);
}

.text-box {
	max-width: 28rem;
	font-size: clamp(1.02rem, 1.7vw, 1.28rem);
	line-height: 1.55;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.text-box p {
	margin: 0 0 1em;
}

.text-box p:last-child {
	margin-bottom: 0;
}

.text-box b {
	font-weight: 700;
}

.text-box a {
	color: inherit;
	text-decoration: none;
}

.text-box .legal {
	margin-top: 1.75em;
	font-size: 0.55em;
	line-height: 1.4;
	letter-spacing: 0;
	opacity: 0.72;
}

.text-box a:hover {
	opacity: 0.75;
}

.about-media {
	min-height: 0;
	height: 100%;
	overflow: hidden;
}

.about-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
		scroll-snap-type: none;
	}

	.bg-video {
		display: none;
	}

	.stage {
		background: #111;
	}

	.down-icon {
		animation: none;
	}
}

@media (max-width: 800px) {
	.about {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 100dvh;
	}

	.about-copy {
		min-height: 42dvh;
		padding: 2.25rem 1.5rem;
	}

	.about-media {
		height: 58dvh;
		min-height: 16rem;
	}
}
