/**
 * Zan theme.
 *
 * Mobile first. Written as plain CSS with custom properties, no build step, so
 * another developer can maintain it without installing anything.
 *
 * 1.  Tokens
 * 2.  Reset and base
 * 3.  Layout
 * 4.  Typography
 * 5.  Buttons and links
 * 6.  Header and navigation
 * 7.  Hero
 * 8.  Sections
 * 9.  Cards and grids
 * 10. Product page
 * 11. Editorial content
 * 12. Footer and sticky actions
 * 13. Utilities and states
 * 14. Breakpoints
 */

/* ===========================================================  1. Tokens === */

:root {
	/* Palette. Deep ocean, warm sand, spice gold. */
	--zan-ocean: #0d3b45;
	--zan-ocean-deep: #072a32;
	--zan-ocean-mid: #17505c;
	--zan-sand: #f7f5f1;
	--zan-sand-2: #f0ebe2;
	--zan-sand-dark: #e6e1d8;
	--zan-gold: #c8912f;
	--zan-gold-dark: #a9761f;
	--zan-gold-soft: #f3e6cc;
	--zan-green: #1f8f4e;
	--zan-whatsapp: #25d366;
	--zan-ink: #1f2b33;
	--zan-muted: #5c6a72;
	--zan-line: #ddd7cc;
	--zan-danger: #b3261e;
	--zan-white: #ffffff;

	/* Type */
	--zan-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--zan-font-display: Georgia, "Iowan Old Style", "Times New Roman", Times, serif;

	--zan-step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.9rem);
	--zan-step-0: clamp(1rem, 0.96rem + 0.18vw, 1.09rem);
	--zan-step-1: clamp(1.19rem, 1.12rem + 0.34vw, 1.4rem);
	--zan-step-2: clamp(1.41rem, 1.29rem + 0.6vw, 1.8rem);
	--zan-step-3: clamp(1.68rem, 1.48rem + 0.99vw, 2.31rem);
	--zan-step-4: clamp(2rem, 1.68rem + 1.58vw, 2.97rem);
	--zan-step-5: clamp(2.38rem, 1.89rem + 2.44vw, 3.82rem);

	/* Space */
	--zan-space-1: 0.35rem;
	--zan-space-2: 0.7rem;
	--zan-space-3: 1.1rem;
	--zan-space-4: 1.6rem;
	--zan-space-5: 2.4rem;
	--zan-space-6: 3.4rem;
	--zan-space-7: 5rem;
	--zan-space-8: 7rem;

	/* Shape */
	--zan-radius: 16px;
	--zan-radius-sm: 10px;
	--zan-radius-pill: 999px;
	--zan-shadow: 0 2px 14px rgba(31, 43, 51, .07);
	--zan-shadow-lg: 0 14px 40px rgba(31, 43, 51, .14);

	--zan-max: 1220px;
	--zan-max-narrow: 760px;
	--zan-header-h: 68px;
}

/* ================================================  2. Reset and base ====== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--zan-header-offset, var(--zan-header-h)) + 1rem);
}

body {
	margin: 0;
	font-family: var(--zan-font-body);
	font-size: var(--zan-step-0);
	line-height: 1.65;
	color: var(--zan-ink);
	background: var(--zan-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }

ul, ol { padding-left: 1.15rem; }

hr {
	border: 0;
	border-top: 1px solid var(--zan-line);
	margin: var(--zan-space-5) 0;
}

table { border-collapse: collapse; width: 100%; }

:focus-visible {
	outline: 3px solid var(--zan-gold);
	outline-offset: 2px;
	border-radius: 3px;
}

.zan-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: .8rem 1.2rem;
	background: var(--zan-ocean);
	color: #fff;
	font-weight: 700;
	border-radius: 0 0 var(--zan-radius-sm) 0;
}
.zan-skip:focus { left: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================  3. Layout === */

.zan-container {
	width: 100%;
	max-width: var(--zan-max);
	margin-inline: auto;
	padding-inline: var(--zan-space-3);
}

.zan-container--narrow { max-width: var(--zan-max-narrow); }

.zan-main { display: block; }

/* ======================================================  4. Typography === */

h1, h2, h3, h4 {
	font-family: var(--zan-font-display);
	font-weight: 700;
	line-height: 1.18;
	color: var(--zan-ocean);
	margin: 0 0 var(--zan-space-3);
	letter-spacing: -0.01em;
}

h1 { font-size: var(--zan-step-4); }
h2 { font-size: var(--zan-step-3); }
h3 { font-size: var(--zan-step-1); }
h4 { font-size: var(--zan-step-0); }

p { margin: 0 0 var(--zan-space-3); }

a { color: var(--zan-ocean); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--zan-gold-dark); }

.zan-eyebrow {
	font-family: var(--zan-font-body);
	font-size: var(--zan-step--1);
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--zan-gold);
	margin: 0 0 var(--zan-space-2);
}
.zan-eyebrow--light { color: var(--zan-gold-soft); }

/* ==============================================  5. Buttons and links ==== */

