/*
 * Site header and footer, loaded on every page (the replica pages and the
 * previous design's pages alike), after wix-tokens.css.
 *
 * Fluid rather than the old fixed 980px / scaled 320px canvases: flex and grid,
 * the shared tokens, and one breakpoint where the pill menu turns into the
 * drawer. Colours are only the palette in wix-tokens.css.
 *
 * Every class is wxh- (header) or wxf- (footer) so the previous design's
 * style.css, still loaded on the category pages, cannot collide with it.
 *
 * --wxh-h is the header's height. The header is sticky and takes its own room
 * in the flow, so nothing needs to be pushed down by hand; the variable is
 * there for anything that wants to line up with it (and for anchor scrolling).
 */

:root {
	--wxh-h: 76px;
	--wxh-bar: 0px; /* the phone action bar at the bottom of the screen */
	--wxh-admin: var(--wp-admin--admin-bar--height, 0px);
}

body.wx-page {
	margin: 0;
	background: #fff;
}

html:has(body.wx-page) {
	scroll-padding-top: calc(var(--wxh-h) + var(--wxh-admin) + 12px);
}

.wxh-skip {
	position: absolute;
	top: 0;
	left: -9999px;
	z-index: 100000;
	padding: 10px 16px;
	border-radius: var(--wx-radius-sm);
	background: #fff;
	box-shadow: var(--wx-shadow);
	color: #084255;
	font: 600 16px/1.4 var(--wx-font-body);
}

.wxh-skip:focus {
	left: 8px;
	top: 8px;
}

.wxh,
.wxh *,
.wxh *::before,
.wxh *::after,
.wxf,
.wxf *,
.wxf *::before,
.wxf *::after,
.wxf-chat {
	box-sizing: border-box;
}

/* Controls use the header/footer type, never the browser's default family. */
.wxh button,
.wxh input,
.wxf button,
.wxf input {
	font-family: inherit;
}

.wxh :focus-visible,
.wxf :focus-visible,
.wxf-chat:focus-visible {
	outline: 3px solid var(--wx-magenta);
	outline-offset: 3px;
}

/* ------------------------------------------------------------------ header */

.wxh {
	position: sticky;
	top: var(--wxh-admin);
	z-index: 50;
	display: block;
	height: var(--wxh-h);
	margin: 0;
	padding: 0;
	font-family: var(--wx-font-body);
	line-height: normal;
	letter-spacing: normal;
	font-variation-settings: normal;
}

.wxh ul,
.wxh li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wxh a {
	text-decoration: none;
}

/* Clear at the top of the page, a frosted sky tint once it scrolls. */
.wxh__bg {
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0);
	box-shadow: none;
	transition: background-color var(--wx-dur) var(--wx-ease), box-shadow var(--wx-dur) var(--wx-ease);
}

.wxh.is-scrolled .wxh__bg {
	background-color: rgba(23, 198, 255, 0.6);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(12px) saturate(1.2);
	backdrop-filter: blur(12px) saturate(1.2);
}

.wxh__strip {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
	max-width: 1280px;
	height: 100%;
	margin-inline: auto;
	padding-inline: var(--wx-gutter);
}

