.site-header {
	position: relative;
	z-index: 80;
	backdrop-filter: blur(18px);
	background: rgba(7, 7, 7, 0.82);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 0.7rem;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.site-branding__text {
	min-width: 0;
}

.site-title {
	margin: 0;
	font-family: var(--gve-font-display);
	font-size: clamp(1.4rem, 2vw, 2rem);
	line-height: 1.05;
}

.site-title a {
	text-decoration: none;
}

.site-description {
	max-width: 34ch;
	font-size: 0.92rem;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-header__toggle {
	display: none;
	align-items: center;
	gap: 0.7rem;
	min-height: 3rem;
	padding: 0.7rem 1rem;
	border-radius: var(--gve-radius-pill);
	border: 1px solid var(--gve-color-border-strong);
	background: rgba(255, 255, 255, 0.02);
	color: var(--gve-color-text);
	font-weight: 700;
	cursor: pointer;
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible {
	background: rgba(199, 162, 74, 0.08);
	border-color: var(--gve-color-gold-bright);
	color: var(--gve-color-text);
}

.site-header__toggle-icon {
	position: relative;
	display: inline-block;
	width: 1rem;
	height: 0.75rem;
}

.site-header__toggle-icon::before,
.site-header__toggle-icon::after,
.site-header__toggle-icon {
	background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
}

.site-header__toggle-icon::before,
.site-header__toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
}

.site-header__toggle-icon::before {
	top: 0;
}

.site-header__toggle-icon::after {
	bottom: 0;
}

.site-header__navigation {
	padding-block: 0 0.7rem;
}

.gve-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gve-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 2.5rem;
	color: var(--gve-color-text);
	font-weight: 600;
	text-decoration: none;
}

.gve-nav__list a:hover,
.gve-nav__list a:focus-visible {
	color: var(--gve-color-gold-bright);
}

.gve-nav .current-menu-item > a,
.gve-nav .current-menu-ancestor > a {
	color: var(--gve-color-gold-bright);
}

@media (max-width: 960px) {
	.site-header__inner {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.site-header__actions {
		margin-left: auto;
	}

	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__navigation {
		display: block;
		width: 100%;
		padding-block: 0.35rem 0.7rem;
	}

	html.js .site-header__navigation {
		display: none;
	}

	html.js .site-header__navigation.is-open {
		display: block;
	}

	.gve-nav__list {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.35rem;
		padding: 0.35rem 0 0.25rem;
	}

	.gve-nav__list a {
		width: 100%;
		min-height: 2.75rem;
		padding-block: 0.25rem;
	}
}