.zan-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 48px;
	padding: .8rem 1.4rem;
	border: 1px solid transparent;
	border-radius: var(--zan-radius-sm);
	font-family: var(--zan-font-body);
	font-size: var(--zan-step-0);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.zan-btn:hover { transform: translateY(-1px); }
.zan-btn:active { transform: translateY(0); }

.zan-btn--primary { background: var(--zan-ocean); color: #fff; }
.zan-btn--primary:hover { background: var(--zan-ocean-deep); color: #fff; }

.zan-btn--gold { background: var(--zan-gold); color: #24190a; }
.zan-btn--gold:hover { background: var(--zan-gold-dark); color: #fff; }

.zan-btn--ghost { background: transparent; color: var(--zan-ocean); border-color: var(--zan-line); }
.zan-btn--ghost:hover { background: var(--zan-sand); color: var(--zan-ocean); border-color: var(--zan-ocean); }

.zan-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.zan-btn--outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.zan-btn--whatsapp { background: var(--zan-whatsapp); color: #06301a; }
.zan-btn--whatsapp:hover { background: #1fbb5a; color: #06301a; }

.zan-btn--lg { min-height: 54px; padding: 1rem 1.8rem; font-size: var(--zan-step-1); }
.zan-btn--sm { min-height: 42px; padding: .55rem 1rem; font-size: var(--zan-step--1); white-space: nowrap; }

/* Header buttons must never wrap onto two lines. */
.zan-header__wa, .zan-header__cta { white-space: nowrap; }

/* ==========================================  6. Header and navigation ====

   Structure at every width:

     < 1024px   brand + actions in the bar, everything else in a right-hand
                drawer over a scrim. The drawer carries its own contact block
                so a phone visitor can convert without closing it.
     >= 1024px  three-column bar: brand, centred menu, actions. Dropdowns open
                on hover and on keyboard focus.

   The drawer offsets itself by the header's measured height, published by the
   theme script as --zan-header-offset, so the utility bar never hides behind
   it. --zan-header-h stays as the fallback before the script runs.          */

.zan-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--zan-white);
	border-bottom: 1px solid var(--zan-line);
}

/* ---------------------------------------------------------- Utility bar - */

.zan-topbar {
	display: none;
	background: var(--zan-ocean-deep);
	color: rgba(255, 255, 255, .82);
	font-size: var(--zan-step--1);
}
.zan-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--zan-space-3);
	min-height: 36px;
}
.zan-topbar__note { margin: 0; }
.zan-topbar__links {
	display: flex;
	gap: var(--zan-space-4);
	list-style: none;
	margin: 0;
	padding: 0;
}
.zan-topbar__links a { color: #fff; text-decoration: none; }
.zan-topbar__links a:hover,
.zan-topbar__links a:focus-visible { color: var(--zan-gold-soft); text-decoration: underline; }

/* ------------------------------------------------------------ Header bar - */

.zan-header__inner {
	display: flex;
	align-items: center;
	gap: var(--zan-space-3);
	min-height: var(--zan-header-h);
}

/* Brand lockup: two deliberate lines rather than a wrapping sentence. */
.zan-brand { flex: 0 1 auto; min-width: 0; margin-right: auto; }
.zan-brand__text {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1.1;
}
.zan-brand__name {
	font-family: var(--zan-font-display);
	font-size: clamp(1rem, 3.4vw, 1.24rem);
	font-weight: 700;
	color: var(--zan-ocean);
	white-space: nowrap;
	letter-spacing: -0.01em;
}
.zan-brand__sub {
	font-family: var(--zan-font-display);
	font-size: clamp(.7rem, 2.3vw, .84rem);
	font-weight: 400;
	color: var(--zan-ocean);
	white-space: nowrap;
}
.zan-brand__tagline {
	font-size: clamp(.5rem, 1.6vw, .58rem);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--zan-gold);
	font-weight: 800;
	white-space: nowrap;
	margin-top: .25rem;
}
.custom-logo { max-height: 52px; width: auto; }

/* --------------------------------------------------------- Bar actions -- */

.zan-header__actions {
	display: flex;
	align-items: center;
	gap: var(--zan-space-2);
	flex: 0 0 auto;
}
.zan-header__wa, .zan-header__cta { display: none; }

.zan-search-toggle, .zan-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--zan-line);
	border-radius: var(--zan-radius-sm);
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease;
}
.zan-search-toggle:hover, .zan-burger:hover { background: var(--zan-sand); border-color: var(--zan-sand-dark); }

.zan-icon--search {
	width: 18px; height: 18px;
	border: 2px solid var(--zan-ocean);
	border-radius: 50%;
	position: relative;
}
.zan-icon--search::after {
	content: "";
	position: absolute;
	right: -6px; bottom: -4px;
	width: 8px; height: 2px;
	background: var(--zan-ocean);
	transform: rotate(45deg);
}

