/**
 * Land Tour Ladakh — luxury travel design system.
 *
 * 1.  Tokens
 * 2.  Base & typography
 * 3.  Layout primitives
 * 4.  Buttons & badges
 * 5.  Header & navigation
 * 6.  Hero
 * 7.  Section headings
 * 8.  Tour cards & grids
 * 9.  Features / why-us
 * 10. Destinations mosaic
 * 11. Testimonials
 * 12. Enquiry form
 * 13. Single tour page
 * 14. Archive & taxonomy
 * 15. Footer
 * 16. Utilities, reveal, blog
 * 17. Responsive
 */

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

:root {
	/* Brand palette — deep himalayan indigo + warm brass */
	--c-ink:        #0d1b2a;
	--c-ink-soft:   #16283c;
	--c-ink-deep:   #070f18;
	--c-brass:      #c8973f;
	--c-brass-lt:   #e0b969;
	--c-brass-dk:   #a97a2b;
	--c-teal:       #1f6f6b;
	--c-teal-lt:    #2f9d96;
	--c-cream:      #fbf8f3;
	--c-cream-2:    #f4efe6;
	--c-sand:       #e8dfd0;
	--c-white:      #ffffff;

	--c-text:       #1c2733;
	--c-text-soft:  #5b6879;
	--c-text-mute:  #8a95a3;
	--c-line:       #e5e0d6;
	--c-line-soft:  #f0ece4;

	/* Gradients */
	--g-brass:  linear-gradient(135deg, #e0b969 0%, #c8973f 50%, #a97a2b 100%);
	--g-ink:    linear-gradient(160deg, #16283c 0%, #0d1b2a 55%, #070f18 100%);
	--g-glass:  linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
	--g-fade:   linear-gradient(to top, rgba(7, 15, 24, .92) 0%, rgba(7, 15, 24, .55) 42%, rgba(7, 15, 24, 0) 78%);

	/* Type */
	--f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--f-body:    "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--fs-hero:  clamp(2.6rem, 6.4vw, 5.6rem);
	--fs-h1:    clamp(2.2rem, 4.6vw, 3.9rem);
	--fs-h2:    clamp(1.9rem, 3.6vw, 3.1rem);
	--fs-h3:    clamp(1.35rem, 2.1vw, 1.85rem);
	--fs-h4:    clamp(1.1rem, 1.5vw, 1.3rem);
	--fs-body:  clamp(.975rem, 1.05vw, 1.06rem);
	--fs-sm:    .875rem;
	--fs-xs:    .78rem;

	/* Space */
	--sp-section: clamp(4.5rem, 8vw, 9rem);
	--sp-gutter:  clamp(1.15rem, 4vw, 2.5rem);
	--maxw:       1280px;
	--maxw-narrow: 820px;

	/* Radius & shadow */
	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 22px;
	--r-xl: 32px;
	--r-pill: 999px;

	--sh-sm: 0 2px 10px rgba(13, 27, 42, .06);
	--sh-md: 0 12px 34px -12px rgba(13, 27, 42, .16);
	--sh-lg: 0 28px 64px -20px rgba(13, 27, 42, .26);
	--sh-xl: 0 44px 96px -32px rgba(13, 27, 42, .38);
	--sh-brass: 0 16px 40px -14px rgba(200, 151, 63, .5);

	--ease:      cubic-bezier(.22, .61, .36, 1);
	--ease-out:  cubic-bezier(.16, 1, .3, 1);
	--t-fast:    .22s var(--ease);
	--t-base:    .38s var(--ease);
	--t-slow:    .7s var(--ease-out);

	--header-h: 96px;
}

/* ==========================================================================
   2. Base & typography
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body.landtour {
	margin: 0;
	background: var(--c-cream);
	color: var(--c-text);
	font-family: var(--f-body);
	font-size: var(--fs-body);
	font-weight: 400;
	line-height: 1.72;
	letter-spacing: .002em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* Lock the page behind the drawer. The drawer itself keeps its own scrolling
   (it sets overscroll-behavior: contain), so touch-action is left alone here —
   setting it on body would also kill scrolling inside the panel. */
body.nav-open { overflow: hidden; }

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

/* Overflow guards: long route strings, URLs and tour titles must wrap rather
   than push the page sideways. */
h1, h2, h3, h4, h5, p, li, td, th, figcaption, blockquote, a {
	overflow-wrap: break-word;
	word-wrap: break-word;
}

/* Wide content scrolls inside its own box, never the body. */
table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
pre { overflow-x: auto; max-width: 100%; }

a {
	color: var(--c-teal);
	text-decoration: none;
	transition: color var(--t-fast);
}

a:hover { color: var(--c-brass-dk); }

h1, h2, h3, h4, h5 {
	font-family: var(--f-display);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -.015em;
	color: var(--c-ink);
	margin: 0 0 .6em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--f-body); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }

blockquote {
	margin: 2rem 0;
	padding: 1.4rem 1.8rem;
	border-left: 3px solid var(--c-brass);
	background: var(--c-cream-2);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-family: var(--f-display);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--c-ink-soft);
}

::selection { background: var(--c-brass); color: #fff; }

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 100000;
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
	padding: .8rem 1.4rem;
	background: var(--c-ink);
	color: #fff;
	border-radius: var(--r-pill);
	font-size: var(--fs-sm);
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

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

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--sp-gutter);
}

.container--narrow { max-width: var(--maxw-narrow); }
.container--wide { max-width: 1560px; }

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 5vw, 5rem); }
.section--cream { background: var(--c-cream-2); }
.section--white { background: var(--c-white); }

.section--ink {
	background: var(--g-ink);
	color: rgba(255, 255, 255, .82);
}

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: #fff; }

/* Decorative topography texture */
.section--texture::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .5;
	background-image:
		radial-gradient(circle at 12% 18%, rgba(200, 151, 63, .09), transparent 42%),
		radial-gradient(circle at 88% 74%, rgba(31, 111, 107, .08), transparent 46%);
}

.section > .container { position: relative; z-index: 1; }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ==========================================================================
   4. Buttons & badges
   ========================================================================== */

.btn {
	--btn-bg: var(--c-ink);
	--btn-fg: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6em;
	padding: .95em 1.9em;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--f-body);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: transform var(--t-base), box-shadow var(--t-base), color var(--t-fast);
	-webkit-tap-highlight-color: transparent;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--g-brass);
	opacity: 0;
	transition: opacity var(--t-base);
}

.btn:hover {
	color: var(--btn-fg);
	transform: translateY(-3px);
	box-shadow: var(--sh-brass);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px); }

.btn .icon { width: 1.15em; height: 1.15em; }

.btn--brass {
	--btn-bg: transparent;
	background: var(--g-brass);
	color: #fff;
	box-shadow: 0 10px 26px -12px rgba(200, 151, 63, .6);
}

.btn--brass::after { background: var(--c-ink); }

.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--c-ink);
	box-shadow: inset 0 0 0 1.5px var(--c-ink);
}

.btn--ghost:hover { --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px transparent, var(--sh-brass); }

.btn--light {
	--btn-bg: transparent;
	--btn-fg: #fff;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .5);
	backdrop-filter: blur(8px);
}

.btn--light:hover { box-shadow: inset 0 0 0 1.5px transparent, var(--sh-brass); }

.btn--white {
	--btn-bg: #fff;
	--btn-fg: var(--c-ink);
}

.btn--white:hover { --btn-fg: #fff; }

.btn--sm { padding: .72em 1.4em; font-size: var(--fs-xs); }
.btn--lg { padding: 1.1em 2.4em; font-size: .92rem; }
.btn--block { width: 100%; }

/* Text link with animated arrow */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .55em;
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--c-ink);
}

.link-arrow .icon { transition: transform var(--t-base); }
.link-arrow:hover { color: var(--c-brass-dk); }
.link-arrow:hover .icon { transform: translateX(6px); }

