/*
 * BigSpace Premium — property cards, results grid and the detail page.
 *
 * Scoped under `.bsp`. See bsp.css for the scoping rule this file obeys.
 */

/* ============================================================ listing card */

.bsp-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--bsp-surface);
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	overflow: hidden;
	transition: transform .3s var(--bsp-ease), box-shadow .3s var(--bsp-ease),
		border-color .3s var(--bsp-ease);
}

.bsp-tile:hover {
	transform: translateY(-3px);
	border-color: var(--bsp-gold-400);
	box-shadow: var(--bsp-shadow-3);
}

.bsp-tile__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bsp-surface-3);
}

.bsp-tile__media img,
.bsp-tile__media svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s var(--bsp-ease);
}

.bsp-tile:hover .bsp-tile__media img { transform: scale(1.045); }

/* A bottom scrim so the badges stay readable over any photograph. */
.bsp-tile__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 42%;
	background: linear-gradient(to top, rgba(6, 15, 28, .38), transparent);
	pointer-events: none;
}

.bsp-tile__tags {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.bsp-tile__type {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 2;
	font-size: .74rem;
	font-weight: 620;
	color: rgba(255, 255, 255, .95);
	text-shadow: 0 1px 3px rgba(6, 15, 28, .6);
}

.bsp-tile__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 17px 18px 18px;
}

.bsp-tile__title {
	font-size: 1.03rem;
	font-weight: 680;
	line-height: 1.32;
	letter-spacing: -.017em;
	color: var(--bsp-ink);
	margin: 0;
	/* Two lines, so a long building name never breaks the card rhythm. */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bsp-tile__title a {
	color: inherit;
	text-decoration: none;
}

/* The whole card is the click target; the link keeps the accessible name. */
.bsp-tile__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
}

.bsp-tile:hover .bsp-tile__title { color: var(--bsp-navy-700); }

.bsp-tile__loc {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 7px;
	font-size: .83rem;
	color: var(--bsp-muted);
}

.bsp-tile__loc svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* Spec strip — the three numbers a commercial occupier actually scans for. */
.bsp-tile__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 13px;
	padding-top: 13px;
	border-top: 1px solid var(--bsp-line-soft);
	list-style: none;
	padding-inline: 0;
	margin-bottom: 0;
}

.bsp-tile__spec {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 9px;
	border-radius: 7px;
	background: var(--bsp-surface-2);
	font-size: .76rem;
	font-weight: 550;
	color: var(--bsp-body);
}

.bsp-tile__spec svg { width: 13px; height: 13px; color: var(--bsp-muted); }

.bsp-tile__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 15px;
}

.bsp-tile__price {
	font-size: 1.12rem;
	font-weight: 720;
	letter-spacing: -.022em;
	color: var(--bsp-navy-800);
	line-height: 1.2;
}

.bsp-tile__price small {
	display: block;
	margin-top: 3px;
	font-size: .71rem;
	font-weight: 500;
	letter-spacing: .02em;
	color: var(--bsp-muted);
}

/* When we have no verified figure we say so, rather than inventing one. */
.bsp-tile__price--ask {
	font-size: .95rem;
	font-weight: 640;
	color: var(--bsp-body);
}

.bsp-tile__cta {
	position: relative;
	z-index: 4;
	flex: 0 0 auto;
	padding: 9px 15px;
	font-size: .8rem;
}

/* ========================================================== results layout */

.bsp-results__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 15px 18px;
	margin-bottom: 24px;
	background: var(--bsp-surface);
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	box-shadow: var(--bsp-shadow-1);
}

.bsp-results__count {
	font-size: .92rem;
	color: var(--bsp-body);
}

.bsp-results__count b { color: var(--bsp-ink); font-weight: 700; }

.bsp-results__sort {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: .82rem;
	color: var(--bsp-muted);
}

.bsp-results__sort .bsp-select {
	height: 40px;
	padding-left: 13px;
	font-size: .85rem;
	width: auto;
}

/* Empty state — an honest one. */
.bsp-empty {
	padding: 56px 24px;
	text-align: center;
	background: var(--bsp-surface-2);
	border: 1px dashed var(--bsp-line);
	border-radius: var(--bsp-radius-lg);
}

.bsp-empty h3 { font-size: 1.25rem; }
.bsp-empty p { margin-top: 10px; color: var(--bsp-body); }

/* ============================================================ detail page */

.bsp-pd { background: var(--bsp-surface-2); }

/* Breadcrumb ------------------------------------------------------------- */

.bsp-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	padding: 16px 0;
	margin: 0;
	list-style: none;
	font-size: .8rem;
	color: var(--bsp-muted);
}

.bsp-crumbs li { display: inline-flex; align-items: center; gap: 7px; }
.bsp-crumbs li + li::before { content: "/"; color: #c3c9d2; }
.bsp-crumbs a { color: var(--bsp-muted); text-decoration: none; }
.bsp-crumbs a:hover { color: var(--bsp-navy-700); text-decoration: underline; }
.bsp-crumbs [aria-current] { color: var(--bsp-ink); font-weight: 560; }

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

.bsp-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	border-radius: var(--bsp-radius-lg);
	overflow: hidden;
	background: var(--bsp-surface-3);
}

@media (min-width: 900px) {
	.bsp-gallery {
		grid-template-columns: 2fr 1fr;
		grid-template-rows: repeat(2, 1fr);
		aspect-ratio: 21 / 9;
	}

	.bsp-gallery__item:first-child { grid-row: span 2; }

	/* A listing with no photography yet has a single item. Without this it
	   fills the left column only and leaves a dead grey rectangle beside it,
	   which reads as a broken image rather than a deliberate state. */
	.bsp-gallery__item:only-child {
		grid-column: 1 / -1;
		grid-row: 1 / -1;
	}
}

.bsp-gallery__item {
	position: relative;
	overflow: hidden;
	background: var(--bsp-surface-3);
	aspect-ratio: 16 / 10;
	margin: 0;
}

@media (min-width: 900px) {
	.bsp-gallery__item { aspect-ratio: auto; }
}

.bsp-gallery__item img,
.bsp-gallery__item svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bsp-gallery__more {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
}

/* Header block ----------------------------------------------------------- */

.bsp-pd__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-top: 26px;
}

.bsp-pd__title {
	font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.35rem);
	letter-spacing: -.028em;
	line-height: 1.14;
}

