.menu-toggle {
	display: none;
	position: relative;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	width: 64px;
	height: 64px;
	border: 0;
	border-radius: 18px;
	background: #fff;
	color: #000;
	cursor: pointer;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
	touch-action: manipulation;
	z-index: 10002;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.nav__phone {
	display: none;
}

.intrips-mobile-only-header {
	display: none;
}

@media (max-width: 980px) {
	.header {
		position: sticky !important;
		top: 0 !important;
		z-index: 10000 !important;
		height: 96px !important;
		padding: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		background: rgba(0, 0, 0, .88);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
	}

	.intrips-mobile-only-header {
		display: block !important;
		position: fixed !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
	}

	.header__inner {
		position: relative;
		width: min(100% - 32px, 1280px) !important;
		margin: 0 auto !important;
		display: grid;
		grid-template-columns: auto auto !important;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}

	.header__contact {
		display: none !important;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.nav {
		position: absolute;
		top: calc(100% + 14px);
		left: 0;
		right: 0;
		z-index: 10001;
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start !important;
		gap: 6px !important;
		grid-column: auto !important;
		order: initial !important;
		max-height: 0;
		padding: 0 10px !important;
		overflow: hidden !important;
		border: 1px solid rgba(255, 255, 255, .1);
		border-radius: 22px;
		background: rgba(10, 10, 12, .97);
		box-shadow: 0 28px 90px rgba(0, 0, 0, .6);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: max-height .24s ease, padding .24s ease, opacity .18s ease, transform .24s ease;
	}

	.header.is-menu-open .nav {
		max-height: 440px;
		padding: 10px !important;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 54px;
		padding: 0 16px;
		border-radius: 14px;
		color: rgba(255, 255, 255, .68);
		font-size: 18px;
		font-weight: 800;
		text-decoration: none;
		white-space: nowrap;
	}

	.nav a:hover,
	.nav a[aria-current="page"] {
		background: rgba(255, 255, 255, .08);
		color: #fff;
	}

	.nav .nav__phone {
		display: flex;
		justify-content: center;
		margin-top: 6px;
		background: #fff;
		color: #000;
	}

	.header.is-menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.header.is-menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.header.is-menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media (max-width: 480px) {
	.logo img {
		max-width: 108px;
	}

	.menu-toggle {
		width: 64px;
		height: 64px;
		border-radius: 18px;
	}
}
