.nlh-site-header {
	position: relative;
	z-index: 100;
	background: var(--nlh-color-white);
	border-bottom: 1px solid var(--nlh-color-border);
}

.nlh-site-header.is-sticky {
	position: sticky;
	top: 0;
}

.nlh-header-container-wide,
.nlh-header-container-full {
	margin-inline: auto;
}

.nlh-header-container-wide {
	width: min(95%, 1800px);
}

.nlh-header-container-full {
	width: 100%;
	padding-inline: 24px;
}

.nlh-header-row,
.nlh-industrial-brand-row,
.nlh-stacked-brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 24px;
}

.nlh-site-branding {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: var(--nlh-logo-width);
	max-width: var(--nlh-logo-width);
}

.nlh-site-branding .custom-logo-link {
	display: block;
	width: var(--nlh-logo-width);
	max-width: var(--nlh-logo-width);
}

.nlh-site-title {
	color: var(--nlh-color-secondary);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0;
}

.nlh-site-branding .custom-logo {
	display: block;
	width: var(--nlh-logo-width);
	max-width: var(--nlh-logo-width);
	height: auto;
}

.nlh-primary-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
}

.nlh-primary-menu,
.nlh-mobile-menu-list,
.nlh-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlh-primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	width: 100%;
	min-width: 0;
}

.nlh-primary-menu.nlh-menu-align-left {
	justify-content: flex-start;
}

.nlh-primary-menu.nlh-menu-align-center {
	justify-content: center;
}

.nlh-primary-menu.nlh-menu-align-right {
	justify-content: flex-end;
}

.nlh-primary-menu li {
	position: relative;
	margin: 0;
}

.nlh-primary-menu a,
.nlh-mobile-menu-list a {
	position: relative;
	display: block;
	color: var(--nlh-color-secondary);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	white-space: nowrap;
}

.nlh-primary-menu > li > a {
	padding: 30px 0;
	transition: color 0.18s ease;
}

.nlh-primary-menu > li > a:hover,
.nlh-primary-menu > li > a:focus,
.nlh-primary-menu > .current-menu-item > a,
.nlh-primary-menu > .current-menu-ancestor > a,
.nlh-primary-menu > .current_page_item > a,
.nlh-primary-menu > .current_page_ancestor > a {
	color: var(--nlh-color-primary);
}

.nlh-primary-menu .menu-item-has-children > a {
	padding-right: 18px;
}

.nlh-primary-menu .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
}

.nlh-primary-menu .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 120;
	min-width: 220px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	border: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
	box-shadow: var(--nlh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nlh-primary-menu .sub-menu .sub-menu {
	left: 100%;
	top: -10px;
}

.nlh-primary-menu li:hover > .sub-menu,
.nlh-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nlh-primary-menu .sub-menu a {
	padding: 11px 18px;
	color: var(--nlh-color-secondary);
	font-size: 0.9rem;
	font-weight: 700;
}

.nlh-primary-menu .sub-menu a:hover,
.nlh-primary-menu .sub-menu a:focus,
.nlh-primary-menu .sub-menu .current-menu-item > a,
.nlh-primary-menu .sub-menu .current_page_item > a {
	background: var(--nlh-color-surface);
	color: var(--nlh-color-primary);
}

.nlh-primary-menu .sub-menu .menu-item-has-children > a::after {
	right: 12px;
	transform: translateY(-50%) rotate(-45deg);
}

.nlh-header-actions,
.nlh-industrial-contact {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.nlh-header-contact-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	color: inherit;
	font-size: 0.88rem;
}

.nlh-header-contact-links a {
	color: inherit;
	font-weight: 700;
}

.nlh-header-search-toggle,
.nlh-header-search-submit,
.nlh-header-search-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nlh-header-search-toggle svg,
.nlh-header-search-submit svg,
.nlh-header-search-close svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.nlh-header-search-toggle:hover,
.nlh-header-search-toggle:focus,
.nlh-header-search-submit:hover,
.nlh-header-search-submit:focus,
.nlh-header-search-close:hover,
.nlh-header-search-close:focus {
	color: var(--nlh-color-primary);
	transform: translateY(-1px);
}

.nlh-header-search-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 130;
	padding: 28px 0;
	background: var(--nlh-color-secondary);
	box-shadow: var(--nlh-shadow);
}

.nlh-header-search-panel[hidden] {
	display: none;
}

.nlh-header-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 680px;
	margin-inline: auto;
}

.nlh-header-search-field {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 50px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.1);
	color: var(--nlh-color-white);
	font-size: 1rem;
	outline: 0;
}