.bsp-pd__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 13px;
}

.bsp-pd__loc {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 11px;
	font-size: .95rem;
	color: var(--bsp-body);
}

.bsp-pd__loc svg { width: 16px; height: 16px; color: var(--bsp-gold-500); flex: 0 0 auto; }

.bsp-pd__ref {
	margin-top: 9px;
	font-size: .78rem;
	letter-spacing: .05em;
	color: var(--bsp-muted);
}

/* Two-column body -------------------------------------------------------- */

.bsp-pd__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	margin-top: 24px;
	padding-bottom: 48px;
	align-items: start;
}

@media (min-width: 1060px) {
	.bsp-pd__cols {
		grid-template-columns: minmax(0, 1fr) 372px;
		gap: 36px;
	}
}

.bsp-pd__main { min-width: 0; display: flex; flex-direction: column; gap: 22px; }

.bsp-panel {
	background: var(--bsp-surface);
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	padding: 22px;
	box-shadow: var(--bsp-shadow-1);
	transition: border-color .22s var(--bsp-ease), box-shadow .22s var(--bsp-ease);
}

.bsp-panel:hover { border-color: var(--bsp-gold-400); box-shadow: var(--bsp-shadow-2); }

@media (min-width: 700px) {
	.bsp-panel { padding: 28px; }
}

.bsp-panel__title {
	font-size: 1.16rem;
	letter-spacing: -.02em;
	margin-bottom: 18px;
}

/* Key facts grid --------------------------------------------------------- */

.bsp-facts {
	display: grid;
	/* auto-fit rather than a fixed count: the grid's 1px gap shows the
	   container colour through, so a fixed four-column track on a listing with
	   two facts renders two empty grey cells. */
	grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
	gap: 1px;
	margin: 0;
	background: var(--bsp-line-soft);
	border: 1px solid var(--bsp-line-soft);
	border-radius: var(--bsp-radius-sm);
	overflow: hidden;
}

.bsp-fact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 15px 16px;
	background: var(--bsp-surface);
}

.bsp-fact dt {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .69rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--bsp-muted);
	margin: 0;
}

.bsp-fact dt svg { width: 13px; height: 13px; color: var(--bsp-gold-500); }

.bsp-fact dd {
	margin: 0;
	font-size: .97rem;
	font-weight: 620;
	color: var(--bsp-ink);
	letter-spacing: -.01em;
}

/* Amenities -------------------------------------------------------------- */

.bsp-amenities {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 10px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 560px) { .bsp-amenities { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .bsp-amenities { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.bsp-amenity {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: .89rem;
	color: var(--bsp-body);
}

.bsp-amenity svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	color: #05603a;
}

/* Sticky enquiry rail ---------------------------------------------------- */

.bsp-rail { display: flex; flex-direction: column; gap: 16px; }

@media (min-width: 1060px) {
	.bsp-rail { position: sticky; top: 96px; }
}

/* Light on request: a white card with a gold rule, rather than a navy block. */
.bsp-quote {
	position: relative;
	overflow: hidden;
	border-radius: var(--bsp-radius);
	background: #fff;
	border: 1px solid var(--bsp-line);
	border-top: 3px solid var(--bsp-gold-400);
	color: var(--bsp-ink);
	padding: 22px;
	box-shadow: var(--bsp-shadow-2);
	transition: border-color .22s var(--bsp-ease);
}

.bsp-quote:hover { border-color: var(--bsp-gold-400); }

.bsp-quote__label {
	font-size: .69rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--bsp-gold-500);
}

.bsp-quote__value {
	margin-top: 8px;
	font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
	font-weight: 720;
	letter-spacing: -.03em;
	color: var(--bsp-navy-800);
	line-height: 1.15;
}

.bsp-quote__note {
	margin-top: 8px;
	font-size: .82rem;
	line-height: 1.55;
	color: var(--bsp-body);
}

.bsp-quote__actions {
	display: grid;
	gap: 9px;
	margin-top: 20px;
}

.bsp-advisor {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--bsp-line);
}

.bsp-advisor__avatar {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--bsp-gold-50);
	box-shadow: inset 0 0 0 1px rgba(200, 135, 31, .25);
	font-weight: 700;
	font-size: .92rem;
	color: var(--bsp-gold-500);
}

.bsp-advisor__name { font-size: .89rem; font-weight: 620; color: var(--bsp-ink); }
.bsp-advisor__role { font-size: .76rem; color: var(--bsp-muted); margin-top: 2px; }

.bsp-quote .bsp-btn--on-dark {
	background: #fff;
	border-color: var(--bsp-line);
	color: var(--bsp-navy-800);
	backdrop-filter: none;
}
.bsp-quote .bsp-btn--on-dark:hover { border-color: var(--bsp-navy-800); background: var(--bsp-surface-2); }

/* Enquiry form ----------------------------------------------------------- */

.bsp-form { display: grid; gap: 11px; }

.bsp-form .bsp-input,
.bsp-form .bsp-select,
.bsp-form textarea {
	padding-left: 14px;
}

.bsp-form textarea {
	width: 100%;
	min-height: 92px;
	padding: 12px 14px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	background: var(--bsp-surface);
	color: var(--bsp-ink);
	font-family: inherit;
	font-size: .93rem;
	resize: vertical;
}

.bsp-form textarea:focus {
	outline: none;
	border-color: var(--bsp-navy-700);
	box-shadow: 0 0 0 4px rgba(22, 53, 90, .1);
}

/* The honeypot the existing bs_enquiry handler expects. Never display: none —
   some bots read the computed style; an off-screen field catches more. */
.bsp-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

.bsp-form__note {
	font-size: .74rem;
	line-height: 1.5;
	color: var(--bsp-muted);
}

.bsp-form__msg {
	padding: 11px 13px;
	border-radius: var(--bsp-radius-sm);
	font-size: .85rem;
	line-height: 1.5;
}

.bsp-form__msg--ok { background: #ecfdf3; color: #05603a; }
.bsp-form__msg--err { background: #fef3f2; color: #b42318; }

/* ================================================== similar / related rail */

.bsp-similar {
	padding-block: 36px 52px;
	border-top: 1px solid var(--bsp-line);
	background: var(--bsp-surface);
}

.bsp-similar__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 20px;
}

.bsp-similar__title { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
.bsp-similar__sub { margin-top: 8px; font-size: .93rem; color: var(--bsp-muted); }

/* Mobile action bar ------------------------------------------------------ */

.bsp-actionbar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 45;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--bsp-line);
	box-shadow: 0 -6px 24px -8px rgba(8, 24, 41, .18);
}

