/* ==========================================================================
   Binham — page-level sections
   ========================================================================== */

/* Progressive enhancement: panels only collapse once JS is confirmed. */
.bnh-js [data-bnh-hidden] { display: none !important; }

/* --- Homepage banner + floating search ---------------------------------- */

.bnh-hero-home { background: var(--bnh-navy-800); line-height: 0; }

.bnh-hero-home__img {
	width: 100%;
	height: auto;
	max-height: 78vh;
	object-fit: cover;
	object-position: center;
}

.bnh-homesearch { position: relative; z-index: 5; }

@media (min-width: 768px) {
	.bnh-homesearch {
		margin-top: -56px;
		padding-top: 0;
	}
}

.bnh-searchbar__go { min-height: 48px; }

/* --- Editorial hero ------------------------------------------------------ */

.bnh-hero {
	position: relative;
	isolation: isolate;
	background: var(--bnh-navy-800);
	color: var(--bnh-white);
	overflow: hidden;
}

.bnh-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.bnh-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bnh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(105deg, rgba(0, 37, 64, .94) 0%, rgba(0, 37, 64, .86) 42%, rgba(3, 64, 109, .62) 100%);
}

.bnh-hero--center::before {
	background: linear-gradient(180deg, rgba(0, 37, 64, .9) 0%, rgba(0, 37, 64, .78) 100%);
}

.bnh-hero__in {
	display: grid;
	gap: var(--bnh-s6);
	align-items: center;
	padding-block: clamp(3rem, 2rem + 6vw, 6rem);
}

.bnh-hero--center .bnh-hero__in { justify-items: center; text-align: center; }
.bnh-hero--center .bnh-hero__copy { max-width: 62ch; }

.bnh-hero__copy { max-width: 56ch; }

.bnh-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: .625rem;
	margin: 0 0 var(--bnh-s3);
	color: var(--bnh-orange);
	font-size: var(--bnh-fs-sm);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.bnh-hero--center .bnh-hero__eyebrow { justify-content: center; }

.bnh-hero__dash {
	display: inline-block;
	width: 34px;
	height: 3px;
	border-radius: 2px;
	background: var(--bnh-orange);
}

.bnh-hero__title {
	margin: 0 0 var(--bnh-s4);
	color: var(--bnh-white);
	font-family: var(--bnh-font-display);
	font-size: var(--bnh-fs-h1);
	font-weight: 700;
	line-height: 1.08;
}

.bnh-hero__title em {
	display: block;
	font-style: italic;
	font-weight: 600;
	opacity: .95;
}

.bnh-hero__title span { display: block; }

.bnh-hero__lead {
	margin: 0 0 var(--bnh-s5);
	color: rgba(255, 255, 255, .86);
	font-size: var(--bnh-fs-lead);
	max-width: 52ch;
}

.bnh-hero--center .bnh-hero__lead { margin-inline: auto; }

.bnh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bnh-s3);
}

.bnh-hero--center .bnh-hero__actions { justify-content: center; }

.bnh-hero__search {
	display: grid;
	gap: var(--bnh-s3);
	margin-top: var(--bnh-s5);
	padding: var(--bnh-s3);
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: var(--bnh-r-lg);
	backdrop-filter: blur(6px);
}

.bnh-hero__aside { width: 100%; }

@media (min-width: 1024px) {
	.bnh-hero--split .bnh-hero__in {
		grid-template-columns: 1.05fr .95fr;
		gap: var(--bnh-s8);
	}

	.bnh-hero__search { grid-template-columns: 1fr auto; align-items: center; }
}

/* --- Package-type selector card ----------------------------------------- */

.bnh-selector {
	padding: var(--bnh-s5);
	background: var(--bnh-white);
	border-radius: var(--bnh-r-lg);
	box-shadow: var(--bnh-sh-lg);
	color: var(--bnh-ink);
}

.bnh-selector__title {
	margin: 0 0 var(--bnh-s4);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--bnh-navy-800);
}

.bnh-selector__form { display: grid; gap: var(--bnh-s4); }

/* --- Step indicator ------------------------------------------------------ */

.bnh-steps {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--bnh-s3) var(--bnh-s5);
	margin: 0 0 var(--bnh-s6);
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.bnh-steps--mini {
	gap: var(--bnh-s2) var(--bnh-s4);
	margin-bottom: var(--bnh-s5);
	padding-bottom: var(--bnh-s4);
	border-bottom: 1px solid var(--bnh-line);
}

