/* ==========================================================================
   Binham — components: buttons, cards, section headings, forms, tabs,
   scrollers, stats, testimonials, breadcrumbs
   ========================================================================== */

/* --- Buttons ------------------------------------------------------------- */

.bnh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	border: 1.5px solid transparent;
	border-radius: var(--bnh-r-pill);
	font-size: .9375rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s var(--bnh-ease), color .2s var(--bnh-ease),
		border-color .2s var(--bnh-ease), transform .2s var(--bnh-ease), box-shadow .2s var(--bnh-ease);
}

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

.bnh-btn--primary {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
	color: var(--bnh-white);
	box-shadow: 0 6px 16px rgba(255, 107, 17, .28);
}

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

.bnh-btn--navy {
	background: var(--bnh-navy);
	border-color: var(--bnh-navy);
	color: var(--bnh-white);
}

.bnh-btn--navy:hover { background: var(--bnh-navy-800); border-color: var(--bnh-navy-800); color: var(--bnh-white); }

.bnh-btn--outline {
	background: transparent;
	border-color: var(--bnh-orange);
	color: var(--bnh-orange);
}

.bnh-btn--outline:hover { background: var(--bnh-orange); color: var(--bnh-white); }

.bnh-btn--white {
	background: var(--bnh-white);
	border-color: var(--bnh-white);
	color: var(--bnh-navy-800);
}

.bnh-btn--white:hover { background: var(--bnh-orange-050); color: var(--bnh-orange-600); }

.bnh-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .6);
	color: var(--bnh-white);
}

.bnh-btn--ghost:hover { background: rgba(255, 255, 255, .12); color: var(--bnh-white); }

.bnh-btn--block { width: 100%; }
.bnh-btn--sm { padding: .5rem 1rem; font-size: var(--bnh-fs-sm); }
.bnh-btn--lg { padding: .9375rem 2rem; font-size: 1rem; }

.bnh-link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	color: var(--bnh-orange);
	font-size: .9375rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bnh-link:hover { color: var(--bnh-orange-600); }

/* --- Section headings ---------------------------------------------------- */

.bnh-sechead { margin-bottom: var(--bnh-s6); }
.bnh-sechead--center { text-align: center; margin-inline: auto; max-width: 62ch; }
.bnh-sechead--left { text-align: left; }

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

.bnh-sechead__title { margin: 0; }

.bnh-sechead--display .bnh-sechead__title {
	font-family: var(--bnh-font-display);
	font-weight: 700;
}

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

.bnh-sechead--dark .bnh-sechead__title { color: var(--bnh-white); }
.bnh-sechead--dark .bnh-sechead__lead { color: rgba(255, 255, 255, .8); }
.bnh-sechead--dark .bnh-sechead__eyebrow { color: var(--bnh-orange); }

/* Section head with a "View More" link on the same baseline. */
.bnh-secbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--bnh-s4);
	margin-bottom: var(--bnh-s5);
}

.bnh-secbar .bnh-sechead { margin-bottom: 0; }

/* --- Cards --------------------------------------------------------------- */

.bnh-card {
	display: flex;
	flex-direction: column;
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
	overflow: hidden;
	transition: transform .25s var(--bnh-ease), box-shadow .25s var(--bnh-ease), border-color .25s var(--bnh-ease);
}

.bnh-card:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: var(--bnh-sh-lg);
}

.bnh-card__media {
	position: relative;
	line-height: 0;
	background: var(--bnh-navy-050);
}

.bnh-card__media img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	transition: transform .4s var(--bnh-ease);
}

.bnh-card:hover .bnh-card__media img { transform: scale(1.04); }

.bnh-card__badge {
	position: absolute;
	top: var(--bnh-s3);
	left: var(--bnh-s3);
	padding: .3rem .75rem;
	background: rgba(255, 255, 255, .92);
	border-radius: var(--bnh-r-pill);
	color: var(--bnh-navy-800);
	font-size: var(--bnh-fs-xs);
	font-weight: 600;
	line-height: 1.4;
}

.bnh-card__badge--price {
	left: auto;
	right: var(--bnh-s3);
	background: var(--bnh-orange);
	color: var(--bnh-white);
}

.bnh-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--bnh-s3);
	flex: 1 1 auto;
	padding: var(--bnh-s4);
}

.bnh-card__title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
}

.bnh-card__title a { color: inherit; text-decoration: none; }
.bnh-card__title a:hover { color: var(--bnh-orange); }

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