.badge {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .45em 1em;
	border-radius: var(--r-pill);
	background: var(--g-brass);
	color: #fff;
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

.badge--glass {
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(10px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.badge--teal { background: var(--c-teal); }

/* ==========================================================================
   5. Header & navigation
   ========================================================================== */

.topbar {
	background: var(--c-ink-deep);
	color: rgba(255, 255, 255, .74);
	font-size: var(--fs-xs);
	letter-spacing: .04em;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 42px;
	padding-block: .4rem;
}

.topbar__list {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.topbar a { color: inherit; display: inline-flex; align-items: center; gap: .5em; }
.topbar a:hover { color: var(--c-brass-lt); }
.topbar .icon { width: 14px; height: 14px; color: var(--c-brass); }

.topbar__marquee {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	color: var(--c-brass-lt);
	font-weight: 500;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid var(--c-line-soft);
	transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--header-h);
}

.site-header.is-stuck {
	box-shadow: var(--sh-md);
	background: rgba(255, 255, 255, .96);
}

/* backdrop-filter makes the header a containing block, which traps the
   position:fixed mobile drawer inside its 84px box. Dropping only the filter
   frees the drawer without changing the header's own layout, so the page
   does not shift when the menu opens. */
body.nav-open .site-header {
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

/* Transparent header over the hero.
   Stays `sticky` (never `fixed`): a fixed header leaves the document flow, so
   the topbar stops reserving space and the two overlap — and combined with
   backdrop-filter it becomes a containing block that traps the position:fixed
   mobile drawer inside the 84px header box. The hero is pulled up beneath it
   instead (see `.is-home .hero`), which keeps the same look in flow. */
.is-home .site-header,
.has-hero .site-header {
	position: sticky;
	background: transparent;
	backdrop-filter: none;
	border-bottom-color: transparent;
}

/* Slide the hero up under the transparent header. Applied to the hero rather
   than as a negative margin on the sticky header, which would fight the
   sticky offset. The explicit z-index keeps the hero's own stacking context
   (it sets `isolation: isolate`) painting *below* the header. */
.is-home .hero,
.has-hero .page-hero {
	margin-top: calc(var(--header-h) * -1);
	z-index: 1;
}

/* White header text over the hero. Scoped with :not(.nav-open) because the
   mobile drawer has a white background — without it every drawer link is
   white-on-white and the panel looks empty. */
body:not(.nav-open).is-home .site-header:not(.is-stuck) .nav__menu > li > a,
body:not(.nav-open).has-hero .site-header:not(.is-stuck) .nav__menu > li > a,
.is-home .site-header:not(.is-stuck) .brand__name,
.has-hero .site-header:not(.is-stuck) .brand__name { color: #fff; }

.is-home .site-header:not(.is-stuck) .brand__tag,
.has-hero .site-header:not(.is-stuck) .brand__tag { color: rgba(255, 255, 255, .72); }

/* The burger sits on the hero, so it is white — but once the drawer opens the
   close button is on white, so it must go dark again. */
body:not(.nav-open).is-home .site-header:not(.is-stuck) .nav-toggle span,
body:not(.nav-open).has-hero .site-header:not(.is-stuck) .nav-toggle span { background: #fff; }

.is-home .site-header.is-stuck,
.has-hero .site-header.is-stuck {
	background: rgba(255, 255, 255, .96);
	border-bottom-color: var(--c-line-soft);
	backdrop-filter: blur(18px) saturate(160%);
}

/* Brand */
.brand {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	flex: 0 0 auto;
}

.brand__mark {
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--g-brass);
	display: grid;
	place-items: center;
	color: #fff;
	box-shadow: var(--sh-brass);
}

.brand__mark .icon { width: 24px; height: 24px; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }

.brand__name {
	font-family: var(--f-display);
	font-size: 1.42rem;
	font-weight: 600;
	letter-spacing: -.01em;
	color: var(--c-ink);
	transition: color var(--t-base);
}

.brand__tag {
	font-size: .62rem;
	font-weight: 500;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--c-text-mute);
	transition: color var(--t-base);
}

.brand img { max-height: 54px; width: auto; }

/* Primary nav */
.nav {
	display: flex;
	align-items: center;
	gap: clamp(.4rem, 1.4vw, 1.1rem);
	min-width: 0;
	flex: 1 1 auto;
	justify-content: flex-end;
}

.nav__menu {
	display: flex;
	align-items: center;
	gap: clamp(.1rem, .55vw, .5rem);
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
	flex-wrap: nowrap;
}

.nav__menu li { position: relative; }

/* Never let the brand or the actions be squeezed into overflow. */
.site-header__inner > .brand,
.brand { flex: 0 0 auto; min-width: 0; }
.nav__actions { flex: 0 0 auto; }

/* Top-level links only. `.nav__link` must stay scoped to direct children —
   unscoped it leaked the uppercase styling and the underline pseudo-element
   into every dropdown row. */
.nav__menu > li > .nav__link,
.nav__menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .65rem clamp(.5rem, .95vw, .85rem);
	font-size: clamp(.78rem, .82vw, .845rem);
	font-weight: 500;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--c-ink);
	white-space: nowrap;
	position: relative;
	transition: color var(--t-fast);
}

.nav__menu > li > a::after {
	content: "";
	position: absolute;
	left: clamp(.5rem, .95vw, .85rem);
	right: clamp(.5rem, .95vw, .85rem);
	bottom: .42rem;
	height: 1.5px;
	background: var(--c-brass);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--t-base);
}

/* Hover/focus only — deliberately NOT the current-menu-* classes.
   The "Why Us", "Reviews" and "Contact" items are same-page anchors
   (home_url('/#why-us')), so WordPress marks all three as the current item on
   the front page at once and every underline would sit there permanently. */
.nav__menu > li > a:hover::after,
.nav__menu > li > a:focus-visible::after { transform: scaleX(1); }

.nav__menu > li > a:hover { color: var(--c-brass-dk); }

/* Caret on top-level parents only. Left unscoped this rendered as a stray
   vertical bar on every dropdown row (a rotated 6px box on a display:block
   anchor), which is exactly the artefact reported. */
.nav__menu > li.menu-item-has-children > a::before {
	content: "";
	order: 2;
	width: 6px;
	height: 6px;
	flex: 0 0 auto;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	opacity: .55;
	margin-left: .15em;
}

/* Dropdown — desktop only.
   Wrapped in a min-width media query on purpose: these rules position the
   panel absolutely and translate it by -50%. Left unscoped, the `:hover`
   variant (higher specificity than the drawer's own rules) kept winning inside
   the mobile drawer and shoved the open submenu half its width off-panel, so
   the rows were there but rendered outside the visible area. */
@media (min-width: 1301px) {
	.nav__menu ul.sub-menu {
		position: absolute;
		top: calc(100% + 10px);
		left: 50%;
		transform: translate(-50%, 10px);
		min-width: 250px;
		margin: 0;
		padding: .6rem;
		list-style: none;
		background: #fff;
		border: 1px solid var(--c-line-soft);
		border-radius: var(--r-md);
		box-shadow: var(--sh-lg);
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
		z-index: 30;
	}

	.nav__menu li:hover > ul.sub-menu,
	.nav__menu li:focus-within > ul.sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
	}
}

/* Dropdown rows. Raised specificity so the inherited _s navigation rules in
   style.css cannot win, and any stray pseudo-element is cleared. */
.nav__menu ul.sub-menu li > a,
.nav__menu ul.sub-menu li > .nav__link {
	display: block;
	width: 100%;
	padding: .7rem .95rem;
	border: 0;
	border-radius: var(--r-sm);
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .02em;
	text-transform: none;
	white-space: normal;
	color: var(--c-text);
	transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}

.nav__menu ul.sub-menu li > a::after,
.nav__menu ul.sub-menu li > a::before {
	content: none;
	display: none;
}

.nav__menu ul.sub-menu a:hover {
	background: var(--c-cream-2);
	color: var(--c-brass-dk);
	padding-left: 1.25rem;
}

.nav__actions { display: flex; align-items: center; gap: .7rem; }

.nav__call {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding-right: .3rem;
	flex: 0 0 auto;
	line-height: 1.2;
}

/* The wrapper stacks the label above the number. Styling it via a bare
   `span` selector also hit this wrapper, inflating it until it overlapped
   the menu — hence the explicit classes. */
.nav__call-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.nav__call .icon { width: 34px; height: 34px; flex: 0 0 auto; padding: 8px; border-radius: 50%; background: var(--c-cream-2); color: var(--c-brass-dk); }
.nav__call-label { display: block; font-size: .58rem; line-height: 1.3; letter-spacing: .18em; text-transform: uppercase; color: var(--c-text-mute); white-space: nowrap; }
.nav__call strong { display: block; font-size: .95rem; line-height: 1.25; font-weight: 600; color: var(--c-ink); letter-spacing: .01em; white-space: nowrap; }

