:root {
	--ncb-ink: #122230;
	--ncb-muted: #60717e;
	--ncb-sand: #f5efe5;
	--ncb-gold: #b27a25;
	--ncb-gold-dark: #835716;
	--ncb-river: #087f8c;
	--ncb-line: #dbe2e6;
	--ncb-white: #fff;
	--ncb-radius: 18px;
	--ncb-shadow: 0 18px 55px rgba(18, 34, 48, .10);
}

.ncb-gallery,
.ncb-route-summary,
.ncb-booking,
.ncb-archive {
	box-sizing: border-box;
	color: var(--ncb-ink);
}

.ncb-gallery *,
.ncb-route-summary *,
.ncb-booking *,
.ncb-archive * { box-sizing: border-box; }

.ncb-gallery {
	float: left;
	width: 48%;
	margin: 0 0 2rem;
}

.ncb-gallery__stage {
	overflow: hidden;
	border-radius: var(--ncb-radius);
	background: #e8ecee;
}

.ncb-gallery__open,
.ncb-gallery__thumb {
	appearance: none;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.ncb-gallery__open {
	position: relative;
	display: block;
	width: 100%;
}

.ncb-gallery__hero {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .35s ease;
}

.ncb-gallery__open:hover .ncb-gallery__hero { transform: scale(1.025); }

.ncb-gallery__count {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(18, 34, 48, .82);
	color: var(--ncb-white);
	font-size: 13px;
	font-weight: 700;
}

.ncb-gallery__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 4px;
}

.ncb-gallery__thumb {
	flex: 0 0 82px;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	scroll-snap-align: start;
}

.ncb-gallery__thumb.is-active { border-color: var(--ncb-river); }

.ncb-gallery__thumb img {
	display: block;
	width: 100%;
	height: 62px;
	object-fit: cover;
}

.ncb-lightbox {
	width: min(1120px, calc(100vw - 32px));
	height: min(820px, calc(100vh - 32px));
	max-width: none;
	max-height: none;
	padding: 0;
	border: 0;
	border-radius: 18px;
	background: #0b1218;
	color: #fff;
	overflow: hidden;
}

.ncb-lightbox::backdrop { background: rgba(4, 10, 14, .88); }

.ncb-lightbox__figure {
	display: grid;
	place-items: center;
	align-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 50px 80px;
}

.ncb-lightbox__figure img {
	max-width: 100%;
	max-height: calc(100% - 45px);
	object-fit: contain;
}

.ncb-lightbox__figure figcaption {
	margin-top: 14px;
	color: #dbe2e6;
	text-align: center;
}

.ncb-lightbox__close,
.ncb-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .13);
	color: #fff;
	cursor: pointer;
}

.ncb-lightbox__close {
	top: 16px;
	right: 16px;
	width: 42px;
	height: 42px;
	font-size: 31px;
}

.ncb-lightbox__nav {
	top: 50%;
	width: 48px;
	height: 48px;
	font-size: 38px;
	transform: translateY(-50%);
}

.ncb-lightbox__nav--previous { left: 18px; }
.ncb-lightbox__nav--next { right: 18px; }
.ncb-lightbox-open { overflow: hidden; }

.ncb-route-summary {
	clear: both;
	margin: 30px 0 22px;
}

.ncb-route-summary h2,
.ncb-booking h2,
.ncb-filters h2 {
	margin: 0 0 16px;
	color: var(--ncb-ink);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
}

.ncb-route-summary__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 14px;
}

.ncb-route-card {
	padding: 20px;
	border: 1px solid var(--ncb-line);
	border-radius: 15px;
	background: var(--ncb-white);
}

.ncb-route-card h3 { margin: 0 0 14px; font-size: 19px; }
.ncb-route-card dl,
.ncb-route-card dd { margin: 0; }

.ncb-route-card dl > div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 9px 0;
	border-top: 1px solid var(--ncb-line);
}

.ncb-route-card dt { color: var(--ncb-muted); }
.ncb-route-card dd { text-align: right; font-weight: 650; }

