.vo-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(222, 222, 222, 0.7);
}

.vo-site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	width: var(--vo-wrap);
	min-height: 86px;
	margin-inline: auto;
}

.vo-brand,
.vo-footer-brand {
	color: var(--vo-ink);
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(1.45rem, 2.2vw, 2.25rem);
	font-weight: 300;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.vo-primary-nav {
	justify-self: center;
}

.vo-menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--vo-line);
	border-radius: var(--vo-radius);
	background: var(--vo-white);
	cursor: pointer;
}

.vo-menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: var(--vo-ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.vo-menu-toggle span + span {
	margin-top: 5px;
}

.vo-site-header.is-menu-open .vo-menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.vo-site-header.is-menu-open .vo-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.vo-site-header.is-menu-open .vo-menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.vo-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 2vw, 2.5rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.vo-menu a {
	color: var(--vo-ink);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.vo-menu a:hover,
.vo-menu .current-menu-item > a {
	text-decoration: underline;
	text-underline-offset: 0.26em;
}

.vo-header-button {
	min-height: 42px;
	padding: 0.72rem 1.05rem;
}

@media (max-width: 980px) {
	.vo-site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 1rem;
		min-height: auto;
		padding: 16px 0;
	}

	.vo-menu-toggle {
		display: inline-flex;
	}

	.vo-primary-nav {
		grid-column: 1 / -1;
		justify-self: start;
		width: 100%;
		display: none;
		overflow: visible;
		padding-bottom: 2px;
	}

	.vo-header-button {
		display: none;
		grid-column: 1 / -1;
	}

	.vo-site-header.is-menu-open .vo-primary-nav {
		display: block;
	}

	.vo-site-header.is-menu-open .vo-header-button {
		display: inline-flex;
		justify-self: start;
	}

	.vo-menu {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 1rem;
		min-width: 0;
	}
}

@media (max-width: 560px) {
	.vo-site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.vo-header-button {
		width: 100%;
	}
}