.bnh-steps__item {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-sm);
	font-weight: 500;
}

.bnh-steps__dot {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1.5px solid var(--bnh-line);
	border-radius: 50%;
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-sm);
	font-weight: 700;
	transition: background-color .2s var(--bnh-ease), border-color .2s var(--bnh-ease), color .2s var(--bnh-ease);
}

.bnh-steps__item.is-active .bnh-steps__dot,
.bnh-steps__item.is-done .bnh-steps__dot {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
	color: var(--bnh-white);
}

.bnh-steps__item.is-active .bnh-steps__label { color: var(--bnh-orange); font-weight: 600; }
.bnh-steps__item.is-done .bnh-steps__label { color: var(--bnh-navy-800); }

/* --- Centred feature card variant ---------------------------------------- */

.bnh-feature--center { align-items: center; text-align: center; }

/* --- Featured group offer ------------------------------------------------ */

.bnh-offer {
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	background: var(--bnh-grey-050);
	border-radius: var(--bnh-r-xl);
	box-shadow: var(--bnh-sh);
}

.bnh-offer__media { line-height: 0; background: var(--bnh-navy-900); }

.bnh-offer__media img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}

.bnh-offer__body { padding: clamp(1.5rem, 1rem + 2.5vw, 3rem); }

.bnh-offer__eyebrow {
	margin: 0 0 var(--bnh-s2);
	color: var(--bnh-orange);
	font-size: var(--bnh-fs-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.bnh-offer__title { margin: 0 0 var(--bnh-s3); font-size: var(--bnh-fs-h3); }
.bnh-offer__title a { color: inherit; text-decoration: none; }
.bnh-offer__title a:hover { color: var(--bnh-orange); }

.bnh-offer__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .5rem;
	margin: 0 0 var(--bnh-s5);
}

.bnh-offer__amount {
	color: var(--bnh-orange);
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
	font-weight: 700;
}

.bnh-offer__note { color: var(--bnh-muted); font-size: var(--bnh-fs-sm); }

.bnh-offer__cols {
	display: grid;
	gap: var(--bnh-s5);
	margin-bottom: var(--bnh-s5);
}

.bnh-offer__coltitle {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin: 0 0 var(--bnh-s2);
	color: var(--bnh-navy);
	font-size: var(--bnh-fs-sm);
	font-weight: 700;
}

.bnh-offer__coltitle .bnh-icon { color: var(--bnh-orange); }

.bnh-offer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-sm);
	display: grid;
	gap: .25rem;
}

@media (min-width: 768px) {
	.bnh-offer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
	.bnh-offer { grid-template-columns: .95fr 1.05fr; }
}

/* --- Seasonal packages (navy cards) -------------------------------------- */

.bnh-seasonal__top {
	display: grid;
	gap: var(--bnh-s4);
	align-items: end;
	margin-bottom: var(--bnh-s6);
}

@media (min-width: 1024px) {
	.bnh-seasonal__top { grid-template-columns: 1fr auto; }
	.bnh-seasonal__top .bnh-tabs { margin-bottom: 0; }
}

.bnh-card--dark {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .16);
}

.bnh-card--dark .bnh-card__title { color: var(--bnh-white); }
.bnh-card--dark .bnh-card__title a { color: var(--bnh-white); }
.bnh-card--dark .bnh-card__title a:hover { color: var(--bnh-orange); }
.bnh-card--dark .bnh-metas li { color: rgba(255, 255, 255, .78); }
.bnh-card--dark .bnh-card__foot--row { border-top: 1px solid rgba(255, 255, 255, .16); }

.bnh-card__badge--tier {
	left: 0;
	top: var(--bnh-s3);
	border-radius: 0 var(--bnh-r-pill) var(--bnh-r-pill) 0;
	background: var(--bnh-orange);
	color: var(--bnh-white);
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* Per-tab "View all" link under the package grid. */
.bnh-packages__more {
	margin: var(--bnh-s5) 0 0;
	text-align: center;
}

/* --- Divider between a section heading and its controls ------------------- */

.bnh-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--bnh-s2);
	margin: var(--bnh-s3) 0 var(--bnh-s4);
}

