/* =============================================================
   Nom Luxe Tours — frontend design system
   Driven entirely by CSS custom properties from the Theme Studio.
   ============================================================= */

.nlt, .nlt * { box-sizing: border-box; }

.nlt {
	font-family: var(--nlt-font-body);
	font-weight: 300;
	color: var(--nlt-text);
	background: var(--nlt-bg);
	line-height: 1.7;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}

.nlt h1, .nlt h2, .nlt h3 {
	font-family: var(--nlt-font-display);
	font-weight: 500;
	line-height: 1.15;
	color: var(--nlt-text);
	margin: 0;
}

.nlt-shell { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.nlt-kicker {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .38em;
	text-transform: uppercase;
	color: var(--nlt-accent);
	font-weight: 500;
}

/* ----------------------------------------------------- buttons */
.nlt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 34px;
	font-family: var(--nlt-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid var(--nlt-accent);
	cursor: pointer;
	transition: all .35s cubic-bezier(.22,1,.36,1);
	background: transparent;
	color: var(--nlt-text);
}
.nlt-btn--solid { background: var(--nlt-accent); color: #fff; }
.nlt-btn--solid:hover { background: var(--nlt-ink); border-color: var(--nlt-ink); transform: translateY(-2px); box-shadow: var(--nlt-shadow); }
.nlt-btn--ghost:hover { background: var(--nlt-soft); }
.nlt-btn--block { width: 100%; }
.nlt-btn--hero {
	border-color: rgba(255,255,255,.7);
	color: #fff;
	backdrop-filter: blur(6px);
	background: rgba(255,255,255,.08);
}
.nlt-btn--hero:hover { background: #fff; color: var(--nlt-ink); border-color: #fff; }
.nlt-btn:focus-visible { outline: 2px solid var(--nlt-accent-2); outline-offset: 3px; }

/* ------------------------------------------------------- hero */
.nlt-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
	/* Full-bleed: escape any theme container width */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Slideshow hero */
.nlt-hero__slides { position: absolute; inset: 0; z-index: -2; }
.nlt-hero__slide {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.6s ease;
}
.nlt-hero__slide.is-active {
	opacity: 1;
	animation: nlt-slide-zoom 7s ease-out forwards;
}
@keyframes nlt-slide-zoom {
	from { transform: scale(1.06); }
	to   { transform: scale(1); }
}
.nlt-hero__dots {
	position: absolute; bottom: 92px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 10px; z-index: 2;
}
.nlt-hero__dots button {
	width: 26px; height: 2px;
	border: none; padding: 0; cursor: pointer;
	background: rgba(255,255,255,.35);
	transition: background .3s, width .3s;
}
.nlt-hero__dots button.is-active { background: var(--nlt-accent-2); width: 40px; }
.nlt-hero__dots button:focus-visible { outline: 1px solid #fff; outline-offset: 3px; }

/* Hero layout: mosaic — lead tile + grid */
.nlt-hero--mosaic { min-height: 86vh; }
.nlt-hero-mosaic {
	position: absolute; inset: 0; z-index: -2;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
}
.nlt-hero-mosaic__tile { background-size: cover; background-position: center; transition: transform 8s ease; }
.nlt-hero-mosaic__tile:first-child { grid-row: span 2; }
.nlt-hero--mosaic:hover .nlt-hero-mosaic__tile { transform: scale(1.04); }
.nlt-hero__overlay--soft { background: linear-gradient(180deg, rgba(8,6,2,.18) 0%, rgba(8,6,2,.32) 55%, rgba(8,6,2,.72) 100%); }

/* Hero layout: filmstrip — full-bleed vertical panels */
.nlt-hero--filmstrip { min-height: 88vh; }
.nlt-hero-strip { position: absolute; inset: 0; z-index: -2; display: flex; gap: 4px; }
.nlt-hero-strip__panel {
	flex: 1;
	background-size: cover; background-position: center;
	transition: flex 1s cubic-bezier(.22,1,.36,1);
}
.nlt-hero-strip__panel:hover { flex: 1.6; }

/* Hero layout: split — text panel + staggered collage */
.nlt-hero--split {
	min-height: 88vh;
	display: grid;
	grid-template-columns: minmax(380px, 44%) 1fr;
	align-items: center;
	text-align: left;
	background: var(--nlt-bg);
	gap: 0;
}
.nlt-hero-split__content { padding: 120px 56px 120px max(56px, calc(50vw - 620px)); }
.nlt-hero--split .nlt-hero__title { color: var(--nlt-text); font-size: clamp(38px, 4.6vw, 66px); }
.nlt-hero--split .nlt-hero__title::after { margin-left: 0; background: var(--nlt-accent); }
.nlt-hero--split .nlt-hero__eyebrow { color: var(--nlt-accent); opacity: 1; }
.nlt-hero--split .nlt-hero__sub { color: var(--nlt-muted); margin-left: 0; }
.nlt-hero--split .nlt-hero__meta { justify-content: flex-start; color: var(--nlt-text); }
.nlt-hero--split .nlt-hero__badge { border-color: var(--nlt-accent); color: var(--nlt-accent); }
.nlt-hero-split__collage {
	align-self: stretch;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	padding: 48px 48px 48px 0;
	overflow: hidden;
}
.nlt-hero-split__col { display: flex; flex-direction: column; gap: 14px; }
.nlt-hero-split__col--offset { margin-top: 64px; }
.nlt-hero-split__img {
	flex: 1;
	min-height: 220px;
	background-size: cover; background-position: center;
	transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.nlt-hero-split__img:hover { transform: scale(1.03); }

@media (max-width: 980px) {
	.nlt-hero--split { grid-template-columns: 1fr; }
	.nlt-hero-split__content { padding: 96px 24px 36px; text-align: center; }
	.nlt-hero--split .nlt-hero__title::after { margin-left: auto; margin-right: auto; }
	.nlt-hero--split .nlt-hero__meta { justify-content: center; }
	.nlt-hero-split__collage { padding: 0 24px 48px; }
	.nlt-hero-split__col--offset { margin-top: 28px; }
	.nlt-hero-split__img { min-height: 150px; }
	.nlt-hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr 1fr; }
	.nlt-hero-mosaic__tile:first-child { grid-column: span 2; grid-row: auto; }
	.nlt-hero-mosaic__tile:nth-child(n+4) { display: none; }
	.nlt-hero-strip__panel:nth-child(n+3) { display: none; }
}
.nlt-hero__media {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	z-index: -2;
}
.nlt-hero__media--plain { background: linear-gradient(135deg, var(--nlt-ink), var(--nlt-accent)); }
.nlt-hero__media--kenburns { animation: nlt-kenburns 24s ease-in-out infinite alternate; }
@keyframes nlt-kenburns {
	from { transform: scale(1) translate(0,0); }
	to   { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.nlt-hero__overlay { position: absolute; inset: 0; background: var(--nlt-hero-overlay); z-index: -1; }

.nlt-hero__inner { max-width: 880px; padding: 120px 24px; color: #fff; }
.nlt-hero__badge {
	display: inline-block;
	padding: 8px 22px;
	font-size: 10px;
	letter-spacing: .34em;
	text-transform: uppercase;
	border: 1px solid var(--nlt-accent-2);
	color: var(--nlt-accent-2);
	margin-bottom: 26px;
	backdrop-filter: blur(4px);
}
.nlt-hero__eyebrow { font-size: 13px; letter-spacing: .3em; text-transform: uppercase; opacity: .85; margin-bottom: 18px; }
.nlt-hero__title {
	font-size: clamp(44px, 7vw, 88px);
	color: #fff;
	font-weight: 500;
	letter-spacing: .01em;
}
.nlt-hero__title::after {
	content: "";
	display: block;
	width: 72px; height: 1px;
	background: var(--nlt-accent-2);
	margin: 30px auto 0;
}
.nlt-hero__sub { font-size: 19px; font-weight: 300; max-width: 620px; margin: 26px auto 0; opacity: .92; }
.nlt-hero__meta {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px;
	margin: 34px 0 40px;
	font-size: 14px; letter-spacing: .04em;
}
.nlt-hero__meta strong { font-weight: 500; }

.nlt-hero__scrollcue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.nlt-hero__scrollcue span {
	display: block; width: 1px; height: 56px;
	background: linear-gradient(to bottom, transparent, #fff);
	animation: nlt-cue 2.2s ease-in-out infinite;
}
@keyframes nlt-cue { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

/* --------------------------------------------- entrance motion */
.nlt-fade { opacity: 0; transform: translateY(22px); animation: nlt-fade-in 1s cubic-bezier(.22,1,.36,1) forwards; animation-delay: var(--nlt-delay, 0s); }
@keyframes nlt-fade-in { to { opacity: 1; transform: none; } }

.nlt-reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); transition-delay: calc(var(--nlt-stagger, 0) * 90ms); }
.nlt-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.nlt-fade, .nlt-reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
	.nlt-hero__media--kenburns, .nlt-hero__scrollcue span { animation: none !important; }
	.nlt-hero__slide { animation: none !important; transform: none !important; transition: opacity .3s !important; }
	.nlt * { scroll-behavior: auto !important; }
}

/* ------------------------------------------------------ layout */
.nlt-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 64px;
	padding: 90px 0 110px;
	align-items: start;
}
.nlt-main { min-width: 0; }

/* -------------------------------------------------- quick facts */
.nlt-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	border-top: 1px solid var(--nlt-line);
	border-bottom: 1px solid var(--nlt-line);
	margin-bottom: 80px;
}
.nlt-facts__item { padding: 26px 18px; border-right: 1px solid var(--nlt-line); }
.nlt-facts__item:last-child { border-right: 0; }
.nlt-facts__item span {
	display: block;
	font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
	color: var(--nlt-muted);
	margin-bottom: 8px;
}
.nlt-facts__item strong { font-family: var(--nlt-font-display); font-size: 21px; font-weight: 500; }

/* --------------------------------------------------- highlights */
.nlt-highlights {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 44px;
	border-top: 1px solid var(--nlt-line);
}
.nlt-highlights li {
	display: flex; align-items: flex-start; gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--nlt-line);
	font-size: 16.5px;
	line-height: 1.55;
}
.nlt-highlights__mark {
	flex: 0 0 auto;
	color: var(--nlt-accent);
	font-size: 13px;
	margin-top: 4px;
	transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.nlt-highlights li:hover .nlt-highlights__mark { transform: rotate(180deg) scale(1.25); }
@media (max-width: 680px) {
	.nlt-highlights { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------- sections */
.nlt-section { margin-bottom: 96px; }
.nlt-section__head { margin-bottom: 36px; }
.nlt-section__head h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 12px; }
.nlt-prose { font-size: 18px; color: var(--nlt-text); max-width: 68ch; }
.nlt-prose p { margin: 0 0 1.4em; }
.nlt-prose p:first-of-type::first-letter {
	font-family: var(--nlt-font-display);
	font-size: 3.6em;
	float: left;
	line-height: .82;
	padding: 6px 12px 0 0;
	color: var(--nlt-accent);
}

/* ----------------------------------------------------- timeline */
.nlt-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.nlt-timeline::before {
	content: "";
	position: absolute;
	left: 27px; top: 10px; bottom: 10px;
	width: 1px;
	background: linear-gradient(to bottom, var(--nlt-accent), var(--nlt-line));
}
.nlt-timeline__day { display: flex; gap: 30px; padding-bottom: 44px; position: relative; }
.nlt-timeline__marker {
	flex: 0 0 56px;
	width: 56px; height: 56px;
	border: 1px solid var(--nlt-accent);
	background: var(--nlt-bg);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--nlt-font-display);
	font-size: 22px;
	color: var(--nlt-accent);
	z-index: 1;
	border-radius: 50%;
}
.nlt-timeline__card {
	flex: 1;
	background: var(--nlt-surface);
	border: 1px solid var(--nlt-line);
	padding: 30px 34px;
	transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.nlt-timeline__card:hover { transform: translateY(-4px); box-shadow: var(--nlt-shadow); }
.nlt-timeline__card h3 { font-size: 24px; margin-bottom: 10px; }
.nlt-timeline__card p { margin: 0; color: var(--nlt-muted); font-size: 16px; }
.nlt-timeline__meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--nlt-line); font-size: 13px; letter-spacing: .04em; color: var(--nlt-muted); }

/* ------------------------------------------------------- hotels */
.nlt-hotels { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.nlt-hotel { background: var(--nlt-surface); border: 1px solid var(--nlt-line); overflow: hidden; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s; }
.nlt-hotel:hover { transform: translateY(-6px); box-shadow: var(--nlt-shadow); }
.nlt-hotel__media { aspect-ratio: 16/10; overflow: hidden; }
.nlt-hotel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.nlt-hotel:hover .nlt-hotel__media img { transform: scale(1.07); }
.nlt-hotel__body { padding: 24px 26px 28px; }
.nlt-hotel__stars { color: var(--nlt-accent); letter-spacing: 4px; font-size: 13px; margin-bottom: 8px; }
.nlt-hotel__body h3 { font-size: 23px; margin-bottom: 8px; }
.nlt-hotel__body p { margin: 0; font-size: 15px; color: var(--nlt-muted); }

/* -------------------------------------------------- experiences */
.nlt-experiences { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--nlt-line); border: 1px solid var(--nlt-line); }
.nlt-experience { background: var(--nlt-surface); padding: 36px 30px; position: relative; transition: background .4s; }
.nlt-experience:hover { background: var(--nlt-soft); }
.nlt-experience__index { font-family: var(--nlt-font-display); font-size: 15px; color: var(--nlt-accent); letter-spacing: .2em; }
.nlt-experience h3 { font-size: 22px; margin: 12px 0 8px; }
.nlt-experience p { margin: 0; font-size: 15px; color: var(--nlt-muted); }

/* ------------------------------------------------------ gallery */
/* Layout: masonry (default) */
.nlt-gallery--masonry { columns: 3 240px; column-gap: 14px; }
.nlt-gallery--masonry .nlt-gallery__item { margin-bottom: 14px; break-inside: avoid; }

/* Layout: editorial grid — first image is the hero of the grid */
.nlt-gallery--grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.nlt-gallery--grid .nlt-gallery__item:first-child { grid-column: span 2; grid-row: span 2; }
.nlt-gallery--grid .nlt-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* Layout: cinematic carousel with scroll-snap */
.nlt-gallery--carousel {
	display: flex; gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 14px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--nlt-accent) var(--nlt-surface-2);
}
.nlt-gallery--carousel .nlt-gallery__item {
	flex: 0 0 min(560px, 82vw);
	aspect-ratio: 16/10;
	scroll-snap-align: center;
}
.nlt-gallery--carousel .nlt-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.nlt-gallery__item { display: block; overflow: hidden; position: relative; }
.nlt-gallery__item img { width: 100%; height: auto; display: block; transition: transform 1.2s cubic-bezier(.22,1,.36,1), filter .6s; }
.nlt-gallery__item:hover img { transform: scale(1.06); filter: brightness(1.06); }

@media (max-width: 680px) {
	.nlt-gallery--grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}

.nlt [hidden],
.nlt-lightbox[hidden] { display: none !important; }

.nlt-lightbox {
	position: fixed; inset: 0; z-index: 99999;
	background: rgba(5,5,5,.94);
	display: flex; align-items: center; justify-content: center;
	animation: nlt-lb .3s ease;
}
@keyframes nlt-lb { from { opacity: 0; } }
.nlt-lightbox img { max-width: 88vw; max-height: 86vh; box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.nlt-lightbox__close, .nlt-lightbox__nav {
	position: absolute;
	background: none; border: none; color: #fff;
	font-size: 38px; cursor: pointer; padding: 16px;
	opacity: .75; transition: opacity .25s;
}
.nlt-lightbox__close:hover, .nlt-lightbox__nav:hover { opacity: 1; }
.nlt-lightbox__close { top: 14px; right: 22px; }
.nlt-lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 54px; }
.nlt-lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 54px; }

/* --------------------------------------------------- inclusions */
.nlt-inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.nlt-list { list-style: none; margin: 0; padding: 0; }
.nlt-list li { padding: 13px 0 13px 34px; border-bottom: 1px solid var(--nlt-line); position: relative; font-size: 16px; }
.nlt-list li::before { position: absolute; left: 0; top: 13px; font-size: 14px; }
.nlt-list--yes li::before { content: "✓"; color: var(--nlt-accent); }
.nlt-list--no li::before { content: "—"; color: var(--nlt-muted); }
.nlt-cancellation { margin-top: 28px; font-size: 14px; color: var(--nlt-muted); }

/* ------------------------------------------------------ reviews */
.nlt-stars span { color: var(--nlt-line); font-size: 15px; }
.nlt-stars .is-on { color: var(--nlt-accent); }
.nlt-review-summary {
	display: grid; grid-template-columns: 200px 1fr; gap: 44px;
	background: var(--nlt-surface);
	border: 1px solid var(--nlt-line);
	padding: 36px 40px;
	margin-bottom: 40px;
	align-items: center;
}
.nlt-review-summary__score { text-align: center; }
.nlt-review-summary__score strong { display: block; font-family: var(--nlt-font-display); font-size: 64px; line-height: 1; color: var(--nlt-accent); }
.nlt-review-summary__score span { display: block; font-size: 13px; color: var(--nlt-muted); margin-top: 6px; }
.nlt-bar { display: grid; grid-template-columns: 34px 1fr 28px; align-items: center; gap: 12px; margin: 7px 0; font-size: 13px; color: var(--nlt-muted); }
.nlt-bar__track { height: 5px; background: var(--nlt-surface-2); overflow: hidden; }
.nlt-bar__track i { display: block; height: 100%; background: var(--nlt-accent); }
.nlt-reviews { display: grid; gap: 22px; }
.nlt-review { background: var(--nlt-surface); border: 1px solid var(--nlt-line); padding: 26px 30px; }
.nlt-review header { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 12px; }
.nlt-review p { margin: 0 0 10px; font-size: 16px; }
.nlt-review time { font-size: 12px; color: var(--nlt-muted); letter-spacing: .08em; text-transform: uppercase; }
.nlt-verified { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--nlt-accent); border: 1px solid var(--nlt-accent); padding: 3px 10px; }