.bnh-metas {
	display: grid;
	gap: .4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.bnh-metas .bnh-icon { color: var(--bnh-orange); flex: 0 0 auto; }

.bnh-card__foot { margin-top: auto; padding-top: var(--bnh-s2); }

/* Feature card: icon tile, title, copy. */
.bnh-feature {
	display: flex;
	flex-direction: column;
	gap: var(--bnh-s3);
	padding: var(--bnh-s5);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
	transition: transform .25s var(--bnh-ease), box-shadow .25s var(--bnh-ease);
}

.bnh-feature:hover { transform: translateY(-4px); box-shadow: var(--bnh-sh-lg); }

.bnh-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--bnh-orange-050);
	border-radius: var(--bnh-r);
	color: var(--bnh-orange);
}

.bnh-feature__title { margin: 0; font-size: 1.0625rem; font-weight: 600; }
.bnh-feature__text { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-sm); }

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

.bnh-feature--dark .bnh-feature__title { color: var(--bnh-white); }
.bnh-feature--dark .bnh-feature__text { color: rgba(255, 255, 255, .78); }
.bnh-feature--dark .bnh-feature__icon { background: rgba(255, 255, 255, .12); color: var(--bnh-orange); }

/* Country / destination tile with the caption inside the image. */
.bnh-tile {
	position: relative;
	display: block;
	border-radius: var(--bnh-r-lg);
	overflow: hidden;
	color: var(--bnh-white);
	text-decoration: none;
	background: var(--bnh-navy-800);
	isolation: isolate;
}

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

.bnh-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(1, 29, 50, .82) 0%, rgba(1, 29, 50, .12) 55%, transparent 100%);
}

.bnh-tile:hover img { transform: scale(1.06); }

.bnh-tile__body {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 1;
	padding: var(--bnh-s4);
}

.bnh-tile__title { margin: 0; color: var(--bnh-white); font-size: 1.0625rem; font-weight: 600; }

.bnh-tile__meta {
	margin: .25rem 0 0;
	color: var(--bnh-orange);
	font-size: var(--bnh-fs-sm);
	font-weight: 600;
}

/* Country price pill used by the Worldwide Visas scroller. */
.bnh-pill {
	display: flex;
	align-items: center;
	gap: var(--bnh-s3);
	min-width: 232px;
	padding: var(--bnh-s3) var(--bnh-s4);
	background: var(--bnh-white);
	border: 1.5px solid var(--bnh-orange);
	border-radius: var(--bnh-r);
	text-decoration: none;
	transition: box-shadow .2s var(--bnh-ease), transform .2s var(--bnh-ease);
}

.bnh-pill:hover { transform: translateY(-2px); box-shadow: var(--bnh-sh); }

.bnh-pill__flag {
	flex: 0 0 auto;
	width: 46px;
	height: 32px;
	border-radius: 4px;
	overflow: hidden;
	background: var(--bnh-grey-100);
	display: grid;
	place-items: center;
	font-size: 1.35rem;
	line-height: 1;
}

/* An uploaded flag fills the pill; the emoji fallback stays centred. */
.bnh-pill__flagimg,
.bnh-flag {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* A hairline keeps a white-edged flag from bleeding into the pill. */
.bnh-flag { box-shadow: inset 0 0 0 1px rgba(15, 42, 71, .12); }

.bnh-pill__name {
	display: block;
	color: var(--bnh-navy-800);
	font-size: .9375rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.bnh-pill__price {
	display: block;
	color: var(--bnh-orange);
	font-size: .9375rem;
	font-weight: 700;
}

/* --- Horizontal scroller ------------------------------------------------- */

.bnh-scroller {
	position: relative;
	display: flex;
	gap: var(--bnh-s4);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--bnh-gutter);
	padding-block: var(--bnh-s2) var(--bnh-s4);
	margin-inline: calc(var(--bnh-gutter) * -1);
	padding-inline: var(--bnh-gutter);
	scrollbar-width: thin;
	scrollbar-color: var(--bnh-orange) transparent;
}

.bnh-scroller > * {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.bnh-scroller::-webkit-scrollbar { height: 6px; }
.bnh-scroller::-webkit-scrollbar-track { background: transparent; }
.bnh-scroller::-webkit-scrollbar-thumb { background: var(--bnh-orange); border-radius: 999px; }

.bnh-scroller--cards > * { width: min(320px, 78vw); }
.bnh-scroller--tiles > * { width: min(280px, 72vw); }

/*
 * Structure only. Size, colour and states are settled in the slider-controls
 * block further down, so there is one place to change how an arrow looks.
 */
.bnh-scrollnav { display: flex; }

.bnh-scrollnav button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bnh-white);
	border-radius: 50%;
	color: var(--bnh-navy-800);
}

/* --- Tabs ---------------------------------------------------------------- */