/* Logo: face + wordmark on one white pill. */
.wxh .wxh__logo {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: 8px;
	height: 56px;
	padding: 4px 18px 4px 10px;
	border-radius: var(--wx-radius-pill);
	background: #fff;
	box-shadow: var(--wx-shadow-sm);
	transition: box-shadow var(--wx-dur) var(--wx-ease), transform var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__logo:hover {
	box-shadow: var(--wx-shadow);
	transform: translateY(-1px);
}

.wxh__logo img {
	display: block;
	max-width: none;
	height: auto;
	object-fit: contain;
}

.wxh .wxh__logo .wxh__logo-face {
	width: 37px;
	height: 47px;
}

.wxh .wxh__logo .wxh__logo-text {
	width: 157px;
	height: 30px;
}

.wxh__desk {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(12px, 2vw, 28px);
	min-width: 0;
}

/* Menu: one white pill, sky separators, yellow current item, magenta hover. */
.wxh .wxh__menu {
	display: flex;
	align-items: stretch;
	height: 50px;
	padding: 4px;
	border-radius: var(--wx-radius-pill);
	background: rgba(255, 255, 255, 0.85);
	box-shadow: var(--wx-shadow-sm);
	white-space: nowrap;
}

.wxh .wxh__item {
	position: relative;
	display: flex;
	align-items: stretch;
}

.wxh .wxh__item + .wxh__item::before {
	content: '';
	align-self: center;
	width: 1px;
	height: 22px;
	margin-inline: 2px;
	background: #17c6ff;
}

.wxh .wxh__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 clamp(12px, 1.3vw, 18px);
	border-radius: var(--wx-radius-pill);
	color: #084255;
	transition: background-color var(--wx-dur) var(--wx-ease), color var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__label {
	font: 600 15px/1 var(--wx-font-body);
}

.wxh .wxh__chev {
	display: block;
	width: 10px;
	height: 6px;
	fill: currentColor;
	transition: transform var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__item:hover > .wxh__link,
.wxh .wxh__item:focus-within > .wxh__link {
	background-color: #ff00bb;
	color: #fff;
}

.wxh .wxh__item.is-current > .wxh__link {
	background-color: #fff200;
	color: #002fa6;
}

/*
 * Rentals & Pricing: a link and a disclosure button sharing one pill, and the
 * mega menu under the header with a card per rental category.
 */
.wxh .wxh__split {
	display: flex;
	align-items: stretch;
	border-radius: var(--wx-radius-pill);
	color: #084255;
	transition: background-color var(--wx-dur) var(--wx-ease), color var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__split .wxh__link {
	padding-right: 2px;
	background: none;
	color: inherit;
}

.wxh .wxh__mega-btn {
	position: relative;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	margin: 0;
	padding: 0 8px 0 0;
	border: 0;
	border-radius: 0 var(--wx-radius-pill) var(--wx-radius-pill) 0;
	background: none;
	color: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

/* A 44px+ hit area: over the pill's own padding, above, below and right. */
.wxh .wxh__mega-btn::after {
	content: "";
	position: absolute;
	top: -4px;
	right: -6px;
	bottom: -4px;
	left: -6px;
}

.wxh .wxh__mega-btn:focus-visible {
	outline-offset: -2px;
}

.wxh .wxh__item--mega:hover > .wxh__split,
.wxh .wxh__item--mega:focus-within > .wxh__split,
.wxh .wxh__item--mega.is-mega-open > .wxh__split {
	background-color: #ff00bb;
	color: #fff;
}

.wxh .wxh__item--mega.is-current > .wxh__split {
	background-color: #fff200;
	color: #002fa6;
}

.wxh .wxh__item--mega.is-mega-open .wxh__chev,
.wxh:not(.wxh--js) .wxh__item--mega:hover .wxh__chev,
.wxh:not(.wxh--js) .wxh__item--mega:focus-within .wxh__chev {
	transform: rotate(180deg);
}

/* Positioned against the strip, so the panel spans the header's container. */
.wxh .wxh__item--mega {
	position: static;
}

.wxh__mega {
	position: absolute;
	top: calc(100% - 4px);
	right: var(--wx-gutter);
	left: var(--wx-gutter);
	z-index: 3;
	display: none;
	max-height: calc(100vh - var(--wxh-h) - var(--wxh-admin) - 12px);
	padding: 14px;
	overflow-y: auto;
	overscroll-behavior: contain;
	border-radius: var(--wx-radius-lg);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--wx-shadow-lg), var(--wx-shadow-sm);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	backdrop-filter: blur(14px) saturate(1.2);
	white-space: normal;
	opacity: 0;
	translate: 0 8px;
	transition: opacity 0.2s ease, translate 0.25s var(--wx-ease), display 0.2s allow-discrete;
}

.wxh .wxh__item--mega.is-mega-open > .wxh__mega,
.wxh:not(.wxh--js) .wxh__item--mega:hover > .wxh__mega,
.wxh:not(.wxh--js) .wxh__item--mega:focus-within > .wxh__mega {
	display: block;
	opacity: 1;
	translate: 0 0;
}

@starting-style {
	.wxh .wxh__item--mega.is-mega-open > .wxh__mega {
		opacity: 0;
		translate: 0 8px;
	}
}

/* Bridges the gap under the menu pill so the pointer can travel into the panel
   (on the item, not the panel, whose scrolling box would clip it). */
.wxh .wxh__item--mega.is-mega-open::after {
	content: "";
	position: absolute;
	top: calc(50% + 16px);
	right: var(--wx-gutter);
	bottom: 0;
	left: var(--wx-gutter);
}

.wxh .wxh__mega-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.wxh .wxh__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: var(--wx-tap);
	padding: 8px;
	border-radius: var(--wx-radius);
	background: #fff;
	box-shadow: 0 0 0 1px rgba(23, 198, 255, 0.2);
	color: #084255;
	transition: transform var(--wx-dur) var(--wx-ease), box-shadow var(--wx-dur) var(--wx-ease), background-color var(--wx-dur) var(--wx-ease), color var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__card:hover {
	box-shadow: 0 0 0 1px rgba(23, 198, 255, 0.4), var(--wx-shadow);
	transform: translateY(-3px);
}

.wxh__card-media {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: var(--wx-radius-sm);
	background: #ccf3ff;
}

.wxh .wxh__card-media img {
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--wx-ease);
}

.wxh .wxh__card:hover .wxh__card-media img {
	transform: scale(1.04);
}

.wxh__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	padding: 10px 6px 2px;
}

.wxh .wxh__card-name {
	font: 800 15px/1.25 var(--wx-font-display);
	transition: color 0.2s ease;
}

.wxh .wxh__card:hover .wxh__card-name {
	color: #ff00bb;
}

/* The category page you are on. */
.wxh .wxh__card[aria-current] .wxh__card-name {
	align-self: flex-start;
	box-shadow: inset 0 -0.42em #fff200;
}

.wxh .wxh__card-meta {
	overflow: hidden;
	color: rgba(8, 66, 85, 0.85);
	font: 400 12.5px/1.45 var(--wx-font-body);
	white-space: nowrap;
	text-overflow: ellipsis;
}

.wxh .wxh__card-price {
	margin-top: auto;
	padding-top: 4px;
	color: #084255;
	font: 500 13px/1.35 var(--wx-font-body);
}

.wxh .wxh__card-price strong,
.wxh .wxh__mcat-price strong {
	color: #002fa6;
	font-size: 1.2em;
	font-weight: 700;
}

/* Last tile: the full rentals & pricing page. */
.wxh .wxh__card--all {
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px 16px;
	background: #ccf3ff;
	box-shadow: none;
	text-align: center;
}

.wxh .wxh__card--all:hover {
	background: #ff00bb;
	box-shadow: var(--wx-shadow);
	color: #fff;
}

.wxh__all-ico {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff200;
	color: #002fa6;
	transition: transform var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__card--all:hover .wxh__all-ico {
	transform: translateX(3px);
}

.wxh .wxh__all-label {
	max-width: 15ch;
	font: 800 15px/1.3 var(--wx-font-display);
}

.wxh .wxh__arrow {
	display: block;
	flex: none;
	width: 20px;
	height: 20px;
	max-width: none;
}

/* Short desktop windows: wider photos, so the whole panel still fits. */
@media (min-width: 980px) and (max-height: 720px) {
	.wxh__card-media {
		aspect-ratio: 16 / 10;
	}
}

.wxh .wxh__social {
	display: flex;
	flex: none;
	gap: 4px;
}

.wxh .wxh__social:empty {
	display: none;
}

.wxh .wxh__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--wx-tap);
	height: var(--wx-tap);
	border-radius: 50%;
	/* The icons are white: a sky disc keeps them visible over a white page. */
	background: #17c6ff;
	box-shadow: var(--wx-shadow-sm);
	transition: transform var(--wx-dur) var(--wx-ease), box-shadow var(--wx-dur) var(--wx-ease);
}