.nlt-rating-field label { display: block; margin-bottom: 6px; }
.nlt-star-input { display: inline-flex; flex-direction: row-reverse; }
.nlt-star-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nlt-star-input label { font-size: 30px; color: var(--nlt-line); cursor: pointer; padding: 0 3px; transition: color .15s; }
.nlt-star-input label:hover,
.nlt-star-input label:hover ~ label,
.nlt-star-input input:checked ~ label { color: var(--nlt-accent); }

/* ------------------------------------------- booking panel ✦ signature */
.nlt-aside { position: sticky; top: 36px; }
.nlt-panel-book {
	background: var(--nlt-glass);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	border: 1px solid var(--nlt-glass-border);
	box-shadow: var(--nlt-shadow);
	padding: 36px 34px 28px;
	position: relative;
}
.nlt-panel-book::before {
	content: "";
	position: absolute; top: 0; left: 34px; right: 34px;
	height: 2px;
	background: linear-gradient(to right, transparent, var(--nlt-accent), transparent);
}
.nlt-panel-book__head { text-align: center; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--nlt-line); }
.nlt-panel-book__from { display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--nlt-muted); }
.nlt-panel-book__price { display: block; font-family: var(--nlt-font-display); font-size: 52px; line-height: 1.05; color: var(--nlt-text); margin: 6px 0 2px; }
.nlt-panel-book__price--request { font-size: 34px; padding: 10px 0; }
.nlt-panel-book__per { font-size: 12px; color: var(--nlt-muted); letter-spacing: .1em; }

