/**
 * Kwetu Voyages — two-color brand system + typography scale.
 * Colors: brown, gold, white only.
 */

:root {
	--alm-brown: #712d1a;
	--alm-gold: #ff8800;
	--alm-white: #ffffff;

	--alm-text: var(--alm-brown);
	--alm-text-muted: rgba(113, 45, 26, 0.72);
	--alm-line: rgba(113, 45, 26, 0.12);
	--alm-shadow: 0 18px 48px rgba(113, 45, 26, 0.1);

	--alm-text-xs: 0.8125rem;
	--alm-text-sm: 0.875rem;
	--alm-text-base: 1rem;
	--alm-text-md: 1.125rem;
	--alm-text-lg: 1.25rem;
	--alm-text-xl: 1.5rem;
	--alm-text-2xl: 1.75rem;
	--alm-text-3xl: clamp(2rem, 3.5vw, 2.75rem);
	--alm-text-hero: clamp(2.25rem, 4.8vw, 3.5rem);

	--serene-ink: var(--alm-brown);
	--serene-navy: var(--alm-brown);
	--serene-muted: var(--alm-text-muted);
	--serene-forest: var(--alm-brown);
	--serene-gold: var(--alm-gold);
	--serene-cyan: var(--alm-gold);
	--serene-accent: var(--alm-gold);
	--serene-sand: var(--alm-white);
	--serene-cream: var(--alm-white);
	--serene-ivory: var(--alm-white);
	--serene-line: var(--alm-line);
	--serene-shadow: var(--alm-shadow);
}

body {
	background: var(--alm-white) !important;
	color: var(--alm-text);
	font-size: var(--alm-text-base);
	line-height: 1.65;
}

/* ── Hero ── */
.serene-home-gateway.alm-hero {
	display: block;
	min-height: clamp(520px, 78vh, 760px);
	align-items: stretch;
	background-color: var(--alm-brown);
	color: var(--alm-white);
}

.serene-home-gateway.alm-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(10, 20, 35, 0.72) 0%, rgba(10, 20, 35, 0.38) 48%, rgba(10, 20, 35, 0.55) 100%),
		linear-gradient(180deg, rgba(10, 20, 35, 0.12) 0%, rgba(10, 20, 35, 0.48) 100%);
}

.serene-home-gateway.alm-hero .serene-home-gateway__inner {
	position: relative;
	z-index: 3;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(96px, 14vh, 148px) 0 clamp(72px, 10vh, 108px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 28px;
	max-width: none;
}

.serene-home-gateway.alm-hero .serene-home-gateway__inner--single {
	max-width: none;
}

.serene-home-gateway.alm-hero .serene-home-gateway__copy {
	max-width: 720px;
}

.serene-home-gateway.alm-hero .serene-kicker {
	color: var(--alm-gold);
	font-size: var(--alm-text-xs);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.serene-home-gateway.alm-hero .serene-home-gateway__copy h1 {
	color: var(--alm-white);
	font-size: var(--alm-text-hero);
	font-weight: 700;
	line-height: 1.12;
	margin: 12px 0 18px;
	text-transform: none;
	letter-spacing: -0.02em;
	max-width: 14ch;
}

.serene-home-gateway.alm-hero .serene-home-gateway__copy h1 em {
	color: var(--alm-gold);
	font-style: normal;
	font-weight: 700;
}

.serene-home-gateway.alm-hero .serene-home-gateway__copy p {
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--alm-text-md);
	font-weight: 400;
	line-height: 1.7;
	max-width: 560px;
	margin: 0 0 28px;
}

.serene-home-gateway.alm-hero .serene-hero-actions {
	gap: 12px;
}

.serene-home-gateway.alm-hero .serene-btn {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
	font-size: var(--alm-text-sm);
	font-weight: 700;
	padding: 14px 24px;
	text-transform: none;
	letter-spacing: 0;
	border-radius: 4px;
}

.serene-home-gateway.alm-hero .serene-btn:hover {
	background: var(--alm-brown) !important;
	border-color: var(--alm-brown) !important;
	color: var(--alm-white) !important;
	box-shadow: inset 0 0 0 2px var(--alm-gold);
}

.serene-home-gateway.alm-hero .serene-btn-light {
	background: transparent !important;
	border: 2px solid rgba(255, 255, 255, 0.75) !important;
	color: var(--alm-white) !important;
}

.serene-home-gateway.alm-hero .serene-btn-light:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: var(--alm-white) !important;
}

.serene-home-gateway.alm-hero .serene-home-gateway__proof,
.serene-home-gateway.alm-hero .serene-home-gateway__proof--inline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	background: transparent;
	box-shadow: none;
}

.serene-home-gateway.alm-hero .serene-home-gateway__proof span,
.serene-home-gateway.alm-hero .serene-home-gateway__proof--inline span {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: var(--alm-white);
	font-size: var(--alm-text-xs);
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 999px;
	text-transform: none;
	letter-spacing: 0;
}

.serene-home-gateway.alm-hero .serene-home-gateway__proof--inline {
	position: static;
	width: auto;
	margin: 8px 0 0;
	padding: 0;
}

.serene-home-gateway.alm-hero .serene-home-gateway__inner--single {
	display: flex !important;
	flex-direction: column;
	grid-template-columns: minmax(0, 1fr) !important;
	max-width: none !important;
}

.serene-home-gateway.alm-hero .serene-home-gateway__audience {
	display: none;
}

.serene-home-gateway.alm-hero .serene-home-gateway__slides {
	background: var(--alm-brown);
}

.serene-home-gateway.alm-hero .serene-home-gateway__slides span[style*="opacity: 1"] {
	animation: none;
	opacity: 1 !important;
}

.serene-itinerary-page,
.serene-destination-single {
	background: var(--alm-white) !important;
}

/* ── Global chrome (brown + gold) ── */
.serene-topbar,
.serene-elementor-header .serene-topbar {
	background: var(--alm-brown) !important;
}

.serene-site-header,
.serene-elementor-header .serene-nav-wrap {
	background: var(--alm-white) !important;
}

.serene-logo span,
.serene-menu a {
	color: var(--alm-brown) !important;
}

.serene-logo small,
.serene-kicker,
.serene-section-heading span {
	color: var(--alm-gold) !important;
}

/* ── Primary navigation ── */
@media (min-width: 1181px) {
	.serene-elementor-header .serene-nav-wrap,
	.serene-site-header .serene-nav-wrap {
		padding-top: 18px !important;
		padding-bottom: 18px !important;
	}

	.serene-elementor-header .serene-primary-nav .serene-menu,
	.serene-site-header .serene-primary-nav .serene-menu {
		gap: 2px !important;
	}

	.serene-elementor-header .serene-primary-nav .serene-menu > li > a,
	.serene-site-header .serene-primary-nav .serene-menu > li > a {
		display: inline-flex !important;
		align-items: center !important;
		gap: 6px !important;
		padding: 11px 15px !important;
		border-radius: 999px !important;
		color: var(--alm-brown) !important;
		font-size: 0.9375rem !important;
		font-weight: 600 !important;
		letter-spacing: 0.015em !important;
		line-height: 1.3 !important;
		text-decoration: none !important;
		transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
	}

	.serene-elementor-header .serene-primary-nav .serene-menu > li > a:hover,
	.serene-site-header .serene-primary-nav .serene-menu > li > a:hover,
	.serene-elementor-header .serene-primary-nav .serene-menu > .current-menu-item > a,
	.serene-site-header .serene-primary-nav .serene-menu > .current-menu-item > a,
	.serene-elementor-header .serene-primary-nav .serene-menu > .current-menu-ancestor > a,
	.serene-site-header .serene-primary-nav .serene-menu > .current-menu-ancestor > a {
		color: var(--alm-gold) !important;
		background: rgba(242, 140, 24, 0.1) !important;
	}

	.serene-elementor-header .serene-primary-nav .serene-menu > .current-menu-item > a,
	.serene-site-header .serene-primary-nav .serene-menu > .current-menu-item > a,
	.serene-elementor-header .serene-primary-nav .serene-menu > .current-menu-ancestor > a,
	.serene-site-header .serene-primary-nav .serene-menu > .current-menu-ancestor > a {
		font-weight: 700 !important;
		box-shadow: inset 0 -2px 0 var(--alm-gold) !important;
	}

	.serene-elementor-header .serene-menu > .menu-item-has-children > a::after,
	.serene-site-header .serene-menu > .menu-item-has-children > a::after {
		width: 6px !important;
		height: 6px !important;
		margin-top: -2px !important;
		opacity: 0.72;
	}

	.serene-site-header,
	.serene-elementor-header,
	.serene-nav-wrap,
	.serene-primary-nav,
	.elementor-widget-serene_header,
	.elementor-widget-serene_header .elementor-widget-container {
		overflow: visible !important;
	}

	.serene-elementor-header .serene-menu .sub-menu,
	.serene-site-header .serene-menu .sub-menu {
		background: var(--alm-white) !important;
		border: 1px solid var(--alm-line) !important;
		border-radius: 12px !important;
		box-shadow: var(--alm-shadow) !important;
		min-width: 220px !important;
		padding: 8px 0 !important;
		z-index: 1200 !important;
	}

	.serene-elementor-header .serene-menu .sub-menu a,
	.serene-site-header .serene-menu .sub-menu a {
		border-radius: 0 !important;
		color: var(--alm-brown) !important;
		font-size: 0.9rem !important;
		font-weight: 600 !important;
		padding: 10px 18px !important;
		white-space: nowrap !important;
	}

	.serene-elementor-header .serene-menu .sub-menu a:hover,
	.serene-site-header .serene-menu .sub-menu a:hover {
		background: rgba(242, 140, 24, 0.1) !important;
		color: var(--alm-gold) !important;
	}
}

.serene-menu a:hover,
.serene-menu .current-menu-item > a,
.serene-menu .current-menu-ancestor > a {
	color: var(--alm-gold) !important;
}

.serene-header-cta,
.serene-btn,
.serene-card-link {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
}

.serene-header-cta:hover,
.serene-btn:hover,
.serene-card-link:hover {
	background: var(--alm-brown) !important;
	border-color: var(--alm-brown) !important;
}

.serene-cta-band,
.serene-widget-cta,
.serene-trust-strip--icons {
	background: var(--alm-brown) !important;
}

.serene-trust-strip--icons {
	background: var(--alm-white) !important;
	border-color: var(--alm-line);
}

.serene-trust-strip--icons span {
	color: var(--alm-brown) !important;
}

.serene-trust-strip--icons span i {
	background: var(--alm-gold) !important;
}

/* ── Single tour template typography ── */
.serene-widget-tour-template,
.serene-itinerary-page {
	font-size: var(--alm-text-base);
	color: var(--alm-text);
	background: var(--alm-white) !important;
}

.serene-widget-tour-template .serene-itinerary-hero,
.serene-itinerary-page .serene-itinerary-hero {
	background-color: var(--alm-brown);
	min-height: clamp(360px, 48vh, 520px);
	padding: clamp(64px, 10vh, 96px) 28px clamp(48px, 8vh, 72px);
	text-align: left;
	justify-content: flex-end;
}

.serene-widget-tour-template .serene-itinerary-hero::after,
.serene-itinerary-page .serene-itinerary-hero::after {
	background: linear-gradient(135deg, transparent 18px, var(--alm-white) 0) 0 0 / 38px 22px repeat-x;
}

.serene-widget-tour-template .serene-itinerary-hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	width: 100%;
	text-align: left;
}

.serene-widget-tour-template .serene-itinerary-hero h1 {
	font-size: var(--alm-text-3xl) !important;
	font-weight: 700 !important;
	line-height: 1.15 !important;
	text-transform: none !important;
	letter-spacing: -0.02em !important;
	margin: 8px 0 12px !important;
}

.serene-widget-tour-template .serene-itinerary-hero p,
.serene-widget-tour-template .serene-ih-breadcrumb,
.serene-widget-tour-template .serene-ih-tags {
	font-size: var(--alm-text-sm) !important;
	font-weight: 500 !important;
	text-transform: none !important;
	line-height: 1.55 !important;
}

.serene-widget-tour-template .serene-ih-breadcrumb a {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--alm-text-xs) !important;
}

