/**
 * Header 2026 — self-contained (no Bootstrap navbar/collapse classes).
 */

header.header-2026 {
	padding: 0;
	background: transparent;
}

header.header-2026.not-sticky {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
}

.header-2026--overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	width: 100%;
	background: transparent;
}

.header-2026__navbar {
	padding: 2.25rem 24px 0;
	background: transparent;
}

@media (min-width: 1340px) {
	.header-2026__navbar {
		padding-inline: 50px;
	}
}

.header-2026__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	transition: background-color 0.25s ease, backdrop-filter 0.25s ease, -webkit-backdrop-filter 0.25s ease, border-radius 0.25s ease;
	padding: 2.0625rem 3.125rem;
}

.header-2026--overlay.is-scrolled .header-2026__bar {
	background-color: rgba(0, 3, 70, 0.25);
	-webkit-backdrop-filter: blur(34px);
	backdrop-filter: blur(34px);
	border-radius: 32px;
}

.header-2026__brand {
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin-right: 2rem;
	text-decoration: none;
}

.header-2026__logo {
	display: block;
	height: auto;
	width: 147px;
}

.header-2026__menu {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-2026__menu-item {
	margin: 0;
	padding: 0;
}

.header-2026__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.header-2026__search-toggle,
.header-2026__btn-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid var(--color-white);
	background: transparent;
	color: var(--color-white);
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.header-2026__search-toggle {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
}

.header-2026__search-toggle:hover ~ .header-2026__btn-login {
	color: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
}

.header-2026__search-icon {
	display: block;
}

.header-2026__btn-login {
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	transform: translateY(0);
	will-change: transform;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-2026__btn-login:hover,
.header-2026__btn-login:focus-visible {
	transform: translateY(-6px);
	color: var(--color-navy-darker) !important;
	background-color: #fff;
	border-color: #fff;
	text-decoration: none;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.35),
		0 12px 40px rgba(255, 255, 255, 0.35),
		0 18px 48px rgba(0, 0, 0, 0.12);
	outline: none;
}

.header-2026__search {
	display: flex;
	align-items: center;
	margin: 0;
}

.header-2026__search-input {
	width: 12rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-white);
	border-radius: 999px;
	background: transparent;
	color: var(--color-white);
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
}

.header-2026__search-input::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

.header-2026__search-input:focus {
	outline: none;
	border-color: var(--color-blue-light);
	box-shadow: 0 0 0 0.2rem rgba(8, 146, 255, 0.35);
}

.header-2026 .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.header-2026.is-search-open .header-2026__search:not([hidden]) {
	display: flex;
}

@media (min-width: 1340px) {
	.header-2026__navbar {
		flex-wrap: nowrap;
	}

	.header-2026__navbar .header-2026__collapse {
		display: contents !important;
		flex-basis: auto;
	}

	.header-2026__navbar .header-2026__toggler {
		display: none !important;
	}

	.header-2026__bar {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		column-gap: 2rem;
	}

	.header-2026__brand {
		grid-column: 1;
		margin-right: 0;
	}

	.header-2026__menu {
		grid-column: 2;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.header-2026__actions {
		grid-column: 3;
		flex-direction: row;
		align-items: center;
		align-self: center;
		width: auto;
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
		justify-self: end;
		position: relative;
	}

	.header-2026__search {
		position: absolute;
		right: calc(100% + 0.75rem);
		top: 50%;
		transform: translateY(-50%);
	}
}

.header-2026__menu .header-2026__link {
	position: relative;
	display: inline-block;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.04em;
	padding: 0.5rem 1rem;
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.2s ease;
}

.header-2026__menu .header-2026__link::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: calc(100% - 1.5rem);
	height: 1px;
	background-color: var(--color-white);
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
}

.header-2026__menu:hover .header-2026__link {
	color: rgba(255, 255, 255, 0.5);
}

.header-2026__menu .header-2026__link:hover,
.header-2026__menu .header-2026__link:focus-visible {
	color: var(--color-white) !important;
}

.header-2026__menu .header-2026__link:hover::after,
.header-2026__menu .header-2026__link:focus-visible::after {
	transform: translateX(-50%) scaleX(1.05);
}

.header-2026__toggler {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.header-2026__toggler:focus {
	outline: none;
	box-shadow: 0 0 0 0.2rem rgba(8, 146, 255, 0.35);
}

.header-2026__toggler-icon {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4375rem;
	width: 1.875rem;
}

.header-2026__toggler-bar {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: var(--color-white);
}

.header-2026__toggler-bar--short {
	width: 60%;
}

@media (max-width: 1339.98px) {
	.header-2026__navbar > .header-2026__bar.container-2026 {
		max-width: none;
		width: 100%;
		margin-inline: 0;
		padding-inline: 1.25rem;
	}

	.header-2026__brand {
		margin-right: 0;
	}

	.header-2026__toggler {
		margin-left: auto;
	}

	.header-2026__collapse:not(.show) {
		display: none;
	}

	.header-2026__collapse.show {
		display: block;
		width: 100%;
		flex-basis: 100%;
	}

	.header-2026__collapse {
		padding-top: 1rem;
	}

	.header-2026__collapse.show {
		padding: 1rem var(--layout-gutter-x);
		margin-top: 0.5rem;
		border-radius: 0.25rem;
	}

	.header-2026--overlay:not(.is-scrolled) .header-2026__collapse.show {
		background-color: var(--color-navy);
	}

	.header-2026--overlay.is-scrolled .header-2026__collapse.show {
		background-color: transparent;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.header-2026__menu {
		gap: 0;
	}

	.header-2026__link {
		padding: 0.75rem 0 !important;
		white-space: normal;
	}

	.header-2026__menu .header-2026__link::after {
		width: 100%;
		bottom: 0.5rem;
	}

	.header-2026__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin-top: 0.5rem;
		padding-top: 0.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.header-2026__search {
		order: -1;
		width: 100%;
	}

	.header-2026__search:not([hidden]) {
		margin-bottom: 0.5rem;
	}

	.header-2026__search-input {
		width: 100%;
	}

	.header-2026__search-toggle {
		align-self: center;
	}

	.header-2026__btn-login {
		justify-content: center;
	}
}
