/*
 * Shared top navigation — ONE source of truth, loaded on every page so the nav
 * is identical everywhere. Uses fixed Booked palette values (not per-page
 * tokens) so it never drifts between pages.
 */

/* Shared header shell — identical container, brand and spacing everywhere. */
.bk-hdr {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid rgba( 13, 27, 30, 0.13 );
}
.bk-hdr-in {
	max-width: 1240px;
	margin-inline: auto;
	padding: 12px clamp( 14px, 3vw, 28px );
	display: flex;
	align-items: center;
	gap: 14px;
}
.bk-brand {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: 'Bricolage Grotesque', system-ui, sans-serif;
	font-weight: 800;
	font-size: 18px;
	letter-spacing: -0.03em;
	color: #0d1b1e;
	text-decoration: none;
}
.bk-brand .mk {
	color: #0f4c4a;
}
.bk-brand em {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	color: #5a6a6c;
	font-family: 'Public Sans', system-ui, sans-serif;
	letter-spacing: 0;
}

.bk-hnav {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-left: auto;
}
.bk-hnav a {
	font-family: 'Public Sans', system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	padding: 8px 13px;
	border-radius: 8px;
	color: #5a6a6c;
	text-decoration: none;
	white-space: nowrap;
}
.bk-hnav a:hover {
	background: rgba( 13, 27, 30, 0.06 );
	color: #0d1b1e;
}
.bk-hnav a[aria-current] {
	color: #0f4c4a;
	background: #eaf4ef;
	font-weight: 600;
}

.bk-hbtn {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 12px;
	font-family: 'Public Sans', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: 999px;
	background: #0f4c4a;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
.bk-hbtn:hover {
	background: #072826;
	color: #fff;
}
