/* Shared hotel header and footer shell */
.mimo-hotel-header {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	z-index: 50;
	height: 135px;
	min-height: 135px;
	padding: 0 28px;
	background: #f4efe6;
	color: var(--mimo-ink);
	overflow: visible;
	transition: background-color .28s ease, box-shadow .28s ease, height .28s ease, min-height .28s ease;
}

.mimo-hotel-header::after {
	content: none;
}

.mimo-hotel-header__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--mimo-shell-width);
	height: 135px;
	min-height: 135px;
	margin-inline: auto;
	padding: 8px 0 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: height .28s ease, min-height .28s ease, padding .28s ease;
}

.mimo-hotel-header__utility {
	width: 100%;
	min-height: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	margin-bottom: 0;
}

.mimo-hotel-header__utility-link,
.mimo-hotel-header__nav-link {
	color: var(--mimo-ink);
	text-decoration: none;
	transition: color .2s ease;
}

.mimo-hotel-header__utility-link {
	font-size: 14px;
	white-space: nowrap;
}

.mimo-hotel-header__nav {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 205px minmax(0, 1fr);
	align-items: center;
	gap: 34px;
}

.mimo-hotel-header__nav-side {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 12px;
}

.mimo-hotel-header__nav-side--left { text-align: left; }
.mimo-hotel-header__nav-side--right { text-align: right; }

.mimo-hotel-header__nav-link {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: .035em;
	white-space: nowrap;
}

.mimo-hotel-header__utility-link:hover,
.mimo-hotel-header__nav-link:hover,
.mimo-hotel-header__utility-link:focus-visible,
.mimo-hotel-header__nav-link:focus-visible {
	color: var(--mimo-brand);
}

.mimo-hotel-header__utility-link:focus-visible,
.mimo-hotel-header__nav-link:focus-visible,
.mimo-hotel-footer a:focus-visible {
	outline: 2px solid var(--mimo-brand);
	outline-offset: 4px;
}

.mimo-hotel-header__logo {
	width: 100%;
	max-width: 195px;
	margin: 0 auto;
	transition: max-width .28s ease;
}

.mimo-hotel-header__logo::before {
	content: none;
}

.mimo-hotel-header__logo,
.mimo-hotel-footer__logo {
	line-height: 0;
}

.mimo-hotel-header__logo img,
.mimo-hotel-footer__logo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.mimo-hotel-header__logo img {
	filter: saturate(1.08) contrast(1.08);
}

@media (min-width: 992px) {
	#brx-header:has(> .mimo-hotel-header) {
		position: sticky;
		top: 0;
		z-index: 50;
		background: #f4efe6;
	}

	body.admin-bar #brx-header:has(> .mimo-hotel-header) {
		top: 32px;
	}

	.mimo-hotel-header.is-scrolled {
		position: relative;
		height: 112px;
		min-height: 112px;
		background: rgba(244, 239, 230, .98);
		box-shadow: 0 5px 20px rgba(52, 42, 28, .14);
	}

	.mimo-hotel-header.is-scrolled .mimo-hotel-header__inner {
		height: 112px;
		min-height: 112px;
		padding-top: 6px;
		padding-bottom: 8px;
	}

	.mimo-hotel-header.is-scrolled .mimo-hotel-header__logo {
		max-width: 172px;
	}

}

/* Mimosa Hotel Ă„â€Ă‚Â¢Ä‚Â¢Ă¢â‚¬ÂĂ‚Â¬Ä‚Â¢Ă¢â€Â¬Ă‚Â footer master */
.mimo-hotel-footer {
	padding: 68px 28px 26px;
	background: var(--mimo-ink);
	color: var(--mimo-white);
}

.mimo-hotel-footer__inner {
	width: 100%;
	max-width: var(--mimo-shell-width);
	margin-inline: auto;
}

.mimo-hotel-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr .9fr 1fr .9fr;
	gap: 72px;
	align-items: start;
}