.nlt-bf { display: block; margin-bottom: 16px; }
.nlt-bf > span { display: block; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--nlt-muted); margin-bottom: 7px; }
.nlt-bf input, .nlt-bf select, .nlt-bf textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--nlt-line);
	background: var(--nlt-surface);
	color: var(--nlt-text);
	font-family: var(--nlt-font-body);
	font-size: 15px;
	transition: border-color .25s, box-shadow .25s;
}
.nlt-bf input:focus, .nlt-bf select:focus, .nlt-bf textarea:focus {
	outline: none;
	border-color: var(--nlt-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--nlt-accent) 18%, transparent);
}
.nlt-bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.nlt-stepper { display: flex; align-items: stretch; border: 1px solid var(--nlt-line); background: var(--nlt-surface); }
.nlt-stepper button {
	width: 42px; border: none; background: none; cursor: pointer;
	font-size: 19px; color: var(--nlt-accent);
	transition: background .2s;
}
.nlt-stepper button:hover { background: var(--nlt-soft); }
.nlt-stepper input { border: none !important; text-align: center; padding: 12px 0 !important; -moz-appearance: textfield; box-shadow: none !important; }
.nlt-stepper input::-webkit-inner-spin-button { display: none; }

.nlt-check { display: flex; gap: 11px; align-items: flex-start; margin: 11px 0; font-size: 14px; cursor: pointer; }
.nlt-check input { margin-top: 4px; accent-color: var(--nlt-accent); }
.nlt-check em { font-style: normal; color: var(--nlt-muted); font-size: 13px; }
.nlt-addons { border: 1px solid var(--nlt-line); padding: 16px 18px 10px; margin: 4px 0 18px; }
.nlt-addons legend { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--nlt-muted); padding: 0 8px; }