.wxh .wxh__social a:hover {
	transform: translateY(-2px);
	box-shadow: var(--wx-shadow);
}

.wxh .wxh__social img {
	display: block;
	width: 31px;
	height: 31px;
	max-width: none;
}

/* Below the desktop breakpoint only. */
.wxh__m,
.wxh__panel {
	display: none;
}

@media (min-width: 980px) and (max-width: 1119px) {
	.wxh .wxh__label {
		font-size: 14px;
	}

	.wxh .wxh__link {
		padding: 0 10px;
	}

	.wxh .wxh__logo .wxh__logo-text {
		width: 136px;
		height: 26px;
	}
}

/* --------------------------------------------------- tablet and phone header */

@media (max-width: 979px) {
	:root {
		--wxh-h: 64px;
	}

	.wxh.is-open {
		z-index: 99999;
	}

	.wxh__desk {
		display: none;
	}

	.wxh .wxh__logo {
		height: 48px;
		padding: 3px 14px 3px 8px;
		gap: 6px;
	}

	.wxh .wxh__logo .wxh__logo-face {
		width: 32px;
		height: 40px;
	}

	.wxh .wxh__logo .wxh__logo-text {
		width: 131px;
		height: 25px;
	}

	.wxh__m {
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		justify-content: flex-end;
		gap: 10px;
		min-width: 0;
	}

	.wxh__actions {
		display: flex;
		gap: 8px;
	}

	.wxh .wxh__pill {
		padding: 0.55em 1.15em;
		font-size: 15px;
		white-space: nowrap;
	}

	.wxh .wxh__pill svg {
		flex: none;
		fill: currentColor;
	}

	.wxh .wxh__pill {
		background-color: #002fa6;
		color: #fff;
	}

	.wxh .wxh__pill:hover {
		background-image: linear-gradient(rgba(40, 38, 38, 0.22), rgba(40, 38, 38, 0.22));
		color: #fff;
	}

	.wxh .wxh__toggle {
		position: relative;
		z-index: 48; /* above the drawer, where it becomes the close button */
		display: flex;
		flex: none;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 14px;
		background: #ff00bb;
		box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
		cursor: pointer;
		transition: box-shadow var(--wx-dur) var(--wx-ease), transform var(--wx-dur) var(--wx-ease);
		-webkit-tap-highlight-color: transparent;
	}

	.wxh .wxh__toggle:hover {
		transform: translateY(-1px);
	}

	.wxh__bars {
		position: relative;
		display: block;
		width: 22px;
		height: 16px;
	}

	.wxh__bars span {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		border-radius: 2px;
		background: #fff;
		transition: transform var(--wx-dur) var(--wx-ease), opacity 0.2s ease;
	}

	.wxh__bars span:nth-child(1) { top: 0; }
	.wxh__bars span:nth-child(2) { top: 7px; }
	.wxh__bars span:nth-child(3) { top: 14px; }

	.wxh.is-open .wxh__bars span:nth-child(1) {
		transform: translateY(7px) rotate(-45deg);
	}

	.wxh.is-open .wxh__bars span:nth-child(2) {
		opacity: 0;
	}

	.wxh.is-open .wxh__bars span:nth-child(3) {
		transform: translateY(-7px) rotate(45deg);
	}

	/* Drawer: yellow panel sliding in from the right over an ink veil. */
	.wxh__panel {
		position: fixed;
		inset: 0;
		z-index: 46; /* over the phone action bar */
		display: block;
		overflow: hidden; /* the closed drawer waits off-canvas: never widen the page */
		visibility: hidden;
		pointer-events: none;
		transition: visibility 0s linear 0.35s;
	}

	.wxh.is-open .wxh__panel {
		visibility: visible;
		pointer-events: auto;
		transition: visibility 0s;
	}

	.wxh__overlay {
		position: absolute;
		inset: 0;
		background: rgba(47, 46, 46, 0.6);
		opacity: 0;
		transition: opacity 0.35s ease;
	}

	.wxh__drawer {
		position: absolute;
		top: 0;
		right: 0;
		width: min(86vw, 360px);
		height: 100%;
		padding: calc(var(--wxh-admin) + var(--wxh-h) + 8px) 16px calc(24px + env(safe-area-inset-bottom, 0px));
		overflow-y: auto;
		overscroll-behavior: contain;
		border-radius: var(--wx-radius-lg) 0 0 var(--wx-radius-lg);
		background: #fbfd6f;
		box-shadow: var(--wx-shadow-lg);
		transform: translateX(100%);
		transition: transform 0.35s var(--wx-ease);
	}

	.wxh.is-open .wxh__overlay {
		opacity: 1;
	}

	.wxh.is-open .wxh__drawer {
		transform: none;
	}

	.wxh .wxh__mmenu {
		display: grid;
		gap: 4px;
	}

	.wxh__mrow {
		display: grid;
		grid-template-columns: 1fr;
		align-items: center;
		border-radius: var(--wx-radius-sm);
		transition: background-color 0.2s ease;
	}

	.wxh__mitem.has-sub > .wxh__mrow {
		grid-template-columns: 1fr 52px;
	}

	.wxh .wxh__mlink,
	.wxh .wxh__msub a {
		display: flex;
		align-items: center;
		min-height: 52px;
		padding: 0 14px;
		border-radius: var(--wx-radius-sm);
		color: #2f2e2e;
		font: 600 16px/1.3 var(--wx-font-body);
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.wxh .wxh__msub a {
		min-height: 48px;
		padding-left: 28px;
		font-size: 15px;
		font-weight: 400;
	}

	.wxh .wxh__mlink:hover,
	.wxh .wxh__msub a:hover {
		text-decoration: underline;
		text-underline-offset: 4px;
	}

	.wxh .wxh__mitem.is-current > .wxh__mrow {
		background-color: #ff00bb;
	}

	.wxh .wxh__mitem.is-current > .wxh__mrow .wxh__mlink,
	.wxh .wxh__mitem.is-current > .wxh__mrow .wxh__marrow svg {
		color: #fff;
		fill: #fff;
	}

	.wxh .wxh__marrow {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 52px;
		height: 52px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: var(--wx-radius-sm);
		background: none;
		cursor: pointer;
	}

	.wxh__marrow svg {
		display: block;
		width: 14px;
		height: 8px;
		max-width: none;
		fill: #2f2e2e;
		transition: transform var(--wx-dur) var(--wx-ease);
	}

	.wxh__mitem.is-expanded .wxh__marrow svg {
		transform: rotate(180deg);
	}

	.wxh .wxh__msub {
		display: none;
		padding-block: 2px 6px;
	}

	.wxh .wxh__mitem.is-expanded > .wxh__msub {
		display: block;
		animation: wxh-fade 0.3s ease;
	}

	/* Rentals submenu: a row per category with its thumbnail, name and from-price. */
	.wxh .wxh__msub--cats {
		padding-block: 2px 8px;
	}

	.wxh .wxh__msub--cats li + li {
		margin-top: 2px;
	}

	.wxh .wxh__msub .wxh__mcat {
		gap: 12px;
		min-height: 64px;
		padding: 4px 8px 4px 12px;
		font-weight: 400;
	}

	.wxh .wxh__msub .wxh__mcat:hover,
	.wxh .wxh__msub .wxh__mall:hover {
		background-color: rgba(255, 255, 255, 0.55);
		text-decoration: none;
	}

	.wxh__mcat-img {
		display: block;
		flex: none;
		width: 56px;
		height: 56px;
		overflow: hidden;
		border-radius: var(--wx-radius-sm);
		background: #ccf3ff;
		box-shadow: var(--wx-shadow-sm);
	}

	.wxh .wxh__mcat-img img {
		display: block;
		width: 56px;
		height: 56px;
		max-width: none;
		object-fit: cover;
	}

	.wxh__mcat-text {
		display: grid;
		gap: 1px;
		min-width: 0;
	}

	.wxh .wxh__mcat-name {
		color: #084255;
		font: 800 14px/1.25 var(--wx-font-display);
	}

	.wxh .wxh__mcat[aria-current] .wxh__mcat-name {
		text-decoration: underline;
		text-decoration-color: #ff00bb;
		text-decoration-thickness: 2px;
		text-underline-offset: 3px;
	}

	.wxh .wxh__mcat-price {
		color: #2f2e2e;
		font: 400 13px/1.35 var(--wx-font-body);
	}

	.wxh .wxh__mcat-price strong {
		font-size: 1.15em;
	}

	.wxh .wxh__msub .wxh__mall {
		gap: 8px;
		margin-top: 4px;
		padding-left: 12px;
		color: #084255;
		font-weight: 600;
	}

	html.wxh-open {
		overflow: hidden;
		scrollbar-gutter: stable;
	}
}

/* The booking page's phone-bar extras; hidden everywhere else. */
.wxh .wxh__ask,
.wxh .wxh__pill--num {
	display: none;
}

/* Phones: Book Now / Call Us move to a yellow bar at the bottom, in thumb reach.
   On the booking page (/contact/) it shows "Any questions?" and both numbers. */
@media (max-width: 599px) {
	:root {
		--wxh-bar: calc(78px + env(safe-area-inset-bottom, 0px));
	}

	:root:has(.wxh__actions--booking) {
		--wxh-bar: calc(100px + env(safe-area-inset-bottom, 0px));
	}

	.wxh__actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 45;
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-content: center;
		gap: 10px;
		height: var(--wxh-bar);
		padding: 17px 16px calc(17px + env(safe-area-inset-bottom, 0px));
		background: #fff200;
		box-shadow: 0 -6px 20px -10px rgba(0, 47, 166, 0.45);
	}

	.wxh .wxh__pill {
		width: 100%;
		min-height: 44px;
		font-size: 16px;
	}

	.wxh .wxh__pill:hover {
		transform: none;
	}

	.wxh .wxh__actions--booking {
		grid-template-rows: auto 44px;
		gap: 8px 10px;
		padding-top: 14px;
		padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
	}

	.wxh .wxh__actions--booking .wxh__pill--book,
	.wxh .wxh__actions--booking .wxh__pill--call {
		display: none;
	}

	.wxh .wxh__actions--booking .wxh__ask {
		display: block;
		grid-column: 1 / -1;
		margin: 0;
		color: #002fa6;
		font: 700 15px/18px var(--wx-font-body);
		text-align: center;
	}

	.wxh .wxh__actions--booking .wxh__pill--num {
		display: inline-flex;
		gap: 6px;
		min-width: 0;
		padding: 0 8px;
		font-size: 14px;
		letter-spacing: 0;
	}

	.wxh .wxh__num-tag {
		flex: none;
		padding: 2px 6px;
		border-radius: var(--wx-radius-pill);
		background: #fff200;
		color: #002fa6;
		font-size: 11px;
		font-weight: 700;
		line-height: 1.2;
	}

	.wxh .wxh__num {
		white-space: nowrap;
	}

	/* The bar never covers the end of the page. */
	body {
		padding-bottom: var(--wxh-bar);
	}
}

