.nlh-site-header {
	position: relative;
	z-index: 100;
	--nlh-header-bg: var(--nlh-color-background);
	--nlh-header-text: var(--nlh-color-secondary);
	--nlh-header-link: var(--nlh-color-secondary);
	--nlh-header-link-hover: var(--nlh-color-primary);
	--nlh-header-border: var(--nlh-color-border);
	--nlh-header-subtle-border: rgba(226, 232, 240, 0.72);
	--nlh-header-subtle-bg: rgba(var(--nlh-color-secondary-rgb), 0.03);
	--nlh-header-dropdown-bg: var(--nlh-color-background);
	--nlh-header-dropdown-text: var(--nlh-color-secondary);
	--nlh-header-dropdown-hover-bg: var(--nlh-color-surface);
	--nlh-header-mobile-bg: var(--nlh-color-background);
	--nlh-header-mobile-link: var(--nlh-color-secondary);
	--nlh-header-mobile-border: rgba(226, 232, 240, 0.72);
	--nlh-header-panel-bg: var(--nlh-color-secondary);
	--nlh-header-panel-text: var(--nlh-color-white);
	background: var(--nlh-header-bg);
	border-bottom: 1px solid var(--nlh-header-border);
	color: var(--nlh-header-text);
}

.nlh-header-skin-dark {
	--nlh-header-bg: var(--nlh-color-secondary);
	--nlh-header-text: var(--nlh-color-white);
	--nlh-header-link: var(--nlh-color-white);
	--nlh-header-link-hover: var(--nlh-color-primary);
	--nlh-header-border: rgba(255, 255, 255, 0.12);
	--nlh-header-subtle-border: rgba(255, 255, 255, 0.12);
	--nlh-header-subtle-bg: rgba(255, 255, 255, 0.08);
	--nlh-header-dropdown-bg: var(--nlh-color-secondary);
	--nlh-header-dropdown-text: var(--nlh-color-white);
	--nlh-header-dropdown-hover-bg: rgba(255, 255, 255, 0.08);
	--nlh-header-mobile-bg: var(--nlh-color-secondary);
	--nlh-header-mobile-link: var(--nlh-color-white);
	--nlh-header-mobile-border: rgba(255, 255, 255, 0.12);
}

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

.nlh-sticky-menu-target.is-fixed {
	position: fixed;
	left: var(--nlh-sticky-menu-left, 0);
	top: var(--nlh-sticky-menu-top, 0);
	z-index: 120;
	width: var(--nlh-sticky-menu-width, 100%);
	box-shadow: var(--nlh-shadow);
	isolation: isolate;
}

.nlh-sticky-menu-placeholder {
	display: block;
}

.nlh-header-single-row .nlh-header-row.is-fixed::before {
	content: "";
	position: absolute;
	inset: 0 calc((100vw - 100%) / -2);
	z-index: -1;
	background: var(--nlh-header-bg);
	border-bottom: 1px solid var(--nlh-header-border);
}

.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,
.nlh-header-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 24px;
}

.nlh-industrial-nav-row {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 56px;
}

.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-header-text);
	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 > .nlh-menu-item-has-mega {
	position: relative;
}

.nlh-primary-menu a,
.nlh-mobile-menu-list a {
	position: relative;
	display: block;
	color: var(--nlh-header-link);
	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-header-link-hover);
}

.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-header-border);
	background: var(--nlh-header-dropdown-bg);
	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-header-dropdown-text);
	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-header-dropdown-hover-bg);
	color: var(--nlh-header-link-hover);
}

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

.nlh-primary-menu > .nlh-menu-item-has-mega > .sub-menu {
	display: none;
}

.nlh-mega-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 130;
	width: min(var(--nlh-container), calc(100vw - 32px));
	opacity: 0;
	transform: translate(var(--nlh-mega-menu-offset, 0), 10px);
	transition: opacity 0.18s ease;
}

.nlh-mega-menu--compact {
	width: min(800px, calc(100vw - 32px));
}

.nlh-mega-menu--full-bleed,
.nlh-mega-menu--wide {
	width: var(--nlh-mega-menu-viewport-width, 100vw);
	background: var(--nlh-color-white);
	border-top: 1px solid var(--nlh-color-border);
	border-bottom: 1px solid var(--nlh-color-border);
	box-shadow: var(--nlh-shadow);
}

.nlh-menu-item-has-mega:hover > .nlh-mega-menu,
.nlh-menu-item-has-mega:focus-within > .nlh-mega-menu,
.nlh-menu-item-has-mega.is-mega-open > .nlh-mega-menu {
	display: block;
	opacity: 1;
	transform: translate(var(--nlh-mega-menu-offset, 0), 0);
}