.zan-burger { flex-direction: column; gap: 4px; }
.zan-burger__bar {
	display: block;
	width: 20px; height: 2px;
	background: var(--zan-ocean);
	transition: transform .2s ease, opacity .2s ease;
}
.zan-burger[aria-expanded="true"] { background: var(--zan-sand); }
.zan-burger[aria-expanded="true"] .zan-burger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.zan-burger[aria-expanded="true"] .zan-burger__bar:nth-child(2) { opacity: 0; }
.zan-burger[aria-expanded="true"] .zan-burger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------- Drawer and scrim */

.zan-nav-scrim {
	position: fixed;
	inset: var(--zan-header-offset, var(--zan-header-h)) 0 0 0;
	background: rgba(7, 42, 50, .42);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
	z-index: 89;
	border: 0;
	padding: 0;
	cursor: default;
	-webkit-appearance: none;
	appearance: none;
}
body.zan-nav-open .zan-nav-scrim { opacity: 1; visibility: visible; }

.zan-nav {
	position: fixed;
	top: var(--zan-header-offset, var(--zan-header-h));
	right: 0;
	bottom: 0;
	width: min(420px, 100%);
	background: var(--zan-white);
	border-left: 1px solid var(--zan-line);
	box-shadow: -18px 0 44px rgba(7, 42, 50, .16);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding: var(--zan-space-3) var(--zan-space-4) var(--zan-space-7);
	transform: translateX(100%);
	transition: transform .26s cubic-bezier(.4, 0, .2, 1);
	visibility: hidden;
	z-index: 90;
}
.zan-nav.is-open { transform: translateX(0); visibility: visible; }

.zan-menu { list-style: none; margin: 0; padding: 0; }

.zan-menu__item--depth-0 {
	position: relative;
	border-bottom: 1px solid var(--zan-sand-dark);
}
.zan-menu__item--depth-0:last-child { border-bottom: 0; }

.zan-menu__link {
	display: block;
	padding: .9rem 3.2rem .9rem .2rem;
	font-weight: 600;
	color: var(--zan-ocean);
	text-decoration: none;
	border-radius: var(--zan-radius-sm);
}
.zan-menu__item--depth-0 > .zan-menu__link {
	font-family: var(--zan-font-display);
	font-size: 1.06rem;
}

.zan-menu__toggle {
	position: absolute;
	top: 4px; right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	background: transparent;
	border: 0;
	border-radius: var(--zan-radius-sm);
	cursor: pointer;
}
.zan-menu__toggle:hover { background: var(--zan-sand); }
.zan-menu__chevron {
	display: block;
	width: 9px; height: 9px;
	border-right: 2px solid var(--zan-ocean);
	border-bottom: 2px solid var(--zan-ocean);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .2s ease;
}
.zan-menu__toggle[aria-expanded="true"] .zan-menu__chevron { transform: rotate(-135deg) translate(-2px, -2px); }

.zan-submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 var(--zan-space-3) .2rem;
	display: none;
}
.zan-menu__item--parent.is-open > .zan-submenu { display: grid; gap: 1px; }
.zan-submenu .zan-menu__link {
	padding: .5rem .6rem;
	font-weight: 500;
	color: var(--zan-muted);
	font-size: .93rem;
}
.zan-submenu .zan-menu__link:hover,
.zan-submenu .zan-menu__link:focus-visible {
	background: var(--zan-sand);
	color: var(--zan-ocean);
}

/* Contact block pinned to the foot of the drawer. */
.zan-nav__foot {
	display: grid;
	gap: var(--zan-space-2);
	margin-top: var(--zan-space-4);
	padding-top: var(--zan-space-4);
	border-top: 1px solid var(--zan-line);
}
.zan-nav__foot .zan-btn { width: 100%; }
.zan-nav__tel {
	display: block;
	text-align: center;
	font-weight: 700;
	color: var(--zan-ocean);
	text-decoration: none;
	padding-top: .2rem;
}
.zan-nav__tel:hover { color: var(--zan-gold-dark); }
.zan-nav__place {
	margin: 0;
	text-align: center;
	font-size: var(--zan-step--1);
	color: var(--zan-muted);
}

.zan-search {
	background: var(--zan-sand);
	border-top: 1px solid var(--zan-line);
	padding: var(--zan-space-3) 0;
}
.zan-searchform { display: flex; gap: var(--zan-space-2); }
.zan-searchform input[type="search"] {
	flex: 1;
	min-height: 48px;
	padding: .7rem .9rem;
	border: 1px solid var(--zan-line);
	border-radius: var(--zan-radius-sm);
	background: #fff;
	font-size: 1rem;
}

/* ============================================================  7. Hero === */

.zan-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 78svh;
	padding: var(--zan-space-7) 0 var(--zan-space-6);
	color: #fff;
	overflow: hidden;
	background: var(--zan-ocean-deep);
}

.zan-hero--gradient {
	background: radial-gradient(120% 100% at 20% 0%, var(--zan-ocean-mid) 0%, var(--zan-ocean-deep) 60%);
}

.zan-hero__media { position: absolute; inset: 0; }
.zan-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }

.zan-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 42, 50, .92) 0%, rgba(7, 42, 50, .6) 45%, rgba(7, 42, 50, .3) 100%);
}