@media (max-width: 359px) {
	.wxh .wxh__actions--booking {
		padding-inline: 10px;
		column-gap: 8px;
	}

	.wxh .wxh__actions--booking .wxh__pill--num {
		gap: 4px;
		padding: 0 5px;
		font-size: 13px;
	}

	.wxh .wxh__num-tag {
		padding: 2px 5px;
		font-size: 10.5px;
	}
}

@media (max-width: 359px) {
	.wxh__strip {
		gap: 8px;
	}

	.wxh .wxh__logo {
		padding-right: 10px;
	}

	.wxh .wxh__logo .wxh__logo-text {
		width: 115px;
		height: 22px;
	}
}

/* ------------------------------------------------------------------ footer */

/*
 * A royal-blue band under a sky-and-blue wave. White type; yellow for the main
 * action, hover and keyboard focus; magenta and sky as small accents. Every
 * rule is scoped to .wxf so the previous design's style.css cannot reach in.
 */

.wxf {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	background: transparent;
	color: #fff;
	font-family: var(--wx-font-body);
	line-height: 1.6;
	letter-spacing: normal;
	font-variation-settings: normal;
	overflow-x: clip;
}

.wxf p,
.wxf h2 {
	margin: 0;
}

.wxf ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wxf a {
	text-decoration: none;
}