.serene-widget-tour-template .serene-tour-tabs a {
	font-size: var(--alm-text-sm) !important;
	font-weight: 700 !important;
	text-transform: none !important;
	color: var(--alm-brown) !important;
	background: transparent !important;
	border: 1px solid transparent !important;
	padding: 10px 16px !important;
	border-radius: 999px !important;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.serene-widget-tour-template .serene-tour-tabs a:hover {
	color: var(--alm-brown) !important;
	background: rgba(242, 140, 24, 0.12) !important;
}

.serene-widget-tour-template .serene-tour-tabs a.is-active {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
}

.serene-widget-tour-template .serene-tour-tabs .serene-tab-quote {
	background: var(--alm-white) !important;
	border: 2px solid var(--alm-brown) !important;
	color: var(--alm-brown) !important;
}

.serene-widget-tour-template .serene-tour-tabs .serene-tab-quote:hover {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
}

/* Beat Elementor inline nav colors saved in the library template. */
.elementor-widget-serene_tour_template .serene-widget-tour-template .serene-tour-tabs a.is-active {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
	-webkit-text-fill-color: var(--alm-white) !important;
}

.elementor-widget-serene_tour_template .serene-widget-tour-template .serene-tour-tabs .serene-tab-quote {
	background: var(--alm-white) !important;
	border: 2px solid var(--alm-brown) !important;
	color: var(--alm-brown) !important;
	-webkit-text-fill-color: var(--alm-brown) !important;
}

.elementor-widget-serene_tour_template .serene-widget-tour-template .serene-tour-tabs .serene-tab-quote:hover {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
	-webkit-text-fill-color: var(--alm-white) !important;
}

.serene-widget-tour-template .serene-tour-tabs,
.alm-single-tour .serene-tour-tabs {
	position: sticky;
	top: 0;
	z-index: 30;
	justify-content: center;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 8px;
	padding: 14px clamp(16px, 3vw, 28px);
	background: var(--alm-white);
	border-bottom: 1px solid var(--alm-line);
	box-shadow: 0 8px 24px rgba(113, 45, 26, 0.06);
	scrollbar-width: thin;
}

.serene-widget-tour-template .serene-breadcrumb-wrap,
.alm-single-tour .serene-breadcrumb-wrap {
	display: none !important;
}

.serene-widget-tour-template .serene-itinerary-layout,
.alm-single-tour .serene-itinerary-layout {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 28px);
}

.serene-widget-tour-template .serene-copy-panel,
.serene-widget-tour-template .serene-day-card,
.serene-widget-tour-template .serene-detail-panel,
.alm-single-tour .serene-copy-panel,
.alm-single-tour .serene-day-card,
.alm-single-tour .serene-detail-panel {
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	box-shadow: var(--alm-shadow);
	border-top: 3px solid var(--alm-gold);
}

/* Itinerary day cards: full main-column width, readable text measure */
.alm-single-tour .serene-itinerary-list,
.serene-widget-tour-template .serene-itinerary-list {
	position: relative;
}

.alm-single-tour .serene-itinerary-list::before,
.serene-widget-tour-template .serene-itinerary-list::before {
	left: 24px;
	transform: none;
}

.alm-single-tour .serene-day-card,
.serene-widget-tour-template .serene-day-card {
	width: 100%;
	max-width: none;
	margin-left: 0;
	box-sizing: border-box;
	padding-left: clamp(48px, 6vw, 58px);
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.65fr);
	gap: clamp(24px, 3vw, 40px);
	align-items: start;
}

.alm-single-tour .serene-day-card-text,
.serene-widget-tour-template .serene-day-card-text {
	grid-template-columns: 1fr;
}

.alm-single-tour .serene-day-copy,
.serene-widget-tour-template .serene-day-copy,
.alm-single-tour .serene-day-image,
.serene-widget-tour-template .serene-day-image {
	min-width: 0;
}

.alm-single-tour .serene-day-card::after,
.serene-widget-tour-template .serene-day-card::after {
	left: -34px;
	transform: none;
}

@media (max-width: 782px) {
	.alm-single-tour .serene-itinerary-list::before,
	.serene-widget-tour-template .serene-itinerary-list::before {
		display: none;
	}

	.alm-single-tour .serene-day-card,
	.serene-widget-tour-template .serene-day-card,
	.alm-single-tour .serene-day-card-text,
	.serene-widget-tour-template .serene-day-card-text {
		grid-template-columns: 1fr !important;
		padding-left: 28px;
	}

	.alm-single-tour .serene-day-card:not(.serene-day-card-text) .serene-day-image,
	.serene-widget-tour-template .serene-day-card:not(.serene-day-card-text) .serene-day-image {
		order: -1;
	}

	.alm-single-tour .serene-day-card::after,
	.serene-widget-tour-template .serene-day-card::after {
		display: none;
	}
}

.serene-widget-tour-template .alm-quote-card,
.alm-single-tour .alm-quote-card {
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	padding: 22px;
	background: var(--alm-white);
	box-shadow: var(--alm-shadow);
	clip-path: none !important;
}

.alm-quote-card__meta {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: grid;
	gap: 8px;
	font-size: var(--alm-text-sm);
	color: var(--alm-text-muted);
}

.alm-quote-card__meta strong {
	color: var(--alm-brown);
	margin-right: 6px;
}

/* ── Single tour sidebar: sticky enquiry + compact form ── */
.alm-single-tour,
.serene-widget-tour-template {
	--alm-tour-sticky-offset: 56px;
}

.alm-single-tour .serene-itinerary-layout,
.serene-widget-tour-template .serene-itinerary-layout {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
	align-items: start;
}

.alm-single-tour .serene-itinerary-sidebar,
.serene-widget-tour-template .serene-itinerary-sidebar {
	position: static;
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.alm-single-tour .alm-sidebar-sticky,
.serene-widget-tour-template .alm-sidebar-sticky {
	position: sticky;
	top: var(--alm-tour-sticky-offset);
	align-self: start;
	z-index: 20;
}

.admin-bar .alm-single-tour .alm-sidebar-sticky,
.admin-bar .serene-widget-tour-template .alm-sidebar-sticky {
	top: calc(var(--alm-tour-sticky-offset) + 32px);
}

.alm-single-tour .alm-quote-card--compact,
.serene-widget-tour-template .alm-quote-card--compact {
	padding: 14px 16px !important;
	border-top: 3px solid var(--alm-gold);
	background: var(--alm-white) !important;
	box-shadow: var(--alm-shadow);
}

.alm-single-tour .alm-quote-card--compact .alm-quote-card__summary .serene-kicker,
.serene-widget-tour-template .alm-quote-card--compact .alm-quote-card__summary .serene-kicker {
	display: block;
	margin: 0 0 4px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--alm-gold);
}

.alm-single-tour .alm-quote-card--compact h2,
.serene-widget-tour-template .alm-quote-card--compact h2 {
	font-size: var(--alm-text-md) !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	text-align: left !important;
	text-transform: none !important;
	margin: 0 0 8px !important;
	color: var(--alm-brown) !important;
}

.alm-single-tour .alm-quote-card--compact .alm-quote-card__meta,
.serene-widget-tour-template .alm-quote-card--compact .alm-quote-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 10px;
}

.alm-single-tour .alm-quote-card--compact .alm-quote-card__meta li,
.serene-widget-tour-template .alm-quote-card--compact .alm-quote-card__meta li {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(242, 140, 24, 0.1);
	border: 1px solid var(--alm-line);
	font-size: var(--alm-text-xs);
	color: var(--alm-brown);
}

.alm-single-tour .alm-quote-card--compact .alm-quote-card__meta strong,
.serene-widget-tour-template .alm-quote-card--compact .alm-quote-card__meta strong {
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--alm-text-muted);
	margin-right: 0;
}

.alm-single-tour .alm-quote-card--compact .serene-btn-block,
.alm-single-tour .alm-quote-card--compact .serene-outline-btn,
.serene-widget-tour-template .alm-quote-card--compact .serene-btn-block,
.serene-widget-tour-template .alm-quote-card--compact .serene-outline-btn {
	margin-top: 8px;
	padding: 10px 14px;
	font-size: var(--alm-text-sm);
}

.alm-single-tour .alm-quote-card--compact .serene-outline-btn,
.serene-widget-tour-template .alm-quote-card--compact .serene-outline-btn {
	border-color: var(--alm-brown) !important;
	color: var(--alm-brown) !important;
	border-radius: 8px;
}

.alm-single-tour .alm-quote-card--compact .serene-price-note,
.serene-widget-tour-template .alm-quote-card--compact .serene-price-note {
	margin: 10px 0 0;
	font-size: var(--alm-text-xs);
	line-height: 1.45;
	text-align: left;
	color: var(--alm-text-muted);
}

.alm-single-tour .alm-sidebar-panel,
.serene-widget-tour-template .alm-sidebar-panel {
	padding: 16px 18px;
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	background: var(--alm-white);
	box-shadow: var(--alm-shadow);
}

.alm-single-tour .alm-sidebar-panel h3,
.serene-widget-tour-template .alm-sidebar-panel h3 {
	margin: 0 0 10px;
	font-size: var(--alm-text-sm) !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--alm-brown) !important;
}

.alm-single-tour .alm-sidebar-panel .serene-included-list,
.serene-widget-tour-template .alm-sidebar-panel .serene-included-list {
	gap: 8px;
}

.alm-single-tour .alm-sidebar-panel .serene-included-list li,
.serene-widget-tour-template .alm-sidebar-panel .serene-included-list li {
	font-size: var(--alm-text-xs);
	line-height: 1.45;
}

.alm-product-enquiry {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--alm-line);
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry {
	margin-top: 10px;
	padding-top: 10px;
}