.bnh-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bnh-s2);
	margin-bottom: var(--bnh-s6);
	padding: 0;
	list-style: none;
}

.bnh-tab {
	padding: .625rem 1.375rem;
	background: transparent;
	border: 1.5px solid var(--bnh-line);
	border-radius: var(--bnh-r-pill);
	color: var(--bnh-navy-800);
	font-size: .9375rem;
	font-weight: 600;
	transition: background-color .2s var(--bnh-ease), border-color .2s var(--bnh-ease), color .2s var(--bnh-ease);
}

.bnh-tab:hover { border-color: var(--bnh-orange); color: var(--bnh-orange); }

.bnh-tab[aria-selected="true"],
.bnh-tab.is-active {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
	color: var(--bnh-white);
}

.bnh-tabs--dark .bnh-tab { border-color: rgba(255, 255, 255, .3); color: var(--bnh-white); }
.bnh-tabs--dark .bnh-tab[aria-selected="true"] { background: var(--bnh-orange); border-color: var(--bnh-orange); }

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

/* --- Stats --------------------------------------------------------------- */

.bnh-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--bnh-s4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bnh-stat {
	padding: var(--bnh-s5) var(--bnh-s4);
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--bnh-r-lg);
	text-align: center;
}

.bnh-stat__num {
	display: block;
	color: var(--bnh-orange);
	font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.1;
}

.bnh-stat__label {
	display: block;
	margin-top: .35rem;
	color: rgba(255, 255, 255, .82);
	font-size: var(--bnh-fs-sm);
}

.bnh-stats--light .bnh-stat {
	background: var(--bnh-white);
	border-color: var(--bnh-line);
}

.bnh-stats--light .bnh-stat__label { color: var(--bnh-muted); }

/* --- Stars / testimonials ------------------------------------------------ */

.bnh-stars { display: inline-flex; gap: 1px; color: var(--bnh-line); line-height: 0; }
.bnh-stars .is-on { color: var(--bnh-star); }
.bnh-stars .is-on svg { fill: currentColor; }

.bnh-quote {
	display: flex;
	flex-direction: column;
	gap: var(--bnh-s3);
	padding: var(--bnh-s5);
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-lg);
	box-shadow: var(--bnh-sh-sm);
	break-inside: avoid;
	margin-bottom: var(--bnh-s5);
}

.bnh-quote__head { display: flex; align-items: center; gap: var(--bnh-s3); }

.bnh-quote__avatar {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--bnh-orange-050);
	color: var(--bnh-orange-600);
	font-weight: 700;
	font-size: .9375rem;
}

.bnh-quote__name { margin: 0; font-size: .9375rem; font-weight: 600; }
.bnh-quote__place { margin: 0; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); }
.bnh-quote__text {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	border-radius: 0;
	font-style: normal;
	color: var(--bnh-muted);
	font-size: var(--bnh-fs-sm);
	line-height: 1.75;
}

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

.bnh-masonry { columns: 1; column-gap: var(--bnh-s5); }

/* --- Forms --------------------------------------------------------------- */

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

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

.bnh-form__field { display: block; }

.bnh-form__field--full { grid-column: 1 / -1; }

/*
 * display:none, not off-screen. Chrome treats a field positioned at -9999px as
 * visible and will autofill it, which tripped the honeypot for real visitors;
 * it skips display:none fields entirely. A naive bot parsing the HTML still
 * fills it, which is who the trap is for.
 */
.bnh-hp {
	display: none !important;
}

.bnh-formnote {
	margin: 0;
	padding: var(--bnh-s3) var(--bnh-s4);
	border-radius: var(--bnh-r-sm);
	font-size: var(--bnh-fs-sm);
	font-weight: 500;
}

.bnh-formnote--success {
	background: color-mix(in srgb, var(--bnh-ok) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--bnh-ok) 40%, transparent);
	color: var(--bnh-ok);
}

.bnh-formnote--error {
	background: color-mix(in srgb, var(--bnh-err) 10%, transparent);
	border: 1px solid color-mix(in srgb, var(--bnh-err) 38%, transparent);
	color: var(--bnh-err);
}