.bnh-rule__line {
	width: clamp(28px, 6vw, 56px);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--bnh-line));
}

/* Mirror the gradient so it fades outward from the dot on both sides. */
.bnh-rule__line:last-child {
	background: linear-gradient(90deg, var(--bnh-line), transparent);
}

.bnh-rule__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bnh-orange);
}

/*
 * The heading block owns the space above the tabs now, so the tab row does
 * not need to add its own on top of it.
 */
.bnh-packages__tabs { margin-bottom: var(--bnh-s5); }

.bnh-card__kicker {
	margin: 0;
	color: var(--bnh-orange);
	font-size: var(--bnh-fs-xs);
	font-weight: 700;
	letter-spacing: .06em;
}

.bnh-card__foot--row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bnh-s3);
	padding-top: var(--bnh-s3);
	border-top: 1px solid var(--bnh-line);
}

.bnh-card__price { color: var(--bnh-white); font-weight: 700; }
.bnh-card:not(.bnh-card--dark) .bnh-card__price { color: var(--bnh-navy-800); }

/* --- Tailor your own experience ------------------------------------------ */

.bnh-tailor {
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	border-radius: var(--bnh-r-xl);
	box-shadow: var(--bnh-sh-lg);
}

.bnh-tailor__left {
	padding: clamp(1.5rem, 1rem + 2.5vw, 3rem);
	background: var(--bnh-navy);
	color: rgba(255, 255, 255, .84);
}

.bnh-tailor__title { color: var(--bnh-white); font-size: var(--bnh-fs-h3); }
.bnh-tailor__text { font-size: var(--bnh-fs-sm); }

.bnh-tailor__steps {
	display: grid;
	gap: var(--bnh-s3);
	margin: var(--bnh-s5) 0 0;
	padding: 0;
	list-style: none;
}

.bnh-tailor__steps li {
	display: flex;
	align-items: center;
	gap: var(--bnh-s3);
	font-size: var(--bnh-fs-sm);
	color: var(--bnh-white);
}

.bnh-tailor__num {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
	background: rgba(255, 255, 255, .14);
	border-radius: var(--bnh-r-sm);
	font-size: var(--bnh-fs-xs);
	font-weight: 700;
}

.bnh-tailor__right {
	display: grid;
	gap: var(--bnh-s5);
	align-content: center;
	padding: clamp(1.5rem, 1rem + 2.5vw, 3rem);
	background: var(--bnh-grey-050);
}

.bnh-tailor__icons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--bnh-s5);
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.bnh-tailor__icons li { display: grid; justify-items: center; gap: var(--bnh-s2); }
.bnh-tailor__iconlabel { font-size: var(--bnh-fs-sm); font-weight: 600; color: var(--bnh-navy-800); }

@media (min-width: 1024px) {
	.bnh-tailor { grid-template-columns: .85fr 1.15fr; }
	.bnh-tailor__icons { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --- Companion section --------------------------------------------------- */

.bnh-companion__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--bnh-s4);
	align-items: end;
}

.bnh-companion__img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: var(--bnh-r-lg);
}

.bnh-companion__img--a { height: 240px; }

.bnh-companion__title {
	font-family: var(--bnh-font-display);
	font-size: var(--bnh-fs-h2);
	line-height: 1.12;
}

.bnh-companion__title em {
	display: block;
	color: var(--bnh-orange);
	font-style: italic;
}

.bnh-companion__lead { color: var(--bnh-muted); font-size: var(--bnh-fs-lead); }

.bnh-companion__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--bnh-s5);
	margin-top: var(--bnh-s6);
}

.bnh-point__num {
	margin: 0 0 .25rem;
	color: var(--bnh-orange);
	font-family: var(--bnh-font-display);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.bnh-point__title { margin: 0 0 .35rem; font-family: var(--bnh-font-display); font-size: 1.0625rem; }
.bnh-point__text { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-sm); }

/* --- Shared form card ---------------------------------------------------- */

.bnh-quoteform { max-width: 960px; }

.bnh-form--card {
	padding: clamp(1.25rem, 1rem + 2vw, 2.5rem);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-xl);
	box-shadow: var(--bnh-sh);
}

.bnh-form__submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bnh-s4);
}

.bnh-form__small { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); max-width: 44ch; }

/* --- Visa destinations grid ---------------------------------------------- */