body:not(.nav-open).is-home .site-header:not(.is-stuck) .nav__call-label { color: rgba(255, 255, 255, .66); }
body:not(.nav-open).is-home .site-header:not(.is-stuck) .nav__call strong { color: #fff; }
body:not(.nav-open).is-home .site-header:not(.is-stuck) .nav__call .icon { background: rgba(255, 255, 255, .16); color: #fff; }
body:not(.nav-open).has-hero .site-header:not(.is-stuck) .nav__call-label { color: rgba(255, 255, 255, .66); }
body:not(.nav-open).has-hero .site-header:not(.is-stuck) .nav__call strong { color: #fff; }
body:not(.nav-open).has-hero .site-header:not(.is-stuck) .nav__call .icon { background: rgba(255, 255, 255, .16); color: #fff; }

/* Burger */
.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
	border-radius: var(--r-sm);
}

.nav-toggle span {
	position: absolute;
	left: 11px;
	width: 24px;
	height: 2px;
	background: var(--c-ink);
	border-radius: 2px;
	transition: transform var(--t-base), opacity var(--t-fast), background var(--t-base);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 940;
	background: rgba(7, 15, 24, .5);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--t-base), visibility var(--t-base);
}

body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* Hide the floating widgets while the drawer is open — they sit under the
   overlay and only add visual noise. */
body.nav-open .float-actions,
body.nav-open .mobile-book { opacity: 0; visibility: hidden; pointer-events: none; }

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: min(100svh, 900px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--c-ink-deep);
	color: #fff;
	isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; z-index: 0; }

.hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s var(--ease-out);
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transition: transform 9s linear;
	will-change: transform;
}

.hero__slide.is-active img { transform: scale(1); }

.hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(7, 15, 24, .88) 0%, rgba(7, 15, 24, .55) 45%, rgba(7, 15, 24, .28) 100%),
		linear-gradient(to top, rgba(7, 15, 24, .8), transparent 55%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	padding-block: calc(var(--header-h) + 4rem) clamp(6rem, 12vw, 9rem);
	max-width: 780px;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	margin-bottom: 1.6rem;
	padding: .55rem 1.15rem;
	border-radius: var(--r-pill);
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(12px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #fff;
}

.hero__eyebrow .icon { width: 15px; height: 15px; color: var(--c-brass-lt); }

.hero__title {
	font-size: var(--fs-hero);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -.03em;
	color: #fff;
	margin: 0 0 1.3rem;
	text-shadow: 0 4px 40px rgba(0, 0, 0, .35);
}

.hero__title em {
	font-style: italic;
	color: var(--c-brass-lt);
	display: block;
}

.hero__text {
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, .84);
	max-width: 58ch;
	margin: 0 0 2.4rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* Slide text animation */
.hero__content { display: none; }
.hero__content.is-active { display: block; }
.hero__content.is-active > * { animation: heroUp .95s var(--ease-out) both; }
.hero__content.is-active > *:nth-child(1) { animation-delay: .1s; }
.hero__content.is-active > *:nth-child(2) { animation-delay: .22s; }
.hero__content.is-active > *:nth-child(3) { animation-delay: .34s; }
.hero__content.is-active > *:nth-child(4) { animation-delay: .46s; }

@keyframes heroUp {
	from { opacity: 0; transform: translateY(38px); }
	to { opacity: 1; transform: none; }
}

/* Hero controls */
.hero__nav {
	position: absolute;
	z-index: 3;
	bottom: clamp(1.8rem, 4vw, 3rem);
	right: var(--sp-gutter);
	display: flex;
	align-items: center;
	gap: .7rem;
}

.hero__arrow {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .26);
	color: #fff;
	cursor: pointer;
	transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.hero__arrow:hover { background: var(--g-brass); box-shadow: var(--sh-brass); transform: scale(1.07); }
.hero__arrow--prev .icon { transform: rotate(180deg); }

.hero__dots {
	position: absolute;
	z-index: 3;
	bottom: clamp(1.8rem, 4vw, 3rem);
	left: var(--sp-gutter);
	display: flex;
	align-items: center;
	gap: .8rem;
}

.hero__dot {
	width: 42px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: background var(--t-fast);
}

.hero__dot::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--c-brass-lt);
	transform: scaleX(0);
	transform-origin: left;
}

.hero__dot.is-active::after { animation: dotFill 6s linear forwards; }

@keyframes dotFill {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

/* Scroll cue */
.hero__scroll {
	position: absolute;
	z-index: 3;
	bottom: clamp(1.8rem, 4vw, 3rem);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	font-size: .6rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
}

.hero__scroll::after {
	content: "";
	width: 1px;
	height: 46px;
	background: linear-gradient(to bottom, var(--c-brass-lt), transparent);
	animation: scrollCue 2.2s ease-in-out infinite;
}

@keyframes scrollCue {
	0%, 100% { opacity: .35; transform: scaleY(.6); }
	50% { opacity: 1; transform: scaleY(1); }
}

/* Trust strip below hero */
.trustbar {
	background: var(--c-white);
	border-bottom: 1px solid var(--c-line-soft);
	position: relative;
	z-index: 5;
}

.trustbar__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--c-line-soft);
}

.trustbar__item {
	background: #fff;
	padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1rem, 2vw, 1.8rem);
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: background var(--t-base);
}

.trustbar__item:hover { background: var(--c-cream); }

.trustbar__item .icon {
	width: 40px;
	height: 40px;
	padding: 9px;
	border-radius: 50%;
	background: var(--c-cream-2);
	color: var(--c-brass-dk);
	transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}

.trustbar__item:hover .icon { background: var(--g-brass); color: #fff; transform: rotate(-8deg) scale(1.06); }

.trustbar__item strong {
	display: block;
	font-family: var(--f-display);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	color: var(--c-ink);
}

.trustbar__item span {
	font-size: var(--fs-xs);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--c-text-mute);
}

/* ==========================================================================
   7. Section headings
   ========================================================================== */

.sec-head { max-width: 660px; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.sec-head--center { margin-inline: auto; text-align: center; }

.sec-head--split {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.sec-head--split > div:first-child { max-width: 660px; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	margin-bottom: 1rem;
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--c-brass-dk);
}

.eyebrow::before {
	content: "";
	width: 34px;
	height: 1.5px;
	background: var(--g-brass);
}

.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::after {
	content: "";
	width: 34px;
	height: 1.5px;
	background: var(--g-brass);
}

.section--ink .eyebrow { color: var(--c-brass-lt); }

.sec-head__title { margin: 0 0 .7rem; }
.sec-head__title em { font-style: italic; color: var(--c-brass-dk); }
.section--ink .sec-head__title em { color: var(--c-brass-lt); }

.sec-head__text {
	font-size: 1.03rem;
	color: var(--c-text-soft);
	margin: 0;
}

.section--ink .sec-head__text { color: rgba(255, 255, 255, .74); }

/* ==========================================================================
   8. Tour cards & grids
   ========================================================================== */

.tour-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: clamp(1.4rem, 2.4vw, 2.1rem);
}

.tour-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh-sm);
	transition: transform var(--t-base), box-shadow var(--t-base);
	height: 100%;
}

.tour-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.tour-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--c-sand);
}

.tour-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease-out);
}

.tour-card:hover .tour-card__media img { transform: scale(1.08); }

.tour-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--g-fade);
	opacity: .85;
}

.tour-card__badges {
	position: absolute;
	z-index: 2;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .5rem;
	flex-wrap: wrap;
}

.tour-card__dur {
	position: absolute;
	z-index: 2;
	bottom: 1rem;
	left: 1rem;
	display: inline-flex;
	align-items: center;
	gap: .45em;
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
}

.tour-card__dur .icon { width: 15px; height: 15px; color: var(--c-brass-lt); }

.tour-card__fav {
	position: absolute;
	z-index: 3;
	top: 1rem;
	right: 1rem;
}

.tour-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: clamp(1.25rem, 2.2vw, 1.7rem);
	gap: .85rem;
}

.tour-card__meta {
	display: flex;
	align-items: center;
	gap: .8rem;
	font-size: var(--fs-xs);
	color: var(--c-text-mute);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.tour-card__title {
	font-size: 1.33rem;
	line-height: 1.24;
	margin: 0;
}

.tour-card__title a { color: var(--c-ink); background-image: linear-gradient(var(--c-brass), var(--c-brass)); background-size: 0 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size var(--t-base), color var(--t-fast); }
.tour-card__title a:hover { color: var(--c-brass-dk); background-size: 100% 1px; }

.tour-card__route {
	display: flex;
	align-items: flex-start;
	gap: .5em;
	font-size: .86rem;
	line-height: 1.55;
	color: var(--c-text-soft);
	margin: 0;
}

.tour-card__route .icon { width: 15px; height: 15px; margin-top: .28em; color: var(--c-teal); }

.tour-card__incl {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-card__incl li {
	display: inline-flex;
	align-items: center;
	gap: .35em;
	padding: .32em .7em;
	border-radius: var(--r-pill);
	background: var(--c-cream-2);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .04em;
	color: var(--c-text-soft);
}

.tour-card__incl .icon { width: 13px; height: 13px; color: var(--c-teal); }

.tour-card__foot {
	margin-top: auto;
	padding-top: 1.05rem;
	border-top: 1px solid var(--c-line-soft);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .8rem;
	flex-wrap: wrap;
}

.tour-card__price { display: flex; flex-direction: column; line-height: 1.2; }
.tour-card__price span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-text-mute); }

