:root {
	--navy: #1a1f36;
	--slate: #4a5568;
	--gray: #616e7c;
	--light: #f7fafc;
	--white: #ffffff;
	--gold: #c9a227;
	--border: #e2e8f0;
}

.site-header {
	padding: 1rem 0;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 100;
}

.site-header .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.site-header .logo {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 1.25rem;
	color: var(--navy);
	text-decoration: none;
	flex-shrink: 0;
}

.site-header nav {
	display: flex;
	align-items: center;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	white-space: nowrap;
}

.site-header nav::-webkit-scrollbar {
	display: none;
}

.site-header nav a {
	margin-left: 2rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--slate);
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
	padding: 0.25rem 0;
}

.site-header nav a:first-child {
	margin-left: 0;
}

.site-header nav a:hover {
	color: var(--navy);
}

.site-header nav a[aria-current="page"] {
	color: var(--navy);
	font-weight: 600;
}

.site-header nav a[aria-current="page"]::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.35rem;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}

@media (max-width: 768px) {
	.site-header .container {
		gap: 0.75rem;
	}

	.site-header nav a {
		margin-left: 1.25rem;
		font-size: 0.85rem;
	}
}