.bnh-filteritem[hidden] { display: none; }

.bnh-tile__sub {
	display: block;
	margin-top: .15rem;
	color: rgba(255, 255, 255, .8);
	font-size: var(--bnh-fs-xs);
}

.bnh-tile--static { cursor: default; }

.bnh-empty {
	margin: var(--bnh-s6) 0 0;
	padding: var(--bnh-s5);
	background: var(--bnh-white);
	border: 1px dashed var(--bnh-line);
	border-radius: var(--bnh-r);
	color: var(--bnh-muted);
	text-align: center;
}

/* --- Flight quote form --------------------------------------------------- */

.bnh-flightform {
	display: grid;
	gap: var(--bnh-s4);
	padding: clamp(1.25rem, 1rem + 2vw, 2rem);
	background: var(--bnh-white);
	border-radius: var(--bnh-r-lg);
	box-shadow: var(--bnh-sh-lg);
	color: var(--bnh-ink);
}

.bnh-flightform__title { margin: 0; font-size: 1.25rem; color: var(--bnh-navy-800); }

.bnh-flightform__trip {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bnh-s2);
	margin: 0;
}

.bnh-radio {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	margin: 0;
	padding: .4rem .9rem;
	background: var(--bnh-grey-050);
	border: 1.5px solid var(--bnh-line);
	border-radius: var(--bnh-r-pill);
	font-size: var(--bnh-fs-sm);
	font-weight: 500;
	cursor: pointer;
}

.bnh-radio input { width: auto; margin: 0; accent-color: var(--bnh-orange); }
.bnh-radio:has(input:checked) { background: var(--bnh-orange-050); border-color: var(--bnh-orange); color: var(--bnh-orange-600); }

/* --- Offices ------------------------------------------------------------- */

.bnh-offices { display: grid; gap: var(--bnh-s6); }

.bnh-offices__list {
	display: grid;
	gap: var(--bnh-s4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bnh-office {
	padding: var(--bnh-s5);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
}

.bnh-office__city {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin: 0 0 var(--bnh-s2);
	font-size: 1.0625rem;
}

.bnh-office__city .bnh-icon { color: var(--bnh-orange); }

.bnh-office__addr {
	display: grid;
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-sm);
	font-style: normal;
}

.bnh-office__phone {
	display: inline-block;
	margin-top: var(--bnh-s2);
	color: var(--bnh-navy);
	font-weight: 600;
	font-size: var(--bnh-fs-sm);
	text-decoration: none;
}

.bnh-offices__map {
	display: grid;
	place-content: center;
	justify-items: center;
	gap: var(--bnh-s3);
	min-height: 260px;
	padding: var(--bnh-s6);
	background: var(--bnh-navy-050);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
	color: var(--bnh-navy);
	text-align: center;
}

.bnh-offices__mapicon { color: var(--bnh-orange); }

@media (min-width: 640px) {
	.bnh-offices__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
	.bnh-offices { grid-template-columns: 1.1fr .9fr; align-items: start; }
	.bnh-offices__list { grid-template-columns: 1fr; }
}

/* --- Tour of the month --------------------------------------------------- */

.bnh-tourmonth__img {
	width: 100%;
	height: clamp(280px, 40vw, 460px);
	object-fit: cover;
	border-radius: var(--bnh-r-xl);
}

.bnh-tourmonth__title { font-family: var(--bnh-font-display); font-size: var(--bnh-fs-h2); }
.bnh-tourmonth__title a { color: inherit; text-decoration: none; }
.bnh-tourmonth__title a:hover { color: var(--bnh-orange); }
.bnh-tourmonth__text { color: var(--bnh-muted); }

.bnh-tourmonth__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bnh-s5);
	margin-top: var(--bnh-s5);
}

.bnh-tourmonth__price { margin: 0; display: grid; }
.bnh-tourmonth__from { color: var(--bnh-muted); font-size: var(--bnh-fs-xs); text-transform: uppercase; letter-spacing: .08em; }

/* --- Booking wizard ------------------------------------------------------ */

.bnh-bookhero {
	padding-block: clamp(2.5rem, 2rem + 3vw, 4rem);
	background: var(--bnh-navy-800);
	color: var(--bnh-white);
	text-align: center;
}

.bnh-bookhero .bnh-hero__eyebrow { justify-content: center; }