@media (min-width: 1060px) {
	.bsp-actionbar { display: none; }
}

/* ============================================================= pagination */

/* `paginate_links( array( 'type' => 'list' ) )` emits a bare
   <ul class="page-numbers"> with no styling of its own. The theme is a Tailwind
   build and styles nothing outside its own utilities, so left alone this renders
   as a bulleted list of numbers down the left margin — which reads as broken
   pagination rather than unstyled pagination. */

.bsp .page-numbers {
	list-style: none;
}

.bsp ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin: 40px 0 0;
	padding: 0;
}

.bsp ul.page-numbers li { margin: 0; }

.bsp a.page-numbers,
.bsp span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 13px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	background: var(--bsp-surface);
	color: var(--bsp-body);
	font-size: .89rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: all .18s var(--bsp-ease);
}

.bsp a.page-numbers:hover {
	border-color: var(--bsp-navy-800);
	background: var(--bsp-navy-800);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--bsp-shadow-2);
}

.bsp span.page-numbers.current {
	background: var(--bsp-navy-800);
	border-color: var(--bsp-navy-800);
	color: #fff;
	box-shadow: var(--bsp-shadow-navy);
}

/* The ellipsis is not a control and should not look like one. */
.bsp span.page-numbers.dots {
	border-color: transparent;
	background: transparent;
	min-width: 26px;
	padding: 0;
	color: var(--bsp-muted);
}

.bsp a.page-numbers.prev,
.bsp a.page-numbers.next {
	padding: 0 18px;
	font-weight: 650;
}

@media (max-width: 560px) {
	/* On a phone, keep Previous, Next and the page you are on; the numbered
	   links in between wrap to three rows and are not what anyone taps.
	   Selecting the <li> by what it contains needs :has(); browsers without it
	   simply keep the full list, which still works. */
	.bsp ul.page-numbers li:has(a.page-numbers:not(.prev):not(.next)),
	.bsp ul.page-numbers li:has(span.page-numbers.dots) {
		display: none;
	}

	.bsp ul.page-numbers li:has(span.page-numbers.current) { display: block; }

	.bsp a.page-numbers.prev,
	.bsp a.page-numbers.next { padding: 0 20px; }
}

/* ======================================================= archive masthead */

/* Every results page opens on a photograph rather than a white margin. The
   image is chosen by asset class from the verified set in assets/img — these
   are category banners, never a photograph of any listing on the page. */

.bsp-mast {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--bsp-navy-900);
	color: #fff;
	padding-block: 30px 42px;
}

@media (min-width: 900px) {
	.bsp-mast { padding-block: 40px 52px; }
}

.bsp-mast__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.bsp-mast__bg img,
.bsp-mast__bg picture {
	width: 100%;
	height: 100%;
	display: block;
}

.bsp-mast__bg img {
	object-fit: cover;
	object-position: center 45%;
}

.bsp-mast__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(100deg, rgba(8, 24, 41, .72) 0%, rgba(8, 24, 41, .45) 55%, rgba(8, 24, 41, .2) 100%);
}

.bsp-mast .bsp-crumbs { color: rgba(255, 255, 255, .62); padding-top: 0; }
.bsp-mast .bsp-crumbs a { color: rgba(255, 255, 255, .62); }
.bsp-mast .bsp-crumbs a:hover { color: #fff; }
.bsp-mast .bsp-crumbs li + li::before { color: rgba(255, 255, 255, .3); }
.bsp-mast .bsp-crumbs [aria-current] { color: #fff; }

.bsp-mast .bsp-mast__title {
	margin-top: 6px;
	color: #fff;
	font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
	letter-spacing: -.03em;
	line-height: 1.08;
	text-shadow: 0 2px 20px rgba(8, 24, 41, .4);
}

@media (min-width: 900px) { .bsp-mast .bsp-mast__title { white-space: nowrap; } }

.bsp-mast__intro {
	margin-top: 10px;
	max-width: 76ch;
	font-size: clamp(.98rem, .94rem + .25vw, 1.12rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, .76);
	text-wrap: pretty;
}

.bsp-mast__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.bsp-mast__stat {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
	font-size: .8rem;
	font-weight: 550;
	color: #fff;
	backdrop-filter: blur(6px);
}

.bsp-mast__stat svg { width: 15px; height: 15px; color: var(--bsp-gold-300); }

/* The search card overlaps the banner's lower edge, which ties the two
   together and stops the page reading as two stacked blocks. */
.bsp-mast + .bsp-shell > .bsp-search {
	margin-top: -30px;
	position: relative;
	z-index: 2;
}

/* The "Representative image" badge. It is load-bearing, not decoration: it is
   what keeps an asset-class photograph from reading as a photograph of the
   building it sits above. */

.bsp-tile__repr {
	position: absolute;
	left: 12px;
	bottom: 34px;
	z-index: 2;
	font-size: .61rem;
	letter-spacing: .05em;
	padding: 4px 8px;
}

.bsp-gallery--repr .bsp-gallery__item { aspect-ratio: 21 / 9; }

.bsp-gallery__repr {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 2;
}

/* ==================================================== list your property */

.bsp-submit { display: grid; gap: 26px; }

.bsp-submit__group {
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	background: var(--bsp-surface);
	padding: 22px;
	margin: 0;
	box-shadow: var(--bsp-shadow-1);
}

@media (min-width: 700px) {
	.bsp-submit__group { padding: 26px 28px; }
}

.bsp-submit__legend {
	padding: 0 10px;
	margin-left: -10px;
	font-size: .69rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--bsp-gold-500);
}

.bsp-submit__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 660px) {
	.bsp-submit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bsp-field--wide { grid-column: 1 / -1; }
}

/* `.bsp-input` reserves 39px on the left for the search card's inline icon.
   These fields have no icon, so the text would sit in a gutter. */
.bsp-input--plain { padding-left: 14px; }

.bsp-submit textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	background: var(--bsp-surface);
	color: var(--bsp-ink);
	font-family: inherit;
	font-size: .93rem;
	line-height: 1.55;
	resize: vertical;
}

