/* ═══════════════════════════════════════════
   SITE HEADER — Sticky, aligned, no clipping
   ═══════════════════════════════════════════ */

.site-header {
	position: sticky;
	top: var(--he-construction-banner-h, 40px);
	z-index: 10020;
	background: var(--hilaire-header-bg, #f4c430);
	border-bottom: 1px solid rgba(10, 30, 60, 0.12);
	overflow: visible;
	box-sizing: border-box;
	min-height: var(--site-header-height, 76px);
	transition: box-shadow 0.3s ease, background 0.3s ease, top 0.2s ease;
}

.admin-bar .site-header {
	top: calc(var(--he-construction-banner-h, 40px) + 32px);
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: calc(var(--he-construction-banner-h, 40px) + 46px);
	}
}

.site-header.is-scrolled {
	box-shadow: 0 2px 16px rgba(10, 30, 60, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	column-gap: clamp(10px, 2vw, 24px);
	row-gap: 8px;
	min-width: 0;
	flex-wrap: nowrap;
}

/* ─── LOGO ─────────────────────────────── */
.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	flex: 0 1 auto;
	min-width: 0;
	max-width: min(100%, 380px);
}

.site-logo__emblem {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-logo__emblem svg,
.site-logo__mark {
	width: clamp(46px, 4.5vw, 54px);
	height: clamp(46px, 4.5vw, 54px);
	display: block;
	object-fit: contain;
}

.site-logo__text {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 500;
	color: var(--hilaire-blue);
	letter-spacing: 0.5px;
	line-height: 1.05;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ─── HEADER HUB STRIP — Destinations (+ countries) + Experiences only; rest in drawer */
.site-nav.site-nav--hubs {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
	flex: 1 1 auto;
	justify-content: flex-start;
	margin-left: clamp(20px, 3vw, 48px);
	min-width: 0;
	overflow: visible;
}

.site-nav:not(.site-nav--hubs) {
	display: none;
}

.site-nav__link {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	color: var(--hilaire-blue);
	text-decoration: none;
	letter-spacing: 0.3px;
	padding: 8px 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.site-nav__link:hover {
	opacity: 0.6;
}

.site-nav__item--dropdown > .site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.site-nav__item--dropdown > .site-nav__link::after {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	margin-top: -2px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.55;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav__item--dropdown:hover > .site-nav__link::after,
.site-nav__item--dropdown:focus-within > .site-nav__link::after,
.site-nav__item--dropdown.is-open > .site-nav__link::after {
	opacity: 0.85;
}

/* ─── DESTINATIONS DROPDOWN ────────────── */
.site-nav__item--dropdown {
	position: relative;
}

.site-nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--hilaire-white);
	border: 1px solid rgba(10, 30, 60, 0.08);
	padding: 12px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.3s ease;
	z-index: 1100;
	box-shadow: 0 8px 24px rgba(10, 30, 60, 0.08);
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown,
.site-nav__item--dropdown.is-open .site-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav__dropdown-link {
	display: block;
	padding: 8px 24px;
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--hilaire-blue);
	text-decoration: none;
	transition: background 0.2s ease;
}

.site-nav__dropdown-link:hover {
	background: rgba(10, 30, 60, 0.03);
}

/* ─── DESTINATIONS MEGA MENU (4 regional columns) ─── */
.site-nav__item--mega {
	position: static;
}

.site-nav__dropdown--mega {
	left: 0;
	right: auto;
	min-width: min(960px, calc(100vw - 48px));
	max-width: calc(100vw - 48px);
	padding: 28px 32px;
}

.dest-mega-menu {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 36px;
}

.dest-mega-menu__heading {
	margin: 0 0 12px;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(10, 30, 60, 0.45);
}

.dest-mega-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dest-mega-menu__item {
	margin: 0;
}

.dest-mega-menu__link {
	padding: 6px 0;
	white-space: nowrap;
}

.dest-mega-menu__link:hover {
	background: transparent;
	opacity: 0.6;
}

@media (max-width: 1200px) {
	.site-nav__dropdown--mega {
		min-width: min(720px, calc(100vw - 40px));
		padding: 24px 28px;
	}

	.dest-mega-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 28px;
	}
}

@media (max-width: 1024px) {
	.site-nav__item--mega {
		position: relative;
	}

	.site-nav__dropdown--mega {
		left: 0;
		right: auto;
		min-width: min(560px, calc(100vw - 32px));
		max-width: calc(100vw - 32px);
		max-height: min(70vh, 520px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 768px) {
	.site-nav__dropdown--mega {
		position: fixed;
		left: 16px;
		right: 16px;
		min-width: 0;
		max-width: none;
		width: auto;
	}

	.dest-mega-menu {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ─── MOBILE DESTINATIONS (drawer accordion) ─── */
.mobile-menu__destinations {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__link--summary {
	list-style: none;
	cursor: pointer;
}

.mobile-menu__link--summary::-webkit-details-marker {
	display: none;
}

.mobile-menu__link--summary::after {
	content: '+';
	float: right;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 300;
	line-height: 1;
	color: rgba(255, 255, 255, 0.45);
	transition: transform 0.25s ease;
}

.mobile-menu__destinations[open] .mobile-menu__link--summary::after {
	content: '−';
}

.mobile-menu__destinations-panel {
	padding: 0 0 12px;
}

.mobile-menu__region + .mobile-menu__region {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu__region-title {
	margin: 0 0 8px;
	padding-left: 20px;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.38);
}

.mobile-menu__region .mobile-menu__sub {
	padding-left: 20px;
}

/* ─── WP NAV MENU (header_en / header_fr / primary) ───────── */
.site-nav__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__menu > .menu-item {
	position: relative;
	margin: 0;
}

.site-nav__menu > .menu-item > a {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	color: var(--hilaire-blue);
	text-decoration: none;
	letter-spacing: 0.3px;
	padding: 8px 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
	display: inline-block;
}

.site-nav__menu > .menu-item > a:hover,
.site-nav__menu > .menu-item > a:focus-visible {
	opacity: 0.6;
}

.site-nav__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--hilaire-white);
	border: 1px solid rgba(10, 30, 60, 0.08);
	padding: 12px 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.3s ease;
	z-index: 1100;
	box-shadow: 0 8px 24px rgba(10, 30, 60, 0.08);
}

.site-nav__menu .menu-item:hover > .sub-menu,
.site-nav__menu .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav__menu .sub-menu .menu-item {
	margin: 0;
}

.site-nav__menu .sub-menu a {
	display: block;
	padding: 8px 24px;
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--hilaire-blue);
	text-decoration: none;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.site-nav__menu .sub-menu a:hover,
.site-nav__menu .sub-menu a:focus-visible {
	background: rgba(10, 30, 60, 0.03);
}

/* ─── HEADER UTILITIES ─────────────────── */
.site-header__utils {
	display: flex;
	align-items: center;
	gap: clamp(8px, 1.4vw, 20px);
	flex: 0 0 auto; margin-left: auto;
	min-width: 0;
	flex-wrap: nowrap;
}

.util-link {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--hilaire-blue);
	text-decoration: none;
	opacity: 0.6;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.util-link:hover {
	opacity: 1;
}

.util-link--icon {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	padding: 4px;
}

.util-link--icon:hover {
	opacity: 1;
}

.util-link--icon svg {
	display: block;
}

/* ─── LANGUAGE SWITCHER ────────────────── */
.lang-switcher {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.lang-switcher__link {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: var(--hilaire-blue);
	text-decoration: none;
	opacity: 0.45;
	transition: opacity 0.3s ease;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
	white-space: nowrap;
}

.lang-switcher__link:hover {
	opacity: 0.85;
}

.lang-switcher__link--active {
	opacity: 1;
	font-weight: 600;
}

.lang-switcher__abbr {
	font-weight: 600;
	letter-spacing: 0.08em;
}

.lang-switcher__name {
	font-size: 11px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.02em;
}

.lang-switcher__sep {
	font-size: 11px;
	color: var(--hilaire-blue);
	opacity: 0.25;
	margin: 0 2px;
}

.lang-switcher__pll {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
}

.lang-switcher__pll .lang-switcher__link {
	font-size: 12px;
	letter-spacing: 0.12em;
	font-weight: 500;
}

/* Polylang FR | EN — both links always visible; active strong, inactive muted */
.lang-switcher--pll-dual .lang-switcher__pll--dual .lang-switcher__link {
	cursor: pointer;
	opacity: 0.38;
	font-weight: 500;
	color: var(--hilaire-blue);
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease, font-weight 0.2s ease;
}

.lang-switcher--pll-dual .lang-switcher__pll--dual .lang-switcher__link .lang-switcher__abbr {
	color: inherit;
	opacity: 1;
}

.lang-switcher--pll-dual .lang-switcher__pll--dual .lang-switcher__link:hover,
.lang-switcher--pll-dual .lang-switcher__pll--dual .lang-switcher__link:focus-visible {
	opacity: 0.82;
}

.lang-switcher--pll-dual .lang-switcher__pll--dual .lang-switcher__link:focus-visible {
	outline: 2px solid var(--hilaire-blue);
	outline-offset: 3px;
}

.lang-switcher--pll-dual .lang-switcher__pll--dual .lang-switcher__link--active {
	opacity: 1;
	font-weight: 700;
	color: var(--hilaire-blue);
	letter-spacing: 0.14em;
}

.lang-switcher--pll-dual .lang-switcher__sep {
	opacity: 0.35;
	margin: 0 5px;
	font-weight: 400;
}

.lang-switcher ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.lang-switcher li {
	margin: 0;
}

.lang-switcher li a {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--hilaire-blue);
	text-decoration: none;
	opacity: 0.45;
	letter-spacing: 0.02em;
	text-transform: none;
}

.lang-switcher li.current-lang a {
	opacity: 1;
	font-weight: 600;
}

/* ─── SEARCH TOGGLE ────────────────────── */
.search-toggle {
	background: none;
	border: none;
	color: var(--hilaire-blue);
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.search-toggle:hover {
	opacity: 1;
}

/* ─── BUTTONS (header + overlays) ─────── */
.btn-primary {
	display: inline-block;
	background: var(--hilaire-navy);
	color: var(--hilaire-white);
	padding: 12px 28px;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: var(--button-tracking);
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn-primary:hover {
	background: var(--hilaire-blue-mid);
}

.btn-secondary {
	display: inline-block;
	background: transparent;
	color: var(--hilaire-blue);
	padding: 11px 28px;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid rgba(10, 30, 60, 0.25);
	border-radius: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	border-color: var(--hilaire-blue);
	background: rgba(10, 30, 60, 0.03);
}

.btn-primary--inverted {
	display: inline-block;
	background: var(--hilaire-white);
	color: var(--hilaire-blue);
	padding: 16px 36px;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	border-radius: 0;
	white-space: nowrap;
	transition: background 0.3s ease;
}

.btn-primary--inverted:hover {
	background: var(--hilaire-ivory);
}

.btn-secondary--dark {
	color: var(--hilaire-white);
	border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary--dark:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.05);
}

.header-cta {
	display: inline-block;
	padding: 10px 18px;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: var(--hilaire-navy);
	background: transparent;
	border: 1px solid rgba(10, 27, 42, 0.35);
	border-radius: 0;
	cursor: pointer;
	transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.header-cta:hover {
	color: var(--hilaire-navy);
	border-color: var(--hilaire-navy);
	background: rgba(10, 27, 42, 0.04);
}

/* ─── HAMBURGER — always visible; opens full IA + sublinks in drawer */
.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	z-index: 1003;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.hamburger__line {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--hilaire-blue);
	transition: all 0.3s ease;
	transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
	transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
	transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ═══════════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════════ */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2000;
	background: var(--hilaire-white);
	padding: 0;
	transform: translateY(-100%);
	transition: transform 0.4s ease;
	box-shadow: 0 4px 24px rgba(10, 30, 60, 0.1);
	pointer-events: none;
}

.search-overlay.is-open {
	transform: translateY(0);
	pointer-events: auto;
}

.search-overlay__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 16px;
	padding: 0;
	max-height: none;
	overflow: visible;
}

.search-overlay__form {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.search-overlay__input {
	flex: 1;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 400;
	color: var(--hilaire-blue);
	background: transparent;
	border: none;
	outline: none;
	padding: 8px 0;
	min-width: 0;
}

.search-overlay__input::placeholder {
	color: rgba(10, 30, 60, 0.3);
}

.search-overlay__submit {
	background: none;
	border: none;
	color: var(--hilaire-blue);
	cursor: pointer;
	opacity: 0.5;
	padding: 4px;
	display: flex;
	flex-shrink: 0;
}

.search-overlay__submit:hover {
	opacity: 1;
}

.search-overlay__close {
	background: none;
	border: none;
	color: var(--hilaire-blue);
	cursor: pointer;
	opacity: 0.5;
	padding: 4px;
	display: flex;
	flex-shrink: 0;
}

.search-overlay__close:hover {
	opacity: 1;
}

.search-overlay__suggestions-wrap {
	border-top: 1px solid rgba(10, 30, 60, 0.08);
	padding: 12px 0 24px;
	max-height: calc(90vh - 76px);
	overflow-y: auto;
}

.search-overlay__suggestions {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 45vh;
	overflow-y: auto;
}

.search-overlay__suggestions[hidden] {
	display: none;
}

.search-overlay__suggestions li {
	margin: 0;
	border-bottom: 1px solid rgba(10, 30, 60, 0.06);
}

.search-overlay__suggestion {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	width: 100%;
	text-align: left;
	padding: 12px 4px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	color: var(--hilaire-blue);
	transition: background 0.2s ease;
}

.search-overlay__suggestion:hover,
.search-overlay__suggestion.is-active {
	background: rgba(10, 30, 60, 0.04);
}

.search-overlay__suggestion-title {
	font-size: 15px;
	font-weight: 500;
}

.search-overlay__suggestion-type {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.45;
}

.search-overlay__hint {
	font-family: var(--font-body);
	font-size: 12px;
	color: rgba(10, 30, 60, 0.45);
	margin: 8px 0 0;
}

.search-overlay__hint[hidden] {
	display: none;
}

/* ═══════════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════════ */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: min(400px, 100vw);
	z-index: 9999;
	background: var(--hilaire-blue);
	transform: translateX(100%);
	transition: transform 0.5s ease;
	overflow-y: auto;
	overflow-x: hidden;
	pointer-events: none;
	display: flex;
	flex-direction: column;
}

.mobile-menu.is-open {
	transform: translateX(0);
	pointer-events: auto;
}

.mobile-menu__top {
	flex-shrink: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 16px 20px 0;
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--hilaire-blue);
}

.mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
	color: var(--hilaire-white);
	opacity: 1;
}

.mobile-menu__inner {
	padding: 8px 28px 40px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
}

.mobile-menu__nav > .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-menu__nav > .menu > .menu-item {
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__nav > .menu > .menu-item > a {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 400;
	color: var(--hilaire-white);
	text-decoration: none;
	padding: 16px 0;
	display: block;
	transition: opacity 0.3s ease;
}

.mobile-menu__nav > .menu > .menu-item > a:hover {
	opacity: 0.7;
}

.mobile-menu__nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 8px 20px;
	display: flex;
	flex-direction: column;
	gap: 0;
	border-bottom: none;
}

.mobile-menu__nav .sub-menu .menu-item {
	border-bottom: none;
}

.mobile-menu__nav .sub-menu a {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	padding: 10px 0;
	display: block;
	transition: color 0.3s ease;
}

.mobile-menu__nav .sub-menu a:hover {
	color: var(--hilaire-white);
}

.mobile-menu__link {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 400;
	color: var(--hilaire-white);
	text-decoration: none;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: opacity 0.3s ease;
}

.mobile-menu__link:hover {
	opacity: 0.7;
}

.mobile-menu__sub {
	display: flex;
	flex-direction: column;
	padding-left: 20px;
}

.mobile-menu__sublink {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	padding: 10px 0;
	transition: color 0.3s ease;
}

.mobile-menu__sublink:hover {
	color: var(--hilaire-white);
}

.mobile-menu__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 16px 0;
}

.mobile-menu__lang {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 16px 0;
	flex-wrap: wrap;
}

.mobile-menu__lang-link {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	letter-spacing: 1px;
}

.mobile-menu__lang-link--active {
	color: var(--hilaire-white);
	font-weight: 600;
}

/* Do not blanket-style spans: Polylang switcher uses spans inside links. */
.mobile-menu__lang > span:not(.lang-switcher__pll) {
	color: rgba(255, 255, 255, 0.2);
}

.mobile-menu__lang-sep {
	color: rgba(255, 255, 255, 0.25);
	margin: 0 6px;
}

.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__link {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.44);
	text-decoration: none;
	letter-spacing: 0.14em;
	font-weight: 500;
	opacity: 1;
}