.alm-product-enquiry h3 {
	margin: 0 0 8px;
	font-size: var(--alm-text-lg);
	color: var(--alm-brown);
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry h3,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry h3 {
	margin: 0 0 4px;
	font-size: var(--alm-text-sm) !important;
}

.alm-product-enquiry p {
	margin: 0 0 14px;
	font-size: var(--alm-text-sm);
	color: var(--alm-text-muted);
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry p,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry p {
	margin: 0 0 8px;
	font-size: var(--alm-text-xs);
	line-height: 1.4;
}

.alm-product-enquiry__form {
	display: grid;
	gap: 12px;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form {
	grid-template-columns: 1fr 1fr;
	gap: 8px 10px;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form input[type="hidden"],
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form input[type="hidden"] {
	display: none;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(1),
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(1) {
	grid-column: 1;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(2),
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(2) {
	grid-column: 2;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(3),
.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__row,
.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(4),
.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form button[type="submit"],
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(3),
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__row,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(4),
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form button[type="submit"] {
	grid-column: 1 / -1;
}

.alm-product-enquiry__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__row,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__row {
	gap: 8px 10px;
}

@media (max-width: 480px) {
	.alm-product-enquiry__row {
		grid-template-columns: 1fr;
	}
}

.alm-product-enquiry__form label {
	display: grid;
	gap: 6px;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--alm-brown);
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form label,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form label {
	gap: 3px;
	font-size: 0.6875rem;
	letter-spacing: 0.04em;
}

.alm-product-enquiry__form input,
.alm-product-enquiry__form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--alm-line);
	border-radius: 10px;
	font-size: var(--alm-text-sm);
	color: var(--alm-brown);
	background: var(--alm-cream, #faf8f5);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form input,
.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form textarea,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form input,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form textarea {
	padding: 7px 9px;
	border-radius: 8px;
	font-size: var(--alm-text-xs);
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form textarea,
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form textarea {
	min-height: 64px;
	resize: vertical;
}

.alm-product-enquiry__form input:focus,
.alm-product-enquiry__form textarea:focus {
	outline: none;
	border-color: var(--alm-gold);
	background: var(--alm-white);
	box-shadow: 0 0 0 3px rgba(242, 140, 24, 0.15);
}

.alm-product-enquiry__form button[type="submit"] {
	margin-top: 4px;
}

.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form button[type="submit"],
.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form button[type="submit"] {
	margin-top: 0;
	padding: 10px 14px;
	font-size: var(--alm-text-sm);
}

@media (max-width: 782px) {
	.alm-single-tour .serene-itinerary-layout,
	.serene-widget-tour-template .serene-itinerary-layout {
		grid-template-columns: 1fr;
	}

	.alm-single-tour .alm-sidebar-sticky,
	.serene-widget-tour-template .alm-sidebar-sticky {
		position: static;
	}

	.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form,
	.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form {
		grid-template-columns: 1fr;
	}

	.alm-single-tour .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(2),
	.serene-widget-tour-template .alm-quote-card--compact .alm-product-enquiry__form > label:nth-of-type(2) {
		grid-column: 1;
	}

	.admin-bar .alm-single-tour .alm-sidebar-sticky,
	.admin-bar .serene-widget-tour-template .alm-sidebar-sticky {
		top: auto;
	}
}

.alm-product-enquiry__success {
	padding: 14px;
	border-radius: 12px;
	background: rgba(242, 140, 24, 0.12);
	color: var(--alm-brown);
	font-size: var(--alm-text-sm);
}

.alm-product-enquiry__success small {
	display: block;
	margin-top: 6px;
	color: var(--alm-text-muted);
}

.serene-widget-tour-template .serene-dream-strip,
.alm-single-tour .serene-dream-strip {
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(113, 45, 26, 0.96), rgba(113, 45, 26, 0.88));
	color: var(--alm-white);
}

.serene-widget-tour-template .serene-cta-band,
.alm-single-tour .serene-cta-band {
	border-radius: 16px;
	background: var(--alm-brown);
	color: var(--alm-white);
}

.serene-widget-tour-template .serene-section-heading h2,
.serene-widget-tour-template .serene-lux-section h2,
.serene-widget-tour-template .serene-detail-panel h2,
.serene-widget-tour-template .serene-info-grid h2 {
	font-size: var(--alm-text-2xl) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--alm-brown) !important;
	text-transform: none !important;
}

.serene-widget-tour-template .serene-section-heading span,
.serene-widget-tour-template .serene-lux-section h3,
.serene-widget-tour-template .serene-day-card h3 {
	font-size: var(--alm-text-lg) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--alm-brown) !important;
	text-transform: none !important;
}

.serene-widget-tour-template .serene-tour-overview-panel p,
.serene-widget-tour-template .serene-lux-section p,
.serene-widget-tour-template .serene-detail-panel p,
.serene-widget-tour-template .serene-day-card p,
.serene-widget-tour-template .serene-check-list li {
	font-size: var(--alm-text-base) !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: var(--alm-text-muted) !important;
}

.serene-widget-tour-template .serene-tour-meta strong,
.serene-widget-tour-template .serene-tour-overview-panel strong {
	font-size: var(--alm-text-xs) !important;
	font-weight: 700 !important;
	color: var(--alm-brown) !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.serene-widget-tour-template .serene-tour-meta span {
	font-size: var(--alm-text-sm) !important;
}

.serene-widget-tour-template .serene-quote-card h2,
.serene-widget-tour-template .serene-itinerary-sidebar h2 {
	font-size: var(--alm-text-xl) !important;
	font-weight: 700 !important;
}

.serene-widget-tour-template .serene-itinerary-final-cta h2 {
	font-size: var(--alm-text-2xl) !important;
}

/* Section headings sitewide (non-tour pages) */
.serene-section-heading h2,
.serene-widget-cards > .serene-section-heading h2,
.serene-widget-content > .serene-section-heading h2 {
	font-size: var(--alm-text-2xl) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--alm-brown) !important;
}

.serene-card-body h3 {
	font-size: var(--alm-text-lg) !important;
}

.serene-card-body p {
	font-size: var(--alm-text-sm) !important;
	line-height: 1.6 !important;
}

.serene-faq-list {
	display: grid;
	gap: 18px;
}

.serene-faq-item h3 {
	font-size: var(--alm-text-lg) !important;
	font-weight: 700 !important;
	color: var(--alm-brown) !important;
	margin: 0 0 8px;
}

.serene-faq-item p {
	font-size: var(--alm-text-base) !important;
	color: var(--alm-text-muted) !important;
	margin: 0;
}

@media (max-width: 782px) {
	.serene-home-gateway.alm-hero .serene-home-gateway__copy h1 {
		max-width: none;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__inner {
		padding-top: 112px;
	}
}

/* ── Archive listings ── */
.alm-archive-shell {
	padding-bottom: 48px;
}

.alm-archive-hero__description {
	margin-top: 16px;
	max-width: 720px;
	font-size: var(--alm-text-base);
	color: var(--alm-text-muted);
}

.alm-archive-filters-bar {
	margin: 0 clamp(20px, 4vw, 48px) 24px;
	padding: 18px 22px;
	border: 1px solid var(--alm-line);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(242, 140, 24, 0.08), rgba(113, 45, 26, 0.04));
	box-shadow: var(--alm-shadow);
}

.alm-archive-filters-bar__label {
	margin: 0 0 12px;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--alm-brown);
}

.alm-archive-filters {
	padding: 0;
}

.alm-archive-filters__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.alm-archive-filters__link {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border: 1px solid var(--alm-line);
	border-radius: 999px;
	background: var(--alm-white);
	color: var(--alm-brown);
	font-size: var(--alm-text-sm);
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.alm-archive-filters__link:hover,
.alm-archive-filters__link.is-active {
	border-color: var(--alm-gold);
	background: var(--alm-gold);
	color: var(--alm-white);
}

.alm-archive-cta {
	margin: 40px clamp(20px, 4vw, 48px) 0;
}

.serene-feed-pagination {
	margin-top: 28px;
}

.serene-feed-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 4px 8px 0;
	padding: 0 12px;
	border: 1px solid var(--alm-line);
	border-radius: 999px;
	color: var(--alm-brown);
	text-decoration: none;
	font-size: var(--alm-text-sm);
	font-weight: 600;
}

.serene-feed-pagination .page-numbers.current,
.serene-feed-pagination .page-numbers:hover {
	background: var(--alm-gold);
	border-color: var(--alm-gold);
	color: var(--alm-white);
}

.serene-empty-state {
	grid-column: 1 / -1;
	padding: 32px;
	border: 1px dashed var(--alm-line);
	border-radius: 18px;
	background: rgba(113, 45, 26, 0.03);
	text-align: center;
}

/* ── Single tour / destination ── */
.serene-tour-page,
.serene-destination-page {
	font-size: var(--alm-text-base);
}

.serene-tour-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.serene-tour-tabs a {
	font-size: var(--alm-text-sm);
	white-space: nowrap;
}

.serene-itinerary-layout {
	gap: clamp(24px, 4vw, 40px);
}

.serene-sidebar-card {
	position: sticky;
	top: 96px;
}

.serene-inline-enquiry h3 {
	font-size: var(--alm-text-lg);
}

.serene-faq-item {
	padding: 18px 20px;
	border: 1px solid var(--alm-line);
	border-radius: 14px;
	background: var(--alm-white);
}

@media (max-width: 782px) {
	.alm-archive-filters__list {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
	}

	.serene-card-grid {
		grid-template-columns: 1fr !important;
	}

	.serene-sidebar-card {
		position: static;
	}

	.alm-listing-hub {
		grid-template-columns: 1fr;
	}

	.alm-listing-sidebar {
		position: static;
	}
}

/* ── Listing hub (sidebar + grid/list) ── */
.alm-listing-hub {
	display: grid;
	grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 36px);
	align-items: start;
}

.serene-widget-cards--hub {
	padding-left: clamp(20px, 4vw, 48px);
	padding-right: clamp(20px, 4vw, 48px);
}

.alm-listing-hub {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.alm-listing-sidebar {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 18px;
}

.alm-listing-sidebar__panel,
.alm-listing-sidebar__cta {
	padding: 18px 20px;
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	background: var(--alm-white);
	box-shadow: var(--alm-shadow);
}

.alm-listing-sidebar__panel h3,
.alm-listing-sidebar__cta h3 {
	margin: 0 0 12px;
	font-size: var(--alm-text-sm);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--alm-brown);
}

.alm-listing-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.alm-listing-sidebar__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--alm-brown);
	text-decoration: none;
	font-size: var(--alm-text-sm);
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}

.alm-listing-sidebar__link:hover,
.alm-listing-sidebar__link.is-active {
	background: rgba(242, 140, 24, 0.14);
	color: var(--alm-brown);
}

.alm-listing-sidebar__link.is-active {
	box-shadow: inset 3px 0 0 var(--alm-gold);
}

.alm-listing-sidebar__count {
	font-size: var(--alm-text-xs);
	color: var(--alm-text-muted);
	font-weight: 700;
}

.alm-listing-sidebar__cta p {
	margin: 0 0 14px;
	font-size: var(--alm-text-sm);
	color: var(--alm-text-muted);
	line-height: 1.55;
}

.alm-listing-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
	padding: 14px 18px;
	border: 1px solid var(--alm-line);
	border-radius: 14px;
	background: rgba(113, 45, 26, 0.03);
}

.alm-listing-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.alm-listing-sort__select {
	padding: 8px 36px 8px 14px;
	border: 1px solid var(--alm-line);
	border-radius: 999px;
	background: var(--alm-white);
	color: var(--alm-brown);
	font-size: var(--alm-text-xs);
	font-weight: 700;
	cursor: pointer;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--alm-brown) 50%), linear-gradient(135deg, var(--alm-brown) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.alm-listing-search {
	display: grid;
	gap: 10px;
}

.alm-listing-search__input {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--alm-line);
	border-radius: 12px;
	background: var(--alm-white);
	color: var(--alm-brown);
	font-size: var(--alm-text-sm);
}

.alm-listing-search__input:focus {
	outline: 2px solid rgba(242, 140, 24, 0.35);
	border-color: var(--alm-gold);
}

.alm-listing-search__btn {
	padding: 10px 14px;
	border: 0;
	border-radius: 10px;
	background: var(--alm-gold);
	color: var(--alm-white);
	font-size: var(--alm-text-xs);
	font-weight: 800;
	cursor: pointer;
}

.alm-listing-search__clear {
	font-size: var(--alm-text-xs);
	font-weight: 700;
	color: var(--alm-text-muted);
	text-decoration: none;
}

.alm-listing-search__clear:hover {
	color: var(--alm-brown);
}

.alm-listing-toolbar__count {
	margin: 0;
	font-size: var(--alm-text-sm);
	font-weight: 700;
	color: var(--alm-brown);
}

.alm-listing-view {
	display: inline-flex;
	gap: 8px;
}

.alm-listing-view__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--alm-line);
	border-radius: 999px;
	background: var(--alm-white);
	color: var(--alm-brown);
	font-size: var(--alm-text-xs);
	font-weight: 700;
	cursor: pointer;
}

.alm-listing-view__btn.is-active {
	background: var(--alm-gold);
	border-color: var(--alm-gold);
	color: var(--alm-white);
}

.alm-listing-heading {
	margin-bottom: 18px;
}

.alm-listing-main .serene-feed-pagination {
	margin-top: clamp(20px, 3vw, 32px);
}

.serene-card-grid.alm-view-list {
	grid-template-columns: 1fr !important;
	gap: 20px !important;
}

.alm-listing-hub .serene-card-grid.alm-view-grid,
.serene-widget-cards--hub .alm-listing-main .serene-card-grid.alm-view-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2vw, 24px) !important;
}

.alm-listing-hub .serene-card-grid.alm-view-grid.serene-card-grid--cols2,
.serene-widget-cards--hub .alm-listing-main .serene-card-grid.alm-view-grid.serene-card-grid--cols2 {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.alm-listing-hub .serene-card-grid.alm-view-grid.serene-card-grid--cols4,
.serene-widget-cards--hub .alm-listing-main .serene-card-grid.alm-view-grid.serene-card-grid--cols4 {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.alm-listing-hub .serene-card-grid.alm-view-grid .serene-card-image,
.serene-widget-cards--hub .serene-card-grid.alm-view-grid .serene-card-image {
	aspect-ratio: 16 / 10;
}

.alm-card-meta {
	display: none;
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	gap: 8px;
	flex-wrap: wrap;
}

.alm-card-meta li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(242, 140, 24, 0.1);
	border: 1px solid rgba(242, 140, 24, 0.18);
	font-size: var(--alm-text-xs);
	font-weight: 600;
	color: var(--alm-brown);
}

.alm-card-meta li span {
	color: var(--alm-gold);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.serene-card-grid.alm-view-list .serene-card {
	display: grid;
	grid-template-columns: minmax(300px, 44%) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--alm-shadow);
}

.serene-card-grid.alm-view-list .serene-card-image {
	min-height: 280px;
	height: 100%;
}

.serene-card-grid.alm-view-list .serene-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.serene-card-grid.alm-view-list .serene-card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: clamp(20px, 2.5vw, 28px);
}

.serene-card-grid.alm-view-list .alm-card-meta {
	display: flex;
}

.serene-card-grid.alm-view-list .serene-card-body p {
	font-size: var(--alm-text-base);
	line-height: 1.65;
	color: var(--alm-text-muted);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.serene-card-grid.alm-view-list .serene-card-body h3 {
	font-size: var(--alm-text-xl);
	line-height: 1.25;
	margin: 0;
}

.serene-card-grid.alm-view-list .serene-card-link {
	align-self: flex-start;
	margin-top: 6px;
}

@media (max-width: 1100px) {
	.alm-listing-hub .serene-card-grid.alm-view-grid,
	.serene-widget-cards--hub .alm-listing-main .serene-card-grid.alm-view-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	.alm-listing-hub .serene-card-grid.alm-view-grid,
	.serene-widget-cards--hub .alm-listing-main .serene-card-grid.alm-view-grid {
		grid-template-columns: 1fr !important;
	}

	.serene-card-grid.alm-view-list .serene-card {
		grid-template-columns: 1fr;
	}

	.serene-card-grid.alm-view-list .serene-card-image {
		min-height: 220px;
		aspect-ratio: 16 / 9;
	}
}

/* ── Single destination template ── */
.serene-widget-destination-template .serene-destination-hero,
.alm-single-destination .serene-destination-hero {
	position: relative;
	min-height: clamp(420px, 58vh, 640px) !important;
	padding: clamp(96px, 12vw, 136px) clamp(16px, 3vw, 28px) clamp(48px, 6vw, 72px) !important;
	background-color: var(--alm-brown) !important;
	background-size: cover !important;
	background-position: center !important;
	isolation: isolate;
}

/* Hero darkening comes from the inline cool navy gradient on the photo — no extra wash. */
.serene-widget-destination-template .serene-destination-hero::before,
.alm-single-destination .serene-destination-hero::before {
	content: none;
	display: none;
}

.serene-widget-destination-template .serene-destination-hero > div,
.alm-single-destination .serene-destination-hero > div {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	margin: 0 auto;
}

.serene-widget-destination-template .serene-destination-hero h1,
.serene-widget-destination-template .serene-dh-title,
.alm-single-destination .serene-destination-hero h1,
.alm-single-destination .serene-dh-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
	font-weight: 700 !important;
	line-height: 1.06 !important;
	text-transform: none !important;
	color: #fff !important;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
	letter-spacing: -0.02em;
}