.wxf .wxf__body :focus-visible {
	outline: 3px solid #fff200;
	outline-offset: 3px;
}

.wxf__wave {
	display: block;
	width: 100%;
	max-width: none;
	height: clamp(22px, 3.2vw, 46px);
	margin-bottom: -1px;
	/* Painted blue behind the curves, so the band has a clean top edge
	   whatever the last section of the page is; the sky crest reads as a wave. */
	background: #002fa6;
}

.wxf__wave-back {
	fill: #17c6ff;
	opacity: 0.35;
}

.wxf__wave-front {
	fill: #002fa6;
}

.wxf__body {
	background-color: #002fa6;
	background-image:
		radial-gradient(60% 45% at 100% 0%, rgba(23, 198, 255, 0.16), rgba(23, 198, 255, 0) 70%),
		radial-gradient(45% 40% at 0% 100%, rgba(255, 0, 187, 0.12), rgba(255, 0, 187, 0) 70%);
}

.wxf__in {
	max-width: var(--wx-container);
	margin: 0 auto;
	padding: clamp(16px, 2.5vw, 28px) var(--wx-gutter) 0;
}

.wxf__ico {
	display: block;
	flex: none;
	width: 20px;
	height: 20px;
	max-width: none;
	fill: currentColor;
}

/* ---- call to action */