.zan-hero__inner { position: relative; z-index: 1; }
.zan-hero__eyebrow { color: var(--zan-gold-soft); }
.zan-hero__title {
	color: #fff;
	font-size: var(--zan-step-5);
	max-width: 18ch;
	margin-bottom: var(--zan-space-3);
	text-wrap: balance;
}
.zan-hero__text {
	font-size: var(--zan-step-1);
	max-width: 52ch;
	color: rgba(255, 255, 255, .92);
	margin-bottom: var(--zan-space-4);
}
.zan-hero__actions { display: flex; flex-direction: column; gap: var(--zan-space-2); }

.zan-quick-wrap {
	margin-top: calc(var(--zan-space-5) * -1);
	position: relative;
	z-index: 2;
	padding-bottom: var(--zan-space-4);
}

/* =========================================================  8. Sections == */

.zan-section { padding: var(--zan-space-6) 0; }
.zan-section--tint { background: var(--zan-sand); }
.zan-section--trust { padding: var(--zan-space-4) 0; }

.zan-section__head { margin-bottom: var(--zan-space-5); max-width: 62ch; }
.zan-section__head--center { margin-inline: auto; text-align: center; }
.zan-section__title { margin-bottom: var(--zan-space-2); text-wrap: balance; }
.zan-section__title--light { color: #fff; }
.zan-section__intro { color: var(--zan-muted); font-size: var(--zan-step-1); margin: 0; }
.zan-section__intro--light { color: rgba(255, 255, 255, .86); }
.zan-section__more { margin-top: var(--zan-space-5); text-align: center; }

/* Trust bar */
.zan-trust__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--zan-space-2) var(--zan-space-4);
}
.zan-trust__item {
	display: flex;
	align-items: flex-start;
	gap: .55rem;
	font-size: var(--zan-step--1);
	font-weight: 600;
	color: var(--zan-ink);
}
.zan-trust__item::before {
	content: "";
	flex: none;
	width: 18px; height: 18px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--zan-gold-soft);
	box-shadow: inset 0 0 0 2px var(--zan-gold);
}

/* Why grid */
.zan-why { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-4); }
.zan-why__item {
	padding: var(--zan-space-4);
	background: var(--zan-sand);
	border-radius: var(--zan-radius);
	border-top: 3px solid var(--zan-gold);
}
.zan-why__number {
	display: block;
	font-family: var(--zan-font-display);
	font-size: var(--zan-step-2);
	color: var(--zan-gold);
	line-height: 1;
	margin-bottom: var(--zan-space-2);
}
.zan-why__title { font-size: var(--zan-step-1); margin-bottom: var(--zan-space-1); }
.zan-why__text { margin: 0; color: var(--zan-muted); font-size: var(--zan-step--1); line-height: 1.6; }

/* Safari band */
.zan-section--safari {
	background:
		linear-gradient(to right, rgba(7, 42, 50, .96) 0%, rgba(7, 42, 50, .82) 100%),
		radial-gradient(80% 120% at 80% 20%, var(--zan-ocean-mid), var(--zan-ocean-deep));
	color: #fff;
}
.zan-split__content { max-width: 62ch; }
.zan-parklist {
	list-style: none;
	margin: 0 0 var(--zan-space-4);
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--zan-space-2);
}
.zan-parklist a {
	display: inline-block;
	padding: .45rem .85rem;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: var(--zan-radius-pill);
	color: #fff;
	text-decoration: none;
	font-size: var(--zan-step--1);
	font-weight: 600;
}
.zan-parklist a:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: #fff; }

/* Duo cards */
.zan-duo { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-4); }
.zan-duo__card {
	padding: var(--zan-space-4);
	border: 1px solid var(--zan-line);
	border-radius: var(--zan-radius);
	background: #fff;
	box-shadow: var(--zan-shadow);
}
.zan-duo__title { font-size: var(--zan-step-2); margin-bottom: var(--zan-space-2); }
.zan-duo__text { color: var(--zan-muted); }

/* Tailor made */
.zan-section--tailor { background: var(--zan-gold-soft); }
.zan-tailor { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-4); align-items: center; }
.zan-tailor__actions { display: flex; flex-wrap: wrap; gap: var(--zan-space-2); }
.zan-tailor__list {
	list-style: none;
	margin: 0;
	padding: var(--zan-space-4);
	background: rgba(255, 255, 255, .7);
	border-radius: var(--zan-radius);
	display: grid;
	gap: var(--zan-space-2);
}
.zan-tailor__list li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-weight: 600;
	color: var(--zan-ocean);
}
.zan-tailor__list li::before { content: "→"; color: var(--zan-gold-dark); flex: none; }

/* Final CTA */
.zan-final-cta {
	background: var(--zan-ocean);
	color: #fff;
	padding: var(--zan-space-6) 0;
	text-align: center;
}
.zan-final-cta__title { color: #fff; font-size: var(--zan-step-4); margin-bottom: var(--zan-space-2); }
.zan-final-cta__text {
	max-width: 56ch;
	margin: 0 auto var(--zan-space-4);
	color: rgba(255, 255, 255, .88);
	font-size: var(--zan-step-1);
}
.zan-final-cta__actions { display: flex; flex-direction: column; gap: var(--zan-space-2); align-items: stretch; }

/* ==================================================  9. Cards and grids == */

.zan-grid { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-4); }

