/*
 * Native header/footer layout.
 * Colors/fonts consume the --hs-* custom properties printed by
 * hotel_suite_print_design_tokens() (Hotel Suite Settings > Brand),
 * so a new install re-skins this by filling in the settings screen,
 * not by editing this file.
 */
 .hf-max-width-wrapper, .hf-max-width-wrapper-1400{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 16px;
}
.hf-max-width-wrapper-1400{
	max-width: 1400px;
}
.hs-header,
.hs-footer {
	font-family: var( --hs-font-body, inherit );
}

.hs-header a {
	color: inherit;
	text-decoration: none;
}

/* Top utility bar */
.hs-header-topbar {
	border-bottom: 1px solid #e5e2dc;
}
.hs-header-topbar .hf-max-width-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 10px 32px;
	background: #fff;
	color: var( --hs-color-secondary, #2f2f2f );
	font-size: 13px;
}

.hs-header-topbar-left,
.hs-header-topbar-right {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.hs-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0.85;
}

.hs-topbar-item:hover {
	opacity: 1;
}

/* Back-to-home button replaces the phone/email pair on the left, hotel pages only */
.hs-back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0.85;
}

.hs-back-button:hover {
	opacity: 1;
	color: var( --hs-color-primary, #a8875e );
}

.hs-back-button-arrow {
	font-size: 16px;
	line-height: 1;
}

.hs-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	flex: none;
}

.hs-icon-phone,
.hs-icon-email,
.hs-icon-pin {
	background: currentColor;
	-webkit-mask: var( --hs-icon-svg ) center / contain no-repeat;
	mask: var( --hs-icon-svg ) center / contain no-repeat;
}

.hs-icon-pin {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a5 5 0 0 0-5 5c0 3.6 4.4 8.4 4.6 8.6a.5.5 0 0 0 .8 0C8.6 14.4 13 9.6 13 6a5 5 0 0 0-5-5Zm0 6.8A1.8 1.8 0 1 1 8 4.2a1.8 1.8 0 0 1 0 3.6Z'/%3E%3C/svg%3E");
}

.hs-icon-phone {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 1a1 1 0 0 0-1 1v1c0 7 5.5 12.5 12.5 12.5h1a1 1 0 0 0 1-1v-2.2a1 1 0 0 0-.8-1L13 10a1 1 0 0 0-1 .3l-.9.9a9 9 0 0 1-4.3-4.3l.9-.9A1 1 0 0 0 8 5L6.7 1.8a1 1 0 0 0-1-.8Z'/%3E%3C/svg%3E");
}

.hs-icon-email {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1 3h14a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm0 1v.2l7 4.4 7-4.4V4H1Zm14 1.8-6.5 4.1a1 1 0 0 1-1 0L1 5.8V12h14V5.8Z'/%3E%3C/svg%3E");
}

/* Main bar */
.hs-header-mainbar {
	/* display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 32px; */
	background: #fff;
}

.hs-header-mainbar .hf-max-width-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 32px;
	background: #fff;
}
/*
 * "Sticky" header behavior (Hotel Suite Settings > Brand). Only the main
 * bar sticks — the utility topbar scrolls away above it, same pattern as
 * most hotel sites' headers. Plain `position: sticky`, no scroll JS: the
 * topbar simply isn't sticky itself, so it scrolls out of flow first and
 * the main bar then pins to the top in its place.
 *
 * `display: contents` on the <header> wrapper is required for this to
 * actually stay stuck: a sticky element can only stick within its
 * immediate parent's box, and .hs-header is only as tall as topbar +
 * mainbar combined. Without this, the mainbar sticks for the brief instant
 * the topbar takes to scroll away, then immediately unsticks again as soon
 * as .hs-header's own (short) box scrolls past — display: contents removes
 * that box, so the mainbar's containing block becomes whatever wraps
 * <header> instead (effectively the full page), which is tall enough to
 * stay stuck for the rest of the scroll.
 */
.hs-header--sticky {
	display: contents;
}

.hs-header--sticky .hs-header-mainbar {
	position: sticky;
	top: 0;
	z-index: 60;
	box-shadow: 0 4px 16px rgba( 0, 0, 0, 0.08 );
}

.hs-header-mainbar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hs-logo img {
	max-height: 64px;
	width: auto;
	display: block;
	max-width: 130px;
}

.hs-header-mainbar-right {
	display: flex;
	align-items: center;
	gap: 32px;
	z-index: 99999;
}

.hs-nav-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hs-nav-menu li {
	position: relative;
}

.hs-nav-menu a {
	display: inline-flex;
	align-items: center;
	padding: 4px 0;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var( --hs-color-secondary, #2f2f2f );
}

.hs-nav-menu a:hover {
	color: var( --hs-color-primary, #a8875e );
}

.hs-nav-menu .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate( 45deg );
	margin-top: -3px;
}

.hs-nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #eceae4;
	box-shadow: 0 12px 24px rgba( 0, 0, 0, 0.08 );
	z-index: 20;
}

.hs-nav-menu li:hover > .sub-menu {
	display: block;
}