.serene-widget-destination-template .serene-destination-hero p,
.serene-widget-destination-template .serene-dh-subtitle,
.alm-single-destination .serene-destination-hero p,
.alm-single-destination .serene-dh-subtitle {
	font-size: clamp(1rem, 1.6vw, 1.125rem) !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.65 !important;
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.92) !important;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.alm-single-destination .serene-dh-region,
.serene-widget-destination-template .serene-dh-region {
	color: var(--alm-gold) !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	margin-bottom: 10px;
}

.alm-single-destination .serene-dh-breadcrumb,
.alm-single-destination .serene-dh-breadcrumb a,
.serene-widget-destination-template .serene-dh-breadcrumb,
.serene-widget-destination-template .serene-dh-breadcrumb a {
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 0.8125rem !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.serene-widget-destination-template .serene-dh-stats,
.alm-single-destination .serene-dh-stats {
	gap: 12px;
	margin-top: 24px;
}

.serene-widget-destination-template .serene-dh-stat,
.alm-single-destination .serene-dh-stat {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 14px 16px;
	min-width: 0;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.alm-single-destination .serene-dh-stat strong,
.serene-widget-destination-template .serene-dh-stat strong {
	display: block;
	color: var(--alm-gold) !important;
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	margin-bottom: 4px;
}

.alm-single-destination .serene-dh-stat span,
.serene-widget-destination-template .serene-dh-stat span {
	color: #fff !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.alm-destination-shell {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 28px);
}

.serene-widget-destination-template .serene-destination-anchor,
.alm-single-destination .serene-destination-anchor {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 6px;
	margin: 0 calc(-1 * clamp(16px, 3vw, 28px));
	padding: 12px clamp(16px, 3vw, 28px);
	background: var(--alm-white);
	border-bottom: 1px solid var(--alm-line);
	box-shadow: 0 4px 16px rgba(113, 45, 26, 0.05);
	scrollbar-width: thin;
}

.serene-widget-destination-template--nav-center .serene-destination-anchor,
.serene-widget-destination-template--nav-center .alm-destination-anchor {
	justify-content: flex-start;
}

.serene-widget-destination-template .serene-destination-anchor a,
.alm-single-destination .serene-destination-anchor a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--alm-brown) !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-decoration: none !important;
	text-transform: none !important;
	transition: color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.serene-widget-destination-template .serene-destination-anchor a.is-active,
.alm-single-destination .serene-destination-anchor a.is-active {
	background: var(--alm-gold) !important;
	color: var(--alm-white) !important;
}

.serene-widget-destination-template .serene-destination-anchor a:hover:not(.is-active):not(.serene-tab-quote),
.alm-single-destination .serene-destination-anchor a:hover:not(.is-active):not(.serene-tab-quote) {
	background: rgba(242, 140, 24, 0.1) !important;
	color: var(--alm-gold) !important;
}

.serene-widget-destination-template .serene-destination-anchor .serene-tab-quote,
.alm-single-destination .serene-destination-anchor .serene-tab-quote {
	background: transparent !important;
	border: 2px solid var(--alm-brown) !important;
	color: var(--alm-brown) !important;
}

.serene-widget-destination-template .serene-destination-anchor .serene-tab-quote:hover,
.alm-single-destination .serene-destination-anchor .serene-tab-quote:hover {
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
}

.serene-widget-destination-template .serene-destination-layout,
.alm-single-destination .serene-destination-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	max-width: none;
	margin: 0;
	padding: clamp(28px, 4vw, 44px) 0 clamp(40px, 5vw, 56px);
	gap: clamp(32px, 4vw, 48px);
	align-items: start;
}

.alm-single-destination .serene-destination-content {
	min-width: 0;
}

.alm-single-destination .serene-destination-content > #overview {
	display: grid;
	gap: clamp(28px, 3.5vw, 40px);
	scroll-margin-top: 110px;
}

.alm-single-destination .serene-destination-content > #overview > .serene-lux-section:first-child {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0 0 8px;
	border-bottom: 1px solid var(--alm-line);
}

.alm-single-destination .serene-destination-content > #overview > .serene-lux-section:first-child h2 {
	font-size: clamp(1.5rem, 2.5vw, 1.85rem) !important;
	margin-bottom: 20px !important;
}

.alm-single-destination .serene-destination-content > #overview > .serene-lux-section:first-child p:first-of-type {
	font-size: var(--alm-text-md) !important;
	line-height: 1.75 !important;
	color: var(--alm-brown) !important;
	max-width: 65ch;
}

.alm-single-destination .serene-destination-content > #overview > .serene-lux-section:first-child p:not(:first-of-type) {
	max-width: 68ch;
}

.alm-single-destination .serene-destination-content > #overview > .serene-lux-section:not(:first-child) {
	margin-bottom: 0;
}

.alm-single-destination .serene-destination-content > #overview > .serene-lux-section:not(:has(p)):not(:has(ul)):not(:has(li)) {
	display: none;
}

.serene-widget-destination-template .serene-lux-section,
.alm-single-destination .serene-lux-section {
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	border-left: 0;
	border-radius: 16px;
	border-top: 3px solid var(--alm-gold);
	box-shadow: var(--alm-shadow);
	margin-bottom: 20px;
	padding: clamp(24px, 3vw, 32px);
}

.serene-widget-destination-template .serene-lux-subsection,
.alm-single-destination .serene-lux-subsection {
	border-top-color: var(--alm-brown);
	margin-top: 8px;
	padding-top: 24px;
}

.serene-widget-destination-template .serene-lux-section h2,
.alm-single-destination .serene-lux-section h2,
.serene-widget-destination-template .serene-destination-intelligence .serene-section-heading h2,
.alm-single-destination .serene-destination-intelligence .serene-section-heading h2 {
	font-size: var(--alm-text-2xl) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--alm-brown) !important;
	text-transform: none !important;
	margin: 0 0 16px !important;
}

.serene-widget-destination-template .serene-lux-section h3,
.alm-single-destination .serene-lux-section h3,
.serene-widget-destination-template .serene-lux-subsection h3,
.alm-single-destination .serene-lux-subsection h3 {
	font-size: var(--alm-text-lg) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--alm-brown) !important;
	text-transform: none !important;
	margin: 0 0 12px !important;
}

.serene-widget-destination-template .serene-lux-section p,
.alm-single-destination .serene-lux-section p,
.serene-widget-destination-template .serene-destination-content p,
.alm-single-destination .serene-destination-content p,
.serene-widget-destination-template .serene-destination-intelligence__grid p,
.alm-single-destination .serene-destination-intelligence__grid p {
	font-family: inherit !important;
	font-size: var(--alm-text-base) !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.72 !important;
	color: var(--alm-text-muted) !important;
	margin: 0 0 1.1em !important;
	max-width: 68ch;
}

.alm-single-destination .alm-dest-lead__intro,
.alm-single-destination--expanded .alm-dest-section--lead p.alm-dest-lead__intro {
	font-size: var(--alm-text-md) !important;
	line-height: 1.78 !important;
	color: var(--alm-brown) !important;
	max-width: 65ch;
}

.serene-widget-destination-template .serene-lux-section p:last-child,
.alm-single-destination .serene-lux-section p:last-child {
	margin-bottom: 0 !important;
}

.serene-widget-destination-template .serene-compact-list,
.alm-single-destination .serene-compact-list {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
	margin: 16px 0 0;
}

.serene-widget-destination-template .serene-compact-list li,
.alm-single-destination .serene-compact-list li {
	background: rgba(242, 140, 24, 0.08);
	border: 1px solid var(--alm-line);
	border-radius: 10px;
	color: var(--alm-brown);
	font-size: var(--alm-text-sm);
	font-weight: 600;
	padding: 12px 14px 12px 34px;
}

.serene-widget-destination-template .serene-destination-intelligence,
.alm-single-destination .serene-destination-intelligence {
	margin-top: 32px;
}

.serene-widget-destination-template .serene-destination-intelligence__grid,
.alm-single-destination .serene-destination-intelligence__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.serene-widget-destination-template .serene-destination-intelligence__grid .serene-destination-intelligence__card--full,
.alm-single-destination .serene-destination-intelligence__grid .serene-destination-intelligence__card--full {
	grid-column: 1 / -1;
}

@media (min-width: 768px) {
	.serene-widget-destination-template .serene-destination-intelligence__grid .serene-destination-intelligence__card--full ul,
	.alm-single-destination .serene-destination-intelligence__grid .serene-destination-intelligence__card--full ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
	}
}

.serene-widget-destination-template .serene-destination-intelligence__grid article,
.alm-single-destination .serene-destination-intelligence__grid article {
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--alm-shadow);
}

.serene-widget-destination-template .serene-destination-intelligence__grid strong,
.alm-single-destination .serene-destination-intelligence__grid strong {
	display: block;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--alm-gold);
	margin-bottom: 8px;
}

.serene-widget-destination-template .serene-destination-side,
.alm-single-destination .serene-destination-side {
	position: sticky;
	top: 72px;
}

.serene-widget-destination-template .serene-quote-card.alm-quote-card,
.alm-single-destination .serene-quote-card.alm-quote-card {
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	padding: 20px;
	background: #faf8f5 !important;
	box-shadow: 0 8px 28px rgba(113, 45, 26, 0.06) !important;
	clip-path: none !important;
}

.alm-single-destination .alm-quote-card__summary h2 {
	font-size: clamp(1.125rem, 2vw, 1.35rem) !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--alm-brown) !important;
	margin: 8px 0 10px !important;
	text-transform: none !important;
	font-family: inherit !important;
}

.alm-single-destination .alm-quote-card__summary p {
	font-size: var(--alm-text-sm) !important;
	line-height: 1.6 !important;
	margin-bottom: 16px !important;
	max-width: none;
}

.alm-single-destination .alm-quote-card .serene-outline-btn {
	margin-bottom: 4px;
	font-size: var(--alm-text-sm);
}

.alm-single-destination .alm-product-enquiry {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed rgba(113, 45, 26, 0.14);
}

.alm-single-destination .alm-product-enquiry h3 {
	font-size: var(--alm-text-sm) !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--alm-brown) !important;
	opacity: 0.85;
}

.alm-single-destination .alm-product-enquiry p {
	font-size: 0.8125rem !important;
	margin-bottom: 12px !important;
}

.alm-single-destination .alm-product-enquiry__form label {
	font-size: 0.6875rem !important;
}

.alm-single-destination .alm-product-enquiry__form input,
.alm-single-destination .alm-product-enquiry__form textarea {
	font-size: 0.875rem;
	padding: 10px 12px;
	border-color: rgba(113, 45, 26, 0.12);
	background: #fff;
}

.alm-single-destination .alm-product-enquiry .serene-btn {
	font-size: 0.875rem;
	padding: 12px 16px;
}

.serene-widget-destination-template .serene-related-tours,
.alm-single-destination .serene-related-tours {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(32px, 4vw, 48px) clamp(16px, 3vw, 28px) clamp(40px, 5vw, 64px);
	border-top: 1px solid var(--alm-line);
}

.alm-single-destination .serene-media-gallery {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(32px, 4vw, 48px) clamp(16px, 3vw, 28px);
	border-top: 1px solid var(--alm-line);
	scroll-margin-top: 110px;
}

.alm-single-destination .serene-media-gallery__grid {
	gap: 12px;
	border-radius: 16px;
	overflow: hidden;
}

.alm-single-destination .serene-media-gallery__lead img,
.alm-single-destination .serene-media-gallery__thumbs img {
	border-radius: 12px;
}

.alm-single-destination .serene-destination-intelligence {
	margin-top: clamp(36px, 4vw, 52px);
	padding-top: clamp(28px, 3.5vw, 40px);
	border-top: 1px solid var(--alm-line);
	scroll-margin-top: 110px;
}

.alm-single-destination .serene-destination-intelligence .serene-section-heading--inline {
	margin-bottom: 20px;
}

.alm-single-destination .serene-destination-intelligence__grid article {
	padding: 20px 22px;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.alm-single-destination .serene-destination-intelligence__grid article:hover {
	border-color: rgba(242, 140, 24, 0.35);
	box-shadow: 0 12px 32px rgba(113, 45, 26, 0.08);
}

.alm-single-destination .serene-destination-intelligence__grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.alm-single-destination .serene-destination-intelligence__grid li {
	position: relative;
	padding-left: 14px;
	font-size: var(--alm-text-sm);
	line-height: 1.5;
	color: var(--alm-text-muted);
}

.alm-single-destination .serene-destination-intelligence__grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--alm-gold);
}

/* Override legacy style.css hero scale inside destination widget */
.serene-widget-destination-template .serene-dh-title,
.alm-single-destination .serene-dh-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
	font-weight: 700 !important;
	line-height: 1.06 !important;
	font-style: normal !important;
}

.serene-widget-destination-template .serene-dh-subtitle,
.alm-single-destination .serene-dh-subtitle {
	font-family: inherit !important;
	font-size: clamp(1rem, 1.6vw, 1.125rem) !important;
	font-style: normal !important;
	font-weight: 400 !important;
}

