:root {
	--bk-ink: #0b0c0f;
	--bk-ink-2: #08090c;
	--bk-panel: #12141a;
	--bk-panel-2: #171a21;
	--bk-line: #23262f;
	--bk-red: #e60037;
	--bk-red-hi: #ff2a5d;
	--bk-amber: #ffc21a;
	--bk-amber-hi: #ffd257;
	--bk-text: #f3f5f8;
	--bk-mute: #9aa3b0;
	--bk-copy: #c7cdd7;
	--bk-r: 18px;
	--bk-r-sm: 12px;
	--bk-shell: 1360px;
	--bk-shadow: 0 18px 40px rgba(0, 0, 0, .45);
	--bk-font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	background: var(--bk-ink);
	color: var(--bk-text);
	font: 400 16px/1.6 var(--bk-font);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ------------------------------------------------------------ structure */

.bk-shell {
	width: 100%;
	max-width: var(--bk-shell);
	margin-inline: auto;
	padding-inline: 20px;
}

.bk-shell--narrow {
	max-width: 980px;
}

.bk-main {
	display: block;
	min-height: 60vh;
}

.bk-wrap {
	padding: 36px 0 72px;
}

.bk-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 12px 18px;
	background: var(--bk-amber);
	color: #101114;
	font-weight: 700;
	border-radius: 0 0 var(--bk-r-sm) 0;
}

.bk-skip:focus {
	left: 0;
}

:focus-visible {
	outline: 2px solid var(--bk-amber);
	outline-offset: 3px;
}

/* --------------------------------------------------------------- header */

.bk-head {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(11, 12, 15, .88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, background .2s ease;
}

.bk-head.is-stuck {
	border-bottom-color: var(--bk-line);
	background: rgba(8, 9, 12, .95);
}

.bk-head__bar {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 76px;
}

.bk-brand {
	display: flex;
	align-items: center;
}

.bk-brand img {
	width: auto;
	height: 26px;
}

.bk-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-right: auto;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .01em;
}

.bk-nav a {
	position: relative;
	color: var(--bk-mute);
	padding: 6px 0;
	transition: color .18s ease;
}

.bk-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	border-radius: 2px;
	background: var(--bk-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.bk-nav a:hover {
	color: var(--bk-text);
}

.bk-nav a:hover::after {
	transform: scaleX(1);
}

.bk-auth {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* -------------------------------------------------------------- buttons */

.bk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border: 0;
	border-radius: 12px;
	background: var(--bk-red);
	color: #fff;
	font: 700 14px/1 var(--bk-font);
	letter-spacing: .01em;
	white-space: nowrap;
	cursor: pointer;
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.bk-btn:hover {
	background: var(--bk-red-hi);
	transform: translateY(-1px);
}

.bk-btn--amber {
	background: var(--bk-amber);
	color: #14161a;
}

.bk-btn--amber:hover {
	background: var(--bk-amber-hi);
	box-shadow: 0 10px 26px rgba(255, 194, 26, .22);
}

.bk-btn--ghost {
	background: transparent;
	color: var(--bk-text);
	box-shadow: inset 0 0 0 1px var(--bk-line);
}

.bk-btn--ghost:hover {
	background: rgba(255, 255, 255, .05);
	box-shadow: inset 0 0 0 1px #33374280;
}

.bk-btn--lg {
	padding: 15px 26px;
	font-size: 15px;
	border-radius: 14px;
}

/* --------------------------------------------------------- burger/drawer */

.bk-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0 11px;
	border: 0;
	border-radius: 12px;
	background: var(--bk-panel-2);
	cursor: pointer;
}

.bk-burger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--bk-text);
	transition: transform .2s ease, opacity .2s ease;
}

.bk-burger[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.bk-burger[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}

.bk-burger[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.bk-drawer {
	border-top: 1px solid var(--bk-line);
	background: var(--bk-ink-2);
	padding: 18px 0 24px;
}

.bk-drawer[hidden] {
	display: none;
}

.bk-drawer__nav {
	display: flex;
	flex-direction: column;
}

.bk-drawer__nav a {
	padding: 14px 4px;
	border-bottom: 1px solid var(--bk-line);
	font-size: 16px;
	font-weight: 600;
}

.bk-drawer__auth {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.bk-drawer__auth .bk-btn {
	flex: 1;
	padding-block: 14px;
}

/* ---------------------------------------------------------------- title */

.bk-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--bk-red);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

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

.bk-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

.bk-hero__main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-height: 440px;
	padding: 48px;
	border-radius: var(--bk-r);
	background-color: var(--bk-panel);
	background-size: cover;
	background-position: center right;
	box-shadow: var(--bk-shadow);
	position: relative;
	overflow: hidden;
	justify-content: center;
}

.bk-hero__main::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(8, 9, 12, .97) 38%, rgba(8, 9, 12, .62) 54%, rgba(8, 9, 12, .04) 72%);
}