.hs-nav-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 500;
	white-space: nowrap;
}

.hs-nav-menu .sub-menu a:hover {
	background: #faf8f4;
}

/*
 * On a single hotel page, template-parts/hotel-suite-header.php renders the
 * hotel's own section menu (single-hotel/main-menu/main-menu.php) in this
 * same slot instead of .hs-nav-menu. That markup's own <style> block was
 * written for a colored/sticky context (white text, full-width nav) — these
 * overrides make it read correctly sitting in the white header bar instead,
 * matching .hs-nav-menu's look so the swap is invisible to a visitor.
 */
.hs-header-mainbar-right .hotel-main-menu {
	width: auto;
	font-family: inherit;
}

.hs-header-mainbar-right .hotel-main-menu__inner {
	gap: 22px;
}

.hs-header-mainbar-right .hotel-main-menu__link {
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var( --hs-color-secondary, #2f2f2f );
	border-bottom: 0 !important;
}

.hs-header-mainbar-right .hotel-main-menu__link:hover,
.hs-header-mainbar-right .hotel-main-menu__link:focus:not( :focus-visible ) {
	color: var( --hs-color-primary, #a8875e ) !important;
	border-bottom: 0 !important;
}

@media ( max-width: 900px ) {
	.hs-header-mainbar-right{
		width: 100%;
	}
	.hs-header-mainbar-right .hotel-main-menu__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

.hs-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 26px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.hs-btn-primary {
	background: transparent;
	color: var( --hs-color-secondary, #2f2f2f );
	border: 1px solid #d8d3c8;
	transition: var( --hs-transition );
}

.hs-btn-primary:hover {
	border-color: var( --hs-color-primary, #a8875e );
	color: var( --hs-color-primary, #a8875e );
}

/* Mobile nav toggle (hidden on desktop) */
.hs-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.hs-nav-toggle-bar {
	display: block;
	height: 2px;
	background: var( --hs-color-secondary, #1b211d );
	border-radius: 1px;
}
.hs-nav-close{
	position: absolute;
    top: 15px;
    right: 15px;
	z-index: 99999;
}
.hs-nav-close .hs-nav-toggle-bar:nth-child(1){
	transform: rotate( -45deg ) translateY( 6px );
	transform-origin: center;
	transition: transform 0.25s ease;
}

.hs-nav-close .hs-nav-toggle-bar:nth-child(2){
	transform: rotate( 45deg ) translateY( -6px );
	transform-origin: center;
	transition: transform 0.25s ease;
}

.hs-language-switcher {
	position: relative;
}

.hs-language-switcher summary {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	list-style: none;
}

.hs-language-switcher summary::-webkit-details-marker {
	display: none;
}

.hs-language-switcher summary img {
	border-radius: 50%;
	width: 16px;
	height: 16px;
	object-fit: cover;
}

.hs-language-switcher-chevron {
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate( 45deg );
	margin-top: -2px;
}

.hs-language-switcher ul {
	position: absolute;
	right: 0;
	top: 100%;
	margin: 10px 0 0;
	padding: 8px 0;
	list-style: none;
	min-width: 140px;
	background: #fff;
	border: 1px solid #eceae4;
	box-shadow: 0 12px 24px rgba( 0, 0, 0, 0.08 );
	z-index: 20;
}

.hs-language-switcher ul a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	font-size: 13px;
	color: var( --hs-color-secondary, #2f2f2f );
}

.hs-language-switcher ul a:hover {
	background: #faf8f4;
}

.hs-language-switcher ul img {
	border-radius: 50%;
	width: 16px;
	height: 16px;
	object-fit: cover;
}

@media ( max-width: 900px ) {
	.hs-header-mainbar-left{
		width: 100%;
		justify-content: space-between;
	}
	.hs-header-topbar {
		display: none;
	}

	.hs-nav-toggle {
		display: flex;
	}

	.hs-header-mainbar-right {
		position: fixed;
		inset: 0 0 0 auto;
		width: min( 320px, 85vw );
		height: 100vh;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 96px 24px 24px;
		gap: 24px;
		transform: translateX( 100% );
		transition: transform 0.25s ease;
		box-shadow: -8px 0 24px rgba( 0, 0, 0, 0.15 );
	}

	.hs-header-mainbar-right.is-open {
		transform: translateX( 0 );
	}

	.hs-nav-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

/* Footer */
.hs-footer {
	background: var( --hs-color-secondary, #1b211d );
	color: #e7e9e4;
}

.hs-footer a {
	color: inherit;
}

.hs-footer h3 {
	font-family: var( --hs-font-heading, inherit );
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 16px;
}

.hs-footer-contact-strip {
	border-bottom: 1px solid rgba( 255, 255, 255, 0.12 );
}
.hs-contact-strip-items{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
	justify-content: space-between;
}
.hs-newsletter-button{
	background: var( --hs-color-primary, #a8875e );
	color: #1b211d;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: var( --hs-transition );
}
.hs-footer-newsletter-form{
	display: flex;
	align-items: center;
}
.hs-footer-contact-strip .hf-max-width-wrapper{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 24px 32px;
	justify-content: space-between;
}

.hs-contact-strip-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
}

.hs-eyebrow {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.65;
}

.hs-social-icons {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hs-social-icons a{
	background: #fff;
    padding: 4px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social glyphs sit inside white pills, so they need a dark fill (currentColor
   here would be the light footer text = invisible). Same mask technique as the
   contact icons above. */
.hs-social-icons .hs-icon {
	width: 16px;
	height: 16px;
	color: var( --hs-color-secondary, #1b211d );
	background: currentColor;
	-webkit-mask: var( --hs-icon-svg ) center / contain no-repeat;
	mask: var( --hs-icon-svg ) center / contain no-repeat;
}

.hs-icon-facebook {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.6 8.6 11 6.2H8.7V4.7c0-.7.3-1.3 1.4-1.3h1V1.4S10.2 1.2 9.3 1.2C7.5 1.2 6.3 2.3 6.3 4.4v1.8H4.2v2.4h2.1V15h2.4V8.6h2Z'/%3E%3C/svg%3E");
}

.hs-icon-instagram {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2.9c1.7 0 1.9 0 2.5.1.6 0 1 .1 1.2.2.3.1.5.3.7.5.2.2.4.4.5.7.1.2.2.6.2 1.2 0 .6.1.8.1 2.4s0 2-.1 2.5c0 .6-.1 1-.2 1.2-.1.3-.3.5-.5.7-.2.2-.4.4-.7.5-.2.1-.6.2-1.2.2-.6 0-.8.1-2.5.1s-1.9 0-2.5-.1c-.6 0-1-.1-1.2-.2a1.9 1.9 0 0 1-.7-.5 1.9 1.9 0 0 1-.5-.7c-.1-.2-.2-.6-.2-1.2 0-.6-.1-.8-.1-2.5s0-1.9.1-2.4c0-.6.1-1 .2-1.2.1-.3.3-.5.5-.7.2-.2.4-.4.7-.5.2-.1.6-.2 1.2-.2.6 0 .8-.1 2.5-.1M8 1.7c-1.7 0-1.9 0-2.6.1-.7 0-1.1.1-1.5.3-.4.2-.8.4-1.1.7-.3.3-.5.7-.7 1.1-.2.4-.3.8-.3 1.5C1.7 6.1 1.7 6.3 1.7 8s0 1.9.1 2.6c0 .7.1 1.1.3 1.5.2.4.4.8.7 1.1.3.3.7.5 1.1.7.4.2.8.3 1.5.3.7 0 .9.1 2.6.1s1.9 0 2.6-.1c.7 0 1.1-.1 1.5-.3.4-.2.8-.4 1.1-.7.3-.3.5-.7.7-1.1.2-.4.3-.8.3-1.5 0-.7.1-.9.1-2.6s0-1.9-.1-2.6c0-.7-.1-1.1-.3-1.5a3 3 0 0 0-.7-1.1 3 3 0 0 0-1.1-.7c-.4-.2-.8-.3-1.5-.3-.7 0-.9-.1-2.6-.1Zm0 3.1a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4Zm0 5.3a2.1 2.1 0 1 1 0-4.2 2.1 2.1 0 0 1 0 4.2Zm4.1-5.4a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z'/%3E%3C/svg%3E");
}

.hs-icon-youtube {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15.3 5c-.2-.7-.7-1.2-1.4-1.4C12.6 3.3 8 3.3 8 3.3s-4.6 0-5.9.3C1.4 3.8.9 4.3.7 5 .4 6.2.4 8 .4 8s0 1.8.3 3c.2.7.7 1.2 1.4 1.4 1.3.3 5.9.3 5.9.3s4.6 0 5.9-.3c.7-.2 1.2-.7 1.4-1.4.3-1.2.3-3 .3-3s0-1.8-.3-3ZM6.5 10.2V5.8L10.4 8l-3.9 2.2Z'/%3E%3C/svg%3E");
}

.hs-icon-tiktok {
	--hs-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11.1 1.3c.2 1.6 1.1 2.8 2.7 2.9v1.9c-.9 0-1.8-.3-2.7-.8v3.8c0 3.5-3.8 5.6-6.7 3.9a3.9 3.9 0 0 1 1.9-7.3c.4 0 .8 0 1.2.2V8c-.4-.2-.8-.2-1.2-.1a1.9 1.9 0 0 0-.6 3.6c1 .6 2.6 0 2.6-1.4V1.3h2.8Z'/%3E%3C/svg%3E");
}

.hs-footer-columns {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 180px, 1fr ) );
	gap: 32px;
	padding: 40px 32px;
}

.hs-footer-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.hs-footer-view-all {
	display: inline-block;
	margin-top: 12px;
	font-size: 13px;
	text-decoration: underline;
}

.hs-contact-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	margin-bottom: 10px;
}

.hs-footer-bottom {
	padding: 16px 32px;
	border-top: 1px solid rgba( 255, 255, 255, 0.12 );
	font-size: 13px;
	opacity: 0.75;
}