.tour-card__price strong {
	font-family: var(--f-display);
	font-size: 1.62rem;
	font-weight: 600;
	color: var(--c-ink);
}

.tour-card__price del { font-size: .85rem; color: var(--c-text-mute); margin-left: .3em; font-weight: 400; }
.tour-card__price em { font-style: normal; font-size: .7rem; color: var(--c-text-mute); }

.tour-card__rating {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	font-size: var(--fs-xs);
	color: var(--c-text-soft);
}

.stars { display: inline-flex; gap: 1px; }
.stars .star { width: 14px; height: 14px; fill: var(--c-line); stroke: none; }
.stars .star.is-on { fill: var(--c-brass); }

/* Featured (wide) card variant */
.tour-card--feature {
	grid-column: span 2;
	flex-direction: row;
}

.tour-card--feature .tour-card__media { aspect-ratio: auto; flex: 0 0 46%; }
.tour-card--feature .tour-card__body { padding: clamp(1.6rem, 3vw, 2.6rem); justify-content: center; }
.tour-card--feature .tour-card__title { font-size: clamp(1.5rem, 2.2vw, 2rem); }

/* Dark card variant on ink sections */
.section--ink .tour-card { background: rgba(255, 255, 255, .045); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09); }
.section--ink .tour-card:hover { background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(200, 151, 63, .34), var(--sh-xl); }
.section--ink .tour-card__title a { color: #fff; }
.section--ink .tour-card__route { color: rgba(255, 255, 255, .68); }
.section--ink .tour-card__incl li { background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .74); }
.section--ink .tour-card__foot { border-top-color: rgba(255, 255, 255, .12); }
.section--ink .tour-card__price strong { color: #fff; }
.section--ink .tour-card__meta,
.section--ink .tour-card__rating { color: rgba(255, 255, 255, .6); }
.section--ink .stars .star { fill: rgba(255, 255, 255, .2); }
.section--ink .stars .star.is-on { fill: var(--c-brass-lt); }
.section--ink .btn--ghost { --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .4); }
.section--ink .link-arrow { color: #fff; }

/* ==========================================================================
   9. Features / why-us
   ========================================================================== */

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(1.1rem, 2vw, 1.8rem);
}

.feature {
	position: relative;
	padding: clamp(1.6rem, 2.6vw, 2.2rem);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-sm);
	overflow: hidden;
	transition: transform var(--t-base), box-shadow var(--t-base);
}

.feature::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: var(--g-brass);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--t-base);
}

.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature:hover::before { transform: scaleX(1); }

.feature__icon {
	width: 58px;
	height: 58px;
	margin-bottom: 1.2rem;
	display: grid;
	place-items: center;
	border-radius: var(--r-md);
	background: var(--c-cream-2);
	color: var(--c-brass-dk);
	transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}

.feature__icon .icon { width: 26px; height: 26px; }
.feature:hover .feature__icon { background: var(--g-brass); color: #fff; transform: rotate(-6deg); }

.feature h3 { font-size: 1.16rem; font-family: var(--f-body); font-weight: 600; letter-spacing: -.005em; margin: 0 0 .55rem; }
.feature p { font-size: .93rem; color: var(--c-text-soft); margin: 0; }

.feature__num {
	position: absolute;
	right: 1.1rem;
	bottom: .3rem;
	font-family: var(--f-display);
	font-size: 4.2rem;
	font-weight: 600;
	line-height: 1;
	color: var(--c-line-soft);
	pointer-events: none;
}

.section--ink .feature { background: rgba(255, 255, 255, .05); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09); }
.section--ink .feature p { color: rgba(255, 255, 255, .7); }
.section--ink .feature__icon { background: rgba(255, 255, 255, .1); color: var(--c-brass-lt); }
.section--ink .feature__num { color: rgba(255, 255, 255, .05); }

/* Split "about" band */
.split {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.split--reverse .split__media { order: 2; }

.split__media { position: relative; }

.split__media-main {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
	aspect-ratio: 4 / 5;
}

.split__media-main img { width: 100%; height: 100%; object-fit: cover; }

.split__media-sub {
	position: absolute;
	right: -8%;
	bottom: -6%;
	width: 46%;
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 8px solid var(--c-cream);
	box-shadow: var(--sh-md);
	aspect-ratio: 1;
}

.split__media-sub img { width: 100%; height: 100%; object-fit: cover; }

.split__stat {
	position: absolute;
	left: -6%;
	top: 8%;
	padding: 1.1rem 1.5rem;
	border-radius: var(--r-md);
	background: var(--c-ink);
	color: #fff;
	box-shadow: var(--sh-lg);
	text-align: center;
}

.split__stat strong { display: block; font-family: var(--f-display); font-size: 2.3rem; line-height: 1; color: var(--c-brass-lt); }
.split__stat span { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }

.split__list { list-style: none; margin: 1.8rem 0 2.2rem; padding: 0; display: grid; gap: .85rem; }

.split__list li {
	display: flex;
	align-items: flex-start;
	gap: .8rem;
	font-size: .96rem;
	color: var(--c-text-soft);
}

.split__list .icon {
	width: 22px;
	height: 22px;
	padding: 4px;
	margin-top: .12em;
	border-radius: 50%;
	background: var(--c-teal);
	color: #fff;
	stroke-width: 3;
}

/* ==========================================================================
   10. Destinations mosaic
   ========================================================================== */

.mosaic {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(180px, auto);
	gap: clamp(.8rem, 1.6vw, 1.2rem);
}

.mosaic__item {
	position: relative;
	display: block;
	border-radius: var(--r-lg);
	overflow: hidden;
	color: #fff;
	background: var(--c-ink);
	min-height: 200px;
	isolation: isolate;
}

.mosaic__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic__item:nth-child(4) { grid-column: span 2; }

.mosaic__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	transition: transform 1.2s var(--ease-out);
}

.mosaic__item::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--g-fade);
	transition: opacity var(--t-base);
}

.mosaic__item:hover img { transform: scale(1.07); }
.mosaic__item:hover::after { opacity: .8; }

.mosaic__body {
	position: absolute;
	inset: auto 0 0 0;
	padding: clamp(1.1rem, 2vw, 1.8rem);
	transition: transform var(--t-base);
}

.mosaic__item:hover .mosaic__body { transform: translateY(-4px); }

.mosaic__body h3 {
	color: #fff;
	font-size: clamp(1.15rem, 1.8vw, 1.7rem);
	margin: 0 0 .25rem;
}

.mosaic__body span {
	font-size: var(--fs-xs);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
	display: inline-flex;
	align-items: center;
	gap: .4em;
}

.mosaic__body .icon { width: 14px; height: 14px; color: var(--c-brass-lt); }

/* ==========================================================================
   11. Testimonials
   ========================================================================== */

.testi-rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(340px, 1fr);
	gap: clamp(1.2rem, 2.2vw, 1.8rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
	scrollbar-width: thin;
}

.testi-rail::-webkit-scrollbar { height: 5px; }
.testi-rail::-webkit-scrollbar-track { background: rgba(255, 255, 255, .1); border-radius: 3px; }
.testi-rail::-webkit-scrollbar-thumb { background: var(--c-brass); border-radius: 3px; }

.testi {
	scroll-snap-align: start;
	position: relative;
	padding: clamp(1.7rem, 2.8vw, 2.4rem);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-sm);
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.section--ink .testi { background: rgba(255, 255, 255, .05); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }

.testi__quote {
	position: absolute;
	top: 1.2rem;
	right: 1.4rem;
	width: 44px;
	height: 44px;
	color: var(--c-line-soft);
	fill: currentColor;
	stroke: none;
}

.section--ink .testi__quote { color: rgba(255, 255, 255, .07); }

.testi p {
	font-family: var(--f-display);
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.66;
	color: var(--c-ink-soft);
	margin: 0;
	flex: 1;
}

.section--ink .testi p { color: rgba(255, 255, 255, .88); }

.testi__foot { display: flex; align-items: center; gap: .9rem; padding-top: 1rem; border-top: 1px solid var(--c-line-soft); }
.section--ink .testi__foot { border-top-color: rgba(255, 255, 255, .12); }