.nlt-quote { border-top: 1px solid var(--nlt-line); margin: 20px 0; padding-top: 16px; }
.nlt-quote__lines div { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; color: var(--nlt-muted); padding: 4px 0; }
.nlt-quote__lines div span:last-child { white-space: nowrap; }
.nlt-quote__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 10px; border-top: 1px solid var(--nlt-line); }
.nlt-quote__total span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--nlt-muted); }
.nlt-quote__total strong { font-family: var(--nlt-font-display); font-size: 34px; color: var(--nlt-text); }
.nlt-quote__deposit { display: flex; justify-content: space-between; font-size: 13px; color: var(--nlt-muted); margin-top: 4px; }
.nlt-quote__deposit em { font-style: normal; color: var(--nlt-accent); font-weight: 500; }

.nlt-book-success { text-align: center; padding: 22px 0 10px; animation: nlt-fade-in .7s ease forwards; }
.nlt-book-success__mark {
	width: 64px; height: 64px; margin: 0 auto 18px;
	border: 1px solid var(--nlt-accent); border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px; color: var(--nlt-accent);
}
.nlt-book-success h3 { font-size: 30px; margin-bottom: 10px; }
.nlt-book-success__ref { font-size: 13px; letter-spacing: .14em; color: var(--nlt-muted); }
.nlt-book-error { color: #B4232A; font-size: 14px; margin: 12px 0 0; }

.nlt-trust { display: flex; justify-content: space-between; gap: 8px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--nlt-line); font-size: 11px; color: var(--nlt-muted); flex-wrap: wrap; }

/* ------------------------------------------------- mobile CTA bar */
.nlt-mobile-cta {
	display: none;
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
	background: var(--nlt-glass);
	backdrop-filter: blur(16px);
	border-top: 1px solid var(--nlt-glass-border);
	padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
	align-items: center; justify-content: space-between; gap: 16px;
}
.nlt-mobile-cta__price span { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--nlt-muted); }
.nlt-mobile-cta__price strong { font-family: var(--nlt-font-display); font-size: 24px; }