.nlh-mega-menu__inner {
	overflow: hidden;
	border: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
	box-shadow: var(--nlh-shadow);
}

.nlh-mega-menu--full-bleed .nlh-mega-menu__inner,
.nlh-mega-menu--wide .nlh-mega-menu__inner {
	width: min(var(--nlh-container), calc(100vw - 32px));
	margin-inline: auto;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.nlh-mega-panel {
	padding: clamp(24px, 3vw, 36px);
}

.nlh-mega-panel .wp-block-columns {
	margin-bottom: 0;
	gap: clamp(24px, 3vw, 40px);
}

.nlh-mega-panel .wp-block-column > *:first-child {
	margin-top: 0;
}

.nlh-mega-panel .wp-block-column > *:last-child {
	margin-bottom: 0;
}

.nlh-mega-panel__heading {
	margin: 0 0 12px;
	color: var(--nlh-color-secondary);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
}

.nlh-mega-panel__heading a {
	color: inherit;
	text-decoration: none;
}

.nlh-mega-panel__links {
	margin: 0;
	padding-left: 1.1em;
	list-style: disc;
}

.nlh-mega-panel__links li + li {
	margin-top: 8px;
}

.nlh-mega-panel__links li::marker {
	color: var(--nlh-color-primary);
	font-size: 0.82em;
	font-weight: 800;
}

.nlh-mega-panel__links a,
.nlh-mega-panel__text a {
	padding: 0;
	color: var(--nlh-color-muted);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.5;
	white-space: normal;
	text-decoration: none;
}

.nlh-mega-panel__links a:hover,
.nlh-mega-panel__links a:focus,
.nlh-mega-panel__heading a:hover,
.nlh-mega-panel__heading a:focus {
	color: var(--nlh-color-primary);
}

.nlh-mega-panel__text {
	margin: 0 0 16px;
	color: var(--nlh-color-muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.nlh-mega-panel__image {
	margin: 0 0 14px;
}

.nlh-mega-panel__image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.nlh-mega-panel--cards .wp-block-column {
	padding: 18px;
	border: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-surface);
}

.nlh-mega-panel .wp-block-buttons {
	margin-top: 14px;
}

.nlh-mega-panel .wp-block-button__link {
	border-radius: var(--nlh-button-radius);
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.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-header-panel-bg);
	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-header-panel-text);
	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-header-panel-text);
}

.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-header-mobile-border);
	background: var(--nlh-header-mobile-bg);
	box-shadow: var(--nlh-shadow);
	max-height: calc(100vh - 96px);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.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-header-mobile-link);
	border-bottom: 1px solid var(--nlh-header-mobile-border);
}

.nlh-mobile-menu-list .menu-item-has-children > a,
.nlh-mobile-menu-list .nlh-menu-item-has-mega > 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 var(--nlh-header-mobile-border);
	background: transparent;
	color: var(--nlh-header-mobile-link);
	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-header-border);
}

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

.nlh-mobile-mega-menu {
	display: none;
	margin: 0;
	padding: 14px 16px;
	border-left: 2px solid var(--nlh-header-border);
	background: var(--nlh-header-subtle-bg);
}

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

.nlh-mobile-mega-menu .nlh-mega-panel {
	padding: 0;
}

.nlh-mobile-mega-menu .wp-block-columns,
.nlh-mobile-mega-menu .wp-block-column {
	display: block;
	margin: 0;
}

.nlh-mobile-mega-menu .wp-block-column + .wp-block-column {
	margin-top: 14px;
}

.nlh-mobile-mega-menu .nlh-mega-panel__heading {
	margin: 0 0 8px;
	color: var(--nlh-color-secondary);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
}

