.ims-site-header {
	background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
	width: 100%;
}

.ims-site-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 9999;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.ims-site-header .ims-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 32px;
}

.ims-site-header .ims-site-header__nav {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.ims-site-header .ims-site-header__cta {
	background: #c8a951;
	color: #1a2a4a;
	font-family: 'Montserrat', -apple-system, sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	padding: 11px 22px;
	border-radius: 6px;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ims-site-header .ims-site-header__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(200, 169, 81, 0.35);
	color: #1a2a4a;
}

/* Hamburger, hidden on desktop */
.ims-site-header .ims-site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.ims-site-header .ims-site-header__toggle span {
	display: block;
	height: 2px;
	width: 22px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 1024px) {
	.ims-site-header .ims-site-header__toggle {
		display: flex;
		order: 3;
	}

	.ims-site-header .ims-site-header__cta {
		order: 2;
		margin-left: auto;
	}

	.ims-site-header .ims-site-header__nav {
		order: 4;
		flex-basis: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		display: none;
	}

	.ims-site-header.nav-open .ims-site-header__nav {
		display: flex;
	}

	/* Hamburger turns into a cross while the menu is open */
	.ims-site-header.nav-open .ims-site-header__toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.ims-site-header.nav-open .ims-site-header__toggle span:nth-child(2) {
		opacity: 0;
	}
	.ims-site-header.nav-open .ims-site-header__toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}