.bsp-submit textarea:focus {
	outline: none;
	border-color: var(--bsp-navy-700);
	box-shadow: 0 0 0 4px rgba(22, 53, 90, .1);
}

.bsp-submit__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.bsp-submit__actions .bsp-form__note { flex: 1 1 320px; }

/* A field the server rejected. */
.bsp-input--error,
.bsp-select--error {
	border-color: #d92d20 !important;
	box-shadow: 0 0 0 4px rgba(217, 45, 32, .1) !important;
}

/* Why-list-with-us panel beside the form. */
.bsp-why { display: grid; gap: 16px; }

.bsp-why__item {
	display: flex;
	gap: 13px;
	align-items: flex-start;
}

.bsp-why__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--bsp-gold-50);
	color: var(--bsp-gold-500);
	box-shadow: inset 0 0 0 1px rgba(200, 135, 31, .2);
}

.bsp-why__item h3 { font-size: .98rem; }
.bsp-why__item p { margin-top: 5px; font-size: .87rem; line-height: 1.6; color: var(--bsp-body); }

/* ================================================ homepage asset classes */

/* Light on request: the photograph on top, a white body, and a gold border on
   hover — instead of the earlier all-dark image card. */

.bsp-class {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--bsp-radius);
	background: #fff;
	border: 1px solid var(--bsp-line);
	color: var(--bsp-ink);
	text-decoration: none;
	transition: transform .3s var(--bsp-ease), box-shadow .3s var(--bsp-ease), border-color .3s var(--bsp-ease);
}

.bsp-class:hover {
	transform: translateY(-3px);
	border-color: var(--bsp-gold-400);
	box-shadow: var(--bsp-shadow-3);
}

.bsp-class__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--bsp-surface-3);
}

.bsp-class__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s var(--bsp-ease);
}

.bsp-class:hover .bsp-class__media img { transform: scale(1.05); }

.bsp-class__scrim { display: none; }

.bsp-class__body { position: relative; display: flex; flex-direction: column; padding: 16px 18px 18px; flex: 1; }

.bsp-class__icon {
	position: absolute;
	top: -20px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: #fff;
	box-shadow: var(--bsp-shadow-2);
	color: var(--bsp-gold-500);
}

.bsp-class__icon svg { width: 20px; height: 20px; }

.bsp-class__count {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	box-shadow: var(--bsp-shadow-1);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--bsp-navy-800);
	backdrop-filter: blur(6px);
}

.bsp-class__name {
	margin-top: 14px;
	color: var(--bsp-ink);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.2;
}

