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

:root {
	--site-header-height: 76px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
	background: var(--hilaire-ivory);
	border-bottom: 1px solid rgba(10, 30, 60, 0.08);
	overflow: visible;
	transform: none;
}

/* Logged-in WP admin bar: keep header below the toolbar */
.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

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

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

.site-logo:focus-visible {
	outline: 2px solid var(--hilaire-blue);
	outline-offset: 4px;
}

.site-logo__img {
	display: block;
	width: auto;
	max-height: 60px;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.site-logo__text {
	display: inline-block;
	opacity: 1;
	visibility: visible;
	font-family: var(--font-serif);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-navy);
	margin-left: 0.6rem;
	vertical-align: middle;
}

/* ─── 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;
}

/* ─── 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);
}

/* ─── 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-blue);
	color: var(--hilaire-white);
	padding: 12px 28px;
	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;
	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 {
	padding: 10px 24px;
	font-size: 11px;
	white-space: nowrap;
}

/* ─── 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: 1002;
	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: 1001;
	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) {
	.util-link {
		display: none;
	}

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

	.header-cta {
		display: none;
	}
}

@media (max-width: 768px) {
	.site-logo {
		max-width: min(240px, 75vw);
	}

	.search-toggle {
		display: flex;
	}
}

/* ═══════════════════════════════════════════
   PAGE TRANSITION — logo animation between views
   ═══════════════════════════════════════════ */
.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.35s ease, visibility 0.35s ease;
}

.page-transition.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

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

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

.page-transition__mark svg {
	width: 72px;
	height: 72px;
	display: block;
}

.page-transition.is-active .hilaire-logo-mark__rings {
	transform-origin: center center;
	animation: hilaire-logo-spin 1.1s linear infinite;
}

@keyframes hilaire-logo-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

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