@font-face {
	font-family: 'Merriweather';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Merriweather_120pt-Bold.woff2') format('woff2');
}

@font-face {
	font-family: 'Merriweather';
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Merriweather_120pt-SemiBold.woff2') format('woff2');
}


@font-face {
	font-family: 'Inter';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Inter_18pt-Regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Inter_18pt-Medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Inter_18pt-SemiBold.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Inter_24pt-Bold.woff2') format('woff2');
}

:root {
	--color-accent: #FC7F00;
	--color-gold: #7A6A38;
	--color-gold-light: #d4a54a;
	--color-cream: #F2E6C7;
	--color-cream-soft: #f1e9df;
	--color-cream-badge: #f4e8d0;
	--color-dark: #1D1D1B;
	--color-dark-warm: #3F381B;
	--color-green: #006B38;
	--color-white: #FFFFFF;
	--color-gray-500: #6B6B6B;
	--color-gray-warm: #7d756d;
	--color-gray-light: #c8bfb4;
	--color-gray-bg: #f4f2ed;
	--color-brown-text: #8b7355;
	--color-muted: #888888;
	--color-text-muted: #666666;
	--color-error: #e74c3c;
	--color-error-dark: #c0392b;
	--color-success-bg: #f0fdf4;
	--color-success-border: #bbf7d0;
	--color-success-text: #166534;
	--color-whatsapp: #25D366;
	--color-whatsapp-hover: #20b858;
	--color-border: rgba(29, 29, 27, 0.12);
	--color-overlay: rgba(0, 0, 0, 0.45);

	--color-accent-a11y: #D96B00;
	--color-gold-a11y: #7A6A38;
	--color-gray-a11y: #6B6B6B;
	--color-green-a11y: #006B38;
	--font-heading: 'Merriweather', Georgia, serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--font-accent: 'Edwardian Script ITC', 'Dancing Script', cursive;
	--text-script: 46px;
	--text-hero: 60px;
	--text-h2: 45px;
	--text-h3: 24px;
	--text-h4: 18px;
	--text-p-lg: 18px;
	--text-p-base: 16px;
	--text-p-sm: 14px;
	--text-btn: 16px;
	--text-pill: 14px;
	--text-menu: 16px;
	--lh-hero: 1.2;
	--lh-h2: 1.15;
	--lh-h3: 1.2;
	--lh-body: 1.65;
	--lh-script: 1.2;
	--lh-menu: 1.2;
	--lh-detail-heading: 1.2;
	--lh-detail-body: 1.65;
	--text-detail-heading: 30px;
	--space-xs: 5px;
	--space-sm: 10px;
	--space-md: 16px;
	--space-lg: 24px;
	--space-xl: 32px;
	--space-2xl: 40px;
	--space-3xl: 60px;
	--space-section: 80px;
	--container-hero: 800px;
	--container-sm: 900px;
	--container-md: 1300px;
	--container-wide: 1350px;
	--container-lg: 1760px;
	--radius-sharp: 0px;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-pill: 100px;
	--shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
	--shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	--header-height: 64px;
	--breakpoint-nav: 1350px;
}



.hts-mobile-only {
	display: none;
}

