@font-face {
	font-family: "Objective";
	src: url("./fonts/Objective-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Objective";
	src: url("./fonts/Objective-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	min-height: 100vh;
	min-height: 100svh;
	font-family: "Objective", "Segoe UI", sans-serif;
	background-image: linear-gradient(rgba(27, 32, 38, 0.42), rgba(27, 32, 38, 0.42)), url("./background-desktop.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	color: #ffffff;
}

/* ── Page shell: full-height flex column, logo top, content centred ── */
.page-shell {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 34px 24px 36px;
}

/* ── Logo ── */
.logo-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-shrink: 0;
}

.logo {
	display: block;
	width: clamp(140px, 30vw, 240px);
	height: auto;
}

/* ── Centre content takes remaining space and centres itself ── */
.content-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 760px;
	padding: 32px 28px;
	text-align: center;
}

/* ── Typography ── */
.eyebrow {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 14px;
}

.headline {
	font-size: clamp(2.35rem, 5vw, 4.5rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.description {
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	margin-top: 18px;
}

.link {
	display: inline-block;
	font-size: clamp(1.5rem, 5vw, 3rem);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	word-break: break-word;
	margin-top: 6px;
}

/* ── Social icons ── */
.social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 2rem;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.42);
	transform: translateY(-2px);
}

/* ── Accessibility ── */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Mobile ── */
@media (max-width: 720px) {
	body {
		background-image: linear-gradient(rgba(27, 32, 38, 0.36), rgba(27, 32, 38, 0.36)), url("./background-mobile.webp");
		background-position: center top;
		background-attachment: scroll;
	}

	.page-shell {
		padding: 28px 16px 28px;
		justify-content: flex-start;
	}

	.logo-wrap {
		justify-content: center;
	}

	.logo {
		width: clamp(120px, 50vw, 200px);
	}

	.content-wrap {
		max-width: 100%;
		padding: 24px 16px;
	}

	.headline {
		font-size: clamp(1.5rem, 10vw, 3.2rem);
	}

	.social-links {
		gap: 12px;
		margin-top: 22px;
	}
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	.social-link {
		transition: none;
	}
}