.bsp-class__desc {
	margin-top: 6px;
	font-size: .86rem;
	line-height: 1.55;
	color: var(--bsp-body);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bsp-class__go {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
	font-size: .82rem;
	font-weight: 650;
	color: var(--bsp-gold-500);
}

.bsp-class__go svg { width: 15px; height: 15px; transition: transform .25s var(--bsp-ease); }
.bsp-class:hover .bsp-class__go svg { transform: translateX(4px); }

/* ================================================== market coverage band */

.bsp-coverage {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

@media (min-width: 700px) { .bsp-coverage { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bsp-coverage { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.bsp-coverage__cell {
	padding: 18px 16px;
	background: #fff;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	color: var(--bsp-ink);
	text-decoration: none;
	transition: border-color .22s var(--bsp-ease), transform .22s var(--bsp-ease), box-shadow .22s var(--bsp-ease);
}

.bsp-coverage__cell:hover { border-color: var(--bsp-gold-400); transform: translateY(-2px); box-shadow: var(--bsp-shadow-2); }

.bsp-coverage__n {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1;
	color: var(--bsp-navy-800);
	font-variant-numeric: tabular-nums;
}

.bsp-coverage__place { display: block; margin-top: 7px; font-size: .88rem; font-weight: 600; color: var(--bsp-ink); }

.bsp-coverage__sub {
	display: block;
	margin-top: 3px;
	font-size: .7rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--bsp-gold-500);
}

/* ================================================== owner / list-with-us */

.bsp-owner {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: var(--bsp-radius-lg);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--bsp-line);
	box-shadow: var(--bsp-shadow-2);
	transition: border-color .22s var(--bsp-ease);
}

.bsp-owner:hover { border-color: var(--bsp-gold-400); }

@media (min-width: 900px) {
	.bsp-owner { grid-template-columns: 420px 1fr; }
}

.bsp-owner__media { position: relative; min-height: 200px; }

.bsp-owner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fade the photograph into the panel so the join does not read as two blocks
   stuck together. Horizontal on wide screens, vertical when they stack. */
.bsp-owner__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #fff 100%);
}

@media (min-width: 900px) {
	.bsp-owner__media::after { background: linear-gradient(90deg, rgba(255, 255, 255, 0) 70%, #fff 100%); }
}

.bsp-owner__body { padding: 24px; }

@media (min-width: 900px) { .bsp-owner__body { padding: 32px 36px; } }

.bsp-owner__body .bsp-eyebrow--light { color: var(--bsp-gold-500); }
.bsp-owner__body .bsp-h2 { color: var(--bsp-ink) !important; }
.bsp-owner__body p { color: var(--bsp-body) !important; }
.bsp-owner__body .bsp-btn--on-dark { background: #fff; border-color: var(--bsp-line); color: var(--bsp-navy-800); backdrop-filter: none; }


/* ================================================= floating-label fields */

/* Material-style fields, on request: the label sits in the box as the
   placeholder and lifts to a caption when the field has focus or a value.
   No separate label element is rendered above the control. */

.bsp-fl {
	position: relative;
	display: block;
}

.bsp-fl > .bsp-input,
.bsp-fl > .bsp-select,
.bsp-fl > textarea {
	width: 100%;
	height: 54px;
	padding: 20px 14px 6px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	background: #fff;
	color: var(--bsp-ink);
	font-family: inherit;
	font-size: .95rem;
	font-weight: 500;
	appearance: none;
	transition: border-color .18s var(--bsp-ease), box-shadow .18s var(--bsp-ease);
}

.bsp-fl > textarea { height: auto; min-height: 104px; padding-top: 24px; resize: vertical; line-height: 1.5; }

.bsp-fl > .bsp-input::placeholder,
.bsp-fl > textarea::placeholder { color: transparent; }

.bsp-fl > .bsp-input:hover,
.bsp-fl > .bsp-select:hover,
.bsp-fl > textarea:hover { border-color: #cfd5dd; }

.bsp-fl > .bsp-input:focus,
.bsp-fl > .bsp-select:focus,
.bsp-fl > textarea:focus {
	outline: none;
	border-color: var(--bsp-navy-700);
	box-shadow: 0 0 0 4px rgba(22, 53, 90, .1);
}

.bsp-fl > label {
	position: absolute;
	left: 14px;
	top: 17px;
	font-size: .93rem;
	color: var(--bsp-muted);
	pointer-events: none;
	transform-origin: left top;
	transition: transform .18s var(--bsp-ease), color .18s var(--bsp-ease);
	white-space: nowrap;
	max-width: calc(100% - 28px);
	overflow: hidden;
	text-overflow: ellipsis;
}

.bsp-fl > .bsp-input:focus ~ label,
.bsp-fl > .bsp-input:not(:placeholder-shown) ~ label,
.bsp-fl > textarea:focus ~ label,
.bsp-fl > textarea:not(:placeholder-shown) ~ label,
.bsp-fl > .bsp-select ~ label,
.bsp-fl--filled > label {
	transform: translateY(-11px) scale(.74);
	color: var(--bsp-gold-600, #a76a18);
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* Selects always show a value (or a "Select" prompt), so the label always
   floats and the control gets a caret. */
.bsp-fl > .bsp-select {
	padding-right: 36px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236b7684' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}

/* Phone: a fixed +91 prefix with the flag, then a ten-digit field. */
.bsp-fl--phone > .bsp-input { padding-left: 84px; }

.bsp-fl--phone > label { left: 84px; }

.bsp-fl__prefix {
	position: absolute;
	left: 1px;
	top: 1px;
	bottom: 1px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 11px 0 13px;
	border-right: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm) 0 0 var(--bsp-radius-sm);
	background: var(--bsp-surface-2);
	color: var(--bsp-ink);
	font-size: .88rem;
	font-weight: 650;
	pointer-events: none;
}

.bsp-fl__flag {
	display: inline-block;
	width: 20px;
	height: 14px;
	border-radius: 2px;
	/* The Indian tricolour, drawn: saffron, white with the chakra, green. */
	background:
		radial-gradient(circle at 50% 50%, #0b3d91 0 1.6px, transparent 1.9px),
		linear-gradient(180deg, #ff9933 0 33.3%, #fff 33.3% 66.6%, #138808 66.6% 100%);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

/* Validation state, set by bsp.js as the visitor types. */
.bsp-fl--error > .bsp-input,
.bsp-fl--error > .bsp-select,
.bsp-fl--error > textarea { border-color: #d92d20; box-shadow: 0 0 0 4px rgba(217, 45, 32, .1); }

.bsp-fl--error > label { color: #b42318; }

.bsp-fl__hint {
	display: none;
	margin: 6px 0 0 2px;
	font-size: .76rem;
	color: #b42318;
}

.bsp-fl--error > .bsp-fl__hint { display: block; }

.bsp-fl--ok > .bsp-input,
.bsp-fl--ok > textarea { border-color: #12b76a; }

/* The older label-above pattern is retired; hide any stray caption. */
.bsp-form .bsp-field__label,
.bsp-submit .bsp-field__label { display: none; }

/* ======================================================= why invest page */

.bsp-mast--tall { padding-block: 48px 56px; }
@media (min-width: 900px) { .bsp-mast--tall { padding-block: 72px 76px; } }
.bsp-mast--tall .bsp-mast__intro { max-width: 84ch; }
a.bsp-mast__stat { text-decoration: none; transition: background .2s var(--bsp-ease); }
a.bsp-mast__stat:hover { background: rgba(255, 255, 255, .22); }

.bsp-inv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	align-items: center;
	padding: 26px 0;
	border-bottom: 1px solid var(--bsp-line);
}

@media (min-width: 900px) {
	.bsp-inv { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 36px 0; }
	.bsp-inv--flip .bsp-inv__media { order: 2; }
}

.bsp-inv:last-child { border-bottom: 0; }

.bsp-inv__media {
	position: relative;
	border-radius: var(--bsp-radius);
	overflow: hidden;
	background: var(--bsp-surface-2);
	border: 1px solid var(--bsp-line);
	aspect-ratio: 4 / 3;
	transition: border-color .22s var(--bsp-ease);
}

.bsp-inv:hover .bsp-inv__media { border-color: var(--bsp-gold-400); }

.bsp-inv__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bsp-inv__icon {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--bsp-gold-500);
	background:
		radial-gradient(60% 60% at 50% 45%, rgba(200, 135, 31, .12), transparent 70%),
		linear-gradient(160deg, #fff, var(--bsp-surface-3));
}

.bsp-inv__icon svg { width: 96px; height: 96px; stroke-width: 1.2; }

.bsp-inv__num {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	color: var(--bsp-navy-800);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
	box-shadow: var(--bsp-shadow-1);
}

.bsp-inv__body .bsp-h2 { margin-top: 8px; font-size: clamp(1.3rem, 1.05rem + 1vw, 1.75rem); }
.bsp-inv__body .bsp-prose { margin-top: 12px; font-size: .95rem; }

.bsp-inv__points {
	display: grid;
	gap: 8px;
	margin: 16px 0 18px;
	padding: 0;
	list-style: none;
}

.bsp-inv__points li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--bsp-body); }
.bsp-inv__points svg { width: 17px; height: 17px; flex: 0 0 auto; color: #05603a; margin-top: 1px; }

/* ========================================================== industries */

.bsp-ind {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

@media (min-width: 760px) { .bsp-ind { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .bsp-ind { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.bsp-ind__card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	background: #fff;
	color: var(--bsp-ink);
	text-decoration: none;
	transition: border-color .22s var(--bsp-ease), transform .22s var(--bsp-ease), box-shadow .22s var(--bsp-ease);
}

.bsp-ind__card:hover { border-color: var(--bsp-gold-400); transform: translateY(-2px); box-shadow: var(--bsp-shadow-2); }

.bsp-ind__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--bsp-gold-50);
	color: var(--bsp-gold-500);
	box-shadow: inset 0 0 0 1px rgba(200, 135, 31, .2);
}

.bsp-ind__icon svg { width: 19px; height: 19px; }
.bsp-ind__name { font-size: .98rem; font-weight: 700; letter-spacing: -.015em; margin-top: 4px; }
.bsp-ind__text { font-size: .83rem; line-height: 1.55; color: var(--bsp-body); }

/* ======================================================= why invest page */

.bsp-mast--tall { padding-block: 48px 56px; }
@media (min-width: 900px) { .bsp-mast--tall { padding-block: 72px 76px; } }
.bsp-mast--tall .bsp-mast__intro { max-width: 84ch; }
a.bsp-mast__stat { text-decoration: none; transition: background .2s var(--bsp-ease); }
a.bsp-mast__stat:hover { background: rgba(255, 255, 255, .22); }

.bsp-inv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	align-items: center;
	padding: 26px 0;
	border-bottom: 1px solid var(--bsp-line);
}

@media (min-width: 900px) {
	.bsp-inv { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 36px 0; }
	.bsp-inv--flip .bsp-inv__media { order: 2; }
}

.bsp-inv:last-child { border-bottom: 0; }

.bsp-inv__media {
	position: relative;
	border-radius: var(--bsp-radius);
	overflow: hidden;
	background: var(--bsp-surface-2);
	border: 1px solid var(--bsp-line);
	aspect-ratio: 4 / 3;
	transition: border-color .22s var(--bsp-ease);
}

.bsp-inv:hover .bsp-inv__media { border-color: var(--bsp-gold-400); }

.bsp-inv__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bsp-inv__icon {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--bsp-gold-500);
	background:
		radial-gradient(60% 60% at 50% 45%, rgba(200, 135, 31, .12), transparent 70%),
		linear-gradient(160deg, #fff, var(--bsp-surface-3));
}

.bsp-inv__icon svg { width: 96px; height: 96px; stroke-width: 1.2; }

.bsp-inv__num {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	color: var(--bsp-navy-800);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
	box-shadow: var(--bsp-shadow-1);
}

.bsp-inv__body .bsp-h2 { margin-top: 8px; font-size: clamp(1.3rem, 1.05rem + 1vw, 1.75rem); }
.bsp-inv__body .bsp-prose { margin-top: 12px; font-size: .95rem; }

.bsp-inv__points {
	display: grid;
	gap: 8px;
	margin: 16px 0 18px;
	padding: 0;
	list-style: none;
}

.bsp-inv__points li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--bsp-body); }
.bsp-inv__points svg { width: 17px; height: 17px; flex: 0 0 auto; color: #05603a; margin-top: 1px; }

/* ========================================================== industries */

.bsp-ind {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

@media (min-width: 760px) { .bsp-ind { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .bsp-ind { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.bsp-ind__card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	background: #fff;
	color: var(--bsp-ink);
	text-decoration: none;
	transition: border-color .22s var(--bsp-ease), transform .22s var(--bsp-ease), box-shadow .22s var(--bsp-ease);
}

.bsp-ind__card:hover { border-color: var(--bsp-gold-400); transform: translateY(-2px); box-shadow: var(--bsp-shadow-2); }

.bsp-ind__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--bsp-gold-50);
	color: var(--bsp-gold-500);
	box-shadow: inset 0 0 0 1px rgba(200, 135, 31, .2);
}

.bsp-ind__icon svg { width: 19px; height: 19px; }
.bsp-ind__name { font-size: .98rem; font-weight: 700; letter-spacing: -.015em; margin-top: 4px; }
.bsp-ind__text { font-size: .83rem; line-height: 1.55; color: var(--bsp-body); }

/* ============================================================== footer */

/* The prelude band, rounded at the top, with the illustrated skyline. */
.bsp-foot {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	margin-top: 8px;
	border-radius: 28px 28px 0 0;
	background: linear-gradient(170deg, var(--bsp-navy-800), var(--bsp-navy-950));
	color: #fff;
}

@media (min-width: 1024px) { .bsp-foot { border-radius: 40px 40px 0 0; } }

.bsp-foot__sky {
	position: absolute;
	inset: auto 0 0 0;
	height: 260px;
	z-index: -1;
	pointer-events: none;
}

.bsp-foot__sky svg { width: 100%; height: 100%; display: block; }

.bsp-foot__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-block: 44px 60px;
}

@media (min-width: 1024px) {
	.bsp-foot__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; padding-block: 56px 90px; }
}

.bsp-foot__title {
	margin-top: 10px;
	color: #fff;
	font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem);
	letter-spacing: -.03em;
	line-height: 1.1;
}

.bsp-foot__text { margin-top: 12px; max-width: 52ch; font-size: .97rem; line-height: 1.6; color: rgba(255, 255, 255, .74); }
.bsp-foot__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.bsp-foot__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
@media (min-width: 640px) { .bsp-foot__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.bsp-foot__head { font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bsp-gold-300); }
.bsp-foot__list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; }
.bsp-foot__list a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: .88rem; transition: color .18s var(--bsp-ease); }
.bsp-foot__list a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* The theme's footer follows immediately. Its own CTA section duplicates the
   prelude, so it is hidden; the footer proper loses its top edge so the two
   read as one rounded band. */
body.bs-body .bsp-foot + section.bg-brand-900,
.bsp-foot ~ section.bg-brand-900 { display: none; }
.bsp-foot ~ footer.bg-brand-950 { background: var(--bsp-navy-950); }

/* =========================================================== trust band */

.bsp-trust { background: #fff; border-bottom: 1px solid var(--bsp-line); padding-block: 22px 26px; }

.bsp-trust__lead { font-size: .95rem; color: var(--bsp-body); }
.bsp-trust__lead strong { color: var(--bsp-navy-800); font-weight: 750; }

.bsp-trust__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 760px) { .bsp-trust__list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .bsp-trust__list { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.bsp-trust__item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 12px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	background: var(--bsp-surface-2);
	transition: border-color .2s var(--bsp-ease);
}

.bsp-trust__item:hover { border-color: var(--bsp-gold-400); }

.bsp-trust__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: #fff;
	color: var(--bsp-gold-500);
	box-shadow: inset 0 0 0 1px rgba(200, 135, 31, .22);
}

.bsp-trust__icon svg { width: 15px; height: 15px; }
.bsp-trust__item b { display: block; font-size: .82rem; font-weight: 700; color: var(--bsp-ink); line-height: 1.25; }
.bsp-trust__item small { display: block; margin-top: 3px; font-size: .74rem; line-height: 1.45; color: var(--bsp-muted); }

/* ============================================================== reviews */

.bsp-rev { position: relative; }

.bsp-rev__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(280px, 1fr);
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.bsp-rev__track::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) { .bsp-rev__track { grid-auto-columns: calc((100% - 28px) / 3); } }

.bsp-rev__card {
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	background: #fff;
	box-shadow: var(--bsp-shadow-1);
	transition: border-color .2s var(--bsp-ease);
}

.bsp-rev__card:hover { border-color: var(--bsp-gold-400); }
.bsp-rev__head { display: flex; align-items: center; gap: 12px; }

.bsp-rev__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.bsp-rev__avatar--initial { display: inline-grid; place-items: center; background: var(--bsp-gold-50); color: var(--bsp-gold-500); font-weight: 700; box-shadow: inset 0 0 0 1px rgba(200, 135, 31, .25); }

.bsp-rev__name { font-weight: 700; font-size: .95rem; color: var(--bsp-ink); }
.bsp-rev__role { font-size: .78rem; color: var(--bsp-muted); margin-top: 2px; }

.bsp-rev__stars { display: inline-flex; gap: 2px; color: #f5a623; }
.bsp-rev__stars svg { width: 16px; height: 16px; }

.bsp-rev__avg { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--bsp-body); }
.bsp-rev__avg b { font-size: 1.15rem; color: var(--bsp-ink); }

.bsp-rev__text { margin: 0; font-size: .93rem; line-height: 1.6; color: var(--bsp-body); }
.bsp-rev__text p { margin: 0; }
.bsp-rev__deal { font-size: .76rem; font-weight: 650; color: var(--bsp-navy-700); padding-top: 8px; border-top: 1px solid var(--bsp-line-soft); }

.bsp-rev__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 12px; }
.bsp-rev__btn {
	width: 38px; height: 38px;
	border: 1px solid var(--bsp-line); border-radius: 50%;
	background: #fff; color: var(--bsp-ink); font-size: 1.3rem; line-height: 1; cursor: pointer;
	transition: border-color .2s var(--bsp-ease), background .2s var(--bsp-ease);
}
.bsp-rev__btn:hover { border-color: var(--bsp-navy-800); background: var(--bsp-surface-2); }

/* ================================================================ logos */

.bsp-logos { display: grid; gap: 14px; margin-top: 6px; }

.bsp-logos__row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

.bsp-logos__track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: bsp-marquee 40s linear infinite;
}

.bsp-logos__row--rev .bsp-logos__track { animation-direction: reverse; }
.bsp-logos__row:hover .bsp-logos__track { animation-play-state: paused; }

.bsp-logos__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 72px;
	padding: 12px 20px;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius-sm);
	background: #fff;
}

.bsp-logos__item img { max-height: 44px; width: auto; max-width: 100%; object-fit: contain; }

@keyframes bsp-marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) { .bsp-logos__track { animation: none; } }

/* ============================================================= WhatsApp */

.bsp-wa {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 60;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 11px 16px 11px 11px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	font-size: .86rem;
	font-weight: 700;
	box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .7), 0 2px 6px rgba(8, 24, 41, .2);
	transition: transform .2s var(--bsp-ease), box-shadow .2s var(--bsp-ease);
}