/* --------------------------------------------------- WhatsApp fab */
.nlt-whatsapp {
	position: fixed; right: 22px; bottom: 96px; z-index: 9991;
	width: 56px; height: 56px;
	display: flex; align-items: center; justify-content: center;
	background: #25D366; color: #fff;
	border-radius: 50%;
	box-shadow: 0 12px 32px rgba(0,0,0,.28);
	transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.nlt-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* ---------------------------------------------------- tour cards */
.nlt-collection { margin: 40px 0; }
.nlt-filterbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.nlt-filterbar button {
	padding: 10px 22px;
	font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
	background: none; border: 1px solid var(--nlt-line);
	color: var(--nlt-muted); cursor: pointer;
	transition: all .3s;
	font-family: var(--nlt-font-body);
}
.nlt-filterbar button:hover { border-color: var(--nlt-accent); color: var(--nlt-text); }
.nlt-filterbar button.is-active { background: var(--nlt-accent); border-color: var(--nlt-accent); color: #fff; }

.nlt-grid { display: grid; gap: 30px; }
.nlt-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.nlt-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.nlt-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.nlt-grid__item.is-hidden { display: none; }

.nlt-card { background: var(--nlt-surface); border: 1px solid var(--nlt-line); overflow: hidden; transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s; height: 100%; display: flex; flex-direction: column; }
.nlt-card:hover { transform: translateY(-8px); box-shadow: var(--nlt-shadow); }
.nlt-card__media { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.nlt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(.22,1,.36,1); }
.nlt-card:hover .nlt-card__media img { transform: scale(1.08); }
.nlt-card__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--nlt-soft), var(--nlt-surface-2)); }
.nlt-card__badge {
	position: absolute; top: 16px; left: 16px;
	padding: 6px 14px;
	font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
	background: var(--nlt-glass); backdrop-filter: blur(8px);
	color: var(--nlt-text); border: 1px solid var(--nlt-glass-border);
}
.nlt-card__duration {
	position: absolute; bottom: 16px; right: 16px;
	padding: 6px 14px;
	font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
	background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(6px);
}
.nlt-card__body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.nlt-card__eyebrow { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--nlt-accent); margin-bottom: 10px; }
.nlt-card__title { font-size: 25px; }
.nlt-card__title a { color: var(--nlt-text); text-decoration: none; transition: color .25s; }
.nlt-card__title a:hover { color: var(--nlt-accent); }
.nlt-card__rating { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--nlt-muted); margin-top: 10px; }
.nlt-card__footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 22px; }
.nlt-card__price span { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--nlt-muted); }
.nlt-card__price strong { font-family: var(--nlt-font-display); font-size: 27px; font-weight: 500; }
.nlt-card__cta { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--nlt-accent); text-decoration: none; transition: gap .3s, letter-spacing .3s; }
.nlt-card__cta:hover { letter-spacing: .3em; }

/* -------------------------------------------------------- search */
.nlt-search {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	gap: 0;
	background: var(--nlt-surface);
	border: 1px solid var(--nlt-line);
	box-shadow: var(--nlt-shadow);
	margin: 0 0 56px;
}
.nlt-search__field { padding: 18px 24px; border-right: 1px solid var(--nlt-line); }
.nlt-search__field span { display: block; font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--nlt-muted); margin-bottom: 5px; }
.nlt-search__field input, .nlt-search__field select {
	width: 100%; border: none; background: none; padding: 0;
	font-family: var(--nlt-font-body); font-size: 16px; color: var(--nlt-text);
}
.nlt-search__field input:focus, .nlt-search__field select:focus { outline: none; }
.nlt-search .nlt-btn { border: none; }