.bk-hero__main > * {
	position: relative;
}

.bk-hero__title {
	display: block;
	max-width: 17ch;
	font-size: clamp(26px, 2.9vw, 40px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.02em;
}

.bk-hero__text {
	margin: 0;
	max-width: 46ch;
	color: var(--bk-mute);
	font-size: 15px;
}

.bk-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.bk-hero__side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bk-promo {
	display: block;
	flex: 1;
	min-height: 0;
	border-radius: var(--bk-r);
	overflow: hidden;
	background: var(--bk-panel);
	box-shadow: var(--bk-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

/* The billboards carry their own headline in the artwork, so the card is the
   image and nothing else — a typeset title on top would fight the banner. */
.bk-promo img {
	width: 100%;
	height: 100%;
	min-height: 150px;
	object-fit: cover;
	object-position: center;
}

.bk-promo:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(230, 0, 55, .5);
}

/* ----------------------------------------------------------- categories */

.bk-cats {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 44px;
}

.bk-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 8px;
	border-radius: var(--bk-r-sm);
	background: var(--bk-panel);
	box-shadow: inset 0 0 0 1px var(--bk-line);
	color: var(--bk-mute);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	transition: transform .18s ease, color .18s ease, box-shadow .18s ease;
}

.bk-cat .bk-i {
	fill: var(--bk-red);
	transition: fill .18s ease, transform .18s ease;
}

.bk-cat:hover {
	transform: translateY(-3px);
	color: var(--bk-text);
	box-shadow: inset 0 0 0 1px #3a2029;
}

.bk-cat:hover .bk-i {
	fill: var(--bk-red-hi);
	transform: scale(1.08);
}

/* ------------------------------------------------------------- sections */

.bk-sec {
	margin-bottom: 44px;
}

.bk-sec__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.bk-sec__title {
	position: relative;
	padding-left: 16px;
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 800;
	letter-spacing: -.01em;
}

.bk-sec__title::before {
	content: '';
	position: absolute;
	left: 0;
	top: .18em;
	bottom: .18em;
	width: 4px;
	border-radius: 4px;
	background: var(--bk-red);
}

.bk-sec__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bk-mute);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: color .18s ease;
}

.bk-sec__more span {
	transition: transform .18s ease;
}

.bk-sec__more:hover {
	color: var(--bk-text);
}

.bk-sec__more:hover span {
	transform: translateX(4px);
}

.bk-rail {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.bk-card {
	display: block;
}

.bk-card__art {
	display: block;
	position: relative;
	border-radius: var(--bk-r-sm);
	overflow: hidden;
	background: var(--bk-panel);
	box-shadow: inset 0 0 0 1px var(--bk-line);
}

.bk-card__art img {
	width: 100%;
	height: auto;
	aspect-ratio: 335 / 375;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
}

.bk-card__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(.92);
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--bk-amber);
	color: #14161a;
	font-size: 13px;
	font-weight: 700;
	opacity: 0;
	transition: opacity .22s ease, transform .22s ease;
}

.bk-card:hover .bk-card__art img {
	transform: scale(1.06);
	filter: brightness(.72);
}

.bk-card:hover .bk-card__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.bk-card:hover .bk-card__art {
	box-shadow: inset 0 0 0 1px rgba(230, 0, 55, .55);
}

.bk-card__name {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
}

.bk-card__meta {
	display: block;
	margin-top: 3px;
	color: var(--bk-mute);
	font-size: 12px;
}

/* ----------------------------------------------------------- toplist --- */

.bk-tops {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 44px;
}

.bk-top {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 210px 90px 180px;
	align-items: center;
	gap: 20px;
	padding: 22px 26px;
	border-radius: var(--bk-r);
	background: var(--bk-panel);
	box-shadow: inset 0 0 0 1px var(--bk-line);
	transition: transform .18s ease, box-shadow .18s ease;
}