.bnh-bookhero__title {
	margin: 0 0 var(--bnh-s3);
	color: var(--bnh-white);
	font-family: var(--bnh-font-display);
	font-size: var(--bnh-fs-h1);
}

.bnh-bookhero__lead {
	margin: 0 auto;
	max-width: 60ch;
	color: rgba(255, 255, 255, .84);
	font-size: var(--bnh-fs-lead);
}

.bnh-wizard {
	display: grid;
	gap: var(--bnh-s5);
	max-width: 980px;
	margin-inline: auto;
	padding: clamp(1.25rem, 1rem + 2vw, 2.5rem);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-xl);
	box-shadow: var(--bnh-sh);
}

.bnh-wizard__step {
	display: grid;
	gap: var(--bnh-s4);
	margin: 0;
	padding: 0;
	border: 0;
}

.bnh-wizard__legend {
	padding: 0;
	margin-bottom: var(--bnh-s2);
	font-size: var(--bnh-fs-h3);
	font-weight: 700;
	color: var(--bnh-navy-800);
}

.bnh-wizard__hint { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-sm); }

.bnh-wizard__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--bnh-s3);
	padding-top: var(--bnh-s4);
	border-top: 1px solid var(--bnh-line);
}

.bnh-wizard__nav .bnh-btn--primary { margin-left: auto; }

.bnh-wizard__dates { display: grid; gap: var(--bnh-s5); }

.bnh-wizard__summary {
	display: grid;
	gap: var(--bnh-s4);
	align-content: start;
	padding: var(--bnh-s5);
	background: var(--bnh-grey-050);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
}

.bnh-wizard__sumtitle { margin: 0; font-size: 1rem; color: var(--bnh-navy-800); }
.bnh-wizard__nights { margin: 0; color: var(--bnh-orange); font-size: var(--bnh-fs-sm); font-weight: 600; }

.bnh-wizard__counts { gap: var(--bnh-s3); }

.bnh-wizard__rooms { margin: 0; }
.bnh-wizard__rooms legend { font-size: 1rem; }

@media (min-width: 768px) {
	.bnh-wizard__dates { grid-template-columns: 1.15fr .85fr; }
}

/* --- Calendar ------------------------------------------------------------ */

.bnh-calendar {
	padding: var(--bnh-s4);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
}

.bnh-calendar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bnh-s3);
	margin-bottom: var(--bnh-s4);
}

.bnh-calendar__month { margin: 0; font-weight: 700; color: var(--bnh-navy-800); }

.bnh-calendar__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--bnh-grey-050);
	border: 1px solid var(--bnh-line);
	border-radius: 50%;
	color: var(--bnh-navy-800);
}

.bnh-calendar__nav:hover { background: var(--bnh-orange); border-color: var(--bnh-orange); color: var(--bnh-white); }

.bnh-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 4px;
}

.bnh-calendar__dow {
	padding: .25rem 0;
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-xs);
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

.bnh-calendar__day {
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--bnh-r-sm);
	color: var(--bnh-ink);
	font-size: var(--bnh-fs-sm);
	font-weight: 500;
}

.bnh-calendar__day:hover:not([disabled]) { border-color: var(--bnh-orange); color: var(--bnh-orange); }
.bnh-calendar__day[disabled] { color: var(--bnh-line); cursor: not-allowed; }
.bnh-calendar__day.is-start,
.bnh-calendar__day.is-end { background: var(--bnh-orange); border-color: var(--bnh-orange); color: var(--bnh-white); font-weight: 700; }
.bnh-calendar__day.is-between { background: var(--bnh-orange-050); color: var(--bnh-orange-600); }
.bnh-calendar__day.is-empty { visibility: hidden; }

.bnh-calendar__hint { margin: var(--bnh-s3) 0 0; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); }

/* --- Confirmation -------------------------------------------------------- */

.bnh-confirm { max-width: 940px; text-align: center; }

.bnh-confirm__mark {
	display: inline-grid;
	place-items: center;
	width: 76px;
	height: 76px;
	margin-bottom: var(--bnh-s4);
	background: color-mix(in srgb, var(--bnh-ok) 14%, transparent);
	border-radius: 50%;
	color: var(--bnh-ok);
}