@media (max-width: 768px) {
	.hts-desktop-only {
		display: none !important;
	}

	.hts-mobile-only {
		display: block !important;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	font-family: var(--font-body);
	font-size: var(--text-p-base);
	font-weight: 400;
	line-height: var(--lh-body);
	color: var(--color-dark);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}


::selection {
	background-color: var(--color-accent);
	color: var(--color-white);
}

::-moz-selection {
	background-color: var(--color-accent);
	color: var(--color-white);
}


.hts-wave-canvas {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	transform: rotate(45deg) scale(1.5);
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

svg {
	max-width: 28px;
	max-height: 28px;
	color: var(--color-dark-warm);
	flex-shrink: 0;
}


a,
a:hover,
a:focus,
a:active,
a:visited {
	color: inherit;
	text-decoration: none !important;
}



.hts-header ul,
.hts-header ol,
.hts-header li,
.hts-nav-overlay ul,
.hts-nav-overlay ol,
.hts-nav-overlay li,
.hts-footer ul,
.hts-footer ol,
.hts-footer li {
	list-style: none;
	padding: 0;
	margin: 0;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
}

h1 {
	font-family: var(--font-heading);
	font-size: var(--text-hero);
	font-weight: 600;
	line-height: var(--lh-hero);
	letter-spacing: -0.02em;
}

h1 em {
	font-size: inherit;
	font-style: italic;
}

h2 {
	font-family: var(--font-heading);
	font-size: var(--text-h2);
	font-weight: 600;
	line-height: var(--lh-h2);
}

h2.hts-section-title {
	color: var(--color-accent-a11y);
}

h3 {
	font-family: var(--font-body);
	font-size: var(--text-h3);
	font-weight: 700;
	line-height: var(--lh-h3);
}

h4 {
	font-family: var(--font-body);
	font-size: var(--text-h4);
	font-weight: 600;
	line-height: 1.3;
}

.hts-container {
	width: 100%;
	max-width: var(--container-md);
	margin-inline: auto;
	margin-top: 20px;
	padding-inline: var(--space-lg);
}

.hts-container--lg {
	max-width: var(--container-lg);
}

.hts-container--md {
	max-width: var(--container-md);
}

.hts-container--sm {
	max-width: var(--container-sm);
}

.hts-text-center {
	text-align: center;
}

.hts-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1024px) {
	.hts-container {
		padding-inline: var(--space-md);
	}

	.hts-container-bottom-bar {
		padding-inline: 0;
	}

	.hts-section {
		padding-block: var(--space-xl);
	}
}

.hts-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	font-size: var(--text-btn);
	font-weight: 700;
	line-height: 1;
	border-radius: var(--radius-pill);
	padding: 12px 20px;
	cursor: pointer;
	transition: all var(--transition-base);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.hts-btn--primary {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.hts-btn--primary:hover {
	background-color: var(--color-accent-a11y);
}

.hts-btn--primary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
	transform: translateX(-120%);
	transition: transform 0.5s ease;
}

.hts-btn--primary:hover::after {
	transform: translateX(120%);
}

.hts-btn--secondary {
	background-color: var(--color-white);
	color: var(--color-dark);
	border: 2px solid var(--color-accent);
	border-radius: var(--radius-sm);
}

.hts-btn--secondary:hover {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.hts-btn--whatsapp {
	background-color: var(--color-accent);
	color: var(--color-white);
	gap: 10px;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.hts-btn--whatsapp::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
	transform: translateX(-120%);
	transition: transform 0.5s ease;
}

.hts-btn--whatsapp:hover::after {
	transform: translateX(120%);
}

.hts-btn--whatsapp:hover {
	transform: scale(1.035);
	box-shadow: 0 8px 28px rgba(252, 127, 0, 0.45);
}

.hts-btn--whatsapp:active {
	transform: scale(0.97);
}

.hts-btn--whatsapp .hts-icon-whatsapp {
	width: 22px;
	height: 22px;
}

.hts-btn svg {
	color: var(--color-white);
}

.hts-btn--outline-dark {
	background-color: var(--color-white);
	color: var(--color-dark);
	border: 2px solid var(--color-dark);
}

.hts-btn--outline-dark:hover {
	background-color: var(--color-dark);
	color: var(--color-white);
}

.hts-btn--ghost-white {
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.hts-btn--ghost-white:hover {
	background-color: var(--color-white);
	color: var(--color-dark);
}

.hts-pill {
	display: inline-block;
	font-size: var(--text-pill);
	font-weight: 500;
	line-height: 1;
	padding: 8px 18px;
	border-radius: var(--radius-pill);
}

.hts-pill--gold {
	background-color: var(--color-cream);
	border: 1px solid var(--color-gold);
	color: var(--color-gold);
}

.hts-pill--dark {
	background-color: var(--color-white);
	border: 1.5px solid var(--color-accent);
	font-weight: 600;
	font-size: var(--text-p-md);
	padding: 10px 22px;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.hts-pill--dark:hover {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.hts-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hts-hero-cta svg {
	flex-shrink: 0;
}

.hts-pill--accent {
	background-color: var(--color-accent);
	border: 1.5px solid var(--color-accent);
	color: var(--color-white);
	font-weight: 600;
	font-size: var(--text-btn);
	padding: 9px 22px;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.hts-pill--accent:hover {
	background-color: var(--color-white);
	color: var(--color-accent);
}

.hts-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hts-rating__stars {
	background-color: var(--color-green);
	color: var(--color-white);
	font-size: 12px;
	padding: 1px 8px;
	border-radius: var(--radius-pill);
}

.hts-rating__score {
	font-size: var(--text-p-sm);
	font-weight: 700;
	color: var(--color-dark);
}

@media (prefers-reduced-motion: no-preference) {
	.anim-fade-up {
		opacity: 0;
		transform: translateY(28px);
		transition: opacity var(--transition-slow), transform var(--transition-slow);
	}

	.anim-fade-up.is-visible {
		opacity: 1;
		transform: translateY(0);
	}

	.anim-fade-in {
		opacity: 0;
		transition: opacity 0.7s ease;
	}

	.anim-fade-in.is-visible {
		opacity: 1;
	}

	.anim-scale-in {
		opacity: 0;
		transform: scale(0.96);
		transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.anim-scale-in.is-visible {
		opacity: 1;
		transform: scale(1);
	}

	.anim-slide-left {
		opacity: 0;
		transform: translateX(-32px);
		transition: opacity var(--transition-slow), transform var(--transition-slow);
	}

	.anim-slide-left.is-visible {
		opacity: 1;
		transform: translateX(0);
	}

	.anim-slide-right {
		opacity: 0;
		transform: translateX(32px);
		transition: opacity var(--transition-slow), transform var(--transition-slow);
	}

	.anim-slide-right.is-visible {
		opacity: 1;
		transform: translateX(0);
	}

	[data-stagger]>* {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	}

	[data-stagger].is-visible>*:nth-child(1) {
		transition-delay: 0.05s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(2) {
		transition-delay: 0.12s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(3) {
		transition-delay: 0.19s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(4) {
		transition-delay: 0.26s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(5) {
		transition-delay: 0.33s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(6) {
		transition-delay: 0.40s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(7) {
		transition-delay: 0.47s;
		opacity: 1;
		transform: none;
	}

	[data-stagger].is-visible>*:nth-child(8) {
		transition-delay: 0.54s;
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {

	.anim-fade-up,
	.anim-fade-in,
	.anim-scale-in,
	.anim-slide-left,
	.anim-slide-right,
	[data-stagger]>* {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.hts-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background-color: var(--color-white);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
	transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.hts-header.hts-header--transparent {
	background-color: transparent;
	box-shadow: none;
}

.hts-header.hts-header--scrolled {
	background-color: var(--color-white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hts-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	max-width: var(--container-lg);
	margin-inline: auto;
	padding-inline: var(--space-lg);
	gap: var(--space-md);
}

.hts-header__nav {
	display: flex;
	align-items: center;
}

.hts-header__nav-list {
	display: flex;
	align-items: center;
	gap: 60px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.hts-header__nav a {
	font-size: var(--text-menu);
	font-weight: 500;
	transition: color var(--transition-fast);
	white-space: nowrap;
}

.hts-header__nav a:hover {
	color: var(--color-accent);
}

.hts-header--transparent .hts-header__nav a {
	color: var(--color-white);
}

.hts-header--transparent .hts-header__nav a:hover {
	color: var(--color-accent);
}

.hts-header__logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hts-header__logo img {
	width: 250px;
	height: auto;
	object-fit: contain;
}

.hts-header__logo .hts-header__logo-light {
	display: none;
}

.hts-header--transparent .hts-header__logo .hts-header__logo-dark {
	display: none;
}

.hts-header--transparent .hts-header__logo .hts-header__logo-light {
	display: block;
}

.hts-header--scrolled .hts-header__logo .hts-header__logo-dark {
	display: block;
}

.hts-header--scrolled .hts-header__logo .hts-header__logo-light {
	display: none;
}

.hts-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--space-sm);
	padding: 5px 10px;
}

/* â”€â”€ Travel Guide link in header actions â”€â”€ */
.hts-header__nav--right {
	margin-right: 60px;
}

.hts-header__blog-link {
	display: inline-flex;
	align-items: center;
	font-size: var(--text-menu);
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--transition-fast);
	margin-right: 12px;
}

.hts-header__blog-link:hover {
	color: var(--color-accent);
}

.hts-header--transparent .hts-header__blog-link {
	color: var(--color-white);
}

.hts-header--transparent .hts-header__blog-link:hover {
	color: var(--color-accent);
}

@media (max-width: 640px) {
	.hts-header__blog-link {
		display: none;
	}
}

.hts-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--color-accent);
	color: var(--color-white) !important;
	font-size: var(--text-btn);
	font-weight: 700;
	padding: 10px 22px;
	border-radius: var(--radius-pill);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.hts-header__cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
	transform: translateX(-120%);
	transition: transform 0.5s ease;
}

.hts-header__cta:hover::after {
	transform: translateX(120%);
}

.hts-header__cta svg {
	width: 18px;
	height: 18px;
	color: var(--color-white);
	fill: var(--color-white);
}

.hts-header__cta svg path,
.hts-header__cta svg circle,
.hts-header__cta svg rect,
.hts-header__cta svg polygon,
.hts-header__cta svg line,
.hts-header__cta svg polyline {
	fill: var(--color-white);
	stroke: var(--color-white);
}

.hts-header__cta:hover {
	transform: scale(1.035);
	box-shadow: 0 8px 28px rgba(252, 127, 0, 0.45);
}

.hts-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	padding: 4px;
}

.hts-hamburger__line {
	display: block;
	width: 26px;
	height: 2px;
	background-color: var(--color-dark);
	border-radius: 2px;
	transition: all var(--transition-base);
	transform-origin: center;
}

.hts-header--transparent .hts-hamburger__line {
	background-color: var(--color-white);
}

.hts-hamburger.is-open .hts-hamburger__line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hts-hamburger.is-open .hts-hamburger__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hts-hamburger.is-open .hts-hamburger__line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


/* â”€â”€ Language Switcher (desktop dropdown + mobile row) â”€â”€ */
.hts-lang-switcher {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 200;
}

.hts-lang-switcher__toggle {
	display: flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 6px;
	border-radius: var(--radius-sm);
	transition: background var(--transition-fast, 0.15s);
	line-height: 1;
}

.hts-lang-switcher__toggle:hover,
.hts-lang-switcher__toggle:focus-visible {
	background: var(--color-white);
	outline: none;
}

.hts-lang-switcher__flag {
	font-size: 20px;
	line-height: 1;
}

.hts-lang-switcher__flag img {
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	display: block;
}

.hts-lang-switcher__chevron {
	opacity: 0.7;
	transition: transform 0.2s ease;
}

.hts-lang-switcher.is-open .hts-lang-switcher__chevron {
	transform: rotate(180deg);
}

.hts-lang-switcher__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card, 0 4px 24px rgba(0, 0, 0, 0.12));
	list-style: none;
	margin: 0;
	padding: 6px;
	min-width: 48px;
	gap: 2px;
	z-index: 300;
}

.hts-lang-switcher.is-open .hts-lang-switcher__dropdown {
	display: flex;
	flex-direction: column;
}

.hts-lang-switcher__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	font-size: 20px;
	line-height: 1;
	transition: background var(--transition-fast, 0.15s);
	text-decoration: none;
}

.hts-lang-switcher__item img {
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
}

.hts-lang-switcher__item:hover {
	background: var(--color-white);
}

.hts-lang-switcher__item.is-active {
	background: var(--color-cream, #f5f0e8);
	cursor: default;
}

/* Mobile language row in overlay */
.hts-nav-overlay__lang {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 4px;
	padding: var(--space-md) var(--space-xl);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: var(--space-sm);
}

.hts-nav-overlay .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hts-nav-overlay .hts-flag-img {
	display: block;
	width: 24px;
	height: 18px;
	object-fit: cover;
	border-radius: 3px;
	flex-shrink: 0;
}

.hts-nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1050;
	/* above everything â€” Unicorn canvas, modals, etc. */
	width: min(360px, 90vw);
	background: linear-gradient(160deg, var(--color-dark) 0%, #2a2518 100%);
	color: var(--color-white);
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	padding-top: calc(var(--header-height) + 24px);
	padding-inline: 32px;
	padding-bottom: 48px;
	box-shadow: -8px 0 48px rgba(0, 0, 0, 0.35);
	transform: translateX(100%);
	pointer-events: none;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

.hts-nav-overlay.is-open {
	display: flex;
	/* activate flex layout when open */
	transform: translateX(0);
	pointer-events: all;
}

/* Close button â€” white circle, dark X */
.hts-nav-overlay__close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--color-white);
	border: none;
	color: var(--color-dark);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background var(--transition-fast), transform var(--transition-fast);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hts-nav-overlay__close:hover {
	background: var(--color-cream);
	transform: rotate(90deg);
}

/* Home icon â€” top left, white, same optical size as close button icon */
.hts-nav-overlay__home {
	position: absolute;
	top: 24px;
	left: 24px;
	color: var(--color-white) !important;
	/* override a:visited reset */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color var(--transition-fast);
}

.hts-nav-overlay__home:hover,
.hts-nav-overlay__home:focus {
	color: var(--color-accent) !important;
}

.hts-nav-overlay__home svg {
	color: inherit !important;
}

/* Dividers */
.hts-nav-overlay__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.10);
	margin-block: 24px;
	width: 100%;
}

/* Primary nav links */
.hts-nav-overlay__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
}

.hts-nav-overlay__links>ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
}

.hts-nav-overlay__links li {
	width: 100%;
}

.hts-nav-overlay__links a {
	display: block;
	width: 100%;
	padding: 10px 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--color-white);
	letter-spacing: -0.01em;
	transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.hts-nav-overlay__links a:hover {
	color: var(--color-accent);
	padding-left: 6px;
}

/* Secondary nav (Travel Guide, etc.) */
.hts-nav-overlay__links--secondary a {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	padding: 8px 0;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.85;
}

.hts-nav-overlay__links--secondary a:hover {
	color: var(--color-accent);
	padding-left: 6px;
	opacity: 1;
}

/* Book Now CTA */
.hts-nav-overlay__cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hts-nav-overlay__cta .hts-btn {
	width: 100%;
	justify-content: center;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hts-nav-overlay__cta .hts-btn svg {
	flex-shrink: 0;
}

/* Secondary "Send a message" link */
.hts-nav-overlay__msg-link {
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	padding: 4px 0;
	transition: color var(--transition-fast);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hts-nav-overlay__msg-link:hover {
	color: var(--color-white);
}

/* Language flags â€” pushed to the very bottom of the sidebar */
.hts-nav-overlay__lang {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	justify-content: center;
	order: 10;
	/* flex order: always last */
	margin-top: auto;
	/* push to bottom of flex column */
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hts-lang-mob__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: background var(--transition-fast), border-color var(--transition-fast);
	cursor: pointer;
	overflow: visible;
}

.hts-lang-mob__item img {
	display: block;
	width: 32px;
	height: 24px;
	object-fit: cover;
	border-radius: 3px;
	flex-shrink: 0;
}

.hts-lang-mob__name {
	display: none;
}

.hts-lang-mob__item:hover,
.hts-lang-mob__item.is-active {
	background: rgba(255, 255, 255, 0.16);
	border-color: var(--color-gold);
}

/* Phone contact â€” centered, full-width like the WhatsApp CTA button */
.hts-nav-overlay__contact-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	order: 8;
	/* before language switcher (order: 10) */
}

.hts-nav-overlay__phone {
	display: flex;
	align-items: center;
	justify-content: center;
	/* centered like the booking button */
	width: 100%;
	gap: 10px;
	color: var(--color-white);
	font-size: 16px;
	font-weight: 600;
	padding: 12px 0;
	transition: color var(--transition-fast);
}

.hts-nav-overlay__phone svg {
	color: var(--color-white);
	flex-shrink: 0;
}

.hts-nav-overlay__phone:hover {
	color: var(--color-gold);
}

.hts-nav-overlay__phone:hover svg {
	color: var(--color-gold);
}

/* Hide hamburger when nav is open â€” prevents duplicate X icon */
body.nav-is-open .hts-hamburger {
	visibility: hidden;
}

body.nav-is-open::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 1049;
	/* just below the sidebar (1050) */
	background-color: rgba(0, 0, 0, 0.55);
}

body.nav-is-open .hts-header__cta {
	opacity: 0;
	pointer-events: none;
}

body.nav-is-open .hts-hamburger__line {
	background-color: var(--color-dark);
}

@media (max-width: 1600px) {
	.hts-header__nav-list {
		gap: var(--space-xl);
	}
}

@media (max-width: 1440px) {
	.hts-header__nav-list {
		gap: var(--space-lg);
	}
}

@media (max-width: 1350px) {
	.hts-header__inner {
		padding-inline: var(--space-md);
		display: flex;
		justify-content: space-between;
	}

	.hts-header__logo {
		justify-content: flex-start;
	}

	.hts-header__nav {
		display: none;
	}

	.hts-hamburger {
		display: flex;
	}

	.hts-nav-overlay {
		display: flex;
	}

	/* Language switcher: hide desktop dropdown in header on mobile */
	.hts-lang-switcher {
		display: none;
	}
}

/* Language switcher: hide mobile overlay flags on desktop */
@media (min-width: 1351px) {
	.hts-nav-overlay__lang {
		display: none;
	}
}

@media (max-width: 640px) {
	.hts-header__inner {
		padding-inline: var(--space-sm);
	}

	.hts-header__logo img {
		width: 200px;
		height: 42px;
	}

	.hts-header__cta {
		width: 36px;
		height: 36px;
		padding: 0;
		border-radius: 50%;
		justify-content: center;
	}

	.hts-header__cta-label {
		display: none;
	}

	.hts-header__cta svg {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
	}
}

@keyframes hts-blur-fade-in {
	from {
		opacity: 0;
		transform: translateY(16px);

	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.anim-blur-fade {
	opacity: 0;
	animation: hts-blur-fade-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	backface-visibility: hidden;
}

.anim-blur-fade--d1 {
	animation-delay: 0.1s;
}

.anim-blur-fade--d2 {
	animation-delay: 0.25s;
}

.anim-blur-fade--d3 {
	animation-delay: 0.40s;
}

.anim-blur-fade--d4 {
	animation-delay: 0.55s;
}

.anim-blur-fade--d5 {
	animation-delay: 0.70s;
}

@media (prefers-reduced-motion: reduce) {
	.anim-blur-fade {
		opacity: 1;
		animation: none;
		filter: none;
		transform: none;
	}
}


/* ── Book card: hidden by default on all pages (render-blocking) ── */
.hts-book-card { display: none; pointer-events: none; }
.hts-header__cta--mobile { display: none; }
@media (max-width: 640px) {
	#hts-book-toggle { display: none; }
	.hts-header__cta--mobile { display: flex; }
}
