.isyaka-header {
	position: relative;
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.isyaka-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(28px, 3.4vw, 56px);
	max-width: 1520px;
	margin: 0 auto;
	padding: 24px clamp(28px, 5vw, 72px);
}

.isyaka-header__brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	color: #0a0a0a;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.isyaka-header__brand img {
	display: block;
	width: auto;
	max-height: 54px;
}

.isyaka-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 2.4vw, 42px);
	flex: 1 1 auto;
}

.isyaka-header__nav a,
.isyaka-header__drawer-nav a {
	color: #0a0a0a;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}

.isyaka-header__actions {
	display: flex;
	align-items: center;
	gap: 22px;
	flex: 0 0 auto;
}

.isyaka-header__languages,
.isyaka-header__drawer-languages {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
}

.isyaka-header__languages a,
.isyaka-header__drawer-languages a {
	color: rgba(10, 10, 10, 0.52);
	text-decoration: none;
}

.isyaka-header__languages a.is-active,
.isyaka-header__drawer-languages a.is-active {
	color: #0a0a0a;
}

.isyaka-header__quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	background: var(--isyaka-accent);
	color: #0a0a0a;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.isyaka-header__menu-toggle,
.isyaka-header__drawer-close {
	display: none;
	border: 0;
	background: transparent;
	color: #0a0a0a;
	cursor: pointer;
}

.isyaka-header__menu-toggle {
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.isyaka-header__menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px 0;
	background: #0a0a0a;
}

.isyaka-header__overlay {
	position: fixed;
	inset: 0;
	z-index: 40;
	background: rgba(10, 10, 10, 0.72);
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.isyaka-header__drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: min(86vw, 390px);
	height: 100vh;
	padding: 22px 26px;
	background: #fff;
	box-sizing: border-box;
	transform: translateX(-100%);
	transition: transform 180ms ease;
}

.isyaka-header__drawer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 34px;
}

.isyaka-header__drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 34px;
	line-height: 1;
}

.isyaka-header__drawer-nav {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-bottom: 28px;
}

.isyaka-header__drawer-nav a {
	font-size: 20px;
	font-weight: 700;
}

.isyaka-header__drawer-contact {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.isyaka-header__drawer-contact span {
	display: block;
	margin-bottom: 8px;
	color: rgba(10, 10, 10, 0.5);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.isyaka-header__drawer-contact a,
.isyaka-header__drawer-contact p {
	margin: 0;
	color: #0a0a0a;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	text-decoration: none;
}

.isyaka-header__drawer-social {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 28px;
}

body.isyaka-drawer-open {
	overflow: hidden;
}

body.isyaka-drawer-open .isyaka-header__overlay {
	opacity: 1;
	pointer-events: auto;
}

body.isyaka-drawer-open .isyaka-header__drawer {
	transform: translateX(0);
}

@media (max-width: 900px) {
	.isyaka-header__inner {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr) auto;
		gap: 12px;
		padding: 14px 18px;
	}

	.isyaka-header__menu-toggle {
		display: block;
	}

	.isyaka-header__brand {
		justify-self: center;
		font-size: 20px;
	}

	.isyaka-header__brand img {
		max-height: 38px;
	}

	.isyaka-header__nav,
	.isyaka-header__languages {
		display: none;
	}

	.isyaka-header__actions {
		gap: 0;
	}

	.isyaka-header__quote {
		min-height: 40px;
		padding: 0 16px;
		font-size: 13px;
	}
}

@media (max-width: 390px) {
	.isyaka-header__quote {
		padding: 0 10px;
		font-size: 12px;
	}
}

.isyaka-header__drawer-social {
	margin-top: 4px;
}