.bnh-confirm__title { font-family: var(--bnh-font-display); font-size: var(--bnh-fs-h2); }
.bnh-confirm__lead { margin-inline: auto; max-width: 60ch; color: var(--bnh-muted); font-size: var(--bnh-fs-lead); }
.bnh-confirm__sub { margin-top: var(--bnh-s7); font-size: var(--bnh-fs-h3); }

.bnh-confirm__steps { margin: 0; padding: 0; list-style: none; text-align: left; }
.bnh-confirm__num { display: block; color: var(--bnh-orange); font-size: var(--bnh-fs-xs); font-weight: 700; letter-spacing: .08em; }

.bnh-confirm__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bnh-s3);
	margin-top: var(--bnh-s7);
}

.bnh-confirm__banner {
	position: relative;
	margin-top: var(--bnh-s7);
	border-radius: var(--bnh-r-xl);
	overflow: hidden;
	isolation: isolate;
	background: var(--bnh-navy-900);
}

.bnh-confirm__banner img { width: 100%; height: clamp(180px, 24vw, 290px); object-fit: cover; }

.bnh-confirm__bannertext {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	margin: 0;
	padding: var(--bnh-s6) var(--bnh-s4) var(--bnh-s4);
	background: linear-gradient(to top, rgba(1, 29, 50, .88), transparent);
	color: var(--bnh-white);
	font-family: var(--bnh-font-display);
	font-size: var(--bnh-fs-lead);
	font-style: italic;
}

/* --- Gallery ------------------------------------------------------------- */

.bnh-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bnh-s4);
}

.bnh-gallery__item {
	position: relative;
	border-radius: var(--bnh-r-lg);
	overflow: hidden;
	background: var(--bnh-navy-800);
	isolation: isolate;
}

.bnh-gallery__item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform .45s var(--bnh-ease);
}

.bnh-gallery__item:hover img { transform: scale(1.05); }

.bnh-gallery__cap {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: var(--bnh-s6) var(--bnh-s4) var(--bnh-s4);
	background: linear-gradient(to top, rgba(1, 29, 50, .86), transparent);
	color: var(--bnh-white);
	font-size: var(--bnh-fs-sm);
	text-align: left;
}

@media (min-width: 640px) { .bnh-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bnh-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* --- About / Contact ----------------------------------------------------- */

.bnh-lead { color: var(--bnh-muted); font-size: var(--bnh-fs-lead); }

.bnh-about__actions { display: flex; flex-wrap: wrap; gap: var(--bnh-s3); margin-top: var(--bnh-s5); }

.bnh-about__img {
	width: 100%;
	height: clamp(280px, 42vw, 480px);
	object-fit: cover;
	border-radius: var(--bnh-r-xl);
}

.bnh-faq { max-width: 860px; }

.bnh-contact__list {
	display: grid;
	gap: var(--bnh-s4);
	margin: var(--bnh-s5) 0 0;
	padding: 0;
	list-style: none;
}

.bnh-contact__list li { display: flex; align-items: center; gap: var(--bnh-s3); }
.bnh-contact__list .bnh-feature__icon { width: 46px; height: 46px; }
.bnh-contact__label { display: block; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); text-transform: uppercase; letter-spacing: .06em; }
.bnh-contact__list a { color: var(--bnh-navy-800); font-weight: 600; text-decoration: none; }
.bnh-contact__list a:hover { color: var(--bnh-orange); }
.bnh-contact__list address { font-style: normal; font-weight: 600; color: var(--bnh-navy-800); }

@media (min-width: 1024px) {
	.bnh-contact { grid-template-columns: .85fr 1.15fr; align-items: start; }
}

/* --- Prose / single ------------------------------------------------------ */

.bnh-prose { max-width: 780px; }
.bnh-prose h2 { margin-top: var(--bnh-s7); }
.bnh-prose h3 { margin-top: var(--bnh-s6); }
.bnh-prose ul li,
.bnh-prose ol li { margin-bottom: .35rem; }

.bnh-prose__hero { margin: 0 0 var(--bnh-s6); }
.bnh-prose__hero img { width: 100%; border-radius: var(--bnh-r-lg); }

/*
 * `align-items: start` matters: without it the aside stretches to the full row
 * height, leaving its sticky child nothing to travel inside.
 */