.testi__avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
	box-shadow: 0 0 0 2px var(--c-brass);
}

.testi__who strong { display: block; font-size: .96rem; font-weight: 600; color: var(--c-ink); }
.section--ink .testi__who strong { color: #fff; }
.testi__who span { font-size: var(--fs-xs); color: var(--c-text-mute); }
.section--ink .testi__who span { color: rgba(255, 255, 255, .58); }

/* ==========================================================================
   12. Enquiry form
   ========================================================================== */

.enquiry {
	position: relative;
	overflow: hidden;
	background: var(--g-ink);
	color: rgba(255, 255, 255, .82);
}

.enquiry::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 8% 12%, rgba(200, 151, 63, .2), transparent 40%),
		radial-gradient(circle at 92% 88%, rgba(31, 111, 107, .22), transparent 42%);
	pointer-events: none;
}

.enquiry__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	gap: clamp(2rem, 4.5vw, 4rem);
	align-items: start;
}

.enquiry__aside h2 { color: #fff; }
.enquiry__aside p { color: rgba(255, 255, 255, .74); }

.enquiry__contacts { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1rem; }

.enquiry__contacts li { display: flex; align-items: center; gap: 1rem; }

.enquiry__contacts .icon {
	width: 42px;
	height: 42px;
	padding: 10px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: var(--c-brass-lt);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.enquiry__contacts span { display: block; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.enquiry__contacts a,
.enquiry__contacts strong { font-size: 1rem; font-weight: 500; color: #fff; }
.enquiry__contacts a:hover { color: var(--c-brass-lt); }

/* Form card */
.form-card {
	padding: clamp(1.5rem, 3vw, 2.6rem);
	border-radius: var(--r-xl);
	background: rgba(255, 255, 255, .96);
	box-shadow: var(--sh-xl);
	color: var(--c-text);
}

.form-card h3 { font-size: 1.55rem; margin: 0 0 .3rem; }
.form-card__note { font-size: .88rem; color: var(--c-text-soft); margin: 0 0 1.6rem; }

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.1rem;
}

.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }

.field label {
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--c-text-soft);
}

.field label .req { color: var(--c-brass-dk); }

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: .85rem 1rem;
	border: 1.5px solid var(--c-line);
	border-radius: var(--r-sm);
	background: var(--c-white);
	font-family: var(--f-body);
	font-size: .95rem;
	color: var(--c-text);
	transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
	appearance: none;
}

.field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }

.field select {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6879' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .85rem center;
	background-size: 16px;
	padding-right: 2.4rem;
	cursor: pointer;
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--c-sand); }

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: 0;
	border-color: var(--c-brass);
	box-shadow: 0 0 0 4px rgba(200, 151, 63, .14);
	background: #fff;
}

.field--hp { position: absolute; left: -9999px; opacity: 0; }

.form-card .btn { margin-top: .4rem; }

.form-msg {
	display: none;
	margin-bottom: 1.2rem;
	padding: .95rem 1.15rem;
	border-radius: var(--r-sm);
	font-size: .9rem;
	line-height: 1.55;
}

.form-msg.is-visible { display: block; }
.form-msg.is-ok { background: rgba(31, 111, 107, .1); border-left: 3px solid var(--c-teal); color: #14524f; }
.form-msg.is-err { background: rgba(196, 60, 60, .08); border-left: 3px solid #c43c3c; color: #8d2626; }

.form-fine { font-size: .76rem; color: var(--c-text-mute); margin: 1rem 0 0; }

/* ==========================================================================
   13. Single tour page
   ========================================================================== */

.page-hero {
	position: relative;
	min-height: clamp(420px, 62vh, 640px);
	display: grid;
	align-items: flex-end;
	overflow: hidden;
	background: var(--c-ink-deep);
	color: #fff;
	isolation: isolate;
}

.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, rgba(7, 15, 24, .95) 0%, rgba(7, 15, 24, .62) 40%, rgba(7, 15, 24, .3) 100%);
}

.page-hero__inner { padding-block: calc(var(--header-h) + 3rem) clamp(2.4rem, 5vw, 4rem); position: relative; z-index: 1; }

.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem;
	margin-bottom: 1.2rem;
	font-size: var(--fs-xs);
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .68);
}

.breadcrumb a { color: rgba(255, 255, 255, .68); }
.breadcrumb a:hover { color: var(--c-brass-lt); }
.breadcrumb .sep { opacity: .45; }
.breadcrumb span[aria-current] { color: var(--c-brass-lt); }

.page-hero__title { font-size: var(--fs-h1); color: #fff; margin: 0 0 1rem; max-width: 20ch; line-height: 1.06; }
.page-hero--wide .page-hero__title { max-width: 32ch; }

.page-hero__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }

.page-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1rem, 3vw, 2.6rem);
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.page-hero__fact { display: flex; align-items: center; gap: .75rem; }
.page-hero__fact .icon { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--c-brass-lt); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.page-hero__fact span { display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.page-hero__fact strong { font-size: .96rem; font-weight: 600; color: #fff; }

/* Tour layout */
.tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 372px;
	gap: clamp(2rem, 4vw, 3.4rem);
	align-items: start;
}

.tour-main { min-width: 0; }

/* Sticky tabs */
.tour-tabs {
	position: sticky;
	top: var(--header-h);
	z-index: 60;
	display: flex;
	gap: .3rem;
	margin-bottom: 2.4rem;
	padding: .45rem;
	border-radius: var(--r-pill);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(14px);
	box-shadow: var(--sh-sm), inset 0 0 0 1px var(--c-line-soft);
	overflow-x: auto;
	scrollbar-width: none;
}

.tour-tabs::-webkit-scrollbar { display: none; }

.tour-tabs a {
	flex: 0 0 auto;
	padding: .62rem 1.15rem;
	border-radius: var(--r-pill);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--c-text-soft);
	white-space: nowrap;
	transition: background var(--t-fast), color var(--t-fast);
}

.tour-tabs a:hover { background: var(--c-cream-2); color: var(--c-ink); }
.tour-tabs a.is-active { background: var(--c-ink); color: #fff; }

.tour-block { margin-bottom: clamp(2.6rem, 5vw, 4.2rem); scroll-margin-top: calc(var(--header-h) + 90px); }

.tour-block__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }

.tour-block__head h2 {
	font-size: clamp(1.6rem, 2.4vw, 2.15rem);
	margin: 0;
	white-space: nowrap;
}

.tour-block__head::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, var(--c-line), transparent);
}

.tour-prose { font-size: 1.02rem; line-height: 1.82; color: var(--c-text-soft); }
.tour-prose h3 { color: var(--c-ink); margin-top: 1.8em; }
.tour-prose strong { color: var(--c-ink); font-weight: 600; }
.tour-prose ul { padding-left: 0; list-style: none; display: grid; gap: .6rem; }
.tour-prose ul li { position: relative; padding-left: 1.6rem; }
.tour-prose ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .62em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--g-brass);
}

/* Highlights table */
.hl-table { display: grid; gap: .7rem; }

.hl-row {
	display: grid;
	grid-template-columns: 190px 1fr;
	gap: 1.2rem;
	align-items: start;
	padding: 1.15rem 1.3rem;
	border-radius: var(--r-md);
	background: #fff;
	box-shadow: var(--sh-sm);
	transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.hl-row:hover { transform: translateX(5px); box-shadow: var(--sh-md); }

.hl-row__city {
	display: flex;
	align-items: center;
	gap: .55rem;
	font-family: var(--f-display);
	font-size: 1.16rem;
	font-weight: 600;
	color: var(--c-ink);
}

.hl-row__city .icon { width: 17px; height: 17px; color: var(--c-brass); }
.hl-row__text { font-size: .93rem; line-height: 1.65; color: var(--c-text-soft); margin: 0; }

/* Itinerary */
.itin { position: relative; padding-left: 0; margin: 0; list-style: none; display: grid; gap: 1rem; }

.itin__item {
	position: relative;
	background: #fff;
	border-radius: var(--r-md);
	box-shadow: var(--sh-sm);
	overflow: hidden;
	transition: box-shadow var(--t-base);
}

.itin__item.is-open { box-shadow: var(--sh-md); }

.itin__btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1.1rem;
	padding: 1.2rem clamp(1rem, 2vw, 1.6rem);
	border: 0;
	background: transparent;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: background var(--t-fast);
}

.itin__btn:hover { background: var(--c-cream); }