.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__link .lang-switcher__abbr {
	color: inherit;
}

.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__link:hover,
.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__link:focus-visible {
	color: rgba(255, 255, 255, 0.88);
}

.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.65);
	outline-offset: 4px;
}

.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__link--active {
	color: #fff;
	font-weight: 700;
}

.mobile-menu__lang .lang-switcher__pll--dual .lang-switcher__sep {
	color: rgba(255, 255, 255, 0.35);
	opacity: 1;
	margin: 0 8px;
}

.mobile-menu__lang ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: center;
}

.mobile-menu__lang li {
	margin: 0;
}

.mobile-menu__lang li a {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	letter-spacing: 0.04em;
	text-transform: none;
}

.mobile-menu__lang li.current-lang a {
	color: var(--hilaire-white);
	font-weight: 500;
}

.mobile-menu__cta {
	margin-top: 32px;
	text-align: center;
	background: var(--hilaire-white);
	color: var(--hilaire-blue);
}

.mobile-menu-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(10, 30, 60, 0.5);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	pointer-events: none;
}

.mobile-menu-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.menu-open {
	overflow: hidden;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
/* Wide screens: keep Client Portal, FR/EN, and CTA in the bar (nav still drawer-only) */
@media (min-width: 1281px) {
	.util-link {
		display: inline;
	}

	.site-header__utils .lang-switcher {
		display: flex;
	}

	.header-cta {
		display: inline-block;
	}
}

/* Compact bar: only logo, search, burger — language + CTA + portal live in the drawer */
@media (max-width: 1280px) {
	.site-nav.site-nav--hubs {
		display: none;
	}

	.util-link {
		display: none;
	}

	.site-header__utils .lang-switcher {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.site-logo {
		flex: 1 1 auto;
		max-width: none;
		min-width: 0;
		overflow: visible;
	}

	.site-logo__text {
		overflow: visible;
		text-overflow: clip;
	}
}

@media (max-width: 991px) {
	.site-nav.site-nav--hubs {
		display: none;
	}

	.site-logo {
		flex: 1 1 auto;
		max-width: calc(100% - 96px);
		overflow: visible;
	}

	.site-logo__text {
		overflow: visible;
		text-overflow: clip;
		white-space: nowrap;
		font-size: clamp(15px, 4.1vw, 22px);
	}

	.hamburger {
		z-index: 10001;
	}
}

@media (max-width: 768px) {
	.site-logo {
		max-width: calc(100% - 88px);
	}

	.search-toggle {
		display: flex;
	}
}

/* ═══════════════════════════════════════════
   PAGE TRANSITION — first-visit boot preloader only
   ═══════════════════════════════════════════ */
.page-transition {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hilaire-ivory);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-transition.is-dismissing {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page-transition__inner {
	text-align: center;
	padding: 24px;
}

.page-transition__mark {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}

.page-transition__mark svg,
.page-transition__logo {
	width: 88px;
	height: 88px;
	display: block;
	object-fit: contain;
}

html.he-boot-loading .page-transition__logo {
	transform-origin: center center;
	animation: hilaire-logo-pulse 1.6s ease-in-out infinite;
}

@keyframes hilaire-logo-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.88;
		transform: scale(0.97);
	}
}

.page-transition__wordmark {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 500;
	color: var(--hilaire-blue);
	letter-spacing: 0.04em;
	margin: 0;
}