.serene-widget-destination-template .serene-destination-hero > div,
.alm-single-destination .serene-destination-hero > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	gap: clamp(24px, 4vw, 48px);
	align-items: end;
}

/* ── Expanded destination body (production content) ── */
.alm-single-destination--expanded .alm-destination-body {
	display: grid;
	gap: clamp(28px, 4vw, 40px);
}

.alm-single-destination--expanded .alm-dest-section {
	margin-bottom: 0;
}

.alm-single-destination--expanded .alm-dest-section--lead {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0 0 8px;
	border-bottom: 1px solid var(--alm-line);
}

.alm-single-destination--expanded .alm-dest-section--lead .alm-dest-section__head h2 {
	font-size: clamp(1.5rem, 2.5vw, 1.85rem) !important;
}

.alm-single-destination--expanded .alm-dest-section--lead p {
	font-size: var(--alm-text-md) !important;
	line-height: 1.75 !important;
	color: var(--alm-brown) !important;
}

.alm-destination-glance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	scroll-margin-top: 110px;
}

.alm-dest-glance__card {
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: var(--alm-shadow);
}

.alm-dest-glance__card h3 {
	margin: 0 0 12px;
	font-size: var(--alm-text-sm);
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--alm-gold);
}

.alm-dest-glance__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.alm-dest-glance__list li {
	position: relative;
	padding-left: 16px;
	font-size: var(--alm-text-sm);
	line-height: 1.5;
	color: var(--alm-brown);
	font-weight: 600;
}

.alm-dest-glance__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--alm-gold);
}

.alm-dest-glance__card p {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.6;
	color: var(--alm-text-muted);
}

.alm-single-destination--expanded .alm-dest-section--narrative,
.alm-single-destination--expanded .alm-dest-section--callout {
	background: var(--alm-white);
}

.alm-single-destination--expanded .alm-dest-section--callout {
	background: linear-gradient(135deg, rgba(242, 140, 24, 0.08), rgba(113, 45, 26, 0.04));
	border-top-color: var(--alm-brown);
}

.alm-dest-section__head {
	margin-bottom: 14px;
}

.alm-dest-section__head h2 {
	margin: 0 !important;
}

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

.alm-dest-highlights li,
.alm-dest-packages li {
	background: rgba(242, 140, 24, 0.08);
	border: 1px solid var(--alm-line);
	border-radius: 12px;
	padding: 14px 16px;
	font-size: var(--alm-text-sm);
	font-weight: 600;
	color: var(--alm-brown);
	line-height: 1.45;
}

.alm-dest-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.alm-dest-tags li {
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	font-size: var(--alm-text-sm);
	font-weight: 600;
	color: var(--alm-brown);
}

.alm-dest-faq {
	display: grid;
	gap: 10px;
}

.alm-dest-faq__item {
	border: 1px solid var(--alm-line);
	border-radius: 14px;
	background: var(--alm-white);
	overflow: hidden;
}

.alm-dest-faq__question {
	padding: 16px 48px 16px 18px;
	cursor: pointer;
	font-size: var(--alm-text-base);
	font-weight: 700;
	color: var(--alm-brown);
	list-style: none;
	position: relative;
}

.alm-dest-faq__question::-webkit-details-marker {
	display: none;
}

.alm-dest-faq__question::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25rem;
	color: var(--alm-gold);
	font-weight: 700;
}

.alm-dest-faq__item[open] .alm-dest-faq__question::after {
	content: "−";
}

.alm-dest-faq__answer {
	padding: 0 18px 16px;
}

.alm-dest-faq__answer p {
	margin: 0 !important;
	font-size: var(--alm-text-sm) !important;
	line-height: 1.65 !important;
}

.alm-dest-section--cta {
	background: linear-gradient(135deg, var(--alm-brown), #2a1810);
	border: 0;
	border-radius: 18px;
	color: var(--alm-white);
	padding: clamp(28px, 4vw, 40px);
}

.alm-dest-section--cta .alm-dest-section__head h2 {
	color: var(--alm-white) !important;
}

.alm-dest-cta p {
	margin: 0 0 18px;
	font-size: var(--alm-text-md);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
}

.alm-dest-section,
.alm-destination-glance,
.alm-dest-section--cta {
	scroll-margin-top: 110px;
}

.alm-destination-anchor {
	justify-content: flex-start;
}

.alm-destination-anchor .serene-tab-quote {
	margin-left: auto;
	flex-shrink: 0;
}

.alm-single-destination--expanded .serene-destination-side {
	top: 118px;
}

.alm-single-destination--expanded .serene-destination-layout {
	align-items: start;
}

@media (max-width: 1024px) {
	.alm-destination-glance {
		grid-template-columns: 1fr;
	}

	.serene-widget-destination-template .serene-destination-layout,
	.alm-single-destination .serene-destination-layout {
		grid-template-columns: 1fr;
	}

	.alm-single-destination .serene-destination-side {
		position: static;
		order: 2;
	}

	.alm-destination-anchor .serene-tab-quote {
		margin-left: 0;
	}

	.serene-widget-destination-template .serene-destination-hero > div,
	.alm-single-destination .serene-destination-hero > div {
		grid-template-columns: 1fr;
	}

	.alm-single-destination .serene-dh-stats {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}
}

@media (max-width: 768px) {
	.alm-dest-highlights,
	.alm-dest-packages {
		grid-template-columns: 1fr;
	}

	.serene-widget-destination-template .serene-destination-hero,
	.alm-single-destination .serene-destination-hero {
		min-height: clamp(360px, 70vh, 520px) !important;
		padding-top: clamp(72px, 14vw, 96px) !important;
	}

	.serene-widget-destination-template .serene-destination-anchor a,
	.alm-single-destination .serene-destination-anchor a {
		padding: 8px 12px;
		font-size: 0.8125rem !important;
	}

	.alm-single-destination .serene-destination-intelligence__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Landing showcase (homepage grids + excursion slider) ── */
.elementor-widget-serene_landing_packages,
.elementor-widget-serene_landing_excursions,
.elementor-widget-serene_landing_destinations,
.elementor-widget-serene_landing_destination_tiles,
.elementor-widget-serene_landing_signature,
.elementor-widget-serene_landing_editorial_band,
.elementor-widget-serene_reviews_strip,
.elementor-widget-serene_landing_packages > .elementor-widget-container,
.elementor-widget-serene_landing_excursions > .elementor-widget-container,
.elementor-widget-serene_landing_destinations > .elementor-widget-container,
.elementor-widget-serene_landing_destination_tiles > .elementor-widget-container,
.elementor-widget-serene_landing_signature > .elementor-widget-container,
.elementor-widget-serene_landing_editorial_band > .elementor-widget-container,
.elementor-widget-serene_reviews_strip > .elementor-widget-container {
	overflow: visible !important;
}

.alm-showcase-section.serene-section,
.serene-feed-section.alm-showcase-section {
	max-width: none !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.serene-feed-section.serene-widget-cards--hub {
	padding-left: clamp(20px, 4vw, 48px);
	padding-right: clamp(20px, 4vw, 48px);
}

.alm-showcase-section {
	box-sizing: border-box;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	max-width: 100vw;
	padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px);
	background: linear-gradient(180deg, #f5f7f8 0%, #eef2f4 100%);
}

.alm-showcase-section--slider {
	background: linear-gradient(135deg, rgba(10, 20, 35, 0.96) 0%, rgba(18, 28, 42, 0.98) 100%);
	color: #fff;
}

.serene-showcase__inner {
	max-width: 1320px;
	margin: 0 auto;
}

.serene-showcase__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px 32px;
	margin-bottom: clamp(28px, 4vw, 44px);
}

.serene-showcase__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--alm-orange);
}

.serene-showcase__kicker::before {
	content: "";
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: var(--alm-orange);
}

.alm-showcase-section--slider .serene-showcase__kicker {
	color: #ffb86a;
}

.alm-showcase-section--slider .serene-showcase__kicker::before {
	background: #ffb86a;
}

.serene-showcase__title {
	margin: 10px 0 0;
	font-size: clamp(30px, 4.2vw, 48px) !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
	color: var(--alm-brown) !important;
	max-width: 18ch;
}

.alm-showcase-section--slider .serene-showcase__title {
	color: #fff !important;
	max-width: 22ch;
}

.serene-showcase__intro {
	margin: 14px 0 0;
	max-width: 56ch;
	font-size: var(--alm-text-base);
	line-height: 1.7;
	color: var(--alm-text-muted);
}

.alm-showcase-section--slider .serene-showcase__intro {
	color: rgba(255, 255, 255, 0.78);
}