.nlh-header-search-field::placeholder {
	color: rgba(255, 255, 255, 0.68);
}

.nlh-header-search-field:focus {
	border-color: var(--nlh-color-primary);
}

.nlh-header-search-submit,
.nlh-header-search-close {
	color: var(--nlh-color-white);
}

.nlh-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid currentColor;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nlh-menu-toggle svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.nlh-menu-toggle:hover,
.nlh-menu-toggle:focus {
	background: var(--nlh-color-primary);
	border-color: var(--nlh-color-primary);
	color: var(--nlh-color-white);
	transform: translateY(-1px);
}

.nlh-mobile-menu {
	border-top: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
	box-shadow: var(--nlh-shadow);
}

.nlh-mobile-menu-list {
	width: min(var(--nlh-container), calc(100% - 32px));
	margin-inline: auto;
	padding: 14px 0;
}

.nlh-mobile-menu-list li {
	position: relative;
	margin: 0;
}

.nlh-mobile-menu-list a {
	padding: 11px 0;
	color: var(--nlh-color-secondary);
	border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}

.nlh-mobile-menu-list .menu-item-has-children > a {
	padding-right: 48px;
}

.nlh-mobile-submenu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(226, 232, 240, 0.72);
	background: transparent;
	color: var(--nlh-color-secondary);
	cursor: pointer;
}

.nlh-mobile-submenu-toggle::before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.18s ease;
}

.nlh-mobile-menu-list .is-open > .nlh-mobile-submenu-toggle::before {
	transform: translateY(2px) rotate(225deg);
}

.nlh-mobile-menu-list .sub-menu {
	display: none;
	margin: 0;
	padding: 0 0 0 16px;
	list-style: none;
	border-left: 2px solid var(--nlh-color-border);
}

.nlh-mobile-menu-list .is-open > .sub-menu {
	display: block;
}

.nlh-mobile-menu-list .sub-menu .sub-menu {
	margin-left: 0;
}

.nlh-mobile-menu-list .sub-menu a {
	font-size: 0.92rem;
	font-weight: 600;
}

.nlh-mobile-menu-list .current-menu-item > a,
.nlh-mobile-menu-list .current-menu-ancestor > a,
.nlh-mobile-menu-list .current_page_item > a,
.nlh-mobile-menu-list .current_page_ancestor > a {
	color: var(--nlh-color-primary);
}

.nlh-topbar {
	background: var(--nlh-topbar-bg);
	color: var(--nlh-topbar-text);
	font-size: 0.875rem;
}

.nlh-topbar-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 20px;
}

.nlh-topbar-content p {
	margin: 0;
}

.nlh-topbar-content-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	text-align: right;
}

.nlh-topbar-row .nlh-header-contact-links {
	gap: 18px;
}

.nlh-header-default {
	background: var(--nlh-color-secondary);
	border-bottom: 0;
	box-shadow: var(--nlh-shadow);
}

.nlh-header-default .nlh-site-title,
.nlh-header-default .nlh-primary-menu a,
.nlh-header-default .nlh-header-actions,
.nlh-header-default .nlh-menu-toggle {
	color: var(--nlh-color-white);
}

.nlh-header-default .nlh-primary-menu .sub-menu {
	background: var(--nlh-color-secondary);
	border-color: rgba(255, 255, 255, 0.12);
}

.nlh-header-default .nlh-primary-menu .sub-menu a:hover,
.nlh-header-default .nlh-primary-menu .sub-menu a:focus {
	background: rgba(255, 255, 255, 0.08);
}

.nlh-header-default .nlh-primary-menu > li > a:hover,
.nlh-header-default .nlh-primary-menu > li > a:focus,
.nlh-header-default .nlh-primary-menu > .current-menu-item > a,
.nlh-header-default .nlh-primary-menu > .current-menu-ancestor > a,
.nlh-header-default .nlh-primary-menu > .current_page_item > a,
.nlh-header-default .nlh-primary-menu > .current_page_ancestor > a,
.nlh-header-industrial .nlh-primary-menu > li > a:hover,
.nlh-header-industrial .nlh-primary-menu > li > a:focus,
.nlh-header-industrial .nlh-primary-menu > .current-menu-item > a,
.nlh-header-industrial .nlh-primary-menu > .current-menu-ancestor > a,
.nlh-header-industrial .nlh-primary-menu > .current_page_item > a,
.nlh-header-industrial .nlh-primary-menu > .current_page_ancestor > a,
.nlh-header-transparent .nlh-primary-menu > li > a:hover,
.nlh-header-transparent .nlh-primary-menu > li > a:focus,
.nlh-header-transparent .nlh-primary-menu > .current-menu-item > a,
.nlh-header-transparent .nlh-primary-menu > .current-menu-ancestor > a,
.nlh-header-transparent .nlh-primary-menu > .current_page_item > a,
.nlh-header-transparent .nlh-primary-menu > .current_page_ancestor > a {
	color: var(--nlh-color-primary);
}