.bk-top:hover {
	transform: translateY(-2px);
	box-shadow: inset 0 0 0 1px rgba(230, 0, 55, .5), var(--bk-shadow);
}

.bk-top__rank {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--bk-red);
	font-size: 18px;
	font-weight: 800;
}

.bk-top__name {
	display: block;
	font-size: 18px;
	font-weight: 700;
}

.bk-top__note {
	margin: 4px 0 0;
	color: var(--bk-mute);
	font-size: 14px;
}

.bk-top__figure {
	display: block;
	color: var(--bk-amber);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.01em;
}

.bk-top__label {
	display: block;
	margin-top: 2px;
	color: var(--bk-mute);
	font-size: 13px;
}

.bk-top__rating {
	text-align: center;
}

.bk-top__score {
	display: block;
	font-size: 22px;
	font-weight: 800;
}

.bk-top__action .bk-btn {
	width: 100%;
	padding-block: 14px;
}

/* ------------------------------------------------------------ review --- */

.bk-info {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 24px;
	margin-bottom: 44px;
	padding: 28px;
	border-radius: var(--bk-r);
	background: var(--bk-panel);
	box-shadow: inset 0 0 0 1px var(--bk-line);
}

.bk-info__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	margin: 0;
}

.bk-info__grid > div {
	padding: 14px 16px;
	border-radius: var(--bk-r-sm);
	background: var(--bk-panel-2);
}

.bk-info__grid dt {
	color: var(--bk-mute);
	font-size: 13px;
}

.bk-info__grid dd {
	margin: 4px 0 0;
	font-size: 15px;
	font-weight: 600;
}

.bk-info__side {
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: center;
	padding: 22px;
	border-radius: var(--bk-r-sm);
	background: var(--bk-panel-2);
}

.bk-score {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) 34px;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}

.bk-score__label {
	color: var(--bk-mute);
}

.bk-score__bar {
	height: 6px;
	border-radius: 6px;
	background: #262a33;
	overflow: hidden;
}

.bk-score__bar span {
	display: block;
	height: 100%;
	border-radius: 6px;
	background: var(--bk-red);
}

.bk-score__val {
	text-align: right;
	font-weight: 700;
}

.bk-info__side .bk-btn {
	margin-top: 8px;
}

/* ----------------------------------------------------------- landing --- */

.bk-land {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	padding: 56px 48px;
	margin-bottom: 40px;
	border-radius: var(--bk-r);
	background-color: var(--bk-panel);
	background-size: cover;
	background-position: center right;
	position: relative;
	overflow: hidden;
	box-shadow: var(--bk-shadow);
}

.bk-land::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(8, 9, 12, .97) 34%, rgba(8, 9, 12, .86) 60%, rgba(8, 9, 12, .42));
}

.bk-land > * {
	position: relative;
}

.bk-land__title {
	display: block;
	margin: 0;
	max-width: 18ch;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.02em;
}

.bk-land__lead {
	margin: 0;
	max-width: 52ch;
	color: var(--bk-mute);
	font-size: 16px;
}

.bk-land__points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 720px;
	margin: 6px 0 0;
}

.bk-land__points > div {
	padding: 14px 20px;
	border-radius: var(--bk-r-sm);
	background: rgba(18, 20, 26, .78);
	box-shadow: inset 0 0 0 1px var(--bk-line);
}