.itin__day {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: var(--r-sm);
	background: var(--c-cream-2);
	color: var(--c-brass-dk);
	font-family: var(--f-display);
	line-height: 1;
	transition: background var(--t-base), color var(--t-base);
}

.itin__day b { display: block; font-size: 1.45rem; font-weight: 600; }
.itin__day i { display: block; font-size: .56rem; font-style: normal; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }

.itin__item.is-open .itin__day { background: var(--g-brass); color: #fff; }

.itin__label { flex: 1; min-width: 0; }

.itin__label strong {
	display: block;
	font-size: 1.06rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--c-ink);
	letter-spacing: -.005em;
}

.itin__label em {
	display: block;
	margin-top: .18rem;
	font-family: var(--f-display);
	font-size: .95rem;
	font-style: italic;
	color: var(--c-brass-dk);
}

.itin__chev {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--c-cream-2);
	color: var(--c-text-soft);
	transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}

.itin__chev .icon { width: 15px; height: 15px; transform: rotate(90deg); }
.itin__item.is-open .itin__chev { background: var(--c-ink); color: #fff; transform: rotate(180deg); }

.itin__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--t-base);
}

.itin__item.is-open .itin__panel { grid-template-rows: 1fr; }

.itin__panel > div { overflow: hidden; }

.itin__body {
	padding: 0 clamp(1rem, 2vw, 1.6rem) 1.5rem clamp(4.9rem, 7vw, 5.5rem);
	font-size: .96rem;
	line-height: 1.78;
	color: var(--c-text-soft);
}

.itin__body p { margin: 0 0 .85rem; }
.itin__body p:last-child { margin-bottom: 0; }

.itin__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }

.itin__tags span {
	display: inline-flex;
	align-items: center;
	gap: .45em;
	padding: .38em .85em;
	border-radius: var(--r-pill);
	background: var(--c-cream-2);
	font-size: .76rem;
	font-weight: 500;
	color: var(--c-text-soft);
}

.itin__tags .icon { width: 14px; height: 14px; color: var(--c-teal); }

/* Inclusion / exclusion columns */
.incl-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.1rem, 2.2vw, 1.8rem); }

.incl-card {
	padding: clamp(1.3rem, 2.4vw, 1.9rem);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-sm);
}

.incl-card h3 { display: flex; align-items: center; gap: .6rem; font-family: var(--f-body); font-size: 1.06rem; font-weight: 600; margin: 0 0 1.1rem; }
.incl-card h3 .icon { width: 26px; height: 26px; padding: 5px; border-radius: 50%; color: #fff; stroke-width: 3; }
.incl-card--yes h3 .icon { background: var(--c-teal); }
.incl-card--no h3 .icon { background: #c46a4a; }

.incl-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }

.incl-card li {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	font-size: .93rem;
	line-height: 1.6;
	color: var(--c-text-soft);
}

.incl-card li .icon { width: 17px; height: 17px; margin-top: .2em; flex: 0 0 auto; stroke-width: 2.6; }
.incl-card--yes li .icon { color: var(--c-teal); }
.incl-card--no li .icon { color: #c46a4a; }

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: .8rem;
}

.gallery-grid a {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--c-sand);
}

.gallery-grid a:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-grid a:hover img { transform: scale(1.08); }

.gallery-grid a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(7, 15, 24, .28);
	opacity: 0;
	transition: opacity var(--t-base);
}

.gallery-grid a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9990;
	display: none;
	place-items: center;
	padding: clamp(1rem, 4vw, 3rem);
	background: rgba(5, 10, 17, .94);
	backdrop-filter: blur(6px);
}

.lightbox.is-open { display: grid; animation: fadeIn .3s ease both; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox img {
	max-width: 100%;
	max-height: 84vh;
	border-radius: var(--r-md);
	box-shadow: var(--sh-xl);
	animation: zoomIn .4s var(--ease-out) both;
}

@keyframes zoomIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

.lightbox__close,
.lightbox__nav {
	position: absolute;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	transition: background var(--t-fast), transform var(--t-fast);
}

.lightbox__close:hover,
.lightbox__nav:hover { background: var(--g-brass); transform: scale(1.08); }

.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev .icon { transform: rotate(180deg); }
.lightbox__counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: var(--fs-sm); letter-spacing: .1em; color: rgba(255, 255, 255, .7); }

/* Sticky booking sidebar */
.tour-aside { position: sticky; top: calc(var(--header-h) + 1.2rem); display: grid; gap: 1.2rem; }

.book-card {
	border-radius: var(--r-lg);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--sh-md);
}

.book-card__top {
	padding: 1.5rem;
	background: var(--g-ink);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.book-card__top::after {
	content: "";
	position: absolute;
	right: -30px;
	top: -30px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(200, 151, 63, .34), transparent 70%);
}

.book-card__top span { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }

.book-card__price {
	display: flex;
	align-items: baseline;
	gap: .5rem;
	font-family: var(--f-display);
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.1;
	color: #fff;
}

.book-card__price del { font-size: 1.1rem; font-weight: 400; color: rgba(255, 255, 255, .48); }
.book-card__price em { font-family: var(--f-body); font-size: .78rem; font-style: normal; font-weight: 400; color: rgba(255, 255, 255, .6); }

.book-card__body { padding: 1.5rem; display: grid; gap: 1rem; }

.book-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }

.book-card__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .8rem;
	padding-bottom: .7rem;
	border-bottom: 1px dashed var(--c-line);
	font-size: .88rem;
	color: var(--c-text-soft);
}

.book-card__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.book-card__list li b { color: var(--c-ink); font-weight: 600; text-align: right; }
.book-card__list .icon { width: 15px; height: 15px; color: var(--c-brass-dk); }
.book-card__list li > span { display: inline-flex; align-items: center; gap: .5em; }

.book-card__actions { display: grid; gap: .6rem; }

.aside-card {
	padding: 1.4rem;
	border-radius: var(--r-lg);
	background: var(--c-cream-2);
	box-shadow: inset 0 0 0 1px var(--c-line-soft);
}

.aside-card h4 { font-size: 1rem; margin: 0 0 .8rem; display: flex; align-items: center; gap: .5rem; }
.aside-card h4 .icon { width: 18px; height: 18px; color: var(--c-brass-dk); }
.aside-card p { font-size: .88rem; color: var(--c-text-soft); margin: 0 0 1rem; }

.aside-help { display: grid; gap: .6rem; }

.aside-help a {
	display: flex;
	align-items: center;
	gap: .7rem;
	padding: .8rem 1rem;
	border-radius: var(--r-sm);
	background: #fff;
	font-size: .9rem;
	font-weight: 500;
	color: var(--c-ink);
	box-shadow: var(--sh-sm);
	transition: transform var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
}

.aside-help a:hover { transform: translateX(4px); box-shadow: var(--sh-md); color: var(--c-brass-dk); }
.aside-help .icon { width: 17px; height: 17px; color: var(--c-teal); }

/* Mobile booking bar */
.mobile-book {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 800;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .75rem var(--sp-gutter);
	padding-bottom: max(.75rem, env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(14px);
	box-shadow: 0 -8px 30px -12px rgba(13, 27, 42, .28);
}

.mobile-book__price { line-height: 1.15; }
.mobile-book__price span { display: block; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-text-mute); }
.mobile-book__price strong { font-family: var(--f-display); font-size: 1.4rem; color: var(--c-ink); }

/* CTA band */
.cta-band {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.4rem, 6vw, 5.6rem);
	background: var(--c-ink);
	color: #fff;
	text-align: center;
	isolation: isolate;
}

.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg, rgba(7, 15, 24, .92), rgba(13, 27, 42, .78));
}