.bnh-fielderr {
	display: block;
	margin-top: .35rem;
	color: var(--bnh-err);
	font-size: var(--bnh-fs-xs);
	font-weight: 500;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid { border-color: var(--bnh-err); }

.bnh-required { color: var(--bnh-err); }

/* Inline search / filter bar floating over a hero. */
.bnh-searchbar {
	display: grid;
	gap: var(--bnh-s3);
	grid-template-columns: 1fr;
	padding: var(--bnh-s4);
	background: var(--bnh-white);
	border-radius: var(--bnh-r-lg);
	box-shadow: var(--bnh-sh-lg);
}

.bnh-searchbar__field { position: relative; }

.bnh-searchbar__field .bnh-icon {
	position: absolute;
	top: 50%;
	left: .875rem;
	transform: translateY(-50%);
	color: var(--bnh-orange);
	pointer-events: none;
}

.bnh-searchbar select,
.bnh-searchbar input {
	padding-left: 2.75rem;
	background-color: var(--bnh-white);
	border-color: var(--bnh-line);
	border-radius: var(--bnh-r-sm);
}

/* Radio / checkbox cards. */
.bnh-choices {
	display: grid;
	gap: var(--bnh-s3);
	grid-template-columns: 1fr;
}

.bnh-choice {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: var(--bnh-s3);
	padding: var(--bnh-s4);
	background: var(--bnh-white);
	border: 1.5px solid var(--bnh-line);
	border-radius: var(--bnh-r);
	cursor: pointer;
	font-weight: 500;
	transition: border-color .2s var(--bnh-ease), background-color .2s var(--bnh-ease);
}

.bnh-choice input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.bnh-choice__dot {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border: 2px solid var(--bnh-line);
	border-radius: 50%;
	transition: border-color .2s var(--bnh-ease), box-shadow .2s var(--bnh-ease);
}

.bnh-choice:hover { border-color: var(--bnh-orange); }

.bnh-choice:has(input:checked) {
	border-color: var(--bnh-orange);
	background: var(--bnh-orange-050);
}

.bnh-choice:has(input:checked) .bnh-choice__dot {
	border-color: var(--bnh-orange);
	box-shadow: inset 0 0 0 4px var(--bnh-orange);
}

.bnh-choice:has(input:focus-visible) {
	outline: 3px solid var(--bnh-orange);
	outline-offset: 2px;
}

.bnh-choice__label { display: block; margin: 0; font-weight: 600; color: var(--bnh-navy-800); }
.bnh-choice__hint { display: block; margin: .15rem 0 0; color: var(--bnh-muted); font-size: var(--bnh-fs-sm); font-weight: 400; }

/* Number stepper. */
.bnh-stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bnh-s3);
	padding: var(--bnh-s3) var(--bnh-s4);
	background: var(--bnh-white);
	border: 1.5px solid var(--bnh-line);
	border-radius: var(--bnh-r);
}

.bnh-stepper__label { display: block; margin: 0; font-weight: 600; color: var(--bnh-navy-800); }
.bnh-stepper__hint { display: block; color: var(--bnh-muted); font-size: var(--bnh-fs-xs); font-weight: 400; }

.bnh-stepper__ctrl { display: flex; align-items: center; gap: var(--bnh-s2); }

.bnh-stepper__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--bnh-orange-050);
	border: 0;
	border-radius: 50%;
	color: var(--bnh-orange-600);
}

.bnh-stepper__btn:hover { background: var(--bnh-orange); color: var(--bnh-white); }
.bnh-stepper__btn[disabled] { opacity: .45; cursor: not-allowed; }

.bnh-stepper__val {
	min-width: 2ch;
	text-align: center;
	font-weight: 700;
	color: var(--bnh-navy-800);
}

/* --- Breadcrumbs --------------------------------------------------------- */

.bnh-crumbs {
	background: var(--bnh-grey-050);
	border-bottom: 1px solid var(--bnh-line);
}

.bnh-crumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .4rem;
	margin: 0;
	padding: var(--bnh-s3) 0;
	list-style: none;
	font-size: var(--bnh-fs-sm);
	color: var(--bnh-muted);
}

.bnh-crumbs__item { display: inline-flex; align-items: center; gap: .4rem; }
.bnh-crumbs__item a { color: var(--bnh-muted); text-decoration: none; }
.bnh-crumbs__item a:hover { color: var(--bnh-orange); }
.bnh-crumbs__item [aria-current="page"] { color: var(--bnh-navy-800); font-weight: 600; }
.bnh-crumbs__sep { color: var(--bnh-line); line-height: 0; }

/* --- Accordion (FAQ) ----------------------------------------------------- */

.bnh-acc { display: grid; gap: var(--bnh-s3); }

.bnh-acc__item {
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r);
	overflow: hidden;
}

.bnh-acc__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bnh-s4);
	width: 100%;
	padding: var(--bnh-s4);
	background: transparent;
	border: 0;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: var(--bnh-navy-800);
}

.bnh-acc__btn .bnh-icon { flex: 0 0 auto; color: var(--bnh-orange); transition: transform .22s var(--bnh-ease); }
.bnh-acc__btn[aria-expanded="true"] .bnh-icon { transform: rotate(180deg); }