.mimo-hotel-footer__col {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.mimo-hotel-footer__brand { padding-right: 28px; }

.mimo-hotel-footer__logo {
	width: min(100%, 315px);
	margin-bottom: 7px;
}

.mimo-hotel-footer__heading {
	margin: 0 0 7px;
	color: var(--mimo-brand-soft);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: .03em;
}

.mimo-hotel-footer__heading--spaced { margin-top: 7px; }

.mimo-hotel-footer__text,
.mimo-hotel-footer__link,
.mimo-hotel-footer__small-note,
.mimo-hotel-footer__contact-link {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

.mimo-hotel-footer__text {
	max-width: 520px;
	color: var(--mimo-muted);
}

.mimo-hotel-footer__contact-link,
.mimo-hotel-footer__link {
	color: var(--mimo-white);
	text-decoration: none;
	transition: color .2s ease;
}

.mimo-hotel-footer__contact-link:hover,
.mimo-hotel-footer__link:hover {
	color: var(--mimo-brand-soft);
}

.mimo-hotel-footer__link--strong { font-weight: 600; }

.mimo-hotel-footer__small-note {
	max-width: 230px;
	margin-top: 8px;
	color: #a9a9a4;
}

.mimo-hotel-footer__social-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 15px;
	border: 1px solid rgba(198, 160, 108, .72);
	border-radius: 999px;
	color: var(--mimo-white);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease;
}

.mimo-hotel-footer__social-pill:hover {
	border-color: var(--mimo-brand-soft);
	background: var(--mimo-brand);
	color: var(--mimo-white);
}

.mimo-hotel-footer__payment {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
}

.mimo-hotel-footer__payment span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 8px;
	border: 1px solid #353532;
	border-radius: 3px;
	background: #151513;
	color: #d7d7d2;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .035em;
}

.mimo-hotel-footer__bottom {
	width: 100%;
	margin-top: 55px;
	padding-top: 22px;
	border-top: 1px solid #282824;
	display: flex;
	justify-content: center;
}

.mimo-hotel-footer__copyright {
	margin: 0;
	color: #bdbdb8;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

@media (max-width: 1280px) {
	.mimo-hotel-header__nav {
		grid-template-columns: minmax(0, 1fr) 195px minmax(0, 1fr);
		gap: 20px;
	}

	.mimo-hotel-header__nav-link { font-size: 11.5px; }
	.mimo-hotel-header__logo { max-width: 185px; }
	.mimo-hotel-footer__grid { gap: 40px; }
}

@media (max-width: 991px) {
	.mimo-hotel-header {
		height: auto;
		min-height: 135px;
		padding-inline: 22px;
	}

	.mimo-hotel-header__inner {
		height: auto;
		min-height: 135px;
		padding: 16px 0 22px;
	}

	.mimo-hotel-header__utility {
		justify-content: center;
		margin-bottom: 12px;
	}

	.mimo-hotel-header__nav {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.mimo-hotel-header__logo {
		order: -1;
		max-width: 180px;
	}


	.mimo-hotel-header__nav-side {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
		text-align: center;
	}

	.mimo-hotel-header__nav-link {
		font-size: 11px;
		white-space: normal;
	}

	.mimo-hotel-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 46px 54px;
	}

	.mimo-hotel-footer__brand { padding-right: 0; }
}

@media (max-width: 640px) {
	.mimo-hotel-header {
		padding-inline: 16px;
	}

	.mimo-hotel-header__utility { gap: 16px; }
	.mimo-hotel-header__utility-link { font-size: 11px; }

	.mimo-hotel-header__nav-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 8px;
	}

	.mimo-hotel-header__nav-link { font-size: 11.5px; }

	.mimo-hotel-footer { padding: 50px 18px 22px; }

	.mimo-hotel-footer__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.mimo-hotel-footer__logo { max-width: 270px; }
	.mimo-hotel-footer__bottom { margin-top: 42px; }
}

/* Shared Mimosa Hotel inner-page hero slider */
.brxe-slider-nested.mimo-hotel-overview-hero,
.brxe-slider-nested.restaurant-hero,
.brxe-slider-nested.contact-hero,
.brxe-slider-nested.gallery-hero {
	position: relative;
	width: 100%;
	height: 645px;
	min-height: 520px;
	max-height: none;
	overflow: hidden;
	background: var(--mimo-ink);
}

.brxe-slider-nested.mimo-hotel-overview-hero .splide__track,
.brxe-slider-nested.mimo-hotel-overview-hero .splide__list,
.brxe-slider-nested.mimo-hotel-overview-hero .mimo-hotel-overview-hero__slide,
.brxe-slider-nested.restaurant-hero .splide__track,
.brxe-slider-nested.restaurant-hero .splide__list,
.brxe-slider-nested.restaurant-hero .restaurant-hero__slide,
.brxe-slider-nested.contact-hero .splide__track,
.brxe-slider-nested.contact-hero .splide__list,
.brxe-slider-nested.contact-hero .contact-hero__slide,
.brxe-slider-nested.gallery-hero .splide__track,
.brxe-slider-nested.gallery-hero .splide__list,
.brxe-slider-nested.gallery-hero .gallery-hero__slide {
	height: 100%;
	min-height: inherit;
}