.cta-band h2 { color: #fff; margin: 0 0 .9rem; }
.cta-band p { max-width: 58ch; margin: 0 auto 2rem; color: rgba(255, 255, 255, .8); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ==========================================================================
   14. Archive & taxonomy
   ========================================================================== */

.filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .6rem;
	margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.filters__label { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--c-text-mute); margin-right: .4rem; }

.chip {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .55em 1.15em;
	border-radius: var(--r-pill);
	background: #fff;
	box-shadow: inset 0 0 0 1.5px var(--c-line);
	font-size: .82rem;
	font-weight: 500;
	color: var(--c-text-soft);
	transition: all var(--t-fast);
}

.chip:hover { box-shadow: inset 0 0 0 1.5px var(--c-brass); color: var(--c-brass-dk); transform: translateY(-2px); }
.chip.is-active { background: var(--c-ink); box-shadow: none; color: #fff; }
.chip__count { font-size: .72rem; opacity: .6; }

.pagination {
	display: flex;
	justify-content: center;
	margin-top: clamp(2.4rem, 4vw, 3.6rem);
}

.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	padding: 0 .9rem;
	border-radius: var(--r-pill);
	background: #fff;
	box-shadow: inset 0 0 0 1.5px var(--c-line);
	font-size: .9rem;
	font-weight: 600;
	color: var(--c-text-soft);
	transition: all var(--t-fast);
}

.pagination .page-numbers:hover { box-shadow: inset 0 0 0 1.5px var(--c-brass); color: var(--c-brass-dk); }
.pagination .page-numbers.current { background: var(--c-ink); box-shadow: none; color: #fff; }
.pagination .page-numbers.dots { box-shadow: none; background: transparent; }

.empty-state {
	text-align: center;
	padding: clamp(3rem, 7vw, 6rem) 1rem;
	border-radius: var(--r-xl);
	background: #fff;
	box-shadow: var(--sh-sm);
}

.empty-state .icon { width: 62px; height: 62px; margin: 0 auto 1.4rem; color: var(--c-sand); }
.empty-state h2 { margin-bottom: .6rem; }
.empty-state p { color: var(--c-text-soft); max-width: 46ch; margin: 0 auto 1.8rem; }

/* ==========================================================================
   15. Footer
   ========================================================================== */

.site-footer {
	background: var(--c-ink-deep);
	color: rgba(255, 255, 255, .68);
	font-size: .93rem;
}

.footer-cta {
	padding-block: clamp(2.2rem, 4vw, 3.2rem);
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-cta h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 .3rem; }
.footer-cta p { margin: 0; color: rgba(255, 255, 255, .64); font-size: .95rem; }
.footer-cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.footer-main {
	padding-block: clamp(2.8rem, 5vw, 4.4rem);
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
	gap: clamp(1.8rem, 3.5vw, 3.2rem);
}

.footer-brand .brand { margin-bottom: 1.3rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: rgba(255, 255, 255, .55); }
.footer-brand p { color: rgba(255, 255, 255, .62); font-size: .92rem; margin: 0 0 1.4rem; max-width: 40ch; }

.footer-col h4 {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--c-brass-lt);
	margin: 0 0 1.2rem;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }

.footer-col a {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	color: rgba(255, 255, 255, .68);
	font-size: .92rem;
	transition: color var(--t-fast), transform var(--t-fast);
}

.footer-col a:hover { color: var(--c-brass-lt); transform: translateX(4px); }

.footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .8rem; }
.footer-contact .icon { width: 17px; height: 17px; margin-top: .25em; flex: 0 0 auto; color: var(--c-brass); }
.footer-contact a,
.footer-contact span { color: rgba(255, 255, 255, .72); font-size: .92rem; line-height: 1.6; }
.footer-contact a:hover { color: var(--c-brass-lt); }

.socials { display: flex; gap: .55rem; margin-top: 1.4rem; }

.socials a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .8);
	transition: all var(--t-fast);
}

.socials a:hover { background: var(--g-brass); color: #fff; transform: translateY(-3px); box-shadow: var(--sh-brass); }
.socials .icon { width: 17px; height: 17px; }

.footer-badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.4rem;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-badge {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-size: .74rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}

.footer-badge .icon { width: 20px; height: 20px; color: var(--c-brass); }

.footer-bottom {
	padding-block: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, .09);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	flex-wrap: wrap;
	font-size: .82rem;
	color: rgba(255, 255, 255, .48);
}

.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: var(--c-brass-lt); }
.footer-bottom__links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Floating actions */
.float-actions {
	position: fixed;
	right: clamp(.9rem, 2vw, 1.6rem);
	bottom: clamp(.9rem, 2vw, 1.6rem);
	z-index: 700;
	display: grid;
	gap: .6rem;
}

.float-btn {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--c-ink);
	box-shadow: var(--sh-md);
	cursor: pointer;
	transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
}

.float-btn:hover { transform: translateY(-4px) scale(1.06); box-shadow: var(--sh-lg); }
.float-btn .icon { width: 22px; height: 22px; }
.float-btn--wa { background: #25d366; color: #fff; }
.float-btn--wa:hover { background: #1eb455; color: #fff; }

.float-actions,
.mobile-book { transition: opacity var(--t-base), visibility var(--t-base); }

.float-btn--top { opacity: 0; visibility: hidden; }
.float-btn--top.is-visible { opacity: 1; visibility: visible; }
.float-btn--top .icon { transform: rotate(-90deg); }

/* ==========================================================================
   16. Utilities, reveal, blog
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
	will-change: opacity, transform;
}

.reveal.is-in { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
.reveal[data-delay="5"] { transition-delay: .45s; }

.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3.2rem); }
.center-actions { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; }

/* Blog / generic content */
.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: clamp(2rem, 4vw, 3.4rem);
	align-items: start;
}

.no-sidebar .content-layout { grid-template-columns: minmax(0, 1fr); }

.entry-card {
	background: #fff;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh-sm);
	transition: transform var(--t-base), box-shadow var(--t-base);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.entry-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.entry-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-sand); }
.entry-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.entry-card:hover .entry-card__media img { transform: scale(1.06); }
.entry-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.entry-card__date { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--c-brass-dk); }
.entry-card__body h2,
.entry-card__body h3 { font-size: 1.25rem; margin: 0; line-height: 1.3; }
.entry-card__body p { font-size: .93rem; color: var(--c-text-soft); margin: 0; }
.entry-card__body .link-arrow { margin-top: auto; padding-top: .6rem; font-size: var(--fs-xs); }

.entry-single {
	background: #fff;
	border-radius: var(--r-xl);
	padding: clamp(1.6rem, 4vw, 3.4rem);
	box-shadow: var(--sh-sm);
}

.entry-single .entry-content { font-size: 1.03rem; line-height: 1.82; color: var(--c-text-soft); }
.entry-single .entry-content h2,
.entry-single .entry-content h3 { color: var(--c-ink); margin-top: 1.8em; }
.entry-single .entry-content img { border-radius: var(--r-md); margin-block: 1.6rem; }

.widget { background: #fff; border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--sh-sm); margin-bottom: 1.2rem; }
.widget-title { font-size: 1.06rem; margin: 0 0 1rem; }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.widget a { color: var(--c-text-soft); font-size: .92rem; }
.widget a:hover { color: var(--c-brass-dk); }

.search-form { display: flex; gap: .5rem; }
.search-form label { flex: 1; }
.search-form .search-field {
	width: 100%;
	padding: .8rem 1rem;
	border: 1.5px solid var(--c-line);
	border-radius: var(--r-sm);
	font-family: var(--f-body);
	font-size: .93rem;
}
.search-form .search-field:focus { outline: 0; border-color: var(--c-brass); box-shadow: 0 0 0 4px rgba(200, 151, 63, .14); }
.search-form .search-submit {
	padding: .8rem 1.3rem;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--c-ink);
	color: #fff;
	font-family: var(--f-body);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--t-fast);
}
.search-form .search-submit:hover { background: var(--c-brass-dk); }

.comments-area { margin-top: 2.4rem; background: #fff; border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.6rem); box-shadow: var(--sh-sm); }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: 1.2rem 0; border-bottom: 1px solid var(--c-line-soft); }
.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: .85rem 1rem;
	border: 1.5px solid var(--c-line);
	border-radius: var(--r-sm);
	font-family: var(--f-body);
	font-size: .95rem;
}
.comment-form input[type="submit"] {
	padding: .95em 1.9em;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--c-ink);
	color: #fff;
	font-family: var(--f-body);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	cursor: pointer;
}

.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.post-nav a { font-size: .9rem; font-weight: 500; }

/* ==========================================================================
   17. Responsive
   ========================================================================== */

/* Reclaim header space before resorting to the burger: drop the phone block,
   then the tagline, so the inline menu survives as long as it comfortably can. */
@media (max-width: 1500px) {
	.nav__call { display: none; }
}

/* Narrow the tour sidebar while it is still a two-column layout. Must come
   BEFORE the 1300px block that collapses it, or it would win and reinstate a
   fixed 320px column on phones. */
@media (max-width: 1400px) {
	.tour-layout { grid-template-columns: minmax(0, 1fr) 320px; }
}

@media (max-width: 1360px) {
	.brand__tag { display: none; }
	.brand__name { font-size: 1.3rem; }
}