.serene-showcase__link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(242, 140, 24, 0.35);
	background: rgba(255, 255, 255, 0.82);
	color: var(--alm-brown);
	font-size: var(--alm-text-sm);
	font-weight: 700;
	text-decoration: none;
	box-shadow: var(--alm-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.serene-showcase__link::after {
	content: "→";
}

.serene-showcase__link:hover {
	transform: translateY(-1px);
	background: #fff;
	box-shadow: 0 14px 28px rgba(113, 45, 26, 0.12);
}

.alm-showcase-section--slider .serene-showcase__link {
	border-color: rgba(255, 184, 106, 0.45);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.alm-showcase-section--slider .serene-showcase__link:hover {
	background: rgba(255, 255, 255, 0.14);
}

.serene-showcase__grid .serene-card-grid--showcase,
.serene-showcase__grid .alm-showcase-grid {
	gap: clamp(18px, 2.4vw, 28px);
}

.serene-card-grid--showcase.serene-card-grid--cols2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.serene-card-grid--showcase.serene-card-grid--cols3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.serene-card-grid--showcase.serene-card-grid--cols4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.serene-card-grid--showcase.serene-card-grid--cols5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.serene-card--showcase {
	border: 1px solid rgba(113, 45, 26, 0.08);
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 40px rgba(113, 45, 26, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.serene-card--showcase:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px rgba(113, 45, 26, 0.14);
}

.serene-card--showcase .serene-card-image {
	aspect-ratio: 4 / 3.2;
}

.serene-card--showcase .serene-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.serene-card--showcase:hover .serene-card-image img {
	transform: scale(1.04);
}

.serene-card--showcase .serene-card-badge--duration {
	left: auto;
	right: 14px;
	bottom: 14px;
	background: var(--alm-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.serene-card--showcase .serene-card-body {
	padding: clamp(18px, 2vw, 24px);
}

.serene-card--showcase .serene-card-body small {
	color: var(--alm-orange);
	font-weight: 800;
	letter-spacing: 0.04em;
}

.serene-card--showcase .serene-card-body h3 {
	font-size: clamp(18px, 1.6vw, 22px) !important;
	margin: 8px 0 10px;
}

.serene-card--showcase .serene-card-body p {
	font-size: var(--alm-text-sm) !important;
	color: var(--alm-text-muted);
}

.serene-card--showcase .serene-card-link {
	display: inline-flex;
	margin-top: 4px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(242, 140, 24, 0.12);
	color: var(--alm-brown);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.serene-card--showcase .serene-card-link:hover {
	background: var(--alm-orange);
	color: #fff;
}

.alm-showcase-slider {
	position: relative;
}

.alm-showcase-slider__viewport {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 4px 2px 8px;
}

.alm-showcase-slider__viewport::-webkit-scrollbar {
	display: none;
}

.alm-showcase-slider__track {
	display: flex;
	gap: 22px;
}

.alm-showcase-slider__slide {
	flex: 0 0 min(340px, 82vw);
	scroll-snap-align: start;
}

.alm-showcase-slider__slide .serene-card--showcase {
	height: 100%;
}

.alm-showcase-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--alm-brown);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	z-index: 2;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.alm-showcase-slider__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.alm-showcase-slider__nav:not(:disabled):hover {
	transform: translateY(-50%) scale(1.04);
}

.alm-showcase-slider__nav--prev {
	left: -12px;
}

.alm-showcase-slider__nav--next {
	right: -12px;
}

@media (max-width: 1180px) {
	.serene-card-grid--showcase.serene-card-grid--cols5,
	.serene-card-grid--showcase.serene-card-grid--cols4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.serene-showcase__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.serene-card-grid--showcase.serene-card-grid--cols5,
	.serene-card-grid--showcase.serene-card-grid--cols4,
	.serene-card-grid--showcase.serene-card-grid--cols3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alm-showcase-slider__nav--prev {
		left: 4px;
	}

	.alm-showcase-slider__nav--next {
		right: 4px;
	}
}

@media (max-width: 640px) {
	.serene-card-grid--showcase.serene-card-grid--cols5,
	.serene-card-grid--showcase.serene-card-grid--cols4,
	.serene-card-grid--showcase.serene-card-grid--cols3,
	.serene-card-grid--showcase.serene-card-grid--cols2 {
		grid-template-columns: 1fr;
	}

	.alm-showcase-slider__slide {
		flex-basis: min(300px, 88vw);
	}
}

/* ── Premium landing tokens ── */
:root {
	--alm-display-size: clamp(36px, 4.8vw, 56px);
	--alm-section-gap: clamp(48px, 6vw, 88px);
	--alm-card-radius-lg: 24px;
}

.serene-showcase__title {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: var(--alm-display-size) !important;
	letter-spacing: -0.01em;
}

/* ── Section variant skins ── */
.alm-showcase-section--warm {
	background: linear-gradient(180deg, #f5f7f8 0%, #eef2f4 100%);
}

.alm-showcase-section--cool {
	background:
		radial-gradient(circle at 8% 14%, rgba(72, 108, 132, 0.1), transparent 44%),
		radial-gradient(circle at 92% 10%, rgba(113, 45, 26, 0.04), transparent 36%),
		linear-gradient(180deg, #f0f4f7 0%, #e8eef2 100%);
}

.alm-showcase-section--light {
	background: linear-gradient(180deg, #faf8f5 0%, #f5f7f8 100%);
}

/* ── Premium cards ── */
.serene-card--premium.serene-card--showcase {
	border-radius: var(--alm-card-radius-lg);
	box-shadow: 0 16px 36px rgba(113, 45, 26, 0.07);
}

.serene-card--premium.serene-card--showcase .serene-card-image {
	aspect-ratio: 5 / 4;
}

.serene-card--premium .alm-card-meta,
.serene-card--premium .serene-card-meta {
	display: none !important;
}

.serene-card--premium.serene-card--showcase .serene-card-body p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.serene-card--premium.serene-card--showcase .serene-card-body h3 {
	font-size: clamp(19px, 1.7vw, 24px) !important;
}

/* ── Destination tiles ── */
.serene-showcase__grid--tiles .alm-destination-tiles,
.alm-destination-tiles {
	display: grid;
	gap: clamp(14px, 2vw, 22px);
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.alm-destination-tile {
	border-radius: 18px;
	overflow: hidden;
	min-height: 280px;
}

.alm-destination-tile__link {
	display: block;
	position: relative;
	height: 100%;
	min-height: 280px;
	color: #fff;
	text-decoration: none;
}

.alm-destination-tile__media {
	display: block;
	position: absolute;
	inset: 0;
}

.alm-destination-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.alm-destination-tile__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 14, 10, 0.08) 0%, rgba(20, 14, 10, 0.72) 72%, rgba(20, 14, 10, 0.92) 100%);
}

.alm-destination-tile__copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: clamp(18px, 2.4vw, 28px);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.alm-destination-tile__copy strong {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 700;
	line-height: 1.1;
}

.alm-destination-tile__copy span {
	font-size: var(--alm-text-sm);
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
	max-width: 36ch;
}

.alm-destination-tile__copy em {
	font-style: normal;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffb86a;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.alm-destination-tile:hover .alm-destination-tile__media img {
	transform: scale(1.06);
}

.alm-destination-tile:hover .alm-destination-tile__copy em {
	opacity: 1;
	transform: translateY(0);
}

/* ── Signature journey ── */
.serene-widget-landing-signature {
	padding: var(--alm-section-gap) clamp(20px, 4vw, 48px);
}

.alm-signature-journey {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: center;
}

.alm-signature-journey__media {
	border-radius: 24px;
	overflow: hidden;
	min-height: 420px;
	box-shadow: 0 28px 56px rgba(113, 45, 26, 0.14);
}

.alm-signature-journey__media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

.alm-signature-journey__pill {
	display: inline-flex;
	margin: 0 0 12px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(242, 140, 24, 0.12);
	color: var(--alm-brown);
	font-size: var(--alm-text-xs);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.alm-signature-journey__intro {
	font-size: var(--alm-text-md);
	line-height: 1.7;
	color: var(--alm-text-muted);
	max-width: 52ch;
}

.alm-signature-journey__list {
	margin: 18px 0 24px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.alm-signature-journey__list li {
	position: relative;
	padding-left: 22px;
	font-weight: 600;
	color: var(--alm-brown);
}

.alm-signature-journey__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--alm-orange);
}

/* ── Editorial band ── */
.alm-editorial-band {
	padding: var(--alm-section-gap) clamp(20px, 4vw, 48px);
	background: linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	max-width: 100vw;
}

.alm-editorial-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: center;
}

.alm-editorial-band--reverse .alm-editorial-band__grid {
	direction: rtl;
}

.alm-editorial-band--reverse .alm-editorial-band__copy,
.alm-editorial-band--reverse .alm-editorial-band__media {
	direction: ltr;
}

.alm-editorial-band__media {
	border-radius: 20px;
	overflow: hidden;
	min-height: 320px;
}

.alm-editorial-band__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}

/* ── Premium excursions slider ── */
.alm-showcase-slider--premium .alm-showcase-slider__viewport {
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	padding-inline: 8px;
}

.alm-showcase-slider--premium .alm-showcase-slider__slide {
	flex: 0 0 min(340px, 38vw);
	scroll-snap-align: start;
}

.alm-showcase-slider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.alm-showcase-slider__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s ease, background 0.2s ease;
}

.alm-showcase-slider__dot.is-active {
	background: var(--alm-orange);
	transform: scale(1.2);
}

.alm-showcase-section--slider .alm-showcase-slider__dot {
	background: rgba(255, 255, 255, 0.28);
}

/* ── Premium hero (home-premium) ── */
.page-home-premium .serene-home-gateway__slides span {
	animation-duration: 54s;
}

.page-home-premium .serene-home-gateway.alm-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 0%, rgba(20, 12, 8, 0.55) 100%);
}

.page-home-premium .serene-home-gateway.alm-hero .serene-home-gateway__copy h1 {
	letter-spacing: -0.03em;
	max-width: 16ch;
}

/* ── Premium reviews strip ── */
.alm-reviews-strip--premium {
	padding: var(--alm-section-gap) clamp(20px, 4vw, 48px);
}

.alm-reviews-strip--premium .alm-reviews-strip__heading {
	margin-bottom: clamp(24px, 3vw, 36px);
}

.alm-reviews-strip__scores {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.alm-reviews-strip__score {
	padding: 16px 20px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(113, 45, 26, 0.08);
	box-shadow: 0 12px 28px rgba(113, 45, 26, 0.06);
	min-width: 140px;
}

.alm-reviews-strip__score strong {
	display: block;
	font-size: 28px;
	color: var(--alm-brown);
	line-height: 1;
}

.alm-reviews-strip__score span {
	display: block;
	font-size: var(--alm-text-sm);
	color: var(--alm-text-muted);
	margin-top: 4px;
}

.alm-reviews-strip__score small {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--alm-orange);
	margin-top: 6px;
}

.alm-reviews-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.alm-review-card--premium {
	padding: clamp(20px, 2.4vw, 28px);
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(113, 45, 26, 0.08);
	box-shadow: 0 14px 32px rgba(113, 45, 26, 0.06);
}

.alm-review-card__quote {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.35;
	color: var(--alm-brown);
	margin: 12px 0 0;
}

.alm-review-card--premium header strong {
	display: block;
	font-size: var(--alm-text-sm);
	color: var(--alm-brown);
}

.alm-review-card--premium header span {
	font-size: var(--alm-text-xs);
	color: var(--alm-text-muted);
}

/* ── Admin comparison banner ── */
.alm-home-compare-banner {
	position: fixed;
	bottom: 16px;
	right: 16px;
	z-index: 99999;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(113, 45, 26, 0.94);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.alm-home-compare-banner a {
	color: #ffb86a;
	text-decoration: none;
	font-weight: 800;
}

.alm-home-compare-banner a:hover {
	text-decoration: underline;
}

@media (max-width: 1180px) {
	.alm-destination-tiles,
	.serene-showcase__grid--tiles .alm-destination-tiles {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.alm-signature-journey,
	.alm-editorial-band__grid {
		grid-template-columns: 1fr;
	}

	.alm-destination-tiles,
	.serene-showcase__grid--tiles .alm-destination-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alm-reviews-strip__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.alm-destination-tiles,
	.serene-showcase__grid--tiles .alm-destination-tiles {
		grid-template-columns: 1fr;
	}
}

/* ── Premium Why (content sections) ── */
.elementor-widget-serene_content_sections .elementor-widget-container:has(.alm-why-premium) {
	overflow: visible;
}

.serene-content-mode-premium.alm-why-premium {
	box-sizing: border-box;
	position: relative;
	left: auto;
	right: auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 48px);
	background: linear-gradient(180deg, #f5f7f8 0%, #ffffff 52%, #eef2f4 100%);
}

.alm-why-premium__inner {
	max-width: 1320px;
	margin: 0 auto;
}

.alm-why-premium__header {
	max-width: 760px;
	margin: 0 0 clamp(32px, 4vw, 48px);
}

.alm-why-premium__kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	font-size: var(--alm-text-xs);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--alm-gold);
}

.alm-why-premium__kicker::before {
	content: "";
	width: 42px;
	height: 2px;
	background: var(--alm-gold);
}

.alm-why-premium__title {
	margin: 0 0 16px;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--alm-brown);
}

.alm-why-premium__intro {
	margin: 0;
	max-width: 58ch;
	font-size: var(--alm-text-md);
	line-height: 1.7;
	color: var(--alm-text-muted);
}

.alm-why-premium__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(24px, 3.5vw, 40px);
	align-items: stretch;
}

.alm-why-premium__media {
	border-radius: 22px;
	overflow: hidden;
	min-height: 100%;
	box-shadow: 0 28px 56px rgba(113, 45, 26, 0.14);
}

.alm-why-premium__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
}

.alm-why-premium__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 22px);
}

.alm-why-premium__card {
	position: relative;
	padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.5vw, 26px);
	border: 1px solid var(--alm-line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 16px 40px rgba(113, 45, 26, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.alm-why-premium__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 22px;
	right: 22px;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, var(--alm-gold), rgba(242, 140, 24, 0.35));
	opacity: 0.85;
}

.alm-why-premium__card:hover {
	transform: translateY(-3px);
	border-color: rgba(242, 140, 24, 0.35);
	box-shadow: 0 22px 48px rgba(113, 45, 26, 0.11);
}

.alm-why-premium__index {
	display: block;
	margin: 0 0 10px;
	font-size: var(--alm-text-xs);
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--alm-gold);
}

.alm-why-premium__card h3 {
	margin: 0 0 10px;
	font-size: var(--alm-text-lg);
	font-weight: 800;
	line-height: 1.25;
	color: var(--alm-brown);
}

.alm-why-premium__body p {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.65;
	color: var(--alm-text-muted);
}

.alm-why-premium__body .serene-check-list {
	margin-top: 12px;
}

@media (max-width: 1024px) {
	.alm-why-premium__grid {
		grid-template-columns: 1fr;
	}

	.alm-why-premium__media {
		min-height: 280px;
	}

	.alm-why-premium__media img {
		min-height: 280px;
	}
}

@media (max-width: 640px) {
	.alm-why-premium__cards {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.serene-card--showcase:hover,
	.serene-card--showcase:hover .serene-card-image img,
	.alm-destination-tile:hover .alm-destination-tile__media img,
	.page-home-premium .serene-home-gateway__slides span {
		animation: none !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ── About Us story layout ── */
.elementor-widget-serene_content_sections .elementor-widget-container:has(.alm-about-story),
.elementor-widget-serene_content_sections .elementor-widget-container:has(.alm-why-story) {
	overflow: visible;
}

.alm-about-story,
.alm-why-story {
	color: var(--alm-text);
}

.alm-about-story__kicker,
.alm-about-story__eyebrow,
.alm-why-story__kicker {
	margin: 0 0 12px;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--alm-gold);
}

.alm-about-story__kicker::before,
.alm-why-story__kicker::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	margin-right: 10px;
	vertical-align: middle;
	background: var(--alm-gold);
}

.alm-about-story__opener {
	padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
	background:
		linear-gradient(180deg, rgba(248, 244, 239, 0.9) 0%, var(--alm-white) 100%);
}

.alm-about-story__opener-inner {
	width: min(920px, calc(100% - 40px));
	margin: 0 auto;
}

.alm-about-story__opener p {
	margin: 0 0 1.15em;
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	line-height: 1.8;
	color: var(--alm-text);
}

.alm-about-story__opener p:first-of-type {
	font-size: clamp(1.2rem, 2.2vw, 1.55rem);
	line-height: 1.65;
	font-weight: 500;
	color: var(--alm-brown);
}

.alm-about-story__split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(40px, 6vw, 72px) 0;
}

.alm-about-story__media {
	min-height: 420px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--alm-shadow);
}

.alm-about-story__media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.alm-about-story__split-copy h2,
.alm-about-story__offerings-head h2,
.alm-about-story__mosaic-head h2,
.alm-about-story__approach-copy h2 {
	margin: 0 0 16px;
	font-size: var(--alm-text-2xl);
	line-height: 1.2;
	color: var(--alm-brown);
}

.alm-about-story__split-copy p,
.alm-about-story__approach-copy p {
	margin: 0 0 1em;
	font-size: var(--alm-text-md);
	line-height: 1.75;
	color: var(--alm-text-muted);
}

.alm-about-story__offerings {
	padding: clamp(44px, 6vw, 72px) 0;
	background: var(--alm-brown);
	color: var(--alm-white);
}

