:root {
	--night: #05070b;
	--surface: #111821;
	--surface-soft: #18242b;
	--ink: #f4efe4;
	--muted: #aeb9bd;
	--gold: #e8b85d;
	--teal: #77d3c4;
	--line: rgba(232, 184, 93, 0.3);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	color: var(--ink);
	background:
		linear-gradient(rgba(119, 211, 196, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(119, 211, 196, 0.04) 1px, transparent 1px),
		linear-gradient(145deg, var(--night), #0e141c 58%, #17130d);
	background-size: 42px 42px, 42px 42px, auto;
	font-family: "Manrope", sans-serif;
}

a {
	color: inherit;
}

.site-header {
	min-height: 68px;
	padding: 0 5vw;
	border-bottom: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: rgba(5, 7, 11, 0.88);
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-family: "Cinzel", serif;
	text-decoration: none;
	text-transform: uppercase;
}

.brand img {
	width: 34px;
	height: 34px;
}

.site-nav {
	display: flex;
	gap: 1rem;
}

.site-nav a {
	color: var(--muted);
	font-size: 0.75rem;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
	color: var(--gold);
}

.shell {
	width: min(1040px, 90vw);
	margin: 0 auto;
	padding: clamp(3rem, 9vh, 7rem) 0;
}

.eyebrow {
	margin: 0 0 0.75rem;
	color: var(--teal);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

h1,
h2 {
	font-family: "Cinzel", serif;
}

h1 {
	max-width: 14ch;
	margin: 0;
	font-size: clamp(2.2rem, 8vw, 5.6rem);
	line-height: 0.98;
}

.lead {
	max-width: 58ch;
	margin: 1.4rem 0 0;
	color: var(--muted);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.65;
}

.action {
	display: inline-flex;
	margin-top: 2rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--gold);
	border-radius: 6px;
	color: #161109;
	background: var(--gold);
	font-weight: 700;
	text-decoration: none;
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: clamp(3rem, 8vh, 6rem);
	border: 1px solid var(--line);
	background: var(--line);
}

.field {
	min-height: 170px;
	padding: 1.25rem;
	background: var(--surface);
}

.field:nth-child(2) {
	background: var(--surface-soft);
}

.field h2 {
	margin: 0;
	color: var(--gold);
	font-size: 1rem;
}

.field p {
	margin: 0.8rem 0 0;
	color: var(--muted);
	line-height: 1.55;
}

@media (max-width: 680px) {
	.site-header {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 1rem;
	}

	.field-grid {
		grid-template-columns: 1fr;
	}
}