@media (min-width: 1024px) { .bsp-wa { display: inline-flex; } }

.bsp-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(37, 211, 102, .8), 0 3px 8px rgba(8, 24, 41, .25); }

.bsp-wa__icon { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.bsp-wa__icon svg { width: 20px; height: 20px; }

/* =============================================================== header */

/* Full-width header on wide screens, and the trust cluster bsp.js moves in
   beside the desktop calls to action. The theme's header markup is untouched. */
@media (min-width: 1280px) {
	header[data-bs-header] > .bs-container { max-width: none; padding-inline: 40px; }
	header[data-bs-header] + * { }
}

.bsp-htrust {
	display: none;
	align-items: center;
	gap: 9px;
	margin-right: 6px;
	padding: 6px 12px 6px 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .88);
	text-decoration: none;
	font-size: .74rem;
	font-weight: 600;
	white-space: nowrap;
	transition: background .2s var(--bsp-ease);
}

.bsp-htrust:hover { background: rgba(255, 255, 255, .16); color: #fff; }
@media (min-width: 1180px) { .bsp-htrust { display: inline-flex; } }

.bsp-htrust__pics { display: inline-flex; }
.bsp-htrust__pics img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bsp-navy-800); margin-left: -8px; }
.bsp-htrust__pics img:first-child { margin-left: 0; }