.bk-land__points dt {
	color: var(--bk-mute);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.bk-land__points dd {
	margin: 4px 0 0;
	font-size: 16px;
	font-weight: 700;
}

.bk-land__cta {
	margin: 8px 0 0;
}

.bk-land__cta--foot {
	margin-top: 36px;
	text-align: center;
}

/* -------------------------------------------------------------- copy --- */

.bk-copy {
	max-width: 1240px;
	margin-inline: auto;
	margin-bottom: 44px;
	color: var(--bk-copy);
	font-size: 16.5px;
	line-height: 1.75;
}

.bk-copy--narrow {
	max-width: 980px;
}

.bk-copy > *:first-child {
	margin-top: 0;
}

.bk-copy h2,
.bk-copy h3,
.bk-copy h4 {
	color: var(--bk-text);
	line-height: 1.22;
	letter-spacing: -.01em;
	scroll-margin-top: 96px;
}

.bk-copy h2 {
	margin: 40px 0 14px;
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 800;
}

.bk-copy h3 {
	margin: 30px 0 12px;
	font-size: 20px;
	font-weight: 700;
}

.bk-copy h4 {
	margin: 24px 0 10px;
	font-size: 17px;
	font-weight: 700;
}

.bk-copy p {
	margin: 0 0 16px;
}

.bk-copy a {
	color: var(--bk-amber);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.bk-copy a:hover {
	color: var(--bk-amber-hi);
}

.bk-copy ul,
.bk-copy ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.bk-copy li {
	margin-bottom: 8px;
}

.bk-copy ul li::marker {
	color: var(--bk-red);
}

.bk-copy ol li::marker {
	color: var(--bk-red);
	font-weight: 700;
}

.bk-copy strong {
	color: var(--bk-text);
}

.bk-copy blockquote {
	margin: 24px 0;
	padding: 18px 24px;
	border-left: 3px solid var(--bk-red);
	border-radius: 0 var(--bk-r-sm) var(--bk-r-sm) 0;
	background: var(--bk-panel);
	color: var(--bk-text);
}

.bk-copy img {
	width: min(812px, 100%);
	height: auto;
	margin: 24px auto;
	border-radius: var(--bk-r-sm);
}

.bk-copy table {
	width: 100%;
	margin: 24px 0;
	border-collapse: collapse;
	font-size: 15px;
	background: var(--bk-panel);
	border-radius: var(--bk-r-sm);
	overflow: hidden;
}

.bk-copy th,
.bk-copy td {
	padding: 13px 16px;
	text-align: left;
	border-bottom: 1px solid var(--bk-line);
}

.bk-copy th {
	background: var(--bk-panel-2);
	color: var(--bk-text);
	font-weight: 700;
}

.bk-copy tr:last-child td {
	border-bottom: 0;
}

.bk-copy hr {
	margin: 32px 0;
	border: 0;
	border-top: 1px solid var(--bk-line);
}

/* ------------------------------------------------------------ footer --- */

.bk-foot {
	border-top: 1px solid var(--bk-line);
	background: var(--bk-ink-2);
	padding-top: 44px;
}

.bk-foot__top {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
	gap: 36px;
	padding-bottom: 34px;
}

.bk-foot__brand img {
	width: auto;
	height: 24px;
}

.bk-foot__about {
	margin: 16px 0 18px;
	max-width: 46ch;
	color: var(--bk-mute);
	font-size: 13.5px;
	line-height: 1.6;
}

.bk-foot__social {
	display: flex;
	gap: 10px;
}

.bk-soc {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: var(--bk-panel);
	box-shadow: inset 0 0 0 1px var(--bk-line);
	transition: background .18s ease, transform .18s ease;
}

.bk-soc svg {
	fill: var(--bk-mute);
	transition: fill .18s ease;
}

.bk-soc:hover {
	background: var(--bk-red);
	transform: translateY(-2px);
}

.bk-soc:hover svg {
	fill: #fff;
}

.bk-foot__col {
	display: flex;
	flex-direction: column;
	gap: 11px;
	font-size: 14px;
}

.bk-foot__head {
	margin-bottom: 4px;
	color: var(--bk-text);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.bk-foot__col a {
	color: var(--bk-mute);
	transition: color .18s ease;
}

.bk-foot__col a:hover {
	color: var(--bk-text);
}

.bk-foot__strip {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 18px 0;
	border-top: 1px solid var(--bk-line);
}

.bk-foot__label {
	flex: 0 0 auto;
	width: 104px;
	color: #6d7683;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.bk-foot__provs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 26px;
}

/* Eight studio marks in full colour would turn the footer into a sticker
   album, so they sit desaturated and light up one at a time on hover. */
.bk-prov {
	width: 108px;
	height: 34px;
	object-fit: contain;
	opacity: .6;
	filter: grayscale(1) brightness(1.7);
	transition: opacity .18s ease, filter .18s ease;
}

.bk-prov:hover {
	opacity: 1;
	filter: none;
}

.bk-foot__pays {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Payment methods are wordmarks, not scheme logos — a template must not ship
   somebody's trademarked badge to every site that deploys it. */
.bk-foot__pays span {
	padding: 7px 14px;
	border-radius: 9px;
	background: var(--bk-panel);
	box-shadow: inset 0 0 0 1px var(--bk-line);
	color: var(--bk-mute);
	font-size: 13px;
	font-weight: 600;
}

.bk-foot__note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0;
	padding: 20px 0 26px;
	border-top: 1px solid var(--bk-line);
	max-width: 92ch;
	color: #7d8794;
	font-size: 13px;
	line-height: 1.6;
}

.bk-age {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px var(--bk-red);
	color: var(--bk-text);
	font-size: 12px;
	font-weight: 800;
}

.bk-foot__below {
	border-top: 1px solid var(--bk-line);
	padding-block: 16px;
	color: #6d7683;
	font-size: 13px;
}

.bk-foot__below .bk-shell {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

/* ------------------------------------------------------- responsive --- */

@media (max-width: 1180px) {
	.bk-hero__main {
		padding: 36px;
		min-height: 380px;
	}

	.bk-foot__provs {
		gap: 18px;
	}

	.bk-cats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.bk-rail {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.bk-top {
		grid-template-columns: 48px minmax(0, 1fr) 180px 150px;
	}

	.bk-top__rating {
		display: none;
	}
}

@media (max-width: 1000px) {
	.bk-nav,
	.bk-auth {
		display: none;
	}

	.bk-burger {
		display: flex;
		margin-left: auto;
	}

	.bk-hero {
		grid-template-columns: minmax(0, 1fr);
	}

	.bk-hero__side {
		flex-direction: row;
	}

	.bk-info {
		grid-template-columns: minmax(0, 1fr);
	}

	.bk-foot__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}
}

@media (max-width: 860px) {
	.bk-wrap {
		padding: 22px 0 56px;
	}

	/* Air between the hero and everything under it — on a phone the blocks
	   below were running straight into it. */
	.bk-hero {
		margin-bottom: 26px;
	}

	.bk-cats {
		margin-bottom: 32px;
	}

	.bk-sec {
		margin-bottom: 34px;
	}

	/* Below this width a five-across grid stops being a rail and turns into
	   the wall of tiles the brief rules out — so it becomes a scroller. It
	   keeps the shell's gutter: a full-bleed rail ran into the screen edge
	   and the page lost its margin. */
	.bk-rail {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 6px;
		scrollbar-width: none;
	}

	.bk-rail::-webkit-scrollbar {
		display: none;
	}

	.bk-card {
		flex: 0 0 44%;
		scroll-snap-align: start;
	}

	.bk-cats {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.bk-cats::-webkit-scrollbar {
		display: none;
	}

	.bk-cat {
		flex: 0 0 116px;
		scroll-snap-align: start;
	}

	.bk-sec__head {
		align-items: center;
	}

	.bk-sec__more {
		font-size: 13px;
	}

	.bk-top {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 14px 16px;
		padding: 20px;
	}

	.bk-top__offer,
	.bk-top__action {
		grid-column: 2;
	}

	.bk-info__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.bk-land {
		padding: 40px 28px;
	}

	.bk-foot__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bk-foot__strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.bk-foot__label {
		width: auto;
	}
}

@media (max-width: 620px) {
	.bk-head__bar {
		min-height: 64px;
		gap: 14px;
	}

	.bk-hero__main {
		padding: 28px 22px;
		min-height: 340px;
		background-position: 72% center;
	}

	/* A side-lit gradient stops working once the art sits behind the copy:
	   on a phone the scrim goes flat so the text keeps its contrast. */
	.bk-hero__main::before,
	.bk-land::before {
		background: linear-gradient(180deg, rgba(8, 9, 12, .9) 0%, rgba(8, 9, 12, .82) 55%, rgba(8, 9, 12, .9) 100%);
	}

	.bk-foot__top {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	/* Two billboards side by side on a phone crop into illegible slivers —
	   stack them and let each show whole, at its own ratio. */
	.bk-hero__side {
		flex-direction: column;
	}

	.bk-promo {
		flex: 0 0 auto;
	}

	.bk-promo img {
		height: auto;
		min-height: 0;
	}

	.bk-hero__cta {
		width: 100%;
	}

	.bk-hero__cta .bk-btn {
		flex: 1;
	}

	.bk-card {
		flex-basis: 58%;
	}

	.bk-copy {
		font-size: 16px;
	}

	.bk-copy table {
		display: block;
		overflow-x: auto;
	}
}

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

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
