:root {
	--bsl-bg-black: #01060b;
	--bsl-bg-deep-navy: #03101a;
	--bsl-bg-navy: #061a2a;
	--bsl-cyan: #00bfff;
	--bsl-cyan-bright: #16d4ff;
	--bsl-silver-light: #f2f4f6;
	--bsl-silver: #c9d0d7;
	--bsl-silver-dark: #7c8792;
	--bsl-text-white: #f5f7fa;
	--bsl-text-gray: #b7c1ca;
	--bsl-border-soft: rgba(255, 255, 255, 0.12);
	--bsl-border-strong: rgba(255, 255, 255, 0.2);
	--bsl-border-cyan: rgba(0, 191, 255, 0.3);
	--bsl-shadow-cyan: 0 0 28px rgba(0, 191, 255, 0.3);
	--bsl-shadow-metal: 0 0 22px rgba(255, 255, 255, 0.16);
	--bsl-shell: min(1280px, calc(100vw - 48px));
}

html {
	scroll-behavior: smooth;
}

body.client-page {
	margin: 0;
	background: var(--bsl-bg-black);
	color: var(--bsl-text-white);
	font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.bsl-site,
.bsl-site * {
	box-sizing: border-box;
}

.bsl-site {
	min-height: 100vh;
	background: var(--bsl-bg-black);
	color: var(--bsl-text-white);
}

.bsl-site a {
	color: inherit;
	text-decoration: none;
}

.bsl-shell {
	width: var(--bsl-shell);
	margin: 0 auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bsl-skip-link {
	position: fixed;
	left: 18px;
	top: 18px;
	z-index: 999;
	padding: 12px 16px;
	border-radius: 999px;
	background: var(--bsl-cyan);
	color: #01060b;
	font-weight: 800;
	transform: translateY(-140%);
	transition: transform 160ms ease;
}

.bsl-skip-link:focus {
	transform: translateY(0);
}

.bsl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 28px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bsl-button:hover,
.bsl-button:focus-visible {
	transform: translateY(-2px);
}

.bsl-button--silver {
	background: linear-gradient(180deg, #f7f8fa 0%, #c6cdd4 35%, #7c8792 52%, #e8ecef 100%);
	color: #01060b;
	border-color: rgba(255, 255, 255, 0.65);
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), var(--bsl-shadow-metal);
}

.bsl-site-header {
	position: relative;
	z-index: 90;
	width: 100%;
}

body.client-landing-page .bsl-site-header {
	position: absolute;
	inset: 0 0 auto;
}

.bsl-site-header a,
.bsl-site-header button {
	font: inherit;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: none;
}

.bsl-header-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 88px;
	padding: 10px 0;
}

.bsl-header-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	text-decoration: none;
}

.bsl-header-brand__mark {
	width: 22px;
	height: 62px;
	border-radius: 18px 18px 8px 8px;
	background:
		radial-gradient(circle at 70% 14%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(135, 146, 158, 0.3) 62%, rgba(0, 191, 255, 0.06));
	clip-path: polygon(65% 0%, 100% 10%, 74% 20%, 85% 37%, 62% 52%, 71% 73%, 42% 100%, 0% 86%, 25% 62%, 10% 45%, 29% 24%, 20% 8%);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
	flex: 0 0 auto;
}

.bsl-header-brand__text {
	display: grid;
	gap: 4px;
}

.bsl-header-brand__script {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.7rem, 2vw, 2.35rem);
	font-style: italic;
	line-height: 0.92;
	color: var(--bsl-silver-light);
}

.bsl-header-brand__subtitle {
	font-size: 0.72rem;
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: var(--bsl-silver-light);
}

.bsl-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-width: 0;
}

.bsl-desktop-nav__link {
	position: relative;
	padding: 8px 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(245, 247, 250, 0.92);
	text-decoration: none;
	white-space: nowrap;
}

.bsl-desktop-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	margin: 0 auto;
	background: var(--bsl-cyan);
	transition: width 160ms ease;
}

.bsl-desktop-nav__link:hover::after,
.bsl-desktop-nav__link:focus-visible::after {
	width: 100%;
}

.bsl-header-actions,
.bsl-header-mobile-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bsl-header-book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(14, 24, 36, 0.92), rgba(4, 10, 17, 0.98));
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
	color: #f5f7fa;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.bsl-header-icon,
.bsl-menu-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		rgba(3, 16, 26, 0.74);
	color: var(--bsl-silver-light);
	box-shadow: none !important;
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.bsl-header-icon:hover,
.bsl-header-icon:focus-visible,
.bsl-menu-toggle:hover,
.bsl-menu-toggle:focus-visible,
.bsl-header-book:hover,
.bsl-header-book:focus-visible {
	transform: translateY(-1px);
	border-color: var(--bsl-border-cyan);
}

.bsl-header-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.bsl-header-cart-count {
	position: absolute;
	right: 6px;
	top: 6px;
	display: inline-grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: linear-gradient(135deg, #00bfff 0%, #16d4ff 100%);
	color: #01060b;
	font-size: 0.6rem;
	font-weight: 900;
	line-height: 1;
}

.bsl-header-cart-count.is-empty {
	opacity: 0.78;
}

.bsl-header-mobile-actions,
.bsl-mobile-panel {
	display: none;
}

.bsl-menu-toggle {
	gap: 4px;
	flex-direction: column;
	padding: 0;
	cursor: pointer;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)), rgba(3, 16, 26, 0.88);
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--bsl-silver-light);
}