.wxf__cta {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 32px;
	padding: clamp(22px, 3vw, 34px) clamp(22px, 3.5vw, 44px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--wx-radius-lg);
	background: rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.wxf__cta::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	background: linear-gradient(180deg, #fff200, #ff00bb);
}

.wxf__cta-text {
	flex: 1 1 320px;
	min-width: 0;
}

.wxf .wxf__cta-title {
	color: #fff;
	font: 800 clamp(1.5rem, 1.05rem + 1.7vw, 2.25rem)/1.15 var(--wx-font-display);
	letter-spacing: -0.01em;
	text-transform: none;
}

.wxf .wxf__cta-sub {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.82);
	font: 400 var(--wx-fs-body)/1.5 var(--wx-font-body);
}

.wxf__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wxf .wxf__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 10px 24px;
	border: 2px solid transparent;
	border-radius: var(--wx-radius-pill);
	font: 600 16px/1.2 var(--wx-font-body);
	white-space: nowrap;
	transition: transform var(--wx-dur) var(--wx-ease), background-color var(--wx-dur) var(--wx-ease), border-color var(--wx-dur) var(--wx-ease), color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__action--book {
	padding-inline: 30px;
	background: #fff200;
	color: #2f2e2e;
	box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.45);
}

.wxf .wxf__action--book:hover {
	background: #fff;
	color: #002fa6;
	transform: translateY(-2px);
}

.wxf .wxf__action--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
}

.wxf .wxf__action--ghost:hover {
	border-color: #fff200;
	color: #fff200;
	transform: translateY(-2px);
}

/* ---- columns */

.wxf__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 36px;
	padding-block: clamp(36px, 5vw, 56px);
}

.wxf__col {
	min-width: 0;
}

.wxf .wxf__h {
	position: relative;
	margin: 0 0 14px;
	padding-bottom: 12px;
	color: #fff;
	font: 800 13px/1.3 var(--wx-font-display);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wxf .wxf__h::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 28px;
	height: 3px;
	border-radius: 3px;
	background: #ff00bb;
}