.brxe-slider-nested.mimo-hotel-overview-hero .mimo-hotel-overview-hero__slide,
.brxe-slider-nested.restaurant-hero .restaurant-hero__slide,
.brxe-slider-nested.contact-hero .contact-hero__slide,
.brxe-slider-nested.gallery-hero .gallery-hero__slide {
	position: relative;
	display: flex;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.brxe-slider-nested.mimo-hotel-overview-hero .mimo-hotel-overview-hero__slide::after,
.brxe-slider-nested.restaurant-hero .restaurant-hero__slide::after,
.brxe-slider-nested.contact-hero .contact-hero__slide::after,
.brxe-slider-nested.gallery-hero .gallery-hero__slide::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(7, 7, 6, .48) 0%, rgba(7, 7, 6, .24) 48%, rgba(7, 7, 6, .38) 100%);
	pointer-events: none;
}

.brxe-slider-nested.mimo-hotel-overview-hero .mimo-hotel-overview-hero__image,
.brxe-slider-nested.mimo-hotel-overview-hero .mimo-hotel-overview-hero__image img,
.brxe-slider-nested.restaurant-hero .restaurant-hero__image,
.brxe-slider-nested.restaurant-hero .restaurant-hero__image img,
.brxe-slider-nested.contact-hero .contact-hero__image,
.brxe-slider-nested.contact-hero .contact-hero__image img,
.brxe-slider-nested.gallery-hero .gallery-hero__image,
.brxe-slider-nested.gallery-hero .gallery-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center center;
}

.brxe-slider-nested.mimo-hotel-overview-hero .mimo-hotel-overview-hero__image,
.brxe-slider-nested.restaurant-hero .restaurant-hero__image,
.brxe-slider-nested.contact-hero .contact-hero__image,
.brxe-slider-nested.gallery-hero .gallery-hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
}

.brxe-slider-nested.mimo-hotel-overview-hero .splide__pagination,
.brxe-slider-nested.restaurant-hero .splide__pagination,
.brxe-slider-nested.contact-hero .splide__pagination,
.brxe-slider-nested.gallery-hero .splide__pagination {
	z-index: 3;
	bottom: 56px;
	gap: 8px;
}

.brxe-slider-nested.mimo-hotel-overview-hero .splide__pagination__page,
.brxe-slider-nested.restaurant-hero .splide__pagination__page,
.brxe-slider-nested.contact-hero .splide__pagination__page,
.brxe-slider-nested.gallery-hero .splide__pagination__page {
	width: 10px;
	height: 10px;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, .8);
	background: rgba(255, 255, 255, .9);
	opacity: 1;
	transform: none;
}

.brxe-slider-nested.mimo-hotel-overview-hero .splide__pagination__page.is-active,
.brxe-slider-nested.restaurant-hero .splide__pagination__page.is-active,
.brxe-slider-nested.contact-hero .splide__pagination__page.is-active,
.brxe-slider-nested.gallery-hero .splide__pagination__page.is-active {
	border-color: var(--mimo-brand-soft);
	background: var(--mimo-brand-soft);
	transform: none;
}

@media (max-width: 991px) {
	.brxe-slider-nested.mimo-hotel-overview-hero,
	.brxe-slider-nested.restaurant-hero,
	.brxe-slider-nested.contact-hero,
	.brxe-slider-nested.gallery-hero {
		height: 570px;
		min-height: 500px;
	}

	.brxe-slider-nested.mimo-hotel-overview-hero .splide__pagination,
	.brxe-slider-nested.restaurant-hero .splide__pagination,
	.brxe-slider-nested.contact-hero .splide__pagination,
	.brxe-slider-nested.gallery-hero .splide__pagination {
		bottom: 34px;
	}
}

@media (max-width: 640px) {
	.brxe-slider-nested.mimo-hotel-overview-hero,
	.brxe-slider-nested.restaurant-hero,
	.brxe-slider-nested.contact-hero,
	.brxe-slider-nested.gallery-hero {
		height: 510px;
		min-height: 510px;
	}

	.brxe-slider-nested.mimo-hotel-overview-hero .splide__pagination,
	.brxe-slider-nested.restaurant-hero .splide__pagination,
	.brxe-slider-nested.contact-hero .splide__pagination,
	.brxe-slider-nested.gallery-hero .splide__pagination {
		bottom: 24px;
	}
}
