.custom-header {
	position: relative;
	z-index: 9999;
	background: transparent;
	color: black;
	padding: 28px 40px;
	overflow: visible;
}

.custom-header__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.custom-header__logo {
	flex: 0 0 190px;
	line-height: 0;
	text-decoration: none;
}

.custom-header__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.custom-header__nav {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	gap: 22px;
}

.custom-header__nav--right {
	justify-content: flex-start;
}

.custom-header__nav--left {
	justify-content: flex-end;
}

.custom-header__nav a,
.custom-header__mobile-menu a {
	color: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.custom-header__nav a:hover,
.custom-header__nav a:focus-visible,
.custom-header__mobile-menu a:hover,
.custom-header__mobile-menu a:focus-visible {
	color: #d8e8c0;
}

.custom-header__burger,
.custom-header__mobile-menu {
	display: none;
}

@media (max-width: 768px) {
	.custom-header {
		padding: 20px 30px;
	}

	.custom-header__inner {
		flex-wrap: wrap;
		gap: 18px;
	}

	.custom-header__nav {
		display: none;
	}

	.custom-header__logo {
		flex: 0 0 160px;
		margin: 0 auto;
	}

	.custom-header__burger {
		display: flex;
		position: absolute;
		top: 50%;
		right: 30px;
		flex-direction: column;
		justify-content: space-between;
		width: 32px;
		height: 24px;
		padding: 0;
		margin: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		transform: translateY(-50%);
	}

	.custom-header__burger span {
		display: block;
		width: 100%;
		height: 2px;
		background: black;
	}

	.custom-header__mobile-menu {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 10000;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 24px 20px;
		background: rgba(47, 89, 89, 0.95);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition:
			opacity 0.25s ease,
			transform 0.25s ease,
			visibility 0.25s ease;
		pointer-events: none;
	}

	.custom-header__mobile-menu.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
}
}