.wxf .wxf__h--sub {
	margin-top: 22px;
}

.wxf .wxf__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: var(--wx-tap);
	color: rgba(255, 255, 255, 0.82);
	font: 500 15px/1.35 var(--wx-font-body);
	transition: color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__link:hover {
	color: #fff200;
}

.wxf .wxf__ico--ext {
	width: 15px;
	height: 15px;
	opacity: 0.8;
	transition: transform var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__link:hover .wxf__ico--ext {
	transform: translate(2px, -2px);
}

/* Brand */

.wxf .wxf__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: var(--wx-tap);
}

.wxf .wxf__logo-face {
	display: block;
	width: 46px;
	height: auto;
}

.wxf .wxf__logo-text {
	display: block;
	width: 190px;
	max-width: 100%;
	height: auto;
}

.wxf .wxf__tagline {
	max-width: 32ch;
	margin-top: 16px;
	color: #fff;
	font: 600 var(--wx-fs-body)/1.45 var(--wx-font-body);
}

.wxf .wxf__perks {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.wxf .wxf__perks li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, 0.82);
	font: 400 14.5px/1.45 var(--wx-font-body);
}

.wxf .wxf__perks .wxf__ico {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	color: #17c6ff;
}

.wxf .wxf__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.wxf .wxf__social a {
	display: grid;
	place-items: center;
	width: var(--wx-tap);
	height: var(--wx-tap);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: transform var(--wx-dur) var(--wx-ease), background-color var(--wx-dur) var(--wx-ease), border-color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__social a:hover {
	border-color: #ff00bb;
	background: #ff00bb;
	transform: translateY(-2px);
}

/* Contact */

.wxf .wxf__list--contact {
	display: grid;
	gap: 8px;
}

.wxf .wxf__link--ico {
	gap: 12px;
	max-width: 100%;
	padding-block: 2px;
}

.wxf__badge {
	display: grid;
	flex: none;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff200;
	transition: background-color var(--wx-dur) var(--wx-ease), color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__link--ico:hover .wxf__badge {
	background: #fff200;
	color: #002fa6;
}

.wxf__link-text {
	display: grid;
	min-width: 0;
}

.wxf .wxf__small {
	color: rgba(255, 255, 255, 0.78);
	font: 600 11.5px/1.3 var(--wx-font-body);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wxf .wxf__val {
	color: #fff;
	font: 600 15px/1.35 var(--wx-font-body);
	overflow-wrap: anywhere;
	transition: color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__val--email {
	font-size: 14.5px;
}

.wxf .wxf__link--ico:hover .wxf__val {
	color: #fff200;
}

/* Newsletter: same form, same fields, new look. */

.wxf .wxf__subhead {
	margin-bottom: 14px;
	color: #fff;
	font: 600 var(--wx-fs-body)/1.45 var(--wx-font-body);
}

.wxf .wxf__form {
	margin: 0;
	padding: 0;
	background: none;
}

.wxf__row {
	display: grid;
	gap: 10px;
}

.wxf .wxf__input {
	width: 100%;
	min-width: 0;
	height: 50px;
	margin: 0;
	padding: 0 20px;
	border: 2px solid #fff;
	border-radius: var(--wx-radius-pill);
	background: #fff;
	box-shadow: none;
	color: #2f2e2e;
	font: 400 16px/1.4 var(--wx-font-body);
	appearance: none;
	-webkit-appearance: none;
	cursor: text;
	transition: border-color var(--wx-dur) var(--wx-ease), box-shadow var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__input::placeholder {
	color: #2f2e2e;
	opacity: 0.75;
}

.wxf .wxf__input:hover {
	border-color: #ccf3ff;
}

.wxf .wxf__input:focus {
	outline: 0;
	box-shadow: 0 0 0 3px #fff200;
}

.wxf .wxf__input.is-invalid {
	border-color: #e21c21;
	box-shadow: 0 0 0 3px #fff200;
}

/* 19px bold counts as large text, so white on magenta clears AA. */
.wxf .wxf__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 0 20px;
	border: 0;
	border-radius: var(--wx-radius-pill);
	background: #ff00bb;
	box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.45);
	color: #fff;
	font: 700 19px/1 var(--wx-font-body);
	cursor: pointer;
	transition: transform var(--wx-dur) var(--wx-ease), background-color var(--wx-dur) var(--wx-ease), color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__btn:hover {
	background: #fff200;
	color: #2f2e2e;
	transform: translateY(-2px);
}

.wxf__btn-label {
	white-space: nowrap;
}

.wxf .wxf__btn:disabled {
	cursor: default;
	opacity: 0.7;
	transform: none;
}

.wxf .wxf__msg {
	margin-top: 10px;
	color: #fff;
	font: 500 15px/1.4 var(--wx-font-body);
	visibility: hidden;
}

.wxf .wxf__msg:not(.is-shown) {
	height: 0;
	margin: 0;
	overflow: hidden;
}

.wxf .wxf__msg.is-shown {
	visibility: visible;
}

.wxf .wxf__msg.is-error {
	color: #fff200;
}

.wxf__hp,
.wxf__sr {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---- bottom bar */

.wxf__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 24px;
	/* Room on the right for the floating chat / WhatsApp button when the page
	   is narrow enough for it to sit over the bar. */
	padding: 18px clamp(0px, calc(84px - var(--wx-gutter) - max(0px, (100vw - var(--wx-container)) / 2)), 84px) 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.wxf__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 2px 18px;
	min-width: 0;
}

.wxf .wxf__copy {
	color: #fff;
	font: 500 14px/1.5 var(--wx-font-body);
}

.wxf .wxf__credit {
	color: rgba(255, 255, 255, 0.78);
	font: 400 13px/1.5 var(--wx-font-body);
}

.wxf .wxf__credit a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.45);
	text-underline-offset: 3px;
	transition: color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__credit a:hover {
	color: #fff200;
	text-decoration-color: currentColor;
}

.wxf .wxf__top {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: 10px;
	min-height: var(--wx-tap);
	color: rgba(255, 255, 255, 0.82);
	font: 600 14px/1.2 var(--wx-font-body);
	transition: color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__top .wxf__ico {
	box-sizing: content-box;
	width: 16px;
	height: 16px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transition: transform var(--wx-dur) var(--wx-ease), border-color var(--wx-dur) var(--wx-ease);
}

.wxf .wxf__top:hover {
	color: #fff200;
}

.wxf .wxf__top:hover .wxf__ico {
	border-color: #fff200;
	transform: translateY(-2px);
}

/* ---- widths */

@media (min-width: 600px) {
	.wxf__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 44px 40px;
	}
}

@media (min-width: 1180px) {
	.wxf__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.7fr) minmax(0, 1.35fr) minmax(0, 1.05fr);
		gap: 28px;
	}
}

@media (max-width: 599px) {
	.wxf__cta {
		padding: 22px 20px 20px 24px;
	}

	.wxf__cta-text {
		flex-basis: 100%;
	}

	.wxf__cta-actions {
		width: 100%;
	}

	.wxf .wxf__action {
		flex: 1 1 128px;
		padding-inline: 14px;
	}

	.wxf .wxf__action--book {
		flex-basis: 100%;
	}

	.wxf__legal {
		display: grid;
	}
}

/* Phones: the five page links side by side in two columns, to keep the band short. */
@media (min-width: 360px) and (max-width: 599px) {
	.wxf .wxf__list--pages {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wxf *,
	.wxf *::before,
	.wxf *::after,
	.wxf-chat {
		transition: none !important;
		animation: none !important;
	}

	.wxf a:hover,
	.wxf a:hover *,
	.wxf button:hover,
	.wxf-chat:hover {
		transform: none !important;
	}
}

/* Floating chat button: bottom right, clear of the phone action bar. */
.wxf-chat {
	position: fixed;
	right: 16px;
	bottom: calc(var(--wxh-bar) + 16px);
	z-index: 44;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ff00bb; /* magenta, the client's call */
	box-shadow: 0 0 3px 0 rgba(182, 180, 180, 0.5);
	color: #fff;
	text-decoration: none;
	transition: transform var(--wx-dur) var(--wx-ease), box-shadow var(--wx-dur) var(--wx-ease);
}

.wxf-chat:hover {
	transform: translateY(-2px);
}

.wxf-chat svg {
	display: block;
	width: 30px;
	height: 30px;
	max-width: none;
	fill: currentColor;
}

html.wxh-open .wxf-chat {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 599px) {
	.wxf-chat {
		right: 12px;
		bottom: calc(var(--wxh-bar) + 12px);
		width: 52px;
		height: 52px;
	}

	.wxf-chat svg {
		width: 26px;
		height: 26px;
	}

	/* The previous design's WhatsApp button, on its pages, clears the bar too. */
	body:not(.wx-page) .wa {
		bottom: calc(var(--wxh-bar) + 12px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wxh__mega,
	.wxh .wxh__card,
	.wxh .wxh__card-media img,
	.wxh__all-ico {
		transition: none;
	}

	.wxh .wxh__card:hover,
	.wxh .wxh__card:hover .wxh__card-media img,
	.wxh .wxh__card--all:hover .wxh__all-ico {
		transform: none;
	}
}

@keyframes wxh-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}
