.fwbh-header,
.fwbh-header * {
	box-sizing: border-box;
}

.fwbh-header {
	position: relative;
	z-index: 99990;
	width: 100%;
	color: var(--fwbh-ink, #111111);
	background: var(--fwbh-paper, #f1eee7);
	background: color-mix(in srgb, var(--fwbh-paper, #f1eee7) 94%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--fwbh-ink, #111111) 15%, transparent);
	font-family: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, sans-serif;
	font-size: 16px;
	line-height: 1.3;
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	transition: box-shadow .25s ease, background .25s ease;
}

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

.admin-bar.fwbh-is-sticky .fwbh-header {
	top: 32px;
}

.fwbh-header.is-scrolled {
	background: var(--fwbh-paper, #f1eee7);
	background: color-mix(in srgb, var(--fwbh-paper, #f1eee7) 98%, transparent);
	box-shadow: 0 13px 38px rgba(17, 17, 17, .09);
}

.fwbh-header__accent {
	position: absolute;
	top: 0;
	right: 0;
	width: clamp(110px, 18vw, 290px);
	height: 4px;
	background: var(--fwbh-accent, #6657ff);
}

.fwbh-header__inner {
	display: flex;
	width: min(1320px, calc(100% - 70px));
	min-height: 92px;
	align-items: center;
	justify-content: space-between;
	gap: clamp(28px, 4vw, 68px);
	margin: 0 auto;
	transition: min-height .25s ease;
}

.fwbh-header.is-scrolled .fwbh-header__inner {
	min-height: 74px;
}

.fwbh-brand {
	display: inline-flex;
	flex: 0 1 var(--fwbh-logo-width, 224px);
	width: var(--fwbh-logo-width, 224px);
	max-width: min(32vw, var(--fwbh-logo-width, 224px));
	align-items: center;
	color: inherit;
	text-decoration: none !important;
}

.fwbh-brand img {
	display: block;
	width: 100%;
	max-height: 62px;
	object-fit: contain;
	object-position: left center;
}

.fwbh-navigation-wrap {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(20px, 2.6vw, 39px);
}

.fwbh-navigation,
.fwbh-navigation ul,
.fwbh-navigation li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fwbh-navigation li {
	position: relative;
}

.fwbh-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(16px, 2.25vw, 34px);
}

.fwbh-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.fwbh-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 16px 0;
	color: var(--fwbh-ink, #111111) !important;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .015em;
	text-decoration: none !important;
	white-space: nowrap;
}

.fwbh-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 9px;
	left: 0;
	height: 2px;
	background: var(--fwbh-accent, #6657ff);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .22s ease;
}

.fwbh-menu > li:hover > a::after,
.fwbh-menu > li:focus-within > a::after,
.fwbh-menu > .current-menu-item > a::after,
.fwbh-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.fwbh-submenu-toggle {
	display: inline-grid;
	width: 29px;
	height: 29px;
	place-items: center;
	margin: 0 -9px 0 1px;
	padding: 0;
	color: var(--fwbh-ink, #111111);
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.fwbh-submenu-toggle svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform .2s ease;
}

.fwbh-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: -20px;
	min-width: 275px;
	padding: 13px;
	visibility: hidden;
	background: var(--fwbh-ink, #111111);
	border: 1px solid rgba(255, 255, 255, .14);
	box-shadow: 0 24px 55px rgba(17, 17, 17, .22);
	opacity: 0;
	transform: translateY(9px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.fwbh-menu .sub-menu::before {
	position: absolute;
	top: -9px;
	right: 27px;
	width: 17px;
	height: 17px;
	background: var(--fwbh-ink, #111111);
	content: "";
	transform: rotate(45deg);
}

.fwbh-menu li:hover > .sub-menu,
.fwbh-menu li:focus-within > .sub-menu,
.fwbh-menu li.is-submenu-open > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.fwbh-menu li.is-submenu-open > .fwbh-submenu-toggle svg {
	transform: rotate(180deg);
}

.fwbh-menu .sub-menu li + li {
	border-top: 1px solid rgba(255, 255, 255, .11);
}

.fwbh-menu .sub-menu a {
	display: flex;
	min-height: 48px;
	gap: 12px;
	padding: 12px 13px;
	color: #ffffff !important;
	font-size: .88rem;
	white-space: normal;
	transition: color .18s ease, background .18s ease, padding .18s ease;
}

.fwbh-menu .sub-menu a span {
	color: var(--fwbh-spark, #d9ff63);
	font-size: .66rem;
	letter-spacing: .08em;
}

.fwbh-menu .sub-menu a:hover,
.fwbh-menu .sub-menu a:focus-visible {
	padding-left: 18px;
	color: var(--fwbh-spark, #d9ff63) !important;
	background: rgba(255, 255, 255, .06);
}

.fwbh-menu .sub-menu .sub-menu {
	top: -13px;
	right: calc(100% + 14px);
}

.fwbh-cta {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 12px 18px;
	color: #ffffff !important;
	background: var(--fwbh-accent, #6657ff);
	border: 1px solid var(--fwbh-accent, #6657ff);
	font-size: .79rem;
	font-weight: 750;
	letter-spacing: .025em;
	text-decoration: none !important;
	white-space: nowrap;
	transition: color .2s ease, background .2s ease, transform .2s ease;
}

.fwbh-cta svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.fwbh-cta:hover {
	color: var(--fwbh-ink, #111111) !important;
	background: var(--fwbh-spark, #d9ff63);
	border-color: var(--fwbh-spark, #d9ff63);
	transform: translateY(-2px);
}

.fwbh-menu-toggle {
	display: none;
}

.fwbh-header a:focus-visible,
.fwbh-header button:focus-visible {
	outline: 3px solid var(--fwbh-accent, #6657ff);
	outline-offset: 4px;
}

.fwbh-scrim {
	display: none;
}

body.fwbh-hide-theme-header #masthead,
body.fwbh-hide-theme-header > .site > header.site-header,
body.fwbh-hide-theme-header .elementor-location-header,
body.fwbh-hide-theme-header [data-elementor-type="header"] {
	display: none !important;
}

@media (max-width: 1080px) {
	.fwbh-header__inner {
		width: min(100% - 42px, 1320px);
	}

	.fwbh-navigation-wrap,
	.fwbh-menu {
		gap: 18px;
	}

	.fwbh-menu a {
		font-size: .76rem;
	}

	.fwbh-cta {
		gap: 12px;
	}
}

@media (max-width: 920px) {
	.fwbh-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.fwbh-header__inner,
	.fwbh-header.is-scrolled .fwbh-header__inner {
		min-height: 76px;
	}

	.fwbh-brand {
		width: min(205px, 59vw);
		max-width: min(205px, 59vw);
	}

	.fwbh-menu-toggle {
		display: inline-flex;
		min-width: 77px;
		min-height: 44px;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 8px 11px;
		color: var(--fwbh-ink, #111111);
		background: transparent;
		border: 1px solid color-mix(in srgb, var(--fwbh-ink, #111111) 25%, transparent);
		font: inherit;
		font-size: .72rem;
		font-weight: 750;
		letter-spacing: .06em;
		text-transform: uppercase;
		cursor: pointer;
	}

	.fwbh-menu-toggle__icon {
		position: relative;
		display: block;
		width: 17px;
		height: 13px;
	}

	.fwbh-menu-toggle__icon i {
		position: absolute;
		right: 0;
		left: 0;
		display: block;
		height: 2px;
		background: currentColor;
		transition: top .2s ease, transform .2s ease;
	}

	.fwbh-menu-toggle__icon i:first-child { top: 2px; }
	.fwbh-menu-toggle__icon i:last-child { top: 9px; }
	.fwbh-menu-toggle[aria-expanded="true"] .fwbh-menu-toggle__icon i:first-child { top: 6px; transform: rotate(45deg); }
	.fwbh-menu-toggle[aria-expanded="true"] .fwbh-menu-toggle__icon i:last-child { top: 6px; transform: rotate(-45deg); }

	.fwbh-navigation-wrap {
		position: fixed;
		z-index: 99992;
		top: 76px;
		right: 0;
		display: flex;
		width: min(430px, 92vw);
		height: calc(100dvh - 76px);
		align-items: stretch;
		justify-content: flex-start;
		gap: 25px;
		padding: 31px 27px 30px;
		overflow-y: auto;
		background: var(--fwbh-ink, #111111);
		box-shadow: -24px 30px 60px rgba(17, 17, 17, .26);
		transform: translateX(105%);
		transition: transform .28s cubic-bezier(.2, .75, .25, 1);
		flex-direction: column;
	}

	.admin-bar .fwbh-navigation-wrap {
		top: 108px;
		height: calc(100dvh - 108px);
	}

	.fwbh-header.is-menu-open .fwbh-navigation-wrap {
		transform: translateX(0);
	}

	.fwbh-navigation {
		width: 100%;
	}

	.fwbh-menu {
		display: block;
	}

	.fwbh-menu > li {
		display: grid;
		grid-template-columns: 1fr auto;
		border-bottom: 1px solid rgba(255, 255, 255, .14);
	}

	.fwbh-menu a,
	.fwbh-menu > li > a,
	.fwbh-menu .sub-menu a {
		min-height: 61px;
		padding: 16px 4px;
		color: #ffffff !important;
		font-size: 1.05rem;
		white-space: normal;
	}

	.fwbh-menu > li > a::after {
		display: none;
	}

	.fwbh-submenu-toggle {
		width: 49px;
		height: 61px;
		margin: 0 -5px 0 0;
		color: #ffffff;
	}

	.fwbh-menu .sub-menu,
	.fwbh-menu .sub-menu .sub-menu {
		position: static;
		grid-column: 1 / -1;
		display: none;
		min-width: 0;
		padding: 0 0 13px 17px;
		visibility: visible;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.fwbh-menu .sub-menu::before {
		display: none;
	}

	.fwbh-menu li:hover > .sub-menu,
	.fwbh-menu li:focus-within > .sub-menu {
		display: none;
	}

	.fwbh-menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.fwbh-menu .sub-menu li + li {
		border-color: rgba(255, 255, 255, .09);
	}

	.fwbh-menu .sub-menu a {
		min-height: 49px;
		padding: 11px 4px;
		font-size: .9rem;
	}

	.fwbh-menu .sub-menu a:hover,
	.fwbh-menu .sub-menu a:focus-visible {
		padding-left: 8px;
		background: transparent;
	}

	.fwbh-cta {
		width: 100%;
		min-height: 55px;
		margin-top: auto;
		color: var(--fwbh-ink, #111111) !important;
		background: var(--fwbh-spark, #d9ff63);
		border-color: var(--fwbh-spark, #d9ff63);
	}

	.fwbh-scrim {
		position: fixed;
		z-index: 99980;
		inset: 0;
		display: block;
		visibility: hidden;
		background: rgba(17, 17, 17, .45);
		opacity: 0;
		transition: opacity .25s ease, visibility .25s;
	}

	body.fwbh-menu-open {
		overflow: hidden;
	}

	body.fwbh-menu-open .fwbh-scrim {
		visibility: visible;
		opacity: 1;
	}
}

@media (max-width: 782px) {
	.admin-bar.fwbh-is-sticky .fwbh-header { top: 46px; }
	.admin-bar .fwbh-navigation-wrap { top: 122px; height: calc(100dvh - 122px); }
}

@media (max-width: 600px) {
	.admin-bar.fwbh-is-sticky .fwbh-header { top: 0; }
	.admin-bar .fwbh-navigation-wrap { top: 76px; height: calc(100dvh - 76px); }

	.fwbh-header__inner {
		width: calc(100% - 30px);
	}

	.fwbh-brand {
		width: min(182px, 57vw);
		max-width: min(182px, 57vw);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fwbh-header *,
	.fwbh-header *::before,
	.fwbh-header *::after,
	.fwbh-scrim {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