/* -------------------------------------------------------- archive */
.nlt-archive__head { padding: 130px 0 70px; text-align: center; background: linear-gradient(to bottom, var(--nlt-soft), var(--nlt-bg)); }
.nlt-archive__head h1 { font-size: clamp(40px, 6vw, 72px); margin: 16px 0 18px; }
.nlt-archive__head p { max-width: 560px; margin: 0 auto; color: var(--nlt-muted); font-size: 18px; }
.nlt-pagination { text-align: center; padding: 50px 0 90px; }
.nlt-pagination .page-numbers { display: inline-block; min-width: 42px; padding: 10px 8px; margin: 0 3px; border: 1px solid var(--nlt-line); text-decoration: none; color: var(--nlt-text); font-size: 14px; transition: all .25s; }
.nlt-pagination .page-numbers.current, .nlt-pagination .page-numbers:hover { background: var(--nlt-accent); border-color: var(--nlt-accent); color: #fff; }
.nlt-empty { text-align: center; padding: 90px 0 120px; }
.nlt-empty h2 { font-size: 36px; margin-bottom: 14px; }
.nlt-empty p { color: var(--nlt-muted); margin-bottom: 30px; }

/* ----------------------------------------------------- responsive */
@media (max-width: 1080px) {
	.nlt-layout { grid-template-columns: 1fr; gap: 0; }
	.nlt-aside { position: static; max-width: 560px; margin: 0 auto; width: 100%; }
	.nlt-grid--cols-3, .nlt-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
	.nlt-search { grid-template-columns: 1fr 1fr; }
	.nlt-search__field:nth-child(odd) { border-right: 0; }
	.nlt-search .nlt-btn { grid-column: 1 / -1; padding: 18px; }
}
@media (max-width: 680px) {
	.nlt { font-size: 16px; }
	.nlt-hero { min-height: 78vh; }
	.nlt-grid--cols-2, .nlt-grid--cols-3, .nlt-grid--cols-4 { grid-template-columns: 1fr; }
	.nlt-inclusions, .nlt-review-summary { grid-template-columns: 1fr; }
	.nlt-search { grid-template-columns: 1fr; }
	.nlt-search__field { border-right: 0; border-bottom: 1px solid var(--nlt-line); }
	.nlt-mobile-cta { display: flex; }
	.nlt-single { padding-bottom: 80px; }
	.nlt-timeline::before { left: 21px; }
	.nlt-timeline__marker { flex-basis: 44px; width: 44px; height: 44px; font-size: 18px; }
	.nlt-timeline__day { gap: 18px; }
	.nlt-timeline__card { padding: 22px; }
	.nlt-layout { padding-top: 56px; }
	.nlt-section { margin-bottom: 64px; }
	.nlt-facts { margin-bottom: 52px; }
	.nlt-whatsapp { bottom: 88px; right: 16px; }
}

/* ===================== v2.0 additions ===================== */

/* Wishlist heart */
.nlt-card { position: relative; }
.nlt-wish {
	position: absolute; top: 14px; right: 14px; z-index: 3;
	width: 38px; height: 38px;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid var(--nlt-glass-border);
	background: var(--nlt-glass);
	backdrop-filter: blur(8px);
	color: var(--nlt-text);
	cursor: pointer;
	border-radius: 50%;
	transition: transform .25s, color .25s;
}
.nlt-wish:hover { transform: scale(1.12); color: var(--nlt-accent); }
.nlt-wish.is-saved { color: #C2453F; }
.nlt-wish.is-saved svg path { fill: currentColor; }

/* Privilege code */
.nlt-coupon { display: flex; gap: 10px; margin: 4px 0 2px; }
.nlt-coupon input {
	flex: 1; padding: 12px 14px;
	border: 1px dashed var(--nlt-line); background: var(--nlt-surface);
	color: var(--nlt-text); font-family: var(--nlt-font-body); font-size: 13px;
	letter-spacing: .14em; text-transform: uppercase;
}
.nlt-coupon input:focus { outline: none; border-color: var(--nlt-accent); }
.nlt-coupon .nlt-btn { padding: 10px 20px; }
.nlt-coupon-msg { font-size: 13px; margin: 6px 0 0; min-height: 1em; }
.nlt-coupon-msg.is-ok { color: var(--nlt-accent); }
.nlt-coupon-msg.is-bad { color: #B4232A; }

/* Availability */
.nlt-availability { font-size: 13px; letter-spacing: .06em; margin: -6px 0 12px; }
.nlt-availability.is-ok { color: #1a7a35; }
.nlt-availability.is-low { color: #996800; }
.nlt-availability.is-out { color: #B4232A; }

/* Payment toast */
.nlt-toast {
	position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%);
	z-index: 99998;
	background: var(--nlt-glass, rgba(255,255,255,.9));
	backdrop-filter: blur(16px);
	border: 1px solid var(--nlt-accent, #D4AF37);
	box-shadow: 0 18px 50px rgba(0,0,0,.25);
	padding: 18px 30px;
	text-align: center;
	font-family: "Jost", system-ui, sans-serif;
	animation: nlt-fade-in .7s ease;
	max-width: min(520px, 92vw);
}
.nlt-toast strong { display: block; font-size: 15px; margin-bottom: 4px; }
.nlt-toast span { font-size: 13px; color: var(--nlt-muted, #777); }

/* Guest portal */
.nlt-account { max-width: 920px; margin: 0 auto; padding: 30px 0; }
.nlt-account__title { font-size: 34px; margin-bottom: 26px; }
.nlt-lookup {
	max-width: 460px; margin: 30px auto;
	background: var(--nlt-surface); border: 1px solid var(--nlt-line);
	padding: 34px 36px; box-shadow: var(--nlt-shadow);
}
.nlt-lookup h3 { font-size: 26px; margin-bottom: 20px; }
.nlt-trip {
	display: grid; grid-template-columns: 280px 1fr; gap: 0;
	background: var(--nlt-surface); border: 1px solid var(--nlt-line);
	margin-bottom: 26px; overflow: hidden;
}
.nlt-trip__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nlt-trip__body { padding: 28px 32px; }
.nlt-trip__body h3 { font-size: 26px; margin: 12px 0 14px; }
.nlt-trip__body h3 a { color: var(--nlt-text); text-decoration: none; }
.nlt-trip__meta { list-style: none; margin: 0 0 20px; padding: 0; }
.nlt-trip__meta li { padding: 7px 0; border-bottom: 1px solid var(--nlt-line); font-size: 14px; display: flex; justify-content: space-between; gap: 18px; }
.nlt-trip__meta strong { font-weight: 500; color: var(--nlt-muted); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.nlt-trip__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.nlt-trip .nlt-pill { padding: 4px 14px; border-radius: 999px; font-size: 11px; text-transform: capitalize; }
.nlt-pill--pending { background: #fcf3df; color: #996800; }
.nlt-pill--confirmed { background: #e2f3e6; color: #1a7a35; }
.nlt-pill--completed { background: #e4ecf7; color: #2a5a9c; }
.nlt-pill--cancelled { background: #fbeaea; color: #b32d2e; }

@media (max-width: 680px) {
	.nlt-trip { grid-template-columns: 1fr; }
	.nlt-trip__media img { max-height: 200px; }
}

/* ===================== Explorer layout (TripAdvisor style) ===================== */
.nlt-explorer { padding: 28px 0 80px; }

.nlt-exp-breadcrumb { font-size: 13px; color: var(--nlt-muted); margin-bottom: 18px; }
.nlt-exp-breadcrumb a { color: var(--nlt-muted); text-decoration: underline; text-underline-offset: 3px; }
.nlt-exp-breadcrumb a:hover { color: var(--nlt-accent); }

.nlt-exp-head h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 600; }
.nlt-exp-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin: 12px 0 22px; font-size: 14.5px; }
.nlt-exp-rating { display: inline-flex; align-items: center; gap: 8px; color: var(--nlt-text); text-decoration: none; }
.nlt-exp-rating:hover span { text-decoration: underline; }
.nlt-exp-rating span { color: var(--nlt-muted); }
.nlt-exp-loc { color: var(--nlt-muted); }
.nlt-exp-chip {
	padding: 5px 14px; border: 1px solid var(--nlt-line); border-radius: 999px;
	font-size: 12px; letter-spacing: .04em; background: var(--nlt-surface);
}
.nlt-exp-chip--accent { border-color: var(--nlt-accent); color: var(--nlt-accent); }

/* Collage: 1 large + 4 tiles, "+N photos" on the last visible tile */
.nlt-exp-collage {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, 230px);
	gap: 8px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 36px;
}
.nlt-exp-collage__item { position: relative; display: block; overflow: hidden; }
.nlt-exp-collage__item:first-child { grid-row: span 2; }
.nlt-exp-collage__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.nlt-exp-collage__item:hover img { transform: scale(1.05); }
.nlt-exp-collage__item.is-overflow { display: none; } /* still feeds the lightbox */
.nlt-exp-collage__more {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: rgba(5,5,5,.5); color: #fff;
	font-size: 16px; font-weight: 500; letter-spacing: .04em;
	backdrop-filter: blur(2px);
}
.nlt-exp-collage--few { grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 230px); }

.nlt-exp-layout { padding: 0; }

/* Facts strip */
.nlt-exp-facts {
	display: flex; flex-wrap: wrap; gap: 10px 28px;
	padding: 16px 20px;
	background: var(--nlt-surface-2);
	border-radius: 10px;
	font-size: 14px;
	margin-bottom: 8px;
}

/* Sections */
.nlt-exp-section { padding: 30px 0; border-bottom: 1px solid var(--nlt-line); }
.nlt-exp-section:last-child { border-bottom: 0; }
.nlt-exp-section h2 { font-size: 24px; font-weight: 600; margin-bottom: 16px; font-family: var(--nlt-font-body); }
.nlt-exp-prose { font-size: 16px; max-width: 70ch; }
.nlt-exp-prose p { margin: 0 0 1.1em; }

.nlt-exp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; }

.nlt-exp-checklist { list-style: none; margin: 0; padding: 0; }
.nlt-exp-checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: 15.5px; }
.nlt-exp-checklist li > span:first-child { color: #1a7a35; font-weight: 600; margin-top: 1px; }
.nlt-exp-checklist--no li > span:first-child { color: #b32d2e; }
.nlt-exp-checklist li > span[aria-hidden]:first-child:not(:empty) { flex: 0 0 auto; }

/* Itinerary accordion */
.nlt-exp-days { border: 1px solid var(--nlt-line); border-radius: 10px; overflow: hidden; }
.nlt-exp-day { border-bottom: 1px solid var(--nlt-line); background: var(--nlt-surface); }
.nlt-exp-day:last-child { border-bottom: 0; }
.nlt-exp-day summary {
	display: flex; align-items: center; gap: 16px;
	padding: 16px 20px;
	cursor: pointer; list-style: none;
	font-size: 15.5px; font-weight: 500;
	transition: background .2s;
}
.nlt-exp-day summary::-webkit-details-marker { display: none; }
.nlt-exp-day summary:hover { background: var(--nlt-soft); }
.nlt-exp-day__num {
	flex: 0 0 auto;
	font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--nlt-accent); border: 1px solid var(--nlt-accent);
	padding: 4px 12px; border-radius: 999px;
}
.nlt-exp-day__title { flex: 1; }
.nlt-exp-day__arrow { transition: transform .3s; color: var(--nlt-muted); }
.nlt-exp-day[open] .nlt-exp-day__arrow { transform: rotate(180deg); }
.nlt-exp-day__body { padding: 4px 20px 20px 20px; font-size: 15px; color: var(--nlt-muted); }
.nlt-exp-day__body p { margin: 0 0 10px; }
.nlt-exp-day__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 13px; padding-top: 8px; border-top: 1px dashed var(--nlt-line); }

/* Explorer responsive */
@media (max-width: 980px) {
	.nlt-exp-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 140px; }
	.nlt-exp-collage__item:first-child { grid-column: span 2; grid-row: auto; }
	.nlt-exp-collage__item:nth-child(n+4) { display: none; }
	.nlt-exp-collage__item:nth-child(3) .nlt-exp-collage__more,
	.nlt-exp-collage__item:nth-child(3)::after { display: flex; }
	.nlt-exp-cols { grid-template-columns: 1fr; }
}

/* ===================== Explorer v2.2 — TripAdvisor parity ===================== */

.nlt-exp-back { font-size: 14px; font-weight: 500; color: var(--nlt-text); text-decoration: underline; text-underline-offset: 3px; }
.nlt-exp-back:hover { color: var(--nlt-accent); }

.nlt-exp-badge {
	display: inline-block;
	padding: 7px 16px;
	border: 1px solid var(--nlt-line);
	border-radius: 10px;
	font-size: 13px; font-weight: 600;
	background: var(--nlt-surface);
	margin: 14px 0 10px;
}

.nlt-exp-titlerow { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.nlt-exp-titlerow h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; font-family: var(--nlt-font-body); line-height: 1.18; }
.nlt-exp-actions { display: flex; gap: 10px; flex: 0 0 auto; padding-top: 8px; }
.nlt-exp-action {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 20px;
	border: 1px solid var(--nlt-text);
	border-radius: 999px;
	background: var(--nlt-surface);
	color: var(--nlt-text);
	font-size: 14px; font-weight: 600;
	cursor: pointer; text-decoration: none;
	transition: background .2s, transform .2s;
	font-family: var(--nlt-font-body);
}
.nlt-exp-action:hover { background: var(--nlt-soft); transform: translateY(-1px); }
.nlt-exp-action.is-saved { color: #C2453F; border-color: #C2453F; }
.nlt-exp-action.is-saved svg path { fill: currentColor; }

/* Rating circles */
.nlt-circles { display: inline-flex; gap: 3px; }
.nlt-circles i { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--nlt-accent); display: inline-block; }
.nlt-circles i.is-on { background: var(--nlt-accent); }
.nlt-exp-rating { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--nlt-text); }
.nlt-exp-rating strong { font-size: 16px; font-weight: 700; }
.nlt-exp-rating__link { color: var(--nlt-text); text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }
.nlt-exp-reco { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--nlt-accent); }

/* Collage: lead + 2 stacked */
.nlt-exp-collage {
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(2, 250px);
	margin-top: 22px;
}
.nlt-exp-collage__item.is-lead { grid-row: span 2; }
.nlt-exp-collage__item:first-child { grid-row: span 2; } /* legacy rule kept in sync */
.nlt-exp-collage--few { grid-template-columns: 1fr; grid-template-rows: 420px; }
.nlt-exp-collage--few .nlt-exp-collage__item:not(.is-lead) { display: none; }

.nlt-exp-hot {
	position: absolute; top: 16px; left: 16px;
	background: #E8F7EA; color: #114B1E;
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 13px;
	display: flex; flex-direction: column; gap: 1px;
	box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.nlt-exp-hot strong { font-weight: 700; }
.nlt-exp-hot em { font-style: normal; font-size: 12px; opacity: .85; }
.nlt-exp-count {
	position: absolute; bottom: 16px; right: 16px;
	background: rgba(5,20,8,.85); color: #fff;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px; font-weight: 600;
}

/* Sticky section tabs */
.nlt-exp-tabs {
	position: sticky; top: 0; z-index: 50;
	display: flex; gap: 4px;
	background: var(--nlt-bg);
	border-bottom: 1px solid var(--nlt-line);
	margin-bottom: 6px;
	overflow-x: auto;
	scrollbar-width: none;
}
.nlt-exp-tabs::-webkit-scrollbar { display: none; }
body.admin-bar .nlt-exp-tabs { top: 32px; }
.nlt-exp-tabs a {
	padding: 15px 18px;
	font-size: 15px; font-weight: 600;
	color: var(--nlt-muted);
	text-decoration: none;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	transition: color .2s, border-color .2s;
	font-family: var(--nlt-font-body);
}
.nlt-exp-tabs a:hover { color: var(--nlt-text); }
.nlt-exp-tabs a.is-active { color: var(--nlt-text); border-bottom-color: var(--nlt-accent); }

@media (max-width: 980px) {
	.nlt-exp-titlerow { flex-direction: column; gap: 12px; }
	.nlt-exp-collage { grid-template-columns: 1fr; grid-template-rows: 260px; }
	.nlt-exp-collage__item:not(.is-lead) { display: none; }
	body.admin-bar .nlt-exp-tabs { top: 46px; }
}

/* ===================== v2.3 — TripAdvisor-grade design pass ===================== */

.nlt-icon { flex: 0 0 auto; vertical-align: -2px; }
span > .nlt-icon, a > .nlt-icon, button > .nlt-icon { display: inline-block; }

/* ---- Cards: bold, rounded, real shadows (fixes gray badge/oval) ---- */
.nlt-card {
	border: none;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
	overflow: hidden;
}
.nlt-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.16); }
.nlt-card__media { aspect-ratio: 4/3; border-radius: 16px 16px 0 0; }

.nlt-wish {
	width: 40px; height: 40px;
	background: #fff;
	border: none;
	color: #1a1a1a;
	box-shadow: 0 2px 8px rgba(0,0,0,.22);
	backdrop-filter: none;
}
.nlt-wish svg { display: block; }
.nlt-wish:hover { color: #C2453F; transform: scale(1.1); }
.nlt-wish.is-saved { color: #C2453F; background: #fff; }
.nlt-wish.is-saved svg path { fill: currentColor; }

.nlt-card__badge {
	display: inline-flex; align-items: center; gap: 6px;
	background: #fff;
	color: #1a1a1a;
	border: none;
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 11px; font-weight: 700;
	letter-spacing: .04em; text-transform: none;
	box-shadow: 0 2px 8px rgba(0,0,0,.2);
	backdrop-filter: none;
}
.nlt-card__badge .nlt-icon { color: var(--nlt-accent); }

.nlt-card__body { padding: 18px 20px 20px; }
.nlt-card__eyebrow {
	display: inline-flex; align-items: center; gap: 5px;
	font-size: 12px; font-weight: 600;
	letter-spacing: .02em; text-transform: none;
	color: var(--nlt-muted);
	margin-bottom: 6px;
}
.nlt-card__eyebrow .nlt-icon { color: var(--nlt-accent); }
.nlt-card__title { font-size: 18px; line-height: 1.35; font-family: var(--nlt-font-body); font-weight: 700; }
.nlt-card__rating { gap: 7px; margin-top: 8px; font-size: 13.5px; }
.nlt-card__rating strong { font-weight: 700; color: var(--nlt-text); }
.nlt-card__details { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 10px; font-size: 13px; color: var(--nlt-muted); }
.nlt-card__details span { display: inline-flex; align-items: center; gap: 6px; }
.nlt-card__footer { padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--nlt-line); align-items: center; }
.nlt-card__price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.nlt-card__price span { display: inline; font-size: 12px; letter-spacing: 0; text-transform: none; }
.nlt-card__price strong { font-family: var(--nlt-font-body); font-size: 21px; font-weight: 800; }
.nlt-card__cta {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 700;
	letter-spacing: 0; text-transform: none;
	color: var(--nlt-accent);
}
.nlt-card__cta:hover { letter-spacing: 0; gap: 10px; }

/* ---- Search bar: compact, centered, rounded ---- */
.nlt-search {
	max-width: 980px;
	margin: 0 auto 48px;
	border-radius: 16px;
	overflow: hidden;
	grid-template-columns: 1.2fr 1fr 1fr auto;
}
.nlt-search__field { padding: 14px 20px; }
.nlt-search__field span { font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.nlt-search__field input, .nlt-search__field select { font-size: 15px; font-weight: 500; }
.nlt-search .nlt-btn {
	padding: 0 30px;
	font-size: 13px; font-weight: 700;
	letter-spacing: .04em;
	border-radius: 0;
}

/* ---- Buttons: bolder, slightly rounded ---- */
.nlt-btn { border-radius: 10px; font-weight: 600; }
.nlt-btn--hero { border-radius: 999px; }

/* ---- Archive header: editable image variant + tighter spacing ---- */
.nlt-archive__head { padding: 90px 0 56px; background-size: cover; background-position: center; position: relative; }
.nlt-archive__head.has-image { isolation: isolate; }
.nlt-archive__head.has-image::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(5,5,5,.45), rgba(5,5,5,.6));
}
.nlt-archive__head.has-image h1,
.nlt-archive__head.has-image p,
.nlt-archive__head.has-image .nlt-kicker { color: #fff; }
.nlt-archive__head.has-image .nlt-kicker { color: var(--nlt-accent-2); }
.nlt-archive__head h1 { font-weight: 600; }

/* ---- Archive toolbar: count + sort ---- */
.nlt-toolbar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 18px; flex-wrap: wrap;
	margin: 0 0 26px;
}
.nlt-toolbar__count { font-size: 15px; font-weight: 700; }
.nlt-toolbar__sort label { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--nlt-muted); }
.nlt-toolbar__sort select {
	padding: 10px 14px;
	border: 1px solid var(--nlt-line);
	border-radius: 10px;
	background: var(--nlt-surface);
	color: var(--nlt-text);
	font-family: var(--nlt-font-body);
	font-size: 14px; font-weight: 600;
	cursor: pointer;
}

/* ---- Explorer hot chip with icon ---- */
.nlt-exp-hot { flex-direction: row; align-items: center; gap: 10px; }
.nlt-exp-hot .nlt-icon { color: #114B1E; }
.nlt-exp-hot__txt { display: flex; flex-direction: column; gap: 1px; }
.nlt-exp-count { display: inline-flex; align-items: center; gap: 7px; }
.nlt-exp-loc { display: inline-flex; align-items: center; gap: 6px; }
.nlt-exp-loc .nlt-icon { color: var(--nlt-accent); }
.nlt-exp-facts span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.nlt-exp-facts .nlt-icon { color: var(--nlt-accent); }
.nlt-exp-day__meta span { display: inline-flex; align-items: center; gap: 6px; }
.nlt-timeline__meta span { display: inline-flex; align-items: center; gap: 6px; }
.nlt-trust span { display: inline-flex; align-items: center; gap: 6px; }
.nlt-trust .nlt-icon { color: var(--nlt-accent); }

/* Rounded panels in explorer for the bolder look */
.nlt-explorer .nlt-panel-book { border-radius: 16px; }
.nlt-explorer .nlt-hotel { border-radius: 14px; overflow: hidden; }
.nlt-explorer .nlt-review { border-radius: 12px; }
.nlt-explorer .nlt-review-summary { border-radius: 14px; }