.bsl-menu-toggle__line {
	display: block;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.bsl-menu-toggle[aria-expanded="true"] .bsl-menu-toggle__line:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.bsl-menu-toggle[aria-expanded="true"] {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)), rgba(6, 26, 42, 0.96);
	border-color: rgba(0, 191, 255, 0.48);
	color: var(--bsl-cyan-bright);
}

.bsl-menu-toggle[aria-expanded="true"] .bsl-menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.bsl-menu-toggle[aria-expanded="true"] .bsl-menu-toggle__line:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.bsl-mobile-panel {
	position: absolute;
	left: 16px;
	right: 16px;
	top: calc(100% + 8px);
	z-index: 120;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.bsl-mobile-panel.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.bsl-mobile-panel__inner {
	display: grid;
	gap: 12px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(5, 18, 29, 0.98), rgba(3, 10, 17, 0.98)),
		rgba(3, 16, 26, 0.98);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
	text-align: center;
}

.bsl-mobile-panel__nav {
	display: grid;
	gap: 8px;
	justify-items: center;
}

.bsl-mobile-panel__link {
	display: block;
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(245, 247, 250, 0.96);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
}

.bsl-mobile-panel__link:hover,
.bsl-mobile-panel__link:focus-visible {
	border-color: var(--bsl-border-cyan);
	background: rgba(0, 191, 255, 0.08);
}

.bsl-header-book--mobile {
	min-height: 44px;
	padding: 0 18px;
	justify-self: center;
}

.bsl-footer {
	padding: 68px 0 24px;
	background:
		radial-gradient(circle at 50% 18%, rgba(0, 191, 255, 0.16), transparent 34%),
		#01060b;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bsl-footer__main {
	display: grid;
	grid-template-columns: 1fr 1.25fr 1fr;
	gap: 42px;
	align-items: start;
}

.bsl-footer__brand,
.bsl-footer__cta,
.bsl-footer__contact,
.bsl-hours {
	display: grid;
	gap: 18px;
}

.bsl-footer p {
	margin: 0;
	color: var(--bsl-text-gray);
	line-height: 1.7;
}

.bsl-footer__cta {
	padding: 8px 26px 0;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	justify-items: center;
}

.bsl-eyebrow {
	color: var(--bsl-cyan);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.bsl-footer h2 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: clamp(2rem, 3.5vw, 3.8rem);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	background: linear-gradient(180deg, #ffffff 0%, #d9dee3 32%, #808b96 72%, #f4f7fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bsl-contact-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bsl-contact-list li {
	display: grid;
	gap: 4px;
}

.bsl-contact-list strong,
.bsl-hours strong {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bsl-cyan);
}

.bsl-contact-list a,
.bsl-contact-list span,
.bsl-hours span {
	color: var(--bsl-text-gray);
}

.bsl-footer__base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px;
	padding-top: 28px;
	margin-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bsl-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: var(--bsl-text-gray);
}

.bsl-site :focus-visible {
	outline: 2px solid var(--bsl-cyan-bright);
	outline-offset: 4px;
}

.bsl-basic-page {
	min-height: 58vh;
	background:
		radial-gradient(circle at 76% 18%, rgba(0, 191, 255, 0.18), transparent 30%),
		linear-gradient(180deg, #01060b 0%, #03101a 100%);
}

.bsl-basic-page__hero {
	padding: 150px 0 96px;
}

.bsl-basic-page h1 {
	max-width: 780px;
	margin: 22px 0 18px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: clamp(3.2rem, 7vw, 6.5rem);
	line-height: 0.94;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	background: linear-gradient(180deg, #ffffff 0%, #d9dee3 32%, #808b96 72%, #f4f7fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bsl-basic-page p {
	max-width: 640px;
	margin: 0 0 30px;
	color: var(--bsl-text-gray);
	line-height: 1.7;
}

@media (max-width: 1180px) {
	.bsl-header-inner {
		gap: 20px;
	}

	.bsl-desktop-nav {
		gap: 18px;
	}

	.bsl-footer__main {
		grid-template-columns: 1fr;
	}

	.bsl-footer__cta {
		padding: 0;
		border: 0;
	}
}

@media (max-width: 1023px) {
	:root {
		--bsl-shell: min(100vw - 32px, 100%);
	}

	body.client-landing-page .bsl-site-header {
		position: relative;
	}

	.bsl-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px;
		min-height: 72px;
		padding: 8px 0;
	}

	.bsl-header-brand__mark {
		width: 18px;
		height: 50px;
	}

	.bsl-header-brand__script {
		font-size: 1.42rem;
	}

	.bsl-header-brand__subtitle {
		font-size: 0.62rem;
		letter-spacing: 0.24em;
	}

	.bsl-desktop-nav,
	.bsl-header-actions {
		display: none;
	}

	.bsl-header-mobile-actions {
		display: flex;
	}

	.bsl-mobile-panel {
		display: block;
	}

	.bsl-basic-page__hero {
		padding-top: 84px;
	}
}

@media (max-width: 640px) {
	.bsl-header-icon--mobile,
	.bsl-menu-toggle {
		min-width: 42px;
		width: 42px;
		height: 42px;
	}

	.bsl-mobile-panel {
		left: 10px;
		right: 10px;
	}

	.bsl-footer__base {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.bsl-site *,
	.bsl-site *::before,
	.bsl-site *::after {
		transition: none !important;
		animation: none !important;
	}
}
