.bv-site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: transparent;
	transition: background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

body.admin-bar .bv-site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .bv-site-header {
		top: 46px;
	}
}

.bv-site-header.is-sticky {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
}

.bv-site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.bv-site-header__logo {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	color: #ffffff;
	transition: color .28s ease;
	white-space: nowrap;
}

.bv-site-header__nav {
	margin-left: auto;
}

.bv-site-header__menu,
.bv-site-header__modal-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bv-site-header__menu {
	display: flex;
	align-items: center;
	gap: 28px;
}

.bv-site-header__menu-link {
	text-decoration: none;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	transition: color .28s ease, opacity .28s ease;
}

.bv-site-header__menu-link:hover,
.bv-site-header__menu-link:focus-visible,
.bv-site-header__logo:hover,
.bv-site-header__logo:focus-visible {
	opacity: .82;
	outline: none;
}

.bv-site-header.is-sticky .bv-site-header__logo,
.bv-site-header.is-sticky .bv-site-header__menu-link,
.bv-site-header.is-sticky .bv-site-header__toggle {
	color: #111111;
}

.bv-site-header__toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: #ffffff;
	transition: color .28s ease;
}

.bv-site-header__hamburger {
	width: 28px;
	height: 22px;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
}

.bv-site-header__hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 99px;
}

.bv-site-header__modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.98);
	transition: opacity .25s ease, visibility .25s ease;
	isolation: isolate;
}

.bv-site-header__modal[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.bv-site-header__modal-dialog {
	position: relative;
	width: 100%;
	min-height: 100dvh;
	background: #ffffff;
	padding: 24px 24px 40px;
	overflow-y: auto;
}

.bv-site-header__modal-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.bv-site-header__modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #111111;
}

.bv-site-header__close {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	color: #111111;
}

.bv-site-header__modal-nav {
	width: 100%;
}

.bv-site-header__modal-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bv-site-header__modal-item {
	width: 100%;
}

.bv-site-header__modal-link {
	display: block;
	width: 100%;
	text-decoration: none;
	color: #111111;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.bv-site-header__modal-link:hover,
.bv-site-header__modal-link:focus-visible {
	opacity: .75;
	outline: none;
}

body.bv-site-header-modal-open {
	overflow: hidden;
}

@media (max-width: 991px) {
	.bv-site-header__nav {
		display: none;
	}

	.bv-site-header__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.bv-site-header__inner {
		padding: 18px 20px;
	}
}

@media (min-width: 992px) {
	.bv-site-header__modal {
		display: none;
	}
}

@media (max-width: 767px) {
	.bv-site-header__logo {
		font-size: 20px;
	}

	.bv-site-header__modal-dialog {
		padding: 20px 20px 36px;
	}

	.bv-site-header__modal-link {
		font-size: 18px;
	}
}