.ncb-booking {
	clear: both;
	margin: 34px 0;
	padding: clamp(22px, 4vw, 42px);
	border-radius: 24px;
	background: linear-gradient(140deg, #f7f1e7 0%, #eef6f5 100%);
	box-shadow: var(--ncb-shadow);
}

.ncb-booking__header { max-width: 720px; margin-bottom: 24px; }
.ncb-booking__header p:last-child { color: var(--ncb-muted); }

.ncb-eyebrow {
	margin: 0 0 6px;
	color: var(--ncb-gold-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

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

.ncb-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
}

.ncb-field--wide { grid-column: 1 / -1; }
.ncb-field > span { font-weight: 700; }
.ncb-field small { color: var(--ncb-muted); }
.ncb-field__error { color: #a12622 !important; }

.ncb-field input,
.ncb-field select,
.ncb-field textarea,
.ncb-filters input,
.ncb-filters select {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid #bdc9cf;
	border-radius: 9px;
	background: #fff;
	color: var(--ncb-ink);
	font: inherit;
}

.ncb-field input:focus,
.ncb-field select:focus,
.ncb-field textarea:focus,
.ncb-filters input:focus,
.ncb-filters select:focus {
	border-color: var(--ncb-river);
	box-shadow: 0 0 0 3px rgba(8, 127, 140, .14);
	outline: 0;
}

.ncb-honeypot {
	position: absolute !important;
	left: -99999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.ncb-estimate {
	margin-top: 20px;
	padding: 15px 18px;
	border-left: 4px solid var(--ncb-river);
	border-radius: 8px;
	background: #fff;
	font-size: 18px;
	font-weight: 800;
}

.ncb-estimate-note { margin: 8px 0 18px; color: var(--ncb-muted); font-size: 13px; }

.ncb-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 18px;
}

.ncb-consent input { margin-top: 4px; }

.ncb-submit,
.ncb-filters .button,
.ncb-cruise-card .button {
	min-height: 46px;
	padding: 12px 20px !important;
	border: 0 !important;
	border-radius: 9px !important;
	background: var(--ncb-river) !important;
	color: #fff !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

.ncb-submit:hover,
.ncb-filters .button:hover,
.ncb-cruise-card .button:hover { background: #056772 !important; }

.ncb-notice { margin: 20px 0 !important; }
.ncb-price-prefix { color: var(--ncb-muted); font-size: .8em; }
.ncb-price-on-request { font-weight: 750; }

.ncb-archive {
	width: min(1200px, 100%);
	margin: 0 auto;
}

.ncb-filters {
	margin-bottom: 24px;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid var(--ncb-line);
	border-radius: 20px;
	background: var(--ncb-sand);
}

.ncb-filters__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.ncb-filters__heading h2 { margin-bottom: 0; }
.ncb-filters__heading > a { color: var(--ncb-gold-dark); font-weight: 700; }

.ncb-filters__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	align-items: end;
}

.ncb-filters label { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.ncb-filters label > span { font-size: 13px; font-weight: 750; }

.ncb-results-bar {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
	color: var(--ncb-muted);
}

.ncb-results-bar strong { color: var(--ncb-ink); }

.ncb-cruise-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ncb-cruise-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--ncb-line);
	border-radius: var(--ncb-radius);
	background: #fff;
	box-shadow: 0 9px 28px rgba(18, 34, 48, .07);
	transition: transform .2s ease, box-shadow .2s ease;
}

.ncb-cruise-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ncb-shadow);
}

.ncb-cruise-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	background: #e8ecee;
}

.ncb-cruise-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .3s ease;
}

.ncb-cruise-card:hover .ncb-cruise-card__image img { transform: scale(1.025); }

.ncb-cruise-card__image > span {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(18, 34, 48, .82);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.ncb-cruise-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.ncb-cruise-card__routes { display: flex; flex-wrap: wrap; gap: 6px; }

.ncb-cruise-card__routes span {
	padding: 5px 8px;
	border-radius: 999px;
	background: #e8f4f4;
	color: #075f69;
	font-size: 11px;
	font-weight: 800;
}

.ncb-cruise-card h3 { margin: 12px 0 8px; font-size: 22px; line-height: 1.2; }
.ncb-cruise-card h3 a { color: var(--ncb-ink); text-decoration: none; }
.ncb-cruise-card__excerpt { margin-bottom: 14px; color: var(--ncb-muted); }

.ncb-cruise-card__schedule {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.ncb-cruise-card__schedule li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-top: 1px solid var(--ncb-line);
	font-size: 13px;
}

.ncb-cruise-card__schedule span { color: var(--ncb-muted); text-align: right; }

.ncb-cruise-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.ncb-cruise-card__price { font-weight: 800; }
.ncb-cruise-card__price small { display: block; color: var(--ncb-muted); font-size: 11px; font-weight: 500; }

.ncb-pagination { margin-top: 30px; }
.ncb-pagination ul { display: flex; justify-content: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.ncb-pagination a,
.ncb-pagination span {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--ncb-line);
	border-radius: 8px;
	background: #fff;
	color: var(--ncb-ink);
	text-decoration: none;
}
.ncb-pagination .current { border-color: var(--ncb-river); background: var(--ncb-river); color: #fff; }

.ncb-empty {
	padding: 50px 24px;
	border: 1px dashed #b9c6cc;
	border-radius: var(--ncb-radius);
	text-align: center;
}

@media (max-width: 980px) {
	.ncb-filters__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ncb-cruise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	.ncb-gallery { float: none; width: 100%; }
	.ncb-form-grid,
	.ncb-filters__grid,
	.ncb-cruise-grid { grid-template-columns: 1fr; }
	.ncb-field--wide { grid-column: auto; }
	.ncb-results-bar,
	.ncb-filters__heading { align-items: flex-start; flex-direction: column; }
	.ncb-lightbox__figure { padding: 55px 18px 70px; }
	.ncb-lightbox__nav { top: auto; bottom: 12px; transform: none; }
	.ncb-cruise-card__footer { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.ncb-gallery__hero,
	.ncb-cruise-card,
	.ncb-cruise-card__image img { transition: none; }
}