.zan-destinations {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--zan-space-3);
}

/* Card and destination styles are supplied by the plugin stylesheet so the
   markup renders correctly under any theme. Theme-level refinements only. */
.zan-card { border-radius: var(--zan-radius); }
.zan-card__title { font-family: var(--zan-font-display); }
.zan-dest { border-radius: var(--zan-radius); }

/* Bullets */
.zan-bullets { list-style: none; margin: 0 0 var(--zan-space-3); padding: 0; display: grid; gap: .5rem; }
.zan-bullets li { display: flex; align-items: flex-start; gap: .6rem; }
.zan-bullets li::before { flex: none; font-weight: 800; line-height: 1.55; }
.zan-bullets--dot li::before { content: "•"; color: var(--zan-gold); }
.zan-bullets--tick li::before { content: "✓"; color: var(--zan-green); }
.zan-bullets--cross li::before { content: "✕"; color: var(--zan-danger); }

/* =====================================================  10. Product page = */

.zan-crumbs { padding: var(--zan-space-3) 0; font-size: var(--zan-step--1); }
.zan-crumbs__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin: 0;
	padding: 0;
	color: var(--zan-muted);
}
.zan-crumbs__item + .zan-crumbs__item::before { content: "/"; margin-right: .4rem; color: var(--zan-line); }
.zan-crumbs a { color: var(--zan-muted); text-decoration: none; }
.zan-crumbs a:hover { color: var(--zan-ocean); text-decoration: underline; }

.zan-product-hero { position: relative; background: var(--zan-ocean-deep); color: #fff; }
.zan-product-hero__media { position: relative; aspect-ratio: 16 / 10; }
.zan-product-hero__img { width: 100%; height: 100%; object-fit: cover; }
.zan-product-hero__body { padding: var(--zan-space-4) 0 var(--zan-space-5); }
.zan-product-hero__title { color: #fff; font-size: var(--zan-step-4); margin-bottom: var(--zan-space-2); text-wrap: balance; }
.zan-product-hero__subtitle { color: rgba(255, 255, 255, .88); font-size: var(--zan-step-1); margin-bottom: var(--zan-space-3); }

.zan-facts {
	list-style: none;
	margin: 0 0 var(--zan-space-4);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--zan-space-3);
}
.zan-facts__item { display: flex; flex-direction: column; gap: .1rem; }
.zan-facts__label {
	font-size: .68rem;
	letter-spacing: .13em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--zan-gold-soft);
}
.zan-facts__value { font-weight: 700; color: #fff; }

.zan-product-hero__actions { display: flex; flex-direction: column; gap: var(--zan-space-2); }
.zan-product-hero__price {
	font-family: var(--zan-font-display);
	font-size: var(--zan-step-2);
	color: #fff;
	margin-bottom: var(--zan-space-2);
}
.zan-product-hero__price small { display: block; font-size: var(--zan-step--1); font-family: var(--zan-font-body); color: rgba(255, 255, 255, .75); font-weight: 400; }

.zan-product { padding: var(--zan-space-5) 0 var(--zan-space-6); }
.zan-product__layout { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-5); }
.zan-product__block { margin-bottom: var(--zan-space-5); }
.zan-product__block:last-child { margin-bottom: 0; }
.zan-product__block h2 {
	font-size: var(--zan-step-2);
	padding-bottom: var(--zan-space-2);
	border-bottom: 2px solid var(--zan-gold);
	display: inline-block;
	margin-bottom: var(--zan-space-3);
}

.zan-incl { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-4); }
.zan-incl__col h3 { font-size: var(--zan-step-1); margin-bottom: var(--zan-space-2); }

/* Itinerary */
.zan-itinerary { list-style: none; margin: 0; padding: 0; }
.zan-itinerary__step {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: .3rem;
	padding: 0 0 var(--zan-space-4) var(--zan-space-4);
	border-left: 2px solid var(--zan-sand-dark);
}
.zan-itinerary__step:last-child { padding-bottom: 0; border-left-color: transparent; }
.zan-itinerary__step::before {
	content: "";
	position: absolute;
	left: -7px; top: 6px;
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--zan-gold);
	box-shadow: 0 0 0 3px var(--zan-white);
}
.zan-itinerary__time {
	font-size: var(--zan-step--1);
	font-weight: 800;
	letter-spacing: .06em;
	color: var(--zan-gold-dark);
	text-transform: uppercase;
}
.zan-itinerary__title { font-size: var(--zan-step-1); margin: 0 0 .2rem; }
.zan-itinerary__text { margin: 0; color: var(--zan-muted); }

