/**
 * VH Luxe Destination Guide modules.
 *
 * Element-affecting selector rules are rooted at renderer-owned
 * .vhluxe-destination* classes for legacy Elementor v3 Shortcode widgets and
 * the controlled direct overview anchor.
 * This is selector scoping, not Shadow DOM isolation.
 */

.vhluxe-destination {
	--vhluxe-ink: var(--e-global-color-secondary, #080e15);
	--vhluxe-heading: var(--e-global-color-primary, #344482);
	--vhluxe-ink-soft: var(--e-global-color-text, #666666);
	--vhluxe-cream: #f7f3f4;
	--vhluxe-paper: #ffffff;
	--vhluxe-line: rgba(8, 14, 21, 0.14);
	--vhluxe-gold: var(--e-global-color-accent, #d19e3c);
	--vhluxe-gold-text: #805d23;
	--vhluxe-forest: #182a40;
	--vhluxe-sage: #e9ecef;
	--vhluxe-shadow: 0 20px 54px rgba(8, 14, 21, 0.09);
	--vhluxe-serif: "Playfair Display", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
	--vhluxe-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: var(--vhluxe-paper);
	color: var(--vhluxe-ink);
	font-family: var(--vhluxe-sans);
	font-size: 16px;
	line-height: 1.65;
	position: relative;
	width: 100%;
}

.vhluxe-destination[data-vhluxe-module],
.vhluxe-destination-overview#overview {
	scroll-margin-top: var(--vhluxe-anchor-offset, 172px);
}

.vhluxe-destination--navigation {
	background: transparent;
	overflow: hidden;
}

.vhluxe-destination__navigation-list {
	align-items: stretch;
	display: flex;
	gap: clamp(4px, 1vw, 14px);
	list-style: none;
	margin: 0;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 0 clamp(12px, 2.5vw, 30px);
	scrollbar-color: var(--vhluxe-gold) transparent;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.vhluxe-destination__navigation-list::-webkit-scrollbar {
	height: 5px;
}

.vhluxe-destination__navigation-list::-webkit-scrollbar-thumb {
	background: var(--vhluxe-gold);
	border-radius: 999px;
}

.vhluxe-destination__navigation-item {
	display: flex;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.vhluxe-destination__navigation-link {
	align-items: center;
	border-bottom: 2px solid transparent;
	color: var(--vhluxe-ink);
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	min-height: 44px;
	padding: 5px 8px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.vhluxe-destination__navigation-link:hover {
	border-bottom-color: var(--vhluxe-gold);
	color: var(--vhluxe-gold-text);
}

.vhluxe-destination__navigation-link:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--vhluxe-gold-text);
	outline-offset: -3px;
}

.vhluxe-destination__sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.vhluxe-destination--scalar {
	background: transparent;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy {
	color: var(--vhluxe-ink-soft);
	font-size: 1rem;
	line-height: 1.75;
	max-width: none;
}

.vhluxe-destination--scalar-editorial-hook .vhluxe-destination__scalar-copy {
	color: var(--vhluxe-ink);
	font-family: var(--vhluxe-serif);
	font-size: clamp(1.18rem, 2vw, 1.48rem);
	line-height: 1.58;
}

.vhluxe-destination--scalar-overview .vhluxe-destination__scalar-copy {
	font-size: 1.04rem;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy > :first-child {
	margin-top: 0;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy > :last-child {
	margin-bottom: 0;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy h2,
.vhluxe-destination--scalar .vhluxe-destination__scalar-copy h3,
.vhluxe-destination--scalar .vhluxe-destination__scalar-copy h4 {
	color: var(--vhluxe-heading);
	font-family: var(--vhluxe-serif);
	font-weight: 400;
	line-height: 1.2;
	margin: 1.5em 0 0.55em;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy ul,
.vhluxe-destination--scalar .vhluxe-destination__scalar-copy ol {
	margin: 1em 0;
	padding-left: 1.35em;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy a {
	color: var(--vhluxe-gold-text);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.vhluxe-destination--scalar .vhluxe-destination__scalar-copy a:focus-visible {
	outline: 2px solid var(--vhluxe-gold-text);
	outline-offset: 3px;
}

.vhluxe-destination--trust-strip {
	--vhluxe-ink: #f8f5ee;
	--vhluxe-line: rgba(255, 255, 255, 0.2);
	background: var(--vhluxe-forest);
	color: var(--vhluxe-ink);
}

.vhluxe-destination__trust-inner {
	margin: 0 auto;
	max-width: 1280px;
	padding: clamp(24px, 3.5vw, 40px) clamp(20px, 5vw, 72px);
	width: 100%;
}

.vhluxe-destination__trust-list {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.vhluxe-destination__trust-item {
	align-items: start;
	border-left: 1px solid var(--vhluxe-line);
	display: grid;
	gap: 12px;
	grid-template-columns: 9px 1fr;
	margin: 0;
	min-width: 0;
	padding: 12px clamp(16px, 2.5vw, 30px);
}

.vhluxe-destination__trust-item > span {
	background: var(--vhluxe-gold);
	border-radius: 50%;
	height: 6px;
	margin-top: 0.58em;
	width: 6px;
}

.vhluxe-destination__trust-item p {
	color: var(--vhluxe-ink);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.035em;
	line-height: 1.55;
	margin: 0;
}

.vhluxe-destination,
.vhluxe-destination *,
.vhluxe-destination *::before,
.vhluxe-destination *::after {
	box-sizing: border-box;
}

.vhluxe-destination--stays,
.vhluxe-destination--seasons,
.vhluxe-destination--travel-notes {
	background: var(--vhluxe-cream);
}

.vhluxe-destination--wellness {
	--vhluxe-ink: #f8f5ee;
	--vhluxe-heading: #f8f5ee;
	--vhluxe-ink-soft: #d1d8d1;
	--vhluxe-line: rgba(255, 255, 255, 0.18);
	--vhluxe-paper: #182a40;
	--vhluxe-gold: #d5b477;
	--vhluxe-gold-text: #efd29a;
	background: var(--vhluxe-forest);
}

/* Keep the dark wellness treatment legible when a theme or Elementor kit
 * applies higher-specificity global heading colours. */
.vhluxe-destination--wellness .vhluxe-destination__heading,
.vhluxe-destination--wellness .vhluxe-destination__card-title {
	color: var(--vhluxe-heading) !important;
}

.vhluxe-destination__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 72px);
	width: 100%;
}

.vhluxe-destination__section-header {
	margin: 0 0 clamp(36px, 5vw, 64px);
	max-width: 790px;
}

.vhluxe-destination__eyebrow,
.vhluxe-destination__section-kicker,
.vhluxe-destination__kicker,
.vhluxe-destination__mini-label,
.vhluxe-destination__partner-label {
	color: var(--vhluxe-gold-text);
	font-family: var(--vhluxe-sans);
	font-size: 0.71rem;
	font-weight: 650;
	letter-spacing: 0.17em;
	line-height: 1.35;
	margin: 0 0 13px;
	text-transform: uppercase;
}

.vhluxe-destination__heading {
	color: var(--vhluxe-heading);
	font-family: var(--vhluxe-serif);
	font-size: clamp(2.25rem, 5vw, 4.6rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.99;
	margin: 0;
	max-width: 850px;
}

.vhluxe-destination__intro {
	color: var(--vhluxe-ink-soft);
	font-family: var(--vhluxe-serif);
	font-size: clamp(1.15rem, 1.9vw, 1.45rem);
	line-height: 1.55;
	margin-top: 24px;
	max-width: 760px;
}

.vhluxe-destination__intro p,
.vhluxe-destination__lead p,
.vhluxe-destination__prose p,
.vhluxe-destination__labelled-copy p,
.vhluxe-destination__tradeoff p,
.vhluxe-destination__disclaimer p,
.vhluxe-destination__faq-answer p {
	margin: 0;
}

.vhluxe-destination__intro p + p,
.vhluxe-destination__lead p + p,
.vhluxe-destination__prose p + p,
.vhluxe-destination__labelled-copy p + p,
.vhluxe-destination__tradeoff p + p,
.vhluxe-destination__faq-answer p + p {
	margin-top: 0.85em;
}

.vhluxe-destination__lead {
	color: var(--vhluxe-ink-soft);
	font-size: 1.08rem;
}

.vhluxe-destination__gateway {
	align-items: baseline;
	border-left: 2px solid var(--vhluxe-gold);
	display: flex;
	font-family: var(--vhluxe-sans);
	font-size: 0.95rem;
	gap: 10px;
	margin: 24px 0 0;
	padding-left: 15px;
}

.vhluxe-destination__gateway span {
	color: var(--vhluxe-gold-text);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.vhluxe-destination__decision-grid,
.vhluxe-destination__experience-grid,
.vhluxe-destination__wellness-grid {
	display: grid;
	gap: clamp(24px, 3vw, 38px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vhluxe-destination__stay-grid {
	display: grid;
	gap: clamp(24px, 2.5vw, 34px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vhluxe-destination__arrival-grid,
.vhluxe-destination__season-grid,
.vhluxe-destination__note-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vhluxe-destination__decision-card,
.vhluxe-destination__stay-card,
.vhluxe-destination__experience-card,
.vhluxe-destination__wellness-card {
	background: var(--vhluxe-paper);
	border: 1px solid var(--vhluxe-line);
	box-shadow: var(--vhluxe-shadow);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.vhluxe-destination__stay-card--internal {
	background: repeating-linear-gradient(
		-45deg,
		#fffdf9,
		#fffdf9 12px,
		#f6f2ea 12px,
		#f6f2ea 24px
	);
	border: 1px dashed #9c7a42;
	box-shadow: none;
}

.vhluxe-destination__internal-label {
	background: #5c4828;
	color: #fffdf9;
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	margin: 0 0 16px;
	padding: 6px 9px;
	text-transform: uppercase;
}

.vhluxe-destination__stay-card--internal .vhluxe-destination__prose {
	margin-top: 16px;
}

.vhluxe-destination--wellness .vhluxe-destination__wellness-card {
	background: rgba(255, 255, 255, 0.045);
	box-shadow: none;
}

.vhluxe-destination__arrival-card,
.vhluxe-destination__season-card,
.vhluxe-destination__note-card {
	background: var(--vhluxe-paper);
	border: 1px solid var(--vhluxe-line);
	margin: 0 0 -1px -1px;
	min-width: 0;
	padding: clamp(25px, 3vw, 39px);
	position: relative;
}

.vhluxe-destination__media {
	background: #e7e4dc;
	overflow: hidden;
	position: relative;
}

.vhluxe-destination__media::before {
	content: "";
	display: block;
	padding-top: 68%;
}

.vhluxe-destination__media--stay::before {
	padding-top: 76%;
}

.vhluxe-destination__card-image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
}

.vhluxe-destination__decision-card:hover .vhluxe-destination__card-image,
.vhluxe-destination__stay-card:hover .vhluxe-destination__card-image,
.vhluxe-destination__experience-card:hover .vhluxe-destination__card-image,
.vhluxe-destination__wellness-card:hover .vhluxe-destination__card-image {
	transform: scale(1.025);
}

.vhluxe-destination__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(25px, 3vw, 39px);
}

.vhluxe-destination__card-title {
	color: var(--vhluxe-heading);
	font-family: var(--vhluxe-serif);
	font-size: clamp(1.55rem, 2.25vw, 2.15rem);
	font-weight: 400;
	letter-spacing: -0.018em;
	line-height: 1.12;
	margin: 0;
}

.vhluxe-destination__card-title + .vhluxe-destination__prose,
.vhluxe-destination__kicker + .vhluxe-destination__card-title,
.vhluxe-destination__best-for + .vhluxe-destination__prose {
	margin-top: 15px;
}

.vhluxe-destination__prose {
	color: var(--vhluxe-ink-soft);
	font-size: 0.96rem;
	line-height: 1.68;
}

.vhluxe-destination__best-for {
	color: var(--vhluxe-ink-soft);
	font-size: 0.85rem;
	line-height: 1.45;
	margin: 14px 0 0;
}

.vhluxe-destination__best-for span {
	color: var(--vhluxe-gold-text);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	margin-right: 5px;
	text-transform: uppercase;
}

.vhluxe-destination__tradeoff,
.vhluxe-destination__labelled-copy {
	border-top: 1px solid var(--vhluxe-line);
	color: var(--vhluxe-ink-soft);
	font-size: 0.88rem;
	line-height: 1.62;
	margin-top: 22px;
	padding-top: 17px;
}

.vhluxe-destination__tradeoff > span {
	color: var(--vhluxe-gold-text);
	display: block;
	font-size: 0.66rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.vhluxe-destination__mini-label {
	margin-bottom: 7px !important;
}

.vhluxe-destination__partner-note {
	background: color-mix(in srgb, var(--vhluxe-gold) 9%, transparent);
	border-left: 2px solid var(--vhluxe-gold);
	color: var(--vhluxe-ink-soft);
	font-size: 0.86rem;
	margin-top: 24px;
	padding: 17px 18px;
}

.vhluxe-destination__partner-label {
	margin-bottom: 8px;
}

.vhluxe-destination__partner-note ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vhluxe-destination__partner-note li + li {
	border-top: 1px solid var(--vhluxe-line);
	margin-top: 9px;
	padding-top: 9px;
}

.vhluxe-destination__text-link {
	align-items: center;
	align-self: flex-start;
	border-bottom: 1px solid currentColor;
	color: var(--vhluxe-ink);
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 650;
	gap: 8px;
	letter-spacing: 0.1em;
	margin-top: auto;
	padding-top: 24px;
	text-decoration: none;
	text-transform: uppercase;
}

.vhluxe-destination__text-link:hover {
	color: var(--vhluxe-gold-text);
}

.vhluxe-destination__text-link:focus-visible,
.vhluxe-destination__faq-question:focus-visible {
	outline: 2px solid var(--vhluxe-gold-text);
	outline-offset: 4px;
}

.vhluxe-destination__route {
	align-items: center;
	color: var(--vhluxe-ink);
	display: flex;
	font-size: 0.9rem;
	font-weight: 600;
	gap: 9px;
	margin: 20px 0 0;
}

.vhluxe-destination__route-arrow {
	color: var(--vhluxe-gold);
}

.vhluxe-destination__meta-line {
	color: var(--vhluxe-ink-soft);
	font-size: 0.77rem;
	letter-spacing: 0.04em;
	margin: 10px 0 0;
}

.vhluxe-destination__arrival-card .vhluxe-destination__prose {
	border-top: 1px solid var(--vhluxe-line);
	margin-top: 19px;
	padding-top: 16px;
}

.vhluxe-destination__facts {
	border-bottom: 1px solid var(--vhluxe-line);
	border-top: 1px solid var(--vhluxe-line);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 clamp(32px, 5vw, 58px);
	padding: 0;
}

.vhluxe-destination__card-body .vhluxe-destination__facts,
.vhluxe-destination__season-card .vhluxe-destination__facts {
	border-bottom: 0;
	display: block;
	margin: 21px 0 0;
}

.vhluxe-destination__facts > div {
	border-left: 1px solid var(--vhluxe-line);
	padding: 18px 22px;
}

.vhluxe-destination__facts > div:first-child {
	border-left: 0;
}

.vhluxe-destination__card-body .vhluxe-destination__facts > div,
.vhluxe-destination__season-card .vhluxe-destination__facts > div {
	border-left: 0;
	border-top: 1px solid var(--vhluxe-line);
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(72px, 0.36fr) 1fr;
	padding: 13px 0;
}

.vhluxe-destination__facts dt {
	color: var(--vhluxe-gold-text);
	font-size: 0.65rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.vhluxe-destination__facts dd {
	color: var(--vhluxe-ink);
	font-size: 0.89rem;
	line-height: 1.5;
	margin: 0;
}

.vhluxe-destination__wellness-notes {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: clamp(34px, 5vw, 58px);
}

.vhluxe-destination__wellness-notes .vhluxe-destination__labelled-copy {
	margin: 0;
}

.vhluxe-destination__value-panel {
	--vhluxe-ink-soft: #d1d8d1;
	--vhluxe-line: rgba(255, 255, 255, 0.18);
	--vhluxe-gold-text: #efd29a;
	background: var(--vhluxe-forest);
	box-shadow: var(--vhluxe-shadow);
	color: #f8f5ee;
	margin: 0;
	max-width: 940px;
	padding: clamp(30px, 5vw, 62px);
}

.vhluxe-destination__value-guidance {
	color: #f8f5ee;
	font-family: var(--vhluxe-serif);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	line-height: 1.6;
}

.vhluxe-destination--advisor-cta {
	background: var(--vhluxe-cream);
}

.vhluxe-destination__advisor-inner {
	align-items: center;
	display: grid;
	gap: clamp(34px, 6vw, 88px);
	grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
	width: 100%;
}

.vhluxe-destination__advisor-portrait {
	aspect-ratio: 1 / 1;
	box-shadow: var(--vhluxe-shadow);
	overflow: hidden;
	width: 100%;
}

.vhluxe-destination__advisor-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.vhluxe-destination__advisor-content {
	max-width: 670px;
}

.vhluxe-destination--advisor-cta .vhluxe-destination__heading {
	font-size: clamp(2.25rem, 4.5vw, 4rem);
}

.vhluxe-destination__advisor-identity {
	border-left: 2px solid var(--vhluxe-gold);
	margin-top: 30px;
	padding-left: 18px;
}

.vhluxe-destination__advisor-identity h3 {
	color: var(--vhluxe-ink);
	font-family: var(--vhluxe-serif);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

.vhluxe-destination__advisor-identity p {
	color: var(--vhluxe-gold-text);
	font-size: 0.71rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	margin: 7px 0 0;
	text-transform: uppercase;
}

.vhluxe-destination__advisor-statement {
	font-size: 1rem;
	margin-top: 24px;
}

.vhluxe-destination__advisor-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	margin-top: 30px;
}

.vhluxe-destination__advisor-primary {
	align-items: center;
	background: var(--vhluxe-forest);
	color: #ffffff;
	display: inline-flex;
	font-size: 0.73rem;
	font-weight: 650;
	gap: 10px;
	justify-content: center;
	letter-spacing: 0.1em;
	min-height: 48px;
	padding: 13px 22px;
	text-decoration: none;
	text-transform: uppercase;
}

.vhluxe-destination__advisor-primary:hover {
	background: var(--vhluxe-heading);
	color: #ffffff;
}

.vhluxe-destination__advisor-secondary {
	border-bottom: 1px solid currentColor;
	color: var(--vhluxe-ink);
	font-size: 0.73rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	min-height: 44px;
	padding: 12px 2px 8px;
	text-decoration: none;
	text-transform: uppercase;
}

.vhluxe-destination__advisor-secondary:hover {
	color: var(--vhluxe-gold-text);
}

.vhluxe-destination__advisor-primary:focus-visible,
.vhluxe-destination__advisor-secondary:focus-visible {
	outline: 2px solid var(--vhluxe-gold-text);
	outline-offset: 4px;
}

.vhluxe-destination__season-rating {
	border: 1px solid var(--vhluxe-line);
	border-radius: 999px;
	color: var(--vhluxe-ink-soft);
	display: inline-block;
	font-size: 0.64rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	margin-bottom: 19px;
	padding: 6px 10px;
	text-transform: uppercase;
}

.vhluxe-destination__season-rating--best {
	background: #e3eadf;
	border-color: #c5d2c0;
	color: #30462f;
}

.vhluxe-destination__season-rating--good {
	background: #f2ead9;
	border-color: #ddcca8;
	color: #674e25;
}

.vhluxe-destination__season-rating--conditional {
	background: #f0e4dc;
	border-color: #dbc1b0;
	color: #6b4935;
}

.vhluxe-destination__season-rating--avoid {
	background: #e9e7e4;
	border-color: #d0ccc6;
	color: #59544e;
}

.vhluxe-destination__disclaimer {
	border-top: 1px solid var(--vhluxe-line);
	color: var(--vhluxe-ink-soft);
	font-size: 0.77rem;
	line-height: 1.55;
	margin-top: clamp(34px, 5vw, 54px);
	max-width: 850px;
	padding-top: 18px;
}

.vhluxe-destination__journey-list {
	counter-reset: vhluxe-step;
	list-style: none;
	margin: 0;
	max-width: 930px;
	padding: 0;
}

.vhluxe-destination__journey-step {
	align-items: flex-start;
	border-top: 1px solid var(--vhluxe-line);
	display: grid;
	gap: clamp(22px, 4vw, 54px);
	grid-template-columns: 66px 1fr;
	padding: clamp(27px, 4vw, 46px) 0;
}

.vhluxe-destination__journey-step:last-child {
	border-bottom: 1px solid var(--vhluxe-line);
}

.vhluxe-destination__step-number {
	color: var(--vhluxe-gold);
	font-family: var(--vhluxe-serif);
	font-size: 1.3rem;
	line-height: 1;
	padding-top: 5px;
}

.vhluxe-destination__journey-step .vhluxe-destination__prose {
	margin-top: 12px;
	max-width: 700px;
}

.vhluxe-destination__faq-list {
	border-top: 1px solid var(--vhluxe-line);
	max-width: 930px;
}

.vhluxe-destination__faq-item {
	border-bottom: 1px solid var(--vhluxe-line);
}

.vhluxe-destination__faq-question {
	align-items: center;
	color: var(--vhluxe-ink);
	cursor: pointer;
	display: flex;
	font-family: var(--vhluxe-serif);
	font-size: clamp(1.18rem, 2vw, 1.55rem);
	gap: 24px;
	justify-content: space-between;
	line-height: 1.3;
	list-style: none;
	padding: 27px 0;
}

.vhluxe-destination__faq-question::-webkit-details-marker {
	display: none;
}

.vhluxe-destination__faq-mark {
	flex: 0 0 20px;
	height: 20px;
	position: relative;
	width: 20px;
}

.vhluxe-destination__faq-mark::before,
.vhluxe-destination__faq-mark::after {
	background: var(--vhluxe-gold);
	content: "";
	height: 1px;
	left: 2px;
	position: absolute;
	top: 10px;
	transition: transform 220ms ease;
	width: 16px;
}

.vhluxe-destination__faq-mark::after {
	transform: rotate(90deg);
}

.vhluxe-destination__faq-item[open] .vhluxe-destination__faq-mark::after {
	transform: rotate(0deg);
}

.vhluxe-destination__faq-answer {
	color: var(--vhluxe-ink-soft);
	font-size: 0.98rem;
	line-height: 1.75;
	max-width: 760px;
	padding: 0 50px 29px 0;
}

.vhluxe-destination__faq-answer ul,
.vhluxe-destination__faq-answer ol {
	margin: 0.9em 0;
	padding-left: 1.3em;
}

@supports not (color: color-mix(in srgb, black 50%, white)) {
	.vhluxe-destination__partner-note {
		background: rgba(156, 122, 66, 0.09);
	}
}

/* Destination collection archive. */
.vhluxe-destinations-archive {
	--vhluxe-archive-ink: var(--e-global-color-secondary, #080e15);
	--vhluxe-archive-heading: var(--e-global-color-primary, #344482);
	--vhluxe-archive-copy: var(--e-global-color-text, #666666);
	--vhluxe-archive-gold: var(--e-global-color-accent, #d19e3c);
	--vhluxe-archive-gold-text: #805d23;
	--vhluxe-archive-paper: #ffffff;
	--vhluxe-archive-cream: #f6f1e8;
	--vhluxe-archive-line: rgba(8, 14, 21, 0.12);
	--vhluxe-archive-shadow: 0 22px 60px rgba(8, 14, 21, 0.1);
	--vhluxe-archive-serif: "Playfair Display", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
	--vhluxe-archive-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: var(--vhluxe-archive-ink);
	font-family: var(--vhluxe-archive-sans);
	width: 100%;
}

.vhluxe-destinations-archive,
.vhluxe-destinations-archive *,
.vhluxe-destinations-archive *::before,
.vhluxe-destinations-archive *::after {
	box-sizing: border-box;
}

.vhluxe-destinations-archive__filters {
	align-items: end;
	background: var(--vhluxe-archive-paper);
	border: 0;
	border-radius: 16px;
	box-shadow: 0 18px 55px rgba(8, 14, 21, 0.08);
	display: grid;
	gap: 22px;
	grid-template-columns: 1fr auto;
	margin: 0 0 clamp(42px, 6vw, 68px);
	overflow: hidden;
	padding: clamp(24px, 3vw, 34px);
	position: relative;
}

.vhluxe-destinations-archive__filters::before {
	background: var(--vhluxe-archive-gold);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.vhluxe-destinations-archive__filter-fields {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vhluxe-destinations-archive__filter {
	display: grid;
	gap: 8px;
	margin: 0;
}

.vhluxe-destinations-archive__filter > span {
	color: var(--vhluxe-archive-copy);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.vhluxe-destinations-archive__filter select {
	appearance: none;
	background-color: var(--vhluxe-archive-paper);
	background-image: linear-gradient(45deg, transparent 50%, var(--vhluxe-archive-heading) 50%), linear-gradient(135deg, var(--vhluxe-archive-heading) 50%, transparent 50%);
	background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	border: 1px solid var(--vhluxe-archive-line);
	border-radius: 8px;
	color: var(--vhluxe-archive-ink);
	font-family: var(--vhluxe-archive-sans);
	font-size: 0.88rem;
	line-height: 1.2;
	min-height: 48px;
	padding: 11px 38px 11px 13px;
	width: 100%;
}

.vhluxe-destinations-archive__filter select:focus-visible,
.vhluxe-destinations-archive__filter-actions button:focus-visible,
.vhluxe-destinations-archive__filter-actions a:focus-visible,
.vhluxe-destinations-archive__card-link:focus-visible,
.vhluxe-destinations-archive__pagination a:focus-visible {
	outline: 2px solid var(--vhluxe-archive-gold-text);
	outline-offset: 3px;
}

.vhluxe-destinations-archive__filter-actions {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: flex-end;
}

.vhluxe-destinations-archive__filter-actions button {
	background: var(--vhluxe-archive-gold);
	border: 1px solid var(--vhluxe-archive-gold);
	border-radius: 8px;
	color: var(--vhluxe-archive-ink);
	cursor: pointer;
	font-family: var(--vhluxe-archive-sans);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.09em;
	min-height: 48px;
	padding: 13px 22px;
	text-transform: uppercase;
	white-space: nowrap;
}

.vhluxe-destinations-archive__filter-actions button:hover {
	background: var(--vhluxe-archive-ink);
	border-color: var(--vhluxe-archive-ink);
	color: #ffffff;
}

.vhluxe-destinations-archive__filter-actions a {
	align-items: center;
	color: var(--vhluxe-archive-gold-text);
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	min-height: 44px;
	padding: 13px 0;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
	text-transform: uppercase;
	white-space: nowrap;
}

.vhluxe-destinations-archive__grid {
	display: grid;
	gap: clamp(24px, 2.7vw, 34px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vhluxe-destinations-archive__card {
	background: var(--vhluxe-archive-paper);
	border: 0;
	border-radius: 16px;
	box-shadow: 0 12px 42px rgba(8, 14, 21, 0.07);
	margin: 0;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.vhluxe-destinations-archive__card:hover {
	box-shadow: var(--vhluxe-archive-shadow);
	transform: translateY(-4px);
}

.vhluxe-destinations-archive__card-link {
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.vhluxe-destinations-archive__card-media {
	background: var(--vhluxe-archive-cream);
	display: block;
	overflow: hidden;
	position: relative;
}

.vhluxe-destinations-archive__card-media::before {
	content: "";
	display: block;
	padding-top: 66.666%;
}

.vhluxe-destinations-archive .vhluxe-destinations-archive__card-image,
.vhluxe-destinations-archive__card-image-placeholder {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform 420ms ease;
	width: 100%;
}

.vhluxe-destinations-archive__card-image-placeholder {
	background: linear-gradient(135deg, #e9e3df, var(--vhluxe-archive-cream));
}

.vhluxe-destinations-archive__card:hover .vhluxe-destinations-archive__card-image {
	transform: scale(1.035);
}

.vhluxe-destinations-archive__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: clamp(25px, 2.8vw, 34px);
}

.vhluxe-destinations-archive__card-region {
	color: var(--vhluxe-archive-gold-text);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.vhluxe-destinations-archive .vhluxe-destinations-archive__card-title {
	color: var(--vhluxe-archive-heading);
	font-family: var(--vhluxe-archive-serif);
	font-size: clamp(1.55rem, 2.3vw, 2.05rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.18;
	margin: 0;
}

.vhluxe-destinations-archive__card-excerpt {
	color: var(--vhluxe-archive-copy);
	display: block;
	font-size: 0.92rem;
	line-height: 1.68;
	margin-top: 15px;
}

.vhluxe-destinations-archive__card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 16px;
}

.vhluxe-destinations-archive__card-meta > span {
	background: var(--vhluxe-archive-cream);
	border: 0;
	border-radius: 999px;
	color: var(--vhluxe-archive-copy);
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0.06em;
	line-height: 1.25;
	padding: 5px 9px;
	text-transform: uppercase;
}

.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-body {
	--vhluxe-archive-heading: #ffffff;
	--vhluxe-archive-copy: #d7dde5;
	--vhluxe-archive-gold-text: #edc878;
	background: #182a40;
}

.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-meta > span {
	background: rgba(255, 255, 255, 0.08);
	color: #edf0f4;
}

.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-cta {
	color: #ffffff;
}

@media (min-width: 1025px) {
	.vhluxe-destinations-archive__card:first-child {
		grid-column: span 2;
	}

	.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-link {
		display: grid;
		grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
	}

	.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-media {
		height: 100%;
		min-height: 500px;
	}

	.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-media::before {
		display: none;
	}

	.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-body {
		min-height: 500px;
		padding: clamp(36px, 4vw, 52px);
	}

	.vhluxe-destinations-archive__card:first-child .vhluxe-destinations-archive__card-title {
		font-size: clamp(2.2rem, 3.5vw, 3.3rem);
	}
}

.vhluxe-destinations-archive__card-cta {
	color: var(--vhluxe-archive-heading);
	font-size: 0.69rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	margin-top: auto;
	min-height: 44px;
	padding-top: 26px;
	text-transform: uppercase;
}

.vhluxe-destinations-archive__card-cta > span {
	color: var(--vhluxe-archive-gold-text);
	display: inline-block;
	transition: transform 180ms ease;
}

.vhluxe-destinations-archive__card:hover .vhluxe-destinations-archive__card-cta > span {
	transform: translateX(4px);
}

.vhluxe-destinations-archive__empty {
	background: var(--vhluxe-archive-cream);
	border: 1px solid var(--vhluxe-archive-line);
	margin: 0;
	padding: clamp(54px, 8vw, 92px) clamp(24px, 7vw, 80px);
	text-align: center;
}

.vhluxe-destinations-archive__empty-eyebrow {
	color: var(--vhluxe-archive-gold-text);
	display: block;
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.11em;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.vhluxe-destinations-archive__empty h2 {
	color: var(--vhluxe-archive-heading);
	font-family: var(--vhluxe-archive-serif);
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	font-weight: 400;
	line-height: 1.18;
	margin: 0 auto;
	max-width: 760px;
}

.vhluxe-destinations-archive__empty p {
	color: var(--vhluxe-archive-copy);
	font-size: 0.98rem;
	line-height: 1.75;
	margin: 18px auto 0;
	max-width: 680px;
}

.vhluxe-destinations-archive__empty > a {
	color: var(--vhluxe-archive-heading);
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	margin-top: 23px;
	min-height: 44px;
	padding: 12px 0;
	text-decoration-color: var(--vhluxe-archive-gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
	text-transform: uppercase;
}

.vhluxe-destinations-archive__empty > a:focus-visible {
	outline: 2px solid var(--vhluxe-archive-gold-text);
	outline-offset: 3px;
}

.vhluxe-destinations-archive__pagination {
	margin-top: clamp(46px, 7vw, 72px);
}

.vhluxe-destinations-archive__pagination .page-numbers {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vhluxe-destinations-archive__pagination .page-numbers li {
	margin: 0;
	padding: 0;
}

.vhluxe-destinations-archive__pagination a,
.vhluxe-destinations-archive__pagination .current {
	align-items: center;
	border: 1px solid var(--vhluxe-archive-line);
	color: var(--vhluxe-archive-heading);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 650;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	padding: 9px 13px;
	text-decoration: none;
}

.vhluxe-destinations-archive__pagination a:hover,
.vhluxe-destinations-archive__pagination .current {
	background: var(--vhluxe-archive-heading);
	border-color: var(--vhluxe-archive-heading);
	color: #ffffff;
}

@media (max-width: 1024px) {
	.vhluxe-destination[data-vhluxe-module],
	.vhluxe-destination-overview#overview {
		scroll-margin-top: var(--vhluxe-anchor-offset, 212px);
	}

	.vhluxe-destination__stay-grid,
	.vhluxe-destination__arrival-grid,
	.vhluxe-destination__season-grid,
	.vhluxe-destination__note-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vhluxe-destination__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vhluxe-destination__facts > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--vhluxe-line);
	}

	.vhluxe-destination__facts > div:nth-child(4) {
		border-top: 1px solid var(--vhluxe-line);
	}

	.vhluxe-destinations-archive__filters {
		align-items: stretch;
		grid-template-columns: 1fr;
	}

	.vhluxe-destinations-archive__filter-actions {
		justify-content: flex-start;
	}

	.vhluxe-destinations-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vhluxe-destinations-archive__card:first-child {
		grid-column: span 2;
	}
}

@media (max-width: 767px) {
	.vhluxe-destination[data-vhluxe-module],
	.vhluxe-destination-overview#overview {
		scroll-margin-top: var(--vhluxe-anchor-offset, 166px);
	}

	.vhluxe-destination {
		font-size: 15px;
	}

	.vhluxe-destination__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.vhluxe-destination__advisor-inner {
		grid-template-columns: 1fr;
	}

	.vhluxe-destination__advisor-portrait {
		max-width: 290px;
	}

	.vhluxe-destination__advisor-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.vhluxe-destination__advisor-primary,
	.vhluxe-destination__advisor-secondary {
		align-self: stretch;
		justify-content: center;
		text-align: center;
	}

	.vhluxe-destination__decision-grid,
	.vhluxe-destination__stay-grid,
	.vhluxe-destination__experience-grid,
	.vhluxe-destination__wellness-grid,
	.vhluxe-destination__arrival-grid,
	.vhluxe-destination__season-grid,
	.vhluxe-destination__note-grid,
	.vhluxe-destination__wellness-notes {
		grid-template-columns: 1fr;
	}

	.vhluxe-destination__facts {
		grid-template-columns: 1fr;
	}

	.vhluxe-destination__facts > div,
	.vhluxe-destination__facts > div:nth-child(2),
	.vhluxe-destination__facts > div:nth-child(3),
	.vhluxe-destination__facts > div:nth-child(4) {
		border-left: 0;
		border-top: 1px solid var(--vhluxe-line);
		padding: 15px 4px;
	}

	.vhluxe-destination__facts > div:first-child {
		border-top: 0;
	}

	.vhluxe-destination__journey-step {
		gap: 15px;
		grid-template-columns: 40px 1fr;
	}

	.vhluxe-destination__faq-answer {
		padding-right: 10px;
	}

	.vhluxe-destinations-archive__filter-fields,
	.vhluxe-destinations-archive__grid {
		grid-template-columns: 1fr;
	}

	.vhluxe-destinations-archive__card:first-child {
		grid-column: span 1;
	}

	.vhluxe-destinations-archive__filters,
	.vhluxe-destinations-archive__card {
		border-radius: 12px;
	}

	.vhluxe-destinations-archive__filter-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.vhluxe-destinations-archive__filter-actions button,
	.vhluxe-destinations-archive__filter-actions a {
		align-items: center;
		display: inline-flex;
		justify-content: center;
		text-align: center;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vhluxe-destination__card-image,
	.vhluxe-destination__faq-mark::before,
	.vhluxe-destination__faq-mark::after,
	.vhluxe-destinations-archive__card,
	.vhluxe-destinations-archive__card-image,
	.vhluxe-destinations-archive__card-cta > span {
		transition: none;
	}

	.vhluxe-destination__decision-card:hover .vhluxe-destination__card-image,
	.vhluxe-destination__stay-card:hover .vhluxe-destination__card-image,
	.vhluxe-destination__experience-card:hover .vhluxe-destination__card-image,
	.vhluxe-destination__wellness-card:hover .vhluxe-destination__card-image,
	.vhluxe-destinations-archive__card:hover,
	.vhluxe-destinations-archive__card:hover .vhluxe-destinations-archive__card-image,
	.vhluxe-destinations-archive__card:hover .vhluxe-destinations-archive__card-cta > span {
		transform: none;
	}
}

/* Destination Guides hub — cinematic search controls and country index. */
.vhluxe-hub-controls {
	max-width: 720px;
	width: 100%;
}

.vhluxe-hub-controls__search {
	display: flex;
	margin: 4px 0 18px;
	max-width: 560px;
}

.vhluxe-hub-controls__search input {
	background: #ffffff !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #182a40 !important;
	font: 400 14px/1.2 Inter, Arial, sans-serif;
	min-height: 48px;
	min-width: 0;
	padding: 13px 17px;
	width: 100%;
}

.vhluxe-hub-controls__search input::placeholder {
	color: #777b7d;
	opacity: 1;
}

.vhluxe-hub-controls__search button {
	background: #d19e3c;
	border: 0;
	border-radius: 0;
	color: #080e15;
	cursor: pointer;
	font: 700 10px/1 Inter, Arial, sans-serif;
	letter-spacing: 0.09em;
	min-width: 112px;
	padding: 14px 20px;
	text-transform: uppercase;
}

.vhluxe-hub-controls__search button:hover,
.vhluxe-hub-controls__search button:focus-visible {
	background: #ffffff;
	color: #182a40;
}

.vhluxe-hub-controls__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vhluxe-hub-controls__pills a {
	border: 1px solid rgba(255, 255, 255, 0.58);
	color: #ffffff;
	font: 700 10px/1 Inter, Arial, sans-serif;
	letter-spacing: 0.08em;
	padding: 9px 15px;
	text-decoration: none;
	text-transform: uppercase;
}

.vhluxe-hub-controls__pills a:hover,
.vhluxe-hub-controls__pills a:focus-visible,
.vhluxe-hub-controls__pills a.is-active {
	background: #ffffff;
	border-color: #ffffff;
	color: #182a40;
}

.vhluxe-country-index {
	background: #f7f3f4;
	border-top: 1px solid #dedfe0;
	padding: 42px 44px 38px;
}

.vhluxe-country-index__eyebrow {
	color: #d19e3c;
	font: 400 21px/1.2 Satisfy, cursive;
	margin: 0 0 15px;
}

.vhluxe-country-index__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vhluxe-country-index__links a {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dedfe0;
	color: #182a40;
	display: inline-flex;
	font: 700 10px/1 Inter, Arial, sans-serif;
	gap: 6px;
	letter-spacing: 0.07em;
	min-height: 32px;
	padding: 8px 12px;
	text-decoration: none;
	text-transform: uppercase;
}

.vhluxe-country-index__links a:hover,
.vhluxe-country-index__links a:focus-visible {
	border-color: #d19e3c;
	color: #9b6e1f;
}

.vhluxe-country-index__links small {
	color: #777b7d;
	font: inherit;
}

.vhluxe-country-index__links small::before {
	content: "·";
	margin-right: 6px;
}

@media (max-width: 767px) {
	.vhluxe-hub-controls__search {
		max-width: none;
	}

	.vhluxe-hub-controls__search button {
		min-width: 92px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.vhluxe-hub-controls__pills a {
		padding: 8px 12px;
	}

	.vhluxe-country-index {
		padding: 34px 20px 32px;
	}
}
