.nv-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(253, 251, 247, 0.92);
	backdrop-filter: blur(22px);
	border-bottom: 1px solid rgba(230, 222, 212, 0.9);
}
.nv-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 16px;
	padding-bottom: 16px;
}
.nv-header-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	white-space: nowrap;
}
.nv-header-logo {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(
		circle at 30% 0%,
		#fff 0,
		rgba(248, 243, 235, 0.95) 45%,
		rgba(216, 209, 198, 0.95) 100%
	);
	box-shadow: 0 10px 24px rgba(12, 10, 6, 0.18);
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 18px;
	color: var(--color-heading);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.nv-header-brand-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.nv-header-brand-title {
	font-family: var(--font-serif);
	font-size: 18px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-heading);
}
.nv-header-brand-subtitle {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gray-500);
}
.nv-header-nav {
	display: flex;
	align-items: center;
}
.nv-header-nav-list {
	display: flex;
	align-items: center;
	gap: 10px;
}
.nv-header-nav-link {
	position: relative;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--gray-700);
	padding: 6px 0;
}
.nv-header-nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--color-accent), var(--color-cta));
	transition: width var(--transition-base);
}
.nv-header-nav-link:hover::after,
.nv-header-nav-link:focus-visible::after {
	width: 100%;
}
.nv-header-cta-link {
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid rgba(184, 92, 56, 0.8);
	background: linear-gradient(
		135deg,
		rgba(184, 92, 56, 0.12),
		rgba(200, 162, 76, 0.16)
	);
	box-shadow: 0 12px 30px rgba(12, 10, 6, 0.12);
	color: var(--color-cta);
	font-size: 12px;
}
.nv-header-cta-link:hover {
	background: linear-gradient(
		135deg,
		rgba(184, 92, 56, 0.22),
		rgba(200, 162, 76, 0.24)
	);
	color: var(--color-cta-hover);
}
.nv-header-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(216, 209, 198, 0.95);
	background: rgba(253, 251, 247, 0.9);
	box-shadow: 0 10px 24px rgba(12, 10, 6, 0.12);
}
.nv-header-toggle-bar {
	width: 18px;
	height: 1.6px;
	border-radius: 999px;
	background: var(--gray-800);
	transition:
		transform var(--transition-base),
		opacity var(--transition-base),
		background-color var(--transition-base);
}
.nv-header-toggle-bar + .nv-header-toggle-bar {
	margin-top: 5px;
}
.nv-header-toggle[aria-expanded="true"] .nv-header-toggle-bar:first-child {
	transform: translateY(3.6px) rotate(45deg);
}
.nv-header-toggle[aria-expanded="true"] .nv-header-toggle-bar:last-child {
	transform: translateY(-3.6px) rotate(-45deg);
}
.nv-header-toggle[aria-expanded="true"] .nv-header-toggle-bar {
	background: var(--color-cta-hover);
}
@media (max-width: 900px) {
	.nv-header-inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.nv-header-toggle {
		display: inline-flex;
	}
	.nv-header-nav {
		position: fixed;
		inset: 0 0 auto auto;
		top: 64px;
		left: 0;
		right: 0;
		transform: translateY(-6px);
		opacity: 0;
		pointer-events: none;
		transition:
			opacity var(--transition-base),
			transform var(--transition-base);
		background: rgba(253, 251, 247, 0.98);
		backdrop-filter: blur(18px);
		border-bottom: 1px solid rgba(230, 222, 212, 0.98);
	}
	.nv-header-nav-list {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 24px 20px;
		gap: 14px;
	}
	.nv-header-nav-link {
		font-size: 13px;
	}
	.nv-header-cta-link {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.nv-header-nav.is-open {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}
@media (max-width: 520px) {
	.nv-header-brand-subtitle {
		display: none;
	}
	.nv-header-brand-title {
		font-size: 16px;
	}
}