/* Gallery */
.zan-gallery-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--zan-space-2);
}
.zan-gallery-grid img { border-radius: var(--zan-radius-sm); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* Map */
.zan-map {
	background: var(--zan-sand);
	border: 1px dashed var(--zan-line);
	border-radius: var(--zan-radius);
	padding: var(--zan-space-4);
	text-align: center;
}
.zan-map iframe { width: 100%; min-height: 380px; border: 0; border-radius: var(--zan-radius-sm); }
.zan-map__note { margin: var(--zan-space-2) 0 0; font-size: var(--zan-step--1); color: var(--zan-muted); }

/* Booking rail */
.zan-rail { position: relative; }
.zan-rail__inner { position: sticky; top: calc(var(--zan-header-offset, var(--zan-header-h)) + 1rem); }

/* Notices */
.zan-notice {
	border-radius: var(--zan-radius-sm);
	padding: var(--zan-space-3);
	margin: 0 0 var(--zan-space-4);
	font-size: var(--zan-step--1);
	line-height: 1.6;
}
.zan-notice--review { background: #fdf4e3; border: 1px solid #eccf94; color: #6b4a10; }
.zan-notice p:last-child { margin-bottom: 0; }

/* ==============================================  11. Editorial content == */

.zan-entry { padding: var(--zan-space-5) 0 var(--zan-space-6); }
.zan-entry__header { margin-bottom: var(--zan-space-4); }
.zan-entry__title { font-size: var(--zan-step-4); text-wrap: balance; }
.zan-entry__meta { color: var(--zan-muted); font-size: var(--zan-step--1); }

.zan-prose { max-width: 72ch; }
.zan-prose h2 { font-size: var(--zan-step-2); margin-top: var(--zan-space-5); }
.zan-prose h3 { font-size: var(--zan-step-1); margin-top: var(--zan-space-4); }
.zan-prose ul, .zan-prose ol { margin: 0 0 var(--zan-space-3); padding-left: 1.3rem; }
.zan-prose li { margin-bottom: .4rem; }
.zan-prose img { border-radius: var(--zan-radius); margin: var(--zan-space-4) 0; }
.zan-prose blockquote {
	margin: var(--zan-space-4) 0;
	padding: var(--zan-space-3) var(--zan-space-4);
	border-left: 3px solid var(--zan-gold);
	background: var(--zan-sand);
	border-radius: 0 var(--zan-radius-sm) var(--zan-radius-sm) 0;
	font-style: italic;
}
.zan-prose table { margin: var(--zan-space-4) 0; font-size: var(--zan-step--1); }
.zan-prose th, .zan-prose td { padding: .6rem .8rem; border-bottom: 1px solid var(--zan-line); text-align: left; }

.zan-page-hero {
	background: var(--zan-sand);
	padding: var(--zan-space-5) 0;
	border-bottom: 1px solid var(--zan-line);
}
.zan-page-hero__title { margin-bottom: var(--zan-space-2); }
.zan-page-hero__intro { color: var(--zan-muted); font-size: var(--zan-step-1); max-width: 62ch; margin: 0; }

.zan-archive-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--zan-space-2);
	margin-bottom: var(--zan-space-4);
	padding: 0;
	list-style: none;
}
.zan-archive-filters a {
	display: inline-block;
	padding: .45rem .95rem;
	border: 1px solid var(--zan-line);
	border-radius: var(--zan-radius-pill);
	background: #fff;
	color: var(--zan-ocean);
	text-decoration: none;
	font-size: var(--zan-step--1);
	font-weight: 600;
}
.zan-archive-filters a:hover,
.zan-archive-filters .is-current a {
	background: var(--zan-ocean);
	border-color: var(--zan-ocean);
	color: #fff;
}