.alm-about-story__offerings-head,
.alm-about-story__offer-grid,
.alm-about-story__mosaic-wrap,
.alm-about-story__mosaic-head,
.alm-about-story__mosaic,
.alm-about-story__approach-copy {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.alm-about-story__offerings .alm-about-story__eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.alm-about-story__offerings-head h2 {
	color: var(--alm-white);
}

.alm-about-story__offer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.alm-about-story__offer-item {
	display: grid;
	gap: 10px;
	padding: 18px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.alm-about-story__offer-index {
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--alm-gold);
}

.alm-about-story__offer-item p {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.alm-about-story__mosaic-wrap {
	padding: clamp(48px, 7vw, 80px) 0;
}

.alm-about-story__mosaic {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.alm-about-story__mosaic-item {
	padding: 22px 20px;
	border-radius: 18px;
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	box-shadow: 0 12px 32px rgba(113, 45, 26, 0.06);
}

.alm-about-story__mosaic-item--lead {
	grid-column: span 2;
	background:
		linear-gradient(135deg, rgba(242, 140, 24, 0.12) 0%, rgba(255, 255, 255, 1) 70%);
	border-color: rgba(242, 140, 24, 0.22);
}

.alm-about-story__mosaic-dot {
	display: block;
	width: 10px;
	height: 10px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--alm-gold);
}

.alm-about-story__mosaic-item p {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.6;
	color: var(--alm-text);
}

.alm-about-story__approach {
	padding: clamp(40px, 6vw, 64px) 0;
	background: rgba(248, 244, 239, 0.65);
}

.alm-about-story__approach-copy {
	max-width: 820px;
}

.alm-about-story__promise {
	width: min(860px, calc(100% - 40px));
	margin: clamp(40px, 6vw, 64px) auto clamp(48px, 7vw, 72px);
	padding: clamp(28px, 4vw, 40px);
	border: 0;
	border-left: 4px solid var(--alm-gold);
	border-radius: 0 18px 18px 0;
	background: var(--alm-white);
	box-shadow: var(--alm-shadow);
}

.alm-about-story__promise p {
	margin: 0 0 1em;
	font-size: var(--alm-text-md);
	line-height: 1.75;
	color: var(--alm-text-muted);
}

.alm-about-story__promise p:last-child {
	margin-bottom: 0;
}

/* ── Why Travel With Us story layout ── */
.alm-why-story__lead {
	width: min(860px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(48px, 7vw, 80px) 0 clamp(28px, 4vw, 40px);
}

.alm-why-story__lead p {
	margin: 0 0 1.15em;
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
	line-height: 1.8;
	color: var(--alm-text-muted);
}

.alm-why-story__lead p:first-of-type {
	font-size: clamp(1.22rem, 2.3vw, 1.6rem);
	line-height: 1.6;
	font-weight: 500;
	color: var(--alm-brown);
}

.alm-why-story__chapter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(36px, 5vw, 56px) 0;
}

.alm-why-story__chapter--reverse .alm-why-story__chapter-media {
	order: 2;
}

.alm-why-story__chapter--reverse .alm-why-story__chapter-copy {
	order: 1;
}

.alm-why-story__chapter-media {
	min-height: 360px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--alm-shadow);
}

.alm-why-story__chapter-media img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.alm-why-story__chapter-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--alm-brown);
	color: var(--alm-white);
	font-size: var(--alm-text-xs);
	font-weight: 700;
}

.alm-why-story__chapter-copy h2 {
	margin: 0 0 14px;
	font-size: var(--alm-text-xl);
	line-height: 1.25;
	color: var(--alm-brown);
}

.alm-why-story__chapter-copy p {
	margin: 0 0 1em;
	font-size: var(--alm-text-base);
	line-height: 1.75;
	color: var(--alm-text-muted);
}

.alm-why-story__flex {
	margin: clamp(20px, 3vw, 32px) 0;
	padding: clamp(44px, 6vw, 68px) 0;
	background: var(--alm-brown);
	color: var(--alm-white);
}

.alm-why-story__flex-head,
.alm-why-story__flex-grid {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.alm-why-story__flex-head h2 {
	margin: 0;
	font-size: var(--alm-text-2xl);
	color: var(--alm-white);
}

.alm-why-story__flex-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.alm-why-story__flex-item {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 12px;
	align-items: start;
	padding: 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.alm-why-story__flex-mark {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--alm-gold);
}

.alm-why-story__flex-item p {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.alm-why-story__closing {
	width: min(920px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(44px, 6vw, 72px) 0 clamp(56px, 8vw, 88px);
	text-align: center;
}

.alm-why-story__closing h2 {
	margin: 0 0 16px;
	font-size: var(--alm-text-2xl);
	color: var(--alm-brown);
}

.alm-why-story__closing p {
	margin: 0 0 1em;
	font-size: var(--alm-text-md);
	line-height: 1.8;
	color: var(--alm-text-muted);
}

@media (max-width: 1024px) {
	.alm-about-story__offer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alm-about-story__mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alm-about-story__mosaic-item--lead {
		grid-column: span 2;
	}

	.alm-why-story__flex-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.alm-about-story__split,
	.alm-why-story__chapter {
		grid-template-columns: 1fr;
	}

	.alm-why-story__chapter--reverse .alm-why-story__chapter-media,
	.alm-why-story__chapter--reverse .alm-why-story__chapter-copy {
		order: initial;
	}

	.alm-about-story__media,
	.alm-why-story__chapter-media {
		min-height: 280px;
	}

	.alm-about-story__offer-grid,
	.alm-about-story__mosaic,
	.alm-why-story__flex-grid {
		grid-template-columns: 1fr;
	}

	.alm-about-story__mosaic-item--lead {
		grid-column: span 1;
	}
}

/* ── Contact page hub layout ── */
.elementor-widget-serene_content_sections .elementor-widget-container:has(.alm-contact-hub) {
	overflow: visible;
}

.alm-contact-hub {
	padding: clamp(48px, 7vw, 80px) 0;
	background:
		linear-gradient(180deg, rgba(248, 244, 239, 0.65) 0%, var(--alm-white) 42%),
		var(--alm-white);
}

.alm-contact-hub__inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.alm-contact-hub__header {
	max-width: 760px;
	margin-bottom: clamp(28px, 4vw, 44px);
}

.alm-contact-hub__kicker {
	margin: 0 0 10px;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--alm-gold);
}

.alm-contact-hub__kicker::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	margin-right: 10px;
	vertical-align: middle;
	background: var(--alm-gold);
}

.alm-contact-hub__title {
	margin: 0 0 14px;
	font-size: var(--alm-text-2xl);
	line-height: 1.2;
	color: var(--alm-brown);
}

.alm-contact-hub__intro {
	font-size: var(--alm-text-md);
	line-height: 1.7;
	color: var(--alm-text-muted);
}

.alm-contact-hub__intro p {
	margin: 0;
}

.alm-contact-hub__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.35fr);
	gap: clamp(20px, 3vw, 32px);
	align-items: stretch;
}

.alm-contact-hub__reach {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: clamp(24px, 3.5vw, 34px);
	border-radius: 20px;
	background:
		linear-gradient(165deg, rgba(113, 45, 26, 0.98) 0%, rgba(45, 71, 44, 0.96) 100%);
	color: var(--alm-white);
	box-shadow: var(--alm-shadow);
}

.alm-contact-hub__reach-kicker {
	margin: 0;
	font-size: var(--alm-text-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.alm-contact-hub__reach-title {
	margin: 0;
	font-size: var(--alm-text-xl);
	line-height: 1.25;
	color: var(--alm-white);
}

.alm-contact-hub__reach-note {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.alm-contact-hub__channels {
	display: grid;
	gap: 10px;
}

.alm-contact-channel {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: inherit;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.alm-contact-channel:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(242, 140, 24, 0.45);
	transform: translateY(-1px);
}

.alm-contact-channel__icon {
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--alm-gold);
	position: relative;
}

.alm-contact-channel__icon::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 18px;
	height: 18px;
	background: var(--alm-white);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.alm-contact-channel--phone .alm-contact-channel__icon::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 3c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.alm-contact-channel--email .alm-contact-channel__icon::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.alm-contact-channel__text {
	display: grid;
	gap: 2px;
}

.alm-contact-channel__label {
	font-size: var(--alm-text-xs);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.68);
}

.alm-contact-channel__value {
	font-size: var(--alm-text-base);
	font-weight: 600;
	color: var(--alm-white);
}

.alm-contact-channel--multi {
	cursor: default;
}

.alm-contact-channel--multi:hover {
	transform: none;
}

.alm-contact-channel__phones {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.alm-contact-channel__phones a {
	font-size: var(--alm-text-base);
	font-weight: 600;
	color: var(--alm-white);
	text-decoration: none;
}

.alm-contact-channel__phones a:hover {
	color: var(--alm-gold);
}

.alm-contact-hub__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 4px;
	padding: 14px 18px;
	border-radius: 999px;
	background: var(--alm-gold) !important;
	border-color: var(--alm-gold) !important;
	color: var(--alm-white) !important;
	font-weight: 700;
	text-align: center;
}

.alm-contact-hub__whatsapp:hover {
	background: var(--alm-white) !important;
	color: var(--alm-brown) !important;
}

.alm-contact-hub__response {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: var(--alm-text-sm);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.alm-contact-hub__response strong {
	display: block;
	margin-bottom: 6px;
	color: var(--alm-white);
}

.alm-contact-hub__response p {
	margin: 0;
}

/* Dark contact panel — force light text over theme / Elementor paragraph styles */
body .elementor-widget-serene_content_sections .alm-contact-hub__reach,
body .elementor-widget-serene_content_sections .alm-contact-hub__reach p,
body .elementor-widget-serene_content_sections .alm-contact-hub__reach-note,
body .elementor-widget-serene_content_sections .alm-contact-hub__response,
body .elementor-widget-serene_content_sections .alm-contact-hub__response p {
	color: rgba(255, 255, 255, 0.82) !important;
}

body .elementor-widget-serene_content_sections .alm-contact-hub__reach-title,
body .elementor-widget-serene_content_sections .alm-contact-hub__response strong {
	color: var(--alm-white) !important;
}

body .elementor-widget-serene_content_sections .alm-contact-hub__reach-kicker {
	color: rgba(255, 255, 255, 0.72) !important;
}

.alm-contact-hub__guides {
	display: grid;
	gap: clamp(16px, 2.5vw, 22px);
}

.alm-contact-hub__guide {
	padding: clamp(22px, 3vw, 30px);
	border-radius: 18px;
	background: var(--alm-white);
	border: 1px solid var(--alm-line);
	box-shadow: 0 10px 30px rgba(113, 45, 26, 0.06);
}

.alm-contact-hub__guide h3 {
	margin: 0 0 16px;
	font-size: var(--alm-text-lg);
	color: var(--alm-brown);
}

.alm-contact-help-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.alm-contact-help-item {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
	padding: 14px;
	border-radius: 14px;
	background: rgba(248, 244, 239, 0.8);
	border: 1px solid rgba(113, 45, 26, 0.06);
}

.alm-contact-help-item__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--alm-brown);
	color: var(--alm-white);
	font-size: var(--alm-text-xs);
	font-weight: 700;
}

.alm-contact-help-item p {
	margin: 0;
	font-size: var(--alm-text-sm);
	line-height: 1.55;
	color: var(--alm-text);
}

.alm-contact-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.alm-contact-checklist li {
	position: relative;
	padding-left: 26px;
	font-size: var(--alm-text-sm);
	line-height: 1.55;
	color: var(--alm-text);
}

.alm-contact-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--alm-gold);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
	mask-size: 10px 10px;
	mask-repeat: no-repeat;
	mask-position: center;
}

@media (max-width: 960px) {
	.alm-contact-hub__grid {
		grid-template-columns: 1fr;
	}

	.alm-contact-help-grid,
	.alm-contact-checklist {
		grid-template-columns: 1fr;
	}
}

/* Quote request intro — ALM brown instead of Serene navy */
.elementor-widget-serene_quote_form .serene-quote-request__intro {
	background: var(--alm-brown) !important;
	color: var(--alm-white);
}

.elementor-widget-serene_quote_form .serene-quote-request__intro h1,
.elementor-widget-serene_quote_form .serene-quote-request__intro .serene-quote-guide strong {
	color: var(--alm-white);
}

.elementor-widget-serene_quote_form .serene-quote-request__intro p,
.elementor-widget-serene_quote_form .serene-quote-request__intro .serene-quote-guide small {
	color: rgba(255, 255, 255, 0.82);
}

.elementor-widget-serene_quote_form .serene-quote-request__intro .serene-kicker {
	color: var(--alm-gold) !important;
}

/* Core policy pages — cancellation schedule table */
.alm-cancellation-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0 0;
	font-size: 0.95rem;
}

.alm-cancellation-table th,
.alm-cancellation-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border: 1px solid rgba(113, 45, 26, 0.12);
	vertical-align: top;
}

.alm-cancellation-table th {
	background: #f8f4ef;
	font-weight: 600;
	color: #712d1a;
}

.alm-cancellation-table tbody tr:nth-child(even) td {
	background: rgba(248, 244, 239, 0.45);
}

