@font-face {
	font-family: Vollkorn;
	src: url("vollkorn-var.woff2") format("woff2");
	font-display: swap;
}

@font-face {
	font-family: Manrope;
	src: url("manrope-var.woff2") format("woff2");
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background:
		radial-gradient(ellipse at 50% 20%, rgba(212, 148, 31, 0.07) 0%, transparent 55%),
		linear-gradient(160deg, #1a1208 0%, #0d0907 50%, #030201 100%);
	color: #e8e2d8;
	font-family: Manrope, system-ui, -apple-system, sans-serif;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stripe {
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #d4941f 30%, #edb83a 50%, #d4941f 70%, transparent);
	flex-shrink: 0;
}

main {
	max-width: 26rem;
	width: 100%;
	padding: 3rem 1.5rem 4rem;
	text-align: center;
}

.logo-wrap {
	margin-bottom: 1.5rem;
	animation: fade-up 0.6s ease-out both;
}

.logo {
	width: 5rem;
	height: auto;
	filter: drop-shadow(0 0 1.5em rgba(212, 148, 31, 0.35));
}

h1 {
	font-family: Vollkorn, Georgia, serif;
	font-weight: 900;
	font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
	color: #fff;
	text-shadow: 0 0 0.75em rgba(212, 148, 31, 0.25);
	letter-spacing: 0.02em;
	line-height: 1.15;
	margin-bottom: 0.375rem;
	animation: fade-up 0.6s ease-out 0.08s both;
}

.subtitle {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #857161;
	margin-bottom: 2.5rem;
	animation: fade-up 0.6s ease-out 0.14s both;
}

.links {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.link-card {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.875rem 1.125rem;
	background: rgba(212, 148, 31, 0.04);
	border: 1px solid rgba(212, 148, 31, 0.12);
	border-left: 3px solid rgba(212, 148, 31, 0.4);
	border-radius: 0.625rem;
	color: #e8e2d8;
	text-decoration: none;
	transition: all 0.25s ease;
	animation: fade-up 0.5s ease-out both;
}

.link-card:nth-child(1) { animation-delay: 0.22s; }
.link-card:nth-child(2) { animation-delay: 0.30s; }
.link-card:nth-child(3) { animation-delay: 0.38s; }
.link-card:nth-child(4) { animation-delay: 0.46s; }
.link-card:nth-child(5) { animation-delay: 0.54s; }

.link-card:hover,
.link-card:focus-visible {
	background: rgba(212, 148, 31, 0.08);
	border-color: rgba(212, 148, 31, 0.3);
	border-left-color: #d4941f;
	box-shadow: 0 0.25rem 1.5rem rgba(212, 148, 31, 0.12);
	transform: translateY(-2px);
}

.link-card:active {
	transform: translateY(0);
	transition-duration: 0.1s;
}

.link-icon {
	flex-shrink: 0;
	width: 1.375rem;
	height: 1.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.link-icon svg {
	width: 100%;
	height: 100%;
	stroke: #d4941f;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.link-text {
	flex: 1;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.link-label {
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
}

.link-desc {
	font-size: 0.6875rem;
	color: #857161;
	font-weight: 500;
	letter-spacing: 0.02em;
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(0.75rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-delay: 0ms !important;
		transition-duration: 0.01ms !important;
	}
}