.nlh-header-transparent {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.22);
}

.nlh-header-transparent .nlh-site-title,
.nlh-header-transparent .nlh-primary-menu > li > a,
.nlh-header-transparent .nlh-header-actions,
.nlh-header-transparent .nlh-menu-toggle {
	color: var(--nlh-color-white);
}

.nlh-header-transparent .nlh-primary-menu .sub-menu a {
	color: var(--nlh-color-secondary);
}

.nlh-header-industrial {
	background: var(--nlh-color-secondary);
	border-bottom: 0;
	box-shadow: var(--nlh-shadow);
}

.nlh-header-industrial .nlh-industrial-brand-row {
	min-height: 90px;
}

.nlh-header-industrial .nlh-site-title,
.nlh-header-industrial .nlh-primary-menu a,
.nlh-header-industrial .nlh-header-actions,
.nlh-header-industrial .nlh-menu-toggle {
	color: var(--nlh-color-white);
}

.nlh-header-industrial .nlh-primary-menu .sub-menu {
	background: var(--nlh-color-secondary);
	border-color: rgba(255, 255, 255, 0.12);
}

.nlh-header-industrial .nlh-primary-menu .sub-menu a:hover,
.nlh-header-industrial .nlh-primary-menu .sub-menu a:focus {
	background: rgba(255, 255, 255, 0.08);
}

.nlh-header-minimal .nlh-header-row {
	min-height: 68px;
}

.nlh-header-boxed {
	padding: 0 0 18px;
	background: var(--nlh-color-surface);
	border-bottom: 0;
}

.nlh-header-boxed .nlh-topbar {
	margin-bottom: 18px;
}

.nlh-header-boxed.is-sticky {
	top: 12px;
}

.nlh-header-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
	padding: 0 22px;
	border: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
	box-shadow: var(--nlh-shadow);
}

.nlh-header-box .nlh-primary-navigation {
	flex: 1 1 auto;
}

.nlh-header-stacked {
	background: var(--nlh-color-white);
}

.nlh-header-stacked .nlh-topbar {
	background: var(--nlh-color-secondary);
}

.nlh-stacked-brand-row {
	min-height: 90px;
}

.nlh-stacked-nav {
	border-top: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
}

.nlh-stacked-nav .nlh-header-row {
	min-height: 56px;
	justify-content: center;
}

.nlh-stacked-nav .nlh-primary-navigation {
	flex: 0 1 auto;
}

.nlh-stacked-nav .nlh-primary-menu {
	justify-content: center;
}

@media (max-width: 1100px) {
	.nlh-primary-menu {
		gap: 18px;
	}

	.nlh-primary-menu a {
		font-size: 0.88rem;
	}
}

@media (max-width: 900px) {
	.nlh-primary-navigation,
	.nlh-header-cta {
		display: none;
	}

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

	.nlh-header-row,
	.nlh-industrial-brand-row,
	.nlh-stacked-brand-row {
		min-height: 72px;
	}

	.nlh-topbar-row {
		flex-direction: column;
		align-items: flex-start;
		padding: 8px 0;
	}

	.nlh-topbar-content-right {
		justify-content: flex-start;
		text-align: left;
	}

	.nlh-header-box {
		min-height: 68px;
	}

	.nlh-stacked-nav {
		display: none;
	}

	.nlh-header-default .nlh-mobile-menu,
	.nlh-header-industrial .nlh-mobile-menu {
		background: var(--nlh-color-secondary);
		border-top-color: rgba(255, 255, 255, 0.12);
	}

	.nlh-header-default .nlh-mobile-menu-list a,
	.nlh-header-industrial .nlh-mobile-menu-list a {
		color: var(--nlh-color-white);
		border-bottom-color: rgba(255, 255, 255, 0.12);
	}

	.nlh-header-default .nlh-mobile-submenu-toggle,
	.nlh-header-industrial .nlh-mobile-submenu-toggle {
		color: var(--nlh-color-white);
		border-bottom-color: rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 640px) {
	.nlh-header-container-full {
		padding-inline: 16px;
	}

	.nlh-header-actions,
	.nlh-industrial-contact {
		gap: 8px;
	}

	.nlh-header-search-form {
		gap: 6px;
	}
}