.bnh-acc__panel { padding: 0 var(--bnh-s4) var(--bnh-s4); color: var(--bnh-muted); font-size: var(--bnh-fs-sm); }
.bnh-acc__panel[hidden] { display: none; }

/* --- Misc ---------------------------------------------------------------- */

.bnh-chip {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .25rem .7rem;
	background: var(--bnh-orange-050);
	border-radius: var(--bnh-r-pill);
	color: var(--bnh-orange-600);
	font-size: var(--bnh-fs-xs);
	font-weight: 600;
}

.bnh-chip--navy { background: var(--bnh-navy-050); color: var(--bnh-navy); }

.bnh-ticks {
	display: grid;
	gap: .5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bnh-ticks li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: var(--bnh-fs-sm);
	color: var(--bnh-muted);
}

.bnh-ticks .bnh-icon { flex: 0 0 auto; margin-top: 3px; color: var(--bnh-ok); }

.bnh-ticks--dark li { color: rgba(255, 255, 255, .82); }
.bnh-ticks--dark .bnh-icon { color: var(--bnh-orange); }

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

.bnh-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: .75rem;
	background: var(--bnh-white);
	border: 1px solid var(--bnh-line);
	border-radius: var(--bnh-r-sm);
	color: var(--bnh-navy-800);
	font-weight: 600;
	text-decoration: none;
}

.bnh-pagination .page-numbers:hover,
.bnh-pagination .page-numbers.current {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
	color: var(--bnh-white);
}

/* --- Breakpoints --------------------------------------------------------- */

@media (min-width: 640px) {
	.bnh-form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bnh-choices--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bnh-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.bnh-masonry { columns: 2; }
}

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

@media (min-width: 1024px) {
	.bnh-form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.bnh-searchbar { grid-template-columns: repeat(3, minmax(0, 1fr)) auto; align-items: center; }
	.bnh-choices--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.bnh-masonry { columns: 3; }
}

/* --- UI refresh 1.1: artwork proportions + polished slider controls ------- */
.bnh-card--package .bnh-card__media img {
	height: auto;
	aspect-ratio: 388 / 268;
	object-fit: cover;
}

.bnh-scroller--tiles .bnh-tile img {
	height: auto;
	aspect-ratio: 388 / 250;
	object-fit: cover;
}

.bnh-scroller {
	padding-bottom: var(--bnh-s2);
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.bnh-scroller::-webkit-scrollbar { display: none; }

.bnh-scrollnav {
	display: flex;
	justify-content: flex-end;
	gap: .625rem;
	margin-top: var(--bnh-s3);
}

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

.bnh-scrollnav button {
	width: 44px;
	height: 44px;
	border: 1px solid var(--bnh-line);
	box-shadow: var(--bnh-sh-sm);
	cursor: pointer;
	transition:
		background-color .2s var(--bnh-ease),
		border-color .2s var(--bnh-ease),
		color .2s var(--bnh-ease),
		transform .2s var(--bnh-ease);
}

/*
 * A drawn arrow rather than a text glyph: the character rendered in whatever
 * the body font happened to supply, which is what made these read as unfinished.
 */
.bnh-scrollnav button svg {
	width: 18px;
	height: 18px;
	stroke-width: 2;
}

.bnh-scrollnav button:hover:not(:disabled) {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
	color: var(--bnh-white);
	transform: translateY(-1px);
}

/* Press cancels the lift, so the button reads as physically pushed. */
.bnh-scrollnav button:active:not(:disabled) {
	transform: translateY(0);
	box-shadow: none;
}

.bnh-scrollnav button:disabled {
	opacity: .35;
	cursor: default;
	background: var(--bnh-white);
	border-color: var(--bnh-line);
	color: var(--bnh-muted);
	box-shadow: none;
	transform: none;
}

.bnh-section--navy .bnh-scrollnav button {
	background: rgba(255,255,255,.1);
	border-color: rgba(255,255,255,.28);
	box-shadow: none;
	color: var(--bnh-white);
}

.bnh-section--navy .bnh-scrollnav button:hover:not(:disabled) {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
}

.bnh-section--navy .bnh-scrollnav button:disabled {
	background: rgba(255,255,255,.05);
	border-color: rgba(255,255,255,.14);
	color: rgba(255,255,255,.45);
}

@media (max-width: 639px) {
	.bnh-card--package .bnh-card__media img { aspect-ratio: 1.45 / 1; }
	.bnh-scroller--tiles .bnh-tile img { aspect-ratio: 1.45 / 1; }
	.bnh-scrollnav { justify-content: center; }
}