.zan-pagination { margin-top: var(--zan-space-5); }
.zan-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 .6rem;
	margin: 0 .15rem;
	border: 1px solid var(--zan-line);
	border-radius: var(--zan-radius-sm);
	text-decoration: none;
	color: var(--zan-ocean);
	font-weight: 600;
}
.zan-pagination .page-numbers.current,
.zan-pagination .page-numbers:hover { background: var(--zan-ocean); color: #fff; border-color: var(--zan-ocean); }

.zan-empty-state {
	padding: var(--zan-space-6) var(--zan-space-4);
	text-align: center;
	background: var(--zan-sand);
	border-radius: var(--zan-radius);
}

/* ================================  12. Footer and sticky actions ========= */

.zan-footer {
	background: var(--zan-ocean-deep);
	color: rgba(255, 255, 255, .78);
	padding: var(--zan-space-6) 0 var(--zan-space-5);
	font-size: var(--zan-step--1);
}
.zan-footer__columns { display: grid; grid-template-columns: 1fr; gap: var(--zan-space-5); }
.zan-footer__brand { color: #fff; font-size: var(--zan-step-1); margin-bottom: var(--zan-space-2); }
.zan-footer__about { line-height: 1.7; }
.zan-footer__title {
	color: var(--zan-gold-soft);
	font-family: var(--zan-font-body);
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: var(--zan-space-3);
}
.zan-footer__menu, .zan-footer__social, .zan-footer__legal { list-style: none; margin: 0; padding: 0; }
.zan-footer__menu li { margin-bottom: .55rem; }
.zan-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.zan-footer a:hover { color: #fff; text-decoration: underline; }
.zan-footer__social { display: flex; flex-wrap: wrap; gap: var(--zan-space-3); margin-top: var(--zan-space-3); }
.zan-footer__address { font-style: normal; display: grid; gap: .35rem; margin-bottom: var(--zan-space-3); }
.zan-footer__line { display: block; }

.zan-footer__base {
	margin-top: var(--zan-space-5);
	padding-top: var(--zan-space-4);
	border-top: 1px solid rgba(255, 255, 255, .14);
	display: grid;
	gap: var(--zan-space-3);
}
.zan-footer__copy { margin: 0; }
.zan-footer__legal { display: flex; flex-wrap: wrap; gap: var(--zan-space-3); }

/* Sticky CTA on product pages */
.zan-sticky-cta {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--zan-space-3);
	padding: .65rem var(--zan-space-3);
	background: var(--zan-white);
	border-top: 1px solid var(--zan-line);
	box-shadow: 0 -6px 22px rgba(31, 43, 51, .12);
	padding-bottom: calc(.65rem + env(safe-area-inset-bottom, 0px));
}
.zan-sticky-cta__price { display: flex; flex-direction: column; line-height: 1.15; }
.zan-sticky-cta__label {
	font-size: .64rem;
	letter-spacing: .13em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--zan-muted);
}
.zan-sticky-cta__value { font-family: var(--zan-font-display); font-size: var(--zan-step-1); color: var(--zan-ocean); font-weight: 700; }
.zan-sticky-cta__actions { display: flex; gap: .5rem; }

body.has-sticky-cta { padding-bottom: 74px; }

/* Floating WhatsApp on non-product pages */
.zan-float-wa {
	position: fixed;
	right: var(--zan-space-3);
	bottom: var(--zan-space-3);
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .8rem 1.1rem;
	border-radius: var(--zan-radius-pill);
	background: var(--zan-whatsapp);
	color: #06301a;
	font-weight: 800;
	text-decoration: none;
	box-shadow: var(--zan-shadow-lg);
}
.zan-float-wa:hover { background: #1fbb5a; color: #06301a; }

/* =========================================  13. Utilities and states ===== */

.zan-hidden { display: none !important; }
body.zan-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
	.zan-btn:hover { transform: none; }
}

@media print {
	.zan-header, .zan-footer, .zan-sticky-cta, .zan-float-wa, .zan-final-cta, .zan-form-wrap { display: none !important; }
	body { color: #000; }
}

/* ======================================================  14. Breakpoints = */

@media (min-width: 600px) {
	.zan-container { padding-inline: var(--zan-space-4); }
	.zan-hero__actions { flex-direction: row; }
	.zan-final-cta__actions { flex-direction: row; justify-content: center; }
	.zan-trust__list { grid-template-columns: repeat(2, 1fr); }
	.zan-grid { grid-template-columns: repeat(2, 1fr); }
	.zan-why { grid-template-columns: repeat(2, 1fr); }
	.zan-duo { grid-template-columns: repeat(2, 1fr); }
	.zan-destinations { grid-template-columns: repeat(3, 1fr); }
	.zan-gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.zan-incl { grid-template-columns: repeat(2, 1fr); }
	.zan-facts { grid-template-columns: repeat(4, 1fr); }
	.zan-product-hero__actions { flex-direction: row; flex-wrap: wrap; }
	.zan-itinerary__step { grid-template-columns: 110px 1fr; gap: var(--zan-space-3); }
	.zan-footer__columns { grid-template-columns: repeat(2, 1fr); }
	.zan-footer__base { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 900px) {
	.zan-section { padding: var(--zan-space-7) 0; }
	.zan-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.zan-grid--4 { grid-template-columns: repeat(4, 1fr); }
	.zan-trust__list { grid-template-columns: repeat(3, 1fr); }
	.zan-why { grid-template-columns: repeat(3, 1fr); }
	.zan-tailor { grid-template-columns: 1.4fr 1fr; }
	.zan-footer__columns { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; }
	.zan-destinations { grid-template-columns: repeat(5, 1fr); }
	.zan-product__layout { grid-template-columns: minmax(0, 1.9fr) minmax(320px, 1fr); }
	.zan-product-hero__media { aspect-ratio: 21 / 9; }
}

/* Small phones: keep the bar compact so the hero starts higher. */
@media (max-width: 419px) {
	:root { --zan-header-h: 60px; }
	.zan-header__inner { gap: var(--zan-space-2); }
	.zan-search-toggle { display: none; }
	.zan-nav { padding-inline: var(--zan-space-3); }
}

/* Tablets: the drawer becomes a panel, and the utility bar appears. */
@media (min-width: 720px) {
	.zan-topbar { display: block; }
	.zan-header__cta { display: inline-flex; }
	.zan-nav { border-radius: var(--zan-radius) 0 0 0; }
}

/* ------------------------------------------------- Desktop navigation --- */

@media (min-width: 1024px) {
	:root { --zan-header-h: 78px; }

	.zan-burger { display: none; }
	.zan-nav-scrim { display: none; }
	.zan-nav__foot { display: none; }

	/* Brand | menu | actions. The centre column absorbs the slack, so the
	   menu stays centred whatever the brand or the button row measures. */
	.zan-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: var(--zan-space-4);
	}
	.zan-brand { margin-right: 0; }

	.zan-nav {
		position: static;
		width: auto;
		min-width: 0;
		inset: auto;
		transform: none;
		visibility: visible;
		overflow: visible;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
		z-index: auto;
	}

	.zan-menu {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		gap: .1rem;
	}

	.zan-menu__item--depth-0 { border-bottom: 0; }
	.zan-menu__item--depth-0 > .zan-menu__link {
		font-family: var(--zan-font-body);
		font-size: clamp(.82rem, .55vw + .45rem, .95rem);
		font-weight: 700;
		padding: 1.5rem .62rem;
		white-space: nowrap;
		border-radius: 0;
	}
	.zan-menu__item--parent > .zan-menu__link { padding-right: 1.5rem; }
	.zan-menu__item--depth-0 > .zan-menu__link:hover { color: var(--zan-ocean-mid); }

	/* Gold indicator, positioned on the item so the chevron never shifts it. */
	.zan-menu__item--depth-0::after {
		content: "";
		position: absolute;
		left: .55rem;
		right: .55rem;
		bottom: 15px;
		height: 2px;
		background: var(--zan-gold);
		transform: scaleX(0);
		transition: transform .18s ease;
		pointer-events: none;
	}
	.zan-menu__item--depth-0:hover::after,
	.zan-menu__item--depth-0:focus-within::after,
	.zan-menu__item--depth-0.current-menu-item::after,
	.zan-menu__item--depth-0.current-menu-parent::after,
	.zan-menu__item--depth-0.current-menu-ancestor::after,
	.zan-menu__item--depth-0.current_page_parent::after { transform: scaleX(1); }

	/* Hover opens the panel, so the button is there for keyboard users only. */
	.zan-menu__toggle {
		top: 50%;
		right: .1rem;
		transform: translateY(-50%);
		width: 18px; height: 22px;
		pointer-events: none;
		background: transparent;
	}
	.zan-menu__toggle:hover { background: transparent; }
	.zan-menu__item--parent:focus-within > .zan-menu__toggle { pointer-events: auto; }
	.zan-menu__chevron { width: 7px; height: 7px; }

	/* Dropdown panels */
	.zan-submenu--mega {
		display: grid;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%) translateY(10px);
		width: max-content;
		min-width: 250px;
		max-width: min(660px, calc(100vw - 3rem));
		grid-template-columns: 1fr;
		gap: 1px var(--zan-space-4);
		padding: var(--zan-space-3);
		background: #fff;
		border: 1px solid var(--zan-line);
		border-radius: var(--zan-radius);
		box-shadow: var(--zan-shadow-lg);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .16s ease, transform .16s ease;
		z-index: 40;
	}
	/* Invisible bridge so the pointer can travel from item to panel. */
	.zan-submenu--mega::before {
		content: "";
		position: absolute;
		left: 0; right: 0;
		top: -12px;
		height: 12px;
	}
	.zan-menu__item--parent:hover > .zan-submenu--mega,
	.zan-menu__item--parent:focus-within > .zan-submenu--mega,
	.zan-menu__item--parent.is-open > .zan-submenu--mega {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
	}

	/* The last item sits close to the right edge, so its panel aligns right. */
	.zan-menu__item--depth-0:last-child > .zan-submenu--mega {
		left: auto;
		right: 0;
		transform: translateX(0) translateY(10px);
	}
	.zan-menu__item--depth-0:last-child:hover > .zan-submenu--mega,
	.zan-menu__item--depth-0:last-child:focus-within > .zan-submenu--mega,
	.zan-menu__item--depth-0:last-child.is-open > .zan-submenu--mega {
		transform: translateX(0) translateY(0);
	}

	.zan-submenu--mega.has-many { grid-template-columns: repeat(2, minmax(190px, 1fr)); }
	.zan-submenu .zan-menu__link {
		padding: .48rem .6rem;
		border-radius: var(--zan-radius-sm);
		font-size: .9rem;
	}

	/* Sticky CTA becomes a desktop rail instead */
	.zan-sticky-cta { display: none; }
	body.has-sticky-cta { padding-bottom: 0; }

	.zan-hero { min-height: 86svh; }
	.zan-section__head { margin-bottom: var(--zan-space-6); }
}

/* Wide desktops have room for the WhatsApp button beside the quote button. */
@media (min-width: 1200px) {
	.zan-header__wa { display: inline-flex; }
	.zan-menu__item--depth-0 > .zan-menu__link { padding-inline: .8rem; }
	.zan-menu__item--parent > .zan-menu__link { padding-right: 1.7rem; }
	.zan-menu__item--depth-0::after { left: .8rem; right: .8rem; }
}