@media (max-width: 640px) {
	.alm-cancellation-table th,
	.alm-cancellation-table td {
		padding: 0.6rem 0.75rem;
		font-size: 0.88rem;
	}
}

/* ══════════════════════════════════════════════════════════════════
   SITE-WIDE RESPONSIVE — tablet ≤1180px, mobile ≤767px
   Aligns with primary nav breakpoint (1180px).
   ══════════════════════════════════════════════════════════════════ */

/* ── Global overflow & media guard ── */
body:not(.elementor-editor-active) {
	overflow-x: clip;
}

body:not(.elementor-editor-active) img,
body:not(.elementor-editor-active) video,
body:not(.elementor-editor-active) iframe,
body:not(.elementor-editor-active) svg,
body:not(.elementor-editor-active) .elementor-widget-image img {
	max-width: 100%;
	height: auto;
}

body:not(.elementor-editor-active) .elementor-section,
body:not(.elementor-editor-active) .e-con,
body:not(.elementor-editor-active) .e-con-inner,
body:not(.elementor-editor-active) .elementor-widget-wrap {
	max-width: 100%;
	min-width: 0;
}

body:not(.elementor-editor-active) .entry-content table,
body:not(.elementor-editor-active) .serene-widget-content table,
body:not(.elementor-editor-active) .alm-cancellation-table-wrap {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

body:not(.elementor-editor-active) .entry-content table,
body:not(.elementor-editor-active) .serene-widget-content table {
	border-collapse: collapse;
}

/* ── Tablet (≤1180px) ── */
@media (max-width: 1180px) {
	/* Full-bleed sections: avoid 100vw scrollbar overflow */
	.alm-showcase-section,
	.alm-editorial-band {
		left: auto;
		right: auto;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	/* Homepage hero */
	.serene-home-gateway.alm-hero {
		min-height: clamp(420px, 72vh, 600px);
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__inner {
		width: min(1180px, calc(100% - 32px));
		padding: clamp(72px, 12vh, 104px) 0 clamp(48px, 8vh, 72px);
		gap: 22px;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__copy h1 {
		font-size: clamp(2rem, 5.5vw, 2.85rem) !important;
		line-height: 1.12 !important;
		max-width: none;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__copy p {
		font-size: var(--alm-text-base);
		max-width: none;
	}

	.serene-home-gateway.alm-hero .serene-hero-actions {
		flex-wrap: wrap;
	}

	.serene-home-gateway.alm-hero .serene-hero-actions .serene-btn {
		min-height: 44px;
	}

	/* Tour & destination: stack sidebar below main */
	.serene-widget-tour-template .serene-itinerary-layout,
	.alm-single-tour .serene-itinerary-layout,
	.serene-widget-destination-template .serene-destination-layout,
	.alm-single-destination .serene-destination-layout {
		grid-template-columns: 1fr !important;
	}

	.serene-itinerary-sidebar,
	.serene-destination-side,
	.serene-sidebar-card,
	.alm-single-destination .serene-destination-side,
	.alm-listing-sidebar {
		position: static;
		top: auto;
	}

	.serene-widget-tour-template .serene-itinerary-hero,
	.alm-single-tour .serene-itinerary-hero,
	.serene-widget-destination-template .serene-destination-hero,
	.alm-single-destination .serene-destination-hero {
		min-height: clamp(300px, 42vh, 460px) !important;
		padding-top: clamp(72px, 10vh, 96px) !important;
		padding-bottom: clamp(40px, 6vh, 64px) !important;
	}

	.serene-widget-destination-template .serene-dh-stats,
	.alm-single-destination .serene-dh-stats {
		flex-wrap: wrap;
	}

	.serene-widget-destination-template .serene-dh-stat,
	.alm-single-destination .serene-dh-stat {
		min-width: 0;
		flex: 1 1 140px;
	}

	.serene-widget-tour-template .serene-tour-tabs,
	.alm-single-tour .serene-tour-tabs,
	.serene-widget-destination-template .serene-destination-anchor,
	.alm-single-destination .serene-destination-anchor {
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
	}

	.serene-widget-tour-template .serene-tour-tabs a,
	.alm-single-tour .serene-tour-tabs a,
	.serene-widget-destination-template .serene-destination-anchor a,
	.alm-single-destination .serene-destination-anchor a {
		min-height: 44px;
		flex-shrink: 0;
	}

	/* Listing hub */
	.alm-listing-hub {
		grid-template-columns: 1fr;
	}

	.alm-listing-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.alm-listing-toolbar__actions {
		width: 100%;
		justify-content: space-between;
	}

	.alm-listing-search__input,
	.alm-listing-sort__select {
		width: 100%;
		min-height: 44px;
	}

	.alm-listing-view__btn {
		min-height: 44px;
		min-width: 44px;
		justify-content: center;
	}

	/* Quote form */
	.serene-quote-guide {
		grid-template-columns: 1fr;
	}

	.serene-quote-request__panel {
		display: none;
		position: static;
		min-height: 0;
		top: auto;
	}

	.alm-product-enquiry__row {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.serene-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 24px;
	}

	.serene-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	/* Mobile nav: collapse sub-menus until toggled */
	.serene-site-header .serene-menu > .menu-item-has-children:not(.is-submenu-open) > .sub-menu,
	.serene-site-header .serene-menu > .page_item_has_children:not(.is-submenu-open) > .sub-menu {
		display: none !important;
	}

	.serene-site-header .serene-menu > .menu-item-has-children.is-submenu-open > a::after,
	.serene-site-header .serene-menu > .page_item_has_children.is-submenu-open > a::after {
		transform: rotate(225deg);
		margin-top: 2px;
	}

	.serene-menu-toggle {
		min-width: 44px;
		min-height: 44px;
	}
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
	.serene-home-gateway.alm-hero {
		min-height: clamp(360px, 62vh, 480px);
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__inner {
		width: min(1180px, calc(100% - 24px));
		padding: clamp(64px, 14vh, 88px) 0 clamp(36px, 6vh, 56px);
		gap: 18px;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__copy h1 {
		font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
	}

	.serene-home-gateway.alm-hero .serene-hero-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.serene-home-gateway.alm-hero .serene-hero-actions .serene-btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__proof span,
	.serene-home-gateway.alm-hero .serene-home-gateway__proof--inline span {
		font-size: var(--alm-text-xs);
		padding: 10px 12px;
	}

	.serene-widget-tour-template .serene-itinerary-hero,
	.alm-single-tour .serene-itinerary-hero,
	.serene-widget-destination-template .serene-destination-hero,
	.alm-single-destination .serene-destination-hero {
		min-height: clamp(260px, 38vh, 380px) !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.serene-widget-tour-template .serene-itinerary-layout,
	.alm-single-tour .serene-itinerary-layout,
	.serene-widget-destination-template .serene-destination-layout,
	.alm-single-destination .serene-destination-layout {
		padding-left: 16px;
		padding-right: 16px;
	}

	.alm-dest-highlights,
	.alm-dest-packages,
	.serene-widget-destination-template .serene-compact-list,
	.alm-single-destination .serene-compact-list {
		grid-template-columns: 1fr;
	}

	.alm-showcase-section {
		padding: clamp(40px, 8vw, 64px) clamp(16px, 4vw, 24px);
	}

	.alm-archive-filters-bar,
	.alm-archive-cta {
		margin-left: 16px;
		margin-right: 16px;
	}

	.alm-archive-filters__link {
		min-height: 44px;
		padding: 10px 16px;
	}

	.alm-contact-hub__inner,
	.alm-about-story__opener-inner,
	.alm-about-story__split,
	.alm-why-story__lead,
	.alm-why-story__closing {
		width: min(1180px, calc(100% - 24px));
	}

	.alm-contact-channel {
		min-height: 44px;
	}

	.alm-contact-hub__whatsapp {
		min-height: 48px;
	}

	/* Quote form: single column */
	.serene-quote-request__intro,
	.serene-quote-request__form-wrap {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}

	.serene-path-labels,
	.serene-form-grid,
	.serene-form-grid--traveller,
	.serene-form-toggle,
	.serene-service-checks {
		grid-template-columns: 1fr !important;
	}

	.serene-quote-form input,
	.serene-quote-form textarea,
	.serene-quote-form select,
	.alm-product-enquiry__form input,
	.alm-product-enquiry__form textarea {
		font-size: 16px;
		min-height: 44px;
	}

	.serene-quote-form button[type="submit"],
	.alm-product-enquiry__form button[type="submit"] {
		width: 100%;
		min-height: 48px;
	}

	.serene-footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.serene-footer-brand,
	.serene-footer-bottom {
		width: 100%;
	}

	.alm-listing-toolbar__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.alm-listing-view {
		width: 100%;
		justify-content: center;
	}

	.serene-feed-pagination .page-numbers {
		min-width: 44px;
		height: 44px;
	}

	.alm-home-compare-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		flex-wrap: wrap;
		justify-content: center;
		border-radius: 16px;
	}
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
	.serene-home-gateway.alm-hero .serene-home-gateway__inner {
		width: calc(100% - 20px);
	}

	.alm-showcase-slider__slide {
		flex-basis: min(280px, 90vw);
	}

	.serene-path-labels strong {
		font-size: 1.5rem;
	}
}

/* Kwetu final responsive polish. */
html,
body {
	overflow-x: clip;
}

.serene-itinerary-page .serene-tour-overview-panel p,
.serene-itinerary-page .serene-tour-overview-panel p:first-of-type,
.serene-itinerary-page .serene-tour-overview-panel em,
.serene-itinerary-page .serene-tour-overview-panel i {
	color: var(--serene-muted) !important;
	font-family: var(--serene-sans, "Nunito Sans", Arial, sans-serif) !important;
	font-size: 17px !important;
	font-style: normal !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	line-height: 1.78 !important;
	text-transform: none !important;
}

.serene-elementor-footer .serene-footer-brand {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 34px max(24px, 5vw);
}

.serene-elementor-footer .serene-logo--footer {
	background: #fff;
	border-radius: 18px;
	display: inline-flex;
	padding: 14px 18px;
}

.serene-elementor-footer .serene-logo--footer .serene-logo-img {
	max-height: 104px;
	width: auto;
}

@media (max-width: 767px) {
	.serene-elementor-header .serene-nav-wrap,
	.serene-site-header .serene-nav-wrap {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		max-width: none !important;
		min-height: 76px;
		padding: 8px 16px !important;
		width: 100% !important;
	}

	.serene-elementor-header .serene-logo,
	.serene-site-header .serene-logo {
		min-width: 0 !important;
		width: max-content;
	}

	.serene-elementor-header .serene-logo-img,
	.serene-site-header .serene-logo-img {
		max-height: 58px !important;
		max-width: 104px !important;
		width: auto !important;
	}

	.serene-elementor-header .serene-menu-toggle,
	.serene-site-header .serene-menu-toggle {
		display: inline-flex !important;
		grid-column: 2 !important;
		grid-row: 1 !important;
		margin-left: auto;
	}

	.serene-elementor-header .serene-primary-nav,
	.serene-site-header .serene-primary-nav {
		grid-column: 1 / -1 !important;
		left: 16px !important;
		right: 16px !important;
		width: auto !important;
	}

	.serene-home-gateway.alm-hero,
	.serene-home-gateway.alm-hero .serene-home-gateway__inner,
	.serene-home-gateway.alm-hero .serene-home-gateway__copy {
		box-sizing: border-box !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__inner {
		padding: 62px 16px 48px !important;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__copy h1,
	.serene-home-gateway.alm-hero .serene-home-gateway__copy h1 em {
		display: inline !important;
		font-size: clamp(2rem, 9vw, 2.6rem) !important;
		line-height: 1.06 !important;
		max-width: 100% !important;
		overflow-wrap: normal !important;
		white-space: normal !important;
		word-break: normal !important;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__copy p {
		font-size: 16px !important;
		line-height: 1.6 !important;
		max-width: 100% !important;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__proof,
	.serene-home-gateway.alm-hero .serene-home-gateway__proof--inline {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 8px !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.serene-home-gateway.alm-hero .serene-home-gateway__proof span {
		align-items: center;
		display: flex;
		font-size: 10px !important;
		justify-content: center;
		line-height: 1.35 !important;
		min-width: 0 !important;
		text-align: center;
		white-space: normal !important;
	}

	.serene-widget-trust.serene-trust-strip {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		margin: 0 !important;
		max-width: 100% !important;
		padding: 24px 16px !important;
		width: 100% !important;
	}

	.serene-widget-trust.serene-trust-strip span {
		font-size: 10px !important;
		line-height: 1.35 !important;
		min-width: 0;
		white-space: normal !important;
	}

	.serene-widget-hero .serene-home-hero-copy,
	.alm-archive-hero > div {
		box-sizing: border-box;
		max-width: 100%;
		width: 100%;
	}

	.serene-widget-hero .serene-home-hero-copy h1,
	.alm-archive-hero h1 {
		font-size: clamp(2rem, 9vw, 2.7rem) !important;
		line-height: 1.08 !important;
	}

	.serene-elementor-footer .serene-footer-grid,
	.serene-elementor-footer .serene-footer-bottom {
		max-width: 100% !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
		width: 100% !important;
	}
}