.bnh-single__grid { display: grid; gap: var(--bnh-s7); align-items: start; }
.bnh-single__head { margin-bottom: var(--bnh-s5); }
.bnh-single__title { font-family: var(--bnh-font-display); }
.bnh-single__media { margin: 0 0 var(--bnh-s6); }
.bnh-single__media img { width: 100%; border-radius: var(--bnh-r-lg); }
.bnh-single__incl { margin-top: var(--bnh-s7); }
.bnh-single__subtitle { font-size: var(--bnh-fs-h3); }

.bnh-bookbox {
	position: sticky;
	top: calc(var(--bnh-nav-h) + var(--bnh-s5));
	display: grid;
	gap: var(--bnh-s4);
	padding: var(--bnh-s5);
	background: var(--bnh-grey-050);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
}

.bnh-bookbox__from { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); text-transform: uppercase; letter-spacing: .08em; }
.bnh-bookbox__price { margin: 0; color: var(--bnh-orange); font-size: var(--bnh-fs-h3); font-weight: 700; }
.bnh-bookbox__note { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); }

@media (min-width: 1024px) {
	.bnh-single__grid { grid-template-columns: minmax(0, 1fr) 340px; }
}

/* --- Search results ------------------------------------------------------ */

.bnh-searchform { display: grid; gap: var(--bnh-s3); }
.bnh-searchpage__form { max-width: 640px; margin-bottom: var(--bnh-s6); }

.bnh-results { display: grid; gap: var(--bnh-s4); margin: 0; padding: 0; list-style: none; }

.bnh-result {
	padding: var(--bnh-s5);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
}

.bnh-result__type { margin: 0 0 .25rem; color: var(--bnh-orange); font-size: var(--bnh-fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.bnh-result__title { margin: 0 0 .35rem; font-size: 1.125rem; }
.bnh-result__title a { color: var(--bnh-navy-800); text-decoration: none; }
.bnh-result__title a:hover { color: var(--bnh-orange); }
.bnh-result__text { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-sm); }

@media (min-width: 640px) {
	.bnh-searchform { grid-template-columns: 1fr auto; align-items: center; }
}

/* --- Partners ------------------------------------------------------------ */

.bnh-partner {
	display: grid;
	place-items: center;
	width: min(240px, 66vw);
	min-height: 110px;
	padding: var(--bnh-s4);
	background: var(--bnh-white);
	border: 1.5px solid var(--bnh-orange);
	border-radius: var(--bnh-r);
	text-decoration: none;
}

.bnh-partner__logo { max-height: 60px; width: auto; object-fit: contain; }
.bnh-partner__name { color: var(--bnh-navy-800); font-weight: 600; text-align: center; }

/* --- 404 ----------------------------------------------------------------- */

.bnh-404 { text-align: center; max-width: 640px; margin-inline: auto; }
.bnh-404__code { margin: 0; color: var(--bnh-orange); font-family: var(--bnh-font-display); font-size: clamp(4rem, 3rem + 8vw, 8rem); line-height: 1; }
.bnh-404__links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--bnh-s3); margin-top: var(--bnh-s5); }

/* --- Comments ------------------------------------------------------------ */

.bnh-comments { max-width: 780px; }
.bnh-comments__list { margin: 0 0 var(--bnh-s6); padding: 0; list-style: none; }
.bnh-comments__list ul.children { list-style: none; padding-left: var(--bnh-s5); }

.bnh-comment {
	padding: var(--bnh-s4) 0;
	border-bottom: 1px solid var(--bnh-line);
}

.bnh-comment__meta { display: flex; flex-wrap: wrap; gap: var(--bnh-s2); align-items: center; margin-bottom: var(--bnh-s2); }
.bnh-comment__author { font-weight: 600; color: var(--bnh-navy-800); }
.bnh-comment__date { color: var(--bnh-muted); font-size: var(--bnh-fs-xs); }

/* Package carried in from a "Book This Journey" link, shown instead of asked. */
.bnh-wizard__chosen {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .35rem .75rem;
	margin: 0 0 var(--bnh-s4);
	padding: .75rem 1rem;
	background: var(--bnh-navy-050);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-sm);
	font-size: var(--bnh-fs-sm);
}

.bnh-wizard__chosen-k {
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-xs);
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.bnh-wizard__chosen strong { color: var(--bnh-navy-800); }
.bnh-wizard__chosen .bnh-link { margin-left: auto; font-size: var(--bnh-fs-xs); }