@media (max-width: 1300px) {
	:root { --header-h: 84px; }

	.nav__menu,
	.nav__call { display: none; }

	.nav-toggle { display: block; }

	.nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		z-index: 950;
		/* Reset the desktop flex sizing — leftovers from the base rule make the
		   fixed panel size itself against the header row instead of the viewport. */
		flex: 0 0 auto;
		justify-content: flex-start;
		width: min(400px, 88vw);
		max-width: 100vw;
		height: 100%;
		height: 100dvh;
		margin: 0;
		padding: 5.4rem 1.6rem 2rem;
		padding-bottom: max(2rem, env(safe-area-inset-bottom));
		background: #fff;
		box-shadow: -20px 0 60px -20px rgba(13, 27, 42, .35);
		transform: translateX(102%);
		transition: transform .45s var(--ease-out);
		display: block;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	body.nav-open .nav { transform: none; }

	/* The drawer lives inside .site-header, which has z-index:900 and therefore
	   forms its own stacking context. The drawer's z-index:950 is resolved
	   *within* that context, so the backdrop (z-index:940, a direct child of
	   body) painted on top of it — the panel was there but fully covered,
	   which is why tapping the burger appeared to show only the overlay.
	   Lifting the whole header above the backdrop fixes the stacking order. */
	body.nav-open .site-header { z-index: 960; }

	/* Never apply backdrop-filter to the header at drawer widths.
	   It makes the header a containing block, which re-anchors the fixed drawer
	   to the 84px header box instead of the viewport. Because the filter was
	   (re)introduced by `.is-stuck` — a class JS adds once you scroll past 40px
	   — the drawer worked at the top of the page and broke after scrolling.
	   Unsetting it unconditionally here removes that scroll-dependent bug. */
	.site-header,
	.site-header.is-stuck,
	.is-home .site-header,
	.is-home .site-header.is-stuck,
	.has-hero .site-header,
	.has-hero .site-header.is-stuck {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	/* The filter also provided the frosted look, so make the stuck header
	   opaque enough to stay readable without it. */
	.site-header.is-stuck,
	.is-home .site-header.is-stuck,
	.has-hero .site-header.is-stuck { background: #fff; }

	.nav .nav-toggle { position: absolute; top: 1.4rem; right: 1.2rem; z-index: 2; }
	.nav .nav-toggle span { background: var(--c-ink) !important; }

	body.nav-open .nav__menu,
	body.nav-open .nav__call { display: flex; }

	.nav__menu {
		flex-direction: column;
		align-items: stretch;
		gap: .1rem;
		margin-bottom: 1.6rem;
	}

	/* The drawer is white — force readable text on every descendant, at any
	   nesting level, regardless of the transparent-header colour rules. */
	.nav a,
	.nav .nav__link,
	.nav__menu a {
		color: var(--c-ink);
	}

	.nav__menu > li > a,
	.nav__menu > li > .nav__link {
		color: var(--c-ink);
		padding: .95rem .4rem;
		font-size: .92rem;
		border-bottom: 1px solid var(--c-line-soft);
		justify-content: space-between;
		text-transform: uppercase;
		letter-spacing: .07em;
	}

	.nav__menu ul.sub-menu a { color: var(--c-text-soft); }
	.nav__menu ul.sub-menu a:hover { color: var(--c-brass-dk); }

	.nav__menu > li > a::after { display: none; }

	.nav__menu > li.menu-item-has-children > a::before {
		transform: rotate(45deg);
		width: 8px;
		height: 8px;
		transition: transform var(--t-base);
	}

	.nav__menu > li.is-open > a::before { transform: rotate(-135deg); }

	/* Accordion submenu inside the drawer — a plain static list. */
	.nav__menu ul.sub-menu {
		position: static;
		inset: auto;
		transform: none;
		opacity: 1;
		visibility: visible;
		width: 100%;
		min-width: 0;
		max-width: none;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		margin: 0;
		padding: .2rem 0 .5rem .5rem;
		display: none;
		background: transparent;
		list-style: none;
		z-index: auto;
		transition: none;
	}

	.nav__menu li.is-open > ul.sub-menu { display: block; }

	.nav__menu ul.sub-menu li { border-left: 1px solid var(--c-line-soft); }

	.nav__menu ul.sub-menu li > a {
		display: block;
		padding: .7rem .9rem;
		font-size: .88rem;
		text-transform: none;
		letter-spacing: .01em;
		border: 0;
	}

	.nav__call {
		display: flex !important;
		padding: 1rem 0 0;
		border-top: 1px solid var(--c-line-soft);
	}

	.nav__call-label { color: var(--c-text-mute); }
	.nav__call strong { color: var(--c-ink) !important; }
	.nav__call .icon { background: var(--c-cream-2) !important; color: var(--c-brass-dk) !important; }

	.nav__actions { flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 1rem; }
	.nav__actions .btn { width: 100%; }

	.site-header__inner > .nav-toggle { display: block; }

	.split { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
	.split__media-main { aspect-ratio: 16 / 11; }
	.split__stat { left: auto; right: 1rem; top: 1rem; }
	.split__media-sub { display: none; }

	.enquiry__grid { grid-template-columns: 1fr; }
	.mosaic { grid-template-columns: repeat(2, 1fr); }
	.mosaic__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
	.mosaic__item:nth-child(4) { grid-column: span 2; }

	.tour-layout { grid-template-columns: minmax(0, 1fr); }
	.tour-aside { position: static; }
	.tour-card--feature { grid-column: span 1; flex-direction: column; }
	.tour-card--feature .tour-card__media { aspect-ratio: 4 / 3; flex: none; }
}

@media (max-width: 1180px) {
	/* NB: .tour-layout is deliberately NOT narrowed here. The 1300px block
	   already collapses it to a single column, and re-declaring a 320px
	   sidebar at this smaller width would overflow every phone. */
	.footer-main { grid-template-columns: 1.4fr 1fr 1.3fr; }
	.footer-col--tours { grid-column: span 1; }
}

@media (max-width: 900px) {
	.trustbar__inner { grid-template-columns: repeat(2, 1fr); }
	.footer-main { grid-template-columns: repeat(2, 1fr); }
	.content-layout { grid-template-columns: minmax(0, 1fr); }
	.hero__scroll { display: none; }
	.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
	.topbar__list li:not(.topbar__item--keep) { display: none; }
	.topbar__inner { justify-content: center; }

	.hero { min-height: 92svh; }
	.hero__nav { display: none; }
	.hero__dots { left: 50%; transform: translateX(-50%); }
	.hero__dot { width: 30px; }

	.incl-grid { grid-template-columns: 1fr; }
	.hl-row { grid-template-columns: 1fr; gap: .5rem; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid a:first-child { grid-column: span 2; grid-row: span 1; }

	.form-grid { grid-template-columns: 1fr; }

	.is-tour-context.has-hero .mobile-book { display: flex; }
	.is-tour-context.has-hero .float-actions { bottom: 5.4rem; }
	.is-tour-context.has-hero .site-footer { padding-bottom: 4.5rem; }

	.itin__body { padding-left: clamp(1rem, 3vw, 1.6rem); }
	.itin__btn { gap: .8rem; padding: 1rem; }
	.itin__day { width: 48px; height: 48px; }
	.itin__day b { font-size: 1.2rem; }

	.tour-block__head h2 { white-space: normal; }

	.footer-cta__inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
	.footer-bottom__links { justify-content: center; }
}

@media (max-width: 560px) {
	:root { --header-h: 72px; }

	.brand__mark { width: 40px; height: 40px; }
	.brand__name { font-size: 1.18rem; }
	.brand__tag { font-size: .55rem; letter-spacing: .2em; }

	.hero__actions .btn { width: 100%; }
	.trustbar__inner { grid-template-columns: 1fr; }
	.trustbar__item { padding: 1.1rem var(--sp-gutter); }

	.tour-grid { grid-template-columns: 1fr; }
	.grid--3,
	.grid--4,
	.grid--2 { grid-template-columns: 1fr; }
	.mosaic { grid-template-columns: 1fr; }
	.mosaic__item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
	.footer-main { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: 1fr; }
	.gallery-grid a:first-child { grid-column: span 1; }
	.testi-rail { grid-auto-columns: minmax(280px, 86vw); }
	.page-hero__facts { gap: 1rem 1.4rem; }
	.cta-band__actions .btn { width: 100%; }
	.sec-head--split { flex-direction: column; align-items: flex-start; }
}

/* Motion & print */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.reveal { opacity: 1; transform: none; }
	.hero__slide img { transform: none; }
}

@media print {
	.site-header,
	.site-footer,
	.float-actions,
	.mobile-book,
	.hero__nav,
	.hero__dots,
	.tour-tabs,
	.tour-aside { display: none !important; }
	body.landtour { background: #fff; }
	.itin__panel { grid-template-rows: 1fr !important; }
}