/* ======================================================== service groups */

.bsp-svcg {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--bsp-line);
	border-radius: var(--bsp-radius);
	background: #fff;
	overflow: hidden;
	transition: border-color .22s var(--bsp-ease), box-shadow .22s var(--bsp-ease);
}

.bsp-svcg:hover { border-color: var(--bsp-gold-400); box-shadow: var(--bsp-shadow-2); }
.bsp-svcg__media { aspect-ratio: 16 / 9; overflow: hidden; }
.bsp-svcg__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bsp-svcg__body { padding: 16px 18px 18px; }

.bsp-svcg__list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 6px; }
.bsp-svcg__list li { padding-left: 14px; position: relative; font-size: .86rem; }
.bsp-svcg__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--bsp-gold-400); }
.bsp-svcg__list a { color: var(--bsp-navy-700); text-decoration: none; }
.bsp-svcg__list a:hover { color: var(--bsp-gold-600, #a76a18); text-decoration: underline; text-underline-offset: 3px; }

/* The theme's header dropdowns now carry up to eleven items; give them room. */
header[data-bs-header] .bs-submenu { min-width: 260px; }

/* ================================================ layout & overflow fixes */

/* Equal gutters on every page and nothing escaping the viewport. The earlier
   `white-space: nowrap` on section headings pushed long headings past the
   container between 900px and 1200px; headings now shrink to fit and wrap
   only as a last resort. */
.bsp-shell { max-width: 1360px; }
.bsp, .bsp-pd, .bsp-section, .bsp-mast, .bsp-hero { overflow-x: clip; }
.bsp-sechead .bsp-h2,
.bsp-mast .bsp-mast__title,
.bsp-hero .bsp-hero__title { white-space: normal; overflow-wrap: anywhere; }
.bsp-sechead .bsp-lede { white-space: normal; overflow: visible; text-overflow: clip; }
.bsp-sechead__cta { display: flex; flex-wrap: wrap; gap: 8px; }
.bsp * { min-width: 0; }

/* Enquiry form rhythm. */
.bsp-form { gap: 14px; }
.bsp-form .bsp-panel__title,
#bsp-enquiry .bsp-panel__title { margin-bottom: 22px; }
#bsp-enquiry { padding-top: 26px; }

/* ================================================================ header */

.bsp-hsearch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: 4px;
	border-radius: 10px;
	color: #fff;
	background: rgba(255, 255, 255, .08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
	transition: background .2s var(--bsp-ease);
}
.bsp-hsearch:hover { background: rgba(255, 255, 255, .18); }
.bsp-hsearch svg { width: 18px; height: 18px; }

/* Premium dropdowns for the theme's navigation. Generic descendant selectors
   because the theme's walker owns the markup; scoped to the header only. */
header[data-bs-header] nav ul ul,
header[data-bs-header] nav .bs-submenu {
	min-width: 280px;
	padding: 10px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 24px 60px -18px rgba(8, 24, 41, .45), 0 2px 6px rgba(8, 24, 41, .12);
	border: 1px solid var(--bsp-line);
}
header[data-bs-header] nav ul ul li a,
header[data-bs-header] nav .bs-submenu a {
	display: block;
	padding: 9px 12px;
	border-radius: 9px;
	color: var(--bsp-ink) !important;
	font-size: .88rem;
	font-weight: 550;
	line-height: 1.3;
	transition: background .18s var(--bsp-ease), color .18s var(--bsp-ease), padding-left .18s var(--bsp-ease);
}
header[data-bs-header] nav ul ul li a:hover,
header[data-bs-header] nav .bs-submenu a:hover {
	background: var(--bsp-gold-50);
	color: var(--bsp-navy-800) !important;
	padding-left: 16px;
}
header[data-bs-header] nav ul ul li + li { margin-top: 1px; }

/* ============================================================== WhatsApp */

.bsp-wa {
	padding: 0;
	width: 56px;
	height: 56px;
	justify-content: center;
	gap: 0;
}
.bsp-wa__glyph { width: 32px; height: 32px; }
.bsp-wa__icon, .bsp-wa__text { display: none; }



/* ================================================================ footer */

/* One footer. The theme's own CTA band and four-column footer are the
   elements that follow #bs-main in the theme's footer.php; this footer is
   printed on `get_footer`, i.e. inside <main>, so they are hidden by their
   position after <main>, not as siblings of .bsp-foot. */
#bs-main ~ section.bg-brand-900,
#bs-main ~ footer.bg-brand-950 { display: none !important; }

.bsp-foot {
	position: relative;
	margin-top: 24px;
	border-radius: 28px 28px 0 0;
	background: linear-gradient(170deg, var(--bsp-navy-800), var(--bsp-navy-950));
	color: #fff;
}
@media (min-width: 1024px) { .bsp-foot { border-radius: 40px 40px 0 0; } }

.bsp-foot__brand {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	padding: 44px 0 28px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 900px) { .bsp-foot__brand { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; padding-top: 52px; } }

.bsp-foot__logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.bsp-foot__logo span { color: var(--bsp-gold-400); }
.bsp-foot__tag { margin-top: 4px; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bsp-gold-300); }
.bsp-foot__text { margin-top: 12px; max-width: 60ch; font-size: .95rem; line-height: 1.6; color: #fff; opacity: .9; }

.bsp-foot__contact { display: grid; gap: 10px; align-content: start; }
.bsp-foot__contact > a { display: inline-flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; font-size: .95rem; font-weight: 600; }
.bsp-foot__contact > a svg { width: 17px; height: 17px; color: var(--bsp-gold-300); }
.bsp-foot__contact > a:hover { text-decoration: underline; text-underline-offset: 3px; }
.bsp-foot__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

/* Tabbed index ---------------------------------------------------------- */

.bsp-ftabs { padding: 26px 0 8px; }

.bsp-ftabs__bar {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.bsp-ftabs__bar::-webkit-scrollbar { display: none; }

.bsp-ftabs__tab {
	position: relative;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px 14px;
	border: 0;
	background: none;
	color: rgba(255, 255, 255, .7);
	font-family: inherit;
	font-size: .88rem;
	font-weight: 620;
	white-space: nowrap;
	cursor: pointer;
	transition: color .18s var(--bsp-ease);
}
.bsp-ftabs__tab:hover { color: #fff; }
.bsp-ftabs__tab[aria-selected="true"] { color: #fff; }
.bsp-ftabs__tab[aria-selected="true"]::after {
	content: "";
	position: absolute;
	left: 16px; right: 16px; bottom: -1px;
	height: 2px;
	background: var(--bsp-gold-400);
}
.bsp-ftabs__n {
	padding: 2px 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	font-size: .68rem;
	font-weight: 700;
	color: rgba(255, 255, 255, .8);
}
.bsp-ftabs__tab[aria-selected="true"] .bsp-ftabs__n { background: rgba(229, 165, 58, .22); color: var(--bsp-gold-300); }

.bsp-ftabs__panel { padding: 22px 0 18px; }
.bsp-ftabs__panel[hidden] { display: none; }

.bsp-ftabs__list {
	columns: 2;
	column-gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 640px)  { .bsp-ftabs__list { columns: 3; } }
@media (min-width: 900px)  { .bsp-ftabs__list { columns: 4; } }
@media (min-width: 1200px) { .bsp-ftabs__list { columns: 5; } }

.bsp-ftabs__list li { break-inside: avoid; padding: 4px 0; }
.bsp-ftabs__list a {
	color: #fff;
	opacity: .82;
	text-decoration: none;
	font-size: .84rem;
	line-height: 1.45;
	transition: opacity .18s var(--bsp-ease), color .18s var(--bsp-ease);
}
.bsp-ftabs__list a:hover { opacity: 1; color: var(--bsp-gold-300); }

.bsp-foot__legal {
	display: grid;
	gap: 8px;
	padding: 20px 0 56px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .76rem;
	line-height: 1.55;
	color: #fff;
	opacity: .78;
}
@media (min-width: 1024px) { .bsp-foot__legal { padding-bottom: 40px; } }