.nlh-mobile-mega-menu .nlh-mega-panel__heading a {
	padding: 0;
	border-bottom: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.nlh-mobile-mega-menu .nlh-mega-panel__links {
	margin: 0 0 12px;
	padding-left: 1.1em;
	list-style: disc;
}

.nlh-mobile-mega-menu .nlh-mega-panel__links li + li {
	margin-top: 0;
}

.nlh-mobile-mega-menu .nlh-mega-panel__links li::marker {
	color: var(--nlh-color-primary);
	font-size: 0.82em;
	font-weight: 800;
}

.nlh-mobile-mega-menu a,
.nlh-mobile-mega-menu .nlh-mega-panel__links a,
.nlh-mobile-mega-menu .nlh-mega-panel__text a {
	display: block;
	padding: 9px 0;
	border-bottom: 1px solid var(--nlh-header-mobile-border);
	color: var(--nlh-color-secondary);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
	text-decoration: none;
}

.nlh-mobile-mega-menu a:hover,
.nlh-mobile-mega-menu a:focus {
	color: var(--nlh-color-primary);
}

.nlh-mobile-mega-menu .nlh-mega-panel__text {
	margin: 0 0 10px;
	color: var(--nlh-color-muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

.nlh-mobile-mega-menu .nlh-mega-panel__image {
	display: none;
}

.nlh-mobile-mega-menu .wp-block-buttons {
	margin: 8px 0 0;
}

.nlh-mobile-mega-menu .wp-block-button,
.nlh-mobile-mega-menu .wp-block-button__link {
	display: block;
	width: 100%;
}

.nlh-mobile-mega-menu .wp-block-button__link {
	padding: 10px 12px;
	border-bottom: 0;
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
	text-align: center;
}

.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-single-row.nlh-header-skin-dark {
	border-bottom: 0;
	box-shadow: var(--nlh-shadow);
}

.nlh-header-single-row.nlh-header-skin-light .nlh-header-row {
	min-height: 68px;
}

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

.nlh-header-industrial {
	background: linear-gradient(135deg, var(--nlh-header-bg) 0%, rgba(var(--nlh-color-secondary-rgb), 0.92) 100%);
	border-bottom: 0;
	box-shadow: var(--nlh-shadow);
}

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

.nlh-industrial-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	min-width: 0;
}

.nlh-industrial-contact-cards {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nlh-industrial-contact-card {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: 210px;
	color: var(--nlh-header-link);
	text-decoration: none;
}

.nlh-industrial-contact-card__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--nlh-color-primary);
}

.nlh-industrial-contact-card__icon .nlh-icon {
	width: 18px;
	height: 18px;
}

.nlh-industrial-contact-card__body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.nlh-industrial-contact-card__body span {
	color: var(--nlh-header-text);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
	opacity: 0.64;
}

.nlh-industrial-contact-card__body strong {
	overflow: hidden;
	color: var(--nlh-header-text);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nlh-industrial-contact-card:hover,
.nlh-industrial-contact-card:focus {
	color: var(--nlh-color-primary);
}

.nlh-industrial-contact-card:hover strong,
.nlh-industrial-contact-card:focus strong {
	color: var(--nlh-color-primary);
}

.nlh-industrial-nav-shell {
	background: rgba(0, 0, 0, 0.2);
	border-top: 1px solid var(--nlh-header-border);
}

.nlh-industrial-nav-shell.is-fixed {
	background: var(--nlh-header-bg);
}

.nlh-header-industrial .nlh-industrial-nav-row .nlh-primary-navigation {
	width: 100%;
	justify-content: flex-start;
}

.nlh-header-industrial .nlh-industrial-nav-row .nlh-primary-menu > li > a {
	padding: 18px 0;
	font-size: 0.9rem;
}

.nlh-header-industrial .nlh-industrial-nav-row .nlh-primary-menu > .menu-item-has-children > a {
	padding-right: 22px;
}

.nlh-header-industrial .nlh-industrial-nav-row .nlh-primary-menu > .menu-item-has-children > a::after {
	right: 2px;
}

.nlh-header-industrial .nlh-header-cta {
	box-shadow: 0 10px 26px rgba(var(--nlh-color-primary-rgb), 0.22);
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu {
	color: var(--nlh-color-muted);
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu a {
	display: inline;
	padding: 0;
	color: var(--nlh-color-muted);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.5;
	white-space: normal;
	text-decoration: none;
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu a:hover,
.nlh-site-header .nlh-primary-menu .nlh-mega-menu a:focus {
	background: transparent;
	color: var(--nlh-color-primary);
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu .nlh-mega-panel__heading {
	color: var(--nlh-color-secondary);
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu .nlh-mega-panel__heading a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu .nlh-mega-panel__text {
	color: var(--nlh-color-muted);
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu .wp-block-button__link {
	display: inline-block;
	padding: 0.75em 1.25em;
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
}

.nlh-site-header .nlh-primary-menu .nlh-mega-menu .wp-block-button__link:hover,
.nlh-site-header .nlh-primary-menu .nlh-mega-menu .wp-block-button__link:focus {
	background: var(--nlh-color-secondary);
	color: var(--nlh-color-white);
}

.nlh-header-boxed {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 110;
	padding: 28px 0 0;
	background: transparent;
	border-bottom: 0;
}

.nlh-header-boxed .nlh-topbar {
	margin-bottom: 10px;
	background: transparent;
}

.nlh-header-boxed .nlh-topbar-row {
	min-height: 38px;
	padding: 0 18px;
	background: var(--nlh-topbar-bg);
	color: var(--nlh-topbar-text);
	box-shadow: var(--nlh-shadow);
}

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

.nlh-header-box {
	min-height: 76px;
	gap: 24px;
	padding: 0 22px;
	border: 1px solid var(--nlh-header-border);
	background: var(--nlh-header-bg);
	box-shadow: var(--nlh-shadow);
}

.nlh-header-boxed + .nlh-site-main {
	--nlh-boxed-header-clearance: clamp(76px, 7vw, 96px);
}

.nlh-header-boxed + .nlh-site-main .nlh-page-header {
	padding-top: clamp(220px, 18vw, 260px);
}

.nlh-header-boxed + .nlh-site-main .nlh-front-page-content > .nlh-pattern-hero-banner:first-child .nlh-pattern-hero-banner__content,
.nlh-header-boxed + .nlh-site-main .nlh-front-page-content > .nlh-pattern-hero-slider:first-child .nlh-pattern-hero-slider__content {
	padding-top: var(--nlh-boxed-header-clearance);
}

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

.nlh-header-boxed .nlh-mobile-menu {
	width: min(var(--nlh-container), calc(100% - 32px));
	margin: 12px auto 0;
}

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

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

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

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

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

.nlh-stacked-nav .nlh-primary-navigation {
	width: 100%;
}

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

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

@media (max-width: 1200px) {
	.nlh-industrial-contact-cards {
		display: none;
	}
}

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

	.nlh-mega-menu {
		display: none;
	}

	.nlh-industrial-nav-shell {
		display: none;
	}

	.nlh-industrial-tools {
		gap: 12px;
	}

	.nlh-sticky-menu-target.is-fixed {
		position: static;
		left: auto;
		top: auto;
		width: auto;
		box-shadow: 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-header-boxed .nlh-topbar-row {
		padding: 8px 18px;
	}

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

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

	.nlh-header-boxed,
	.nlh-header-boxed.is-sticky {
		position: relative;
		top: auto;
		padding: 0;
		background: var(--nlh-header-bg);
		box-shadow: var(--nlh-shadow);
	}

	.nlh-header-boxed + .nlh-site-main {
		--nlh-boxed-header-clearance: 0px;
	}

	.admin-bar .nlh-header-boxed.is-sticky {
		top: auto;
	}

	.nlh-header-boxed .nlh-header-box {
		border: 0;
		background: var(--nlh-header-bg);
		box-shadow: none;
	}

	.nlh-header-boxed + .nlh-site-main .nlh-page-header {
		padding-top: 64px;
	}

	.nlh-header-boxed + .nlh-site-main .nlh-front-page-content > .nlh-pattern-hero-banner:first-child .nlh-pattern-hero-banner__content,
	.nlh-header-boxed + .nlh-site-main .nlh-front-page-content > .nlh-pattern-hero-slider:first-child .nlh-pattern-hero-slider__content {
		padding-top: 0;
	}

	.nlh-header-boxed .nlh-mobile-menu {
		width: 100%;
		margin: 0;
	}

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

	.nlh-header-skin-dark .nlh-mobile-menu {
		background: var(--nlh-header-mobile-bg);
		border-top-color: var(--nlh-header-mobile-border);
	}

	.nlh-header-skin-dark .nlh-mobile-menu-list a {
		color: var(--nlh-header-mobile-link);
		border-bottom-color: var(--nlh-header-mobile-border);
	}

	.nlh-header-skin-dark .nlh-mobile-mega-menu {
		border-left-color: var(--nlh-color-primary);
		background: var(--nlh-color-background);
	}

	.nlh-header-skin-dark .nlh-mobile-mega-menu .nlh-mega-panel__heading {
		color: var(--nlh-color-secondary);
	}

	.nlh-header-skin-dark .nlh-mobile-mega-menu a,
	.nlh-header-skin-dark .nlh-mobile-mega-menu .nlh-mega-panel__links a,
	.nlh-header-skin-dark .nlh-mobile-mega-menu .nlh-mega-panel__text a {
		color: var(--nlh-color-secondary);
		border-bottom-color: rgba(226, 232, 240, 0.72);
	}

	.nlh-header-skin-dark .nlh-mobile-mega-menu .nlh-mega-panel__text {
		color: var(--nlh-color-muted);
	}

	.nlh-header-skin-dark .nlh-mobile-submenu-toggle {
		color: var(--nlh-header-mobile-link);
		border-bottom-color: var(--nlh-header-mobile-border);
	}
}

@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;
	}
}
