


@font-face {
	font-family: 'Anton';
	src: url('../fonts/anton-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/intertight-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/intertight-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/intertight-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/intertight-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/intertight-800.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}


:root {
	--ink: #0d0d0d;
	--paper: #f5f3ee;
	--card: #ffffff;
	--red: #e51111;
	--red-dark: #b50d0d;
	--meta: #6f6f68;
	--line: #0d0d0d;
	--rule: 2px;
	--maxw: 1320px;
	--pad: 28px;
	--gap: 22px;
	--display: 'Anton', 'Arial Narrow', sans-serif;
	--body: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
}


*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.62;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
	cursor: pointer;
}
h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--display);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 0.92;
	letter-spacing: 0.01em;
}
p {
	margin: 0 0 1rem;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
::selection {
	background: var(--red);
	color: #fff;
}


.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--pad);
}
.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--gap);
}
.grid__col--3 { grid-column: span 3; }
.grid__col--4 { grid-column: span 4; }
.grid__col--5 { grid-column: span 5; }
.grid__col--6 { grid-column: span 6; }
.grid__col--7 { grid-column: span 7; }
.grid__col--8 { grid-column: span 8; }
.grid__col--12 { grid-column: span 12; }


.page {
	position: relative;
	transition: transform 0.36s cubic-bezier(0.4, 0, 0.1, 1);
	will-change: transform;
}


.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 12px 18px;
	z-index: 200;
	font-weight: 700;
}
.skip:focus {
	left: 8px;
	top: 8px;
}


.head {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--paper);
	border-bottom: var(--rule) solid var(--line);
}
.head__bar {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: 70px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--display);
	font-size: 26px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding-right: 18px;
}
.brand__mark {
	width: 34px;
	height: 34px;
	flex: none;
}
.brand__tag {
	color: var(--red);
}
.nav {
	display: flex;
	align-items: stretch;
}
.nav__list {
	display: flex;
	align-items: stretch;
}
.nav__link {
	display: flex;
	align-items: center;
	padding: 0 16px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-left: var(--rule) solid var(--line);
	transition: background 0.18s ease, color 0.18s ease;
}
.nav__link:hover,
.nav__link:focus-visible {
	background: var(--ink);
	color: var(--paper);
}
.nav__link--active {
	background: var(--red);
	color: #fff;
}
.nav__link--cta {
	background: var(--red);
	color: #fff;
}
.nav__link--cta:hover {
	background: var(--ink);
	color: #fff;
}
.nav__toggle {
	display: none;
}


.panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	max-width: 80vw;
	height: 100%;
	background: var(--ink);
	color: var(--paper);
	border-left: var(--rule) solid var(--red);
	transform: translateX(100%);
	transition: transform 0.36s cubic-bezier(0.4, 0, 0.1, 1);
	z-index: 1200;
	padding: 26px 24px;
	overflow-y: auto;
}
.panel__head {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.18em;
	color: var(--red);
	border-bottom: var(--rule) solid #2b2b2b;
	padding-bottom: 14px;
	margin-bottom: 8px;
}
.panel__link {
	display: block;
	padding: 15px 0;
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 0.02em;
	border-bottom: 2px solid #232323;
	color: var(--paper);
	transition: color 0.18s ease, padding-left 0.18s ease;
}
.panel__link:hover,
.panel__link:focus-visible {
	color: var(--red);
	padding-left: 8px;
}
.panel__foot {
	margin-top: 22px;
	font-size: 13px;
	line-height: 1.7;
	color: #b8b8b2;
}
.panel__foot a {
	color: var(--paper);
}
.page::after {
	content: '';
	position: fixed;
	inset: 0;
	background: rgba(13, 13, 13, 0.55);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1100;
}
body.is-open .page::after {
	opacity: 1;
	visibility: visible;
}
body.is-open .panel {
	transform: translateX(0);
}
body.is-open {
	overflow: hidden;
}


.band {
	padding: 76px 0;
	border-bottom: var(--rule) solid var(--line);
}
.band--tight {
	padding: 44px 0;
}
.band--ink {
	background: var(--ink);
	color: var(--paper);
}
.band--red {
	background: var(--red);
	color: #fff;
}
.band__index {
	display: inline-block;
	font-family: var(--body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 14px;
}
.band--ink .band__index,
.band--red .band__index {
	color: #fff;
}
.band__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	border-bottom: var(--rule) solid currentColor;
	padding-bottom: 20px;
	margin-bottom: 36px;
}
.band__title {
	font-size: clamp(2.4rem, 6vw, 4.6rem);
}
.band__lead {
	max-width: 42ch;
	font-size: 18px;
	color: var(--meta);
	margin: 0;
}
.band--ink .band__lead {
	color: #c8c8c2;
}


.hero {
	border-bottom: var(--rule) solid var(--line);
	background: var(--paper);
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
}
.hero__copy {
	padding: 60px var(--pad) 54px;
	max-width: calc(var(--maxw) / 2 + 60px);
	margin-left: auto;
	width: 100%;
	border-right: var(--rule) solid var(--line);
}
.hero__kicker {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.hero__kicker::before {
	content: '';
	width: 34px;
	height: 14px;
	background: var(--red);
	display: inline-block;
}
.hero__title {
	font-size: clamp(3rem, 8.4vw, 6.6rem);
	margin-bottom: 24px;
}
.hero__title em {
	font-style: normal;
	color: var(--red);
}
.hero__text {
	font-size: 19px;
	max-width: 46ch;
	color: #2a2a26;
	margin-bottom: 30px;
}
.hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}
.hero__stats {
	display: flex;
	gap: 0;
	border-top: var(--rule) solid var(--line);
}
.hero__stat {
	flex: 1;
	padding: 18px 16px 0 0;
	margin-right: 16px;
}
.hero__stat:last-child {
	margin-right: 0;
}
.hero__stat-n {
	font-family: var(--display);
	font-size: 34px;
	line-height: 1;
	color: var(--ink);
}
.hero__stat-l {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--meta);
	margin-top: 6px;
}
.hero__media {
	position: relative;
	background: var(--ink);
	overflow: hidden;
}
.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.15) contrast(1.05);
}
.hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.1) 0%, rgba(13, 13, 13, 0.55) 100%);
	mix-blend-mode: multiply;
}
.hero__badge {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	background: var(--red);
	color: #fff;
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.08em;
	padding: 12px 18px;
}


.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 15px 26px;
	border: var(--rule) solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}
.btn:hover,
.btn:focus-visible {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}
.btn:active {
	transform: translate(2px, 2px);
}
.btn--ghost {
	background: transparent;
	color: var(--ink);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: var(--ink);
	color: var(--paper);
}
.btn--red {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}
.btn--red:hover,
.btn--red:focus-visible {
	background: var(--ink);
	border-color: var(--ink);
}
.btn--lg {
	padding: 18px 32px;
	font-size: 15px;
}


.marquee {
	overflow: hidden;
	background: var(--ink);
	color: var(--paper);
	border-bottom: var(--rule) solid var(--line);
	padding: 0;
}
.marquee__track {
	display: flex;
	gap: 0;
	width: max-content;
	animation: scroll-x 36s linear infinite;
}
.marquee__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 30px;
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 22px;
	white-space: nowrap;
	border-right: 2px solid #232323;
}
.marquee__item span {
	color: var(--red);
	font-size: 16px;
}
@keyframes scroll-x {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}


.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
}
.card {
	background: var(--card);
	border: var(--rule) solid var(--ink);
	display: flex;
	flex-direction: column;
	transition: transform 0.14s ease, background 0.18s ease;
}
.card:hover {
	background: var(--ink);
	color: var(--paper);
	transform: translate(-3px, -3px);
}
.card__top {
	display: flex;
	gap: 16px;
	padding: 20px;
	border-bottom: var(--rule) solid var(--ink);
	align-items: center;
}
.card:hover .card__top {
	border-color: #2c2c2c;
}
.card__icon {
	width: 72px;
	height: 72px;
	flex: none;
	border: var(--rule) solid var(--ink);
}
.card:hover .card__icon {
	border-color: var(--red);
}
.card__head {
	min-width: 0;
}
.card__rank {
	font-family: var(--display);
	font-size: 13px;
	color: var(--red);
	letter-spacing: 0.1em;
}
.card__title {
	font-family: var(--display);
	font-size: 21px;
	text-transform: uppercase;
	line-height: 0.96;
	margin-top: 4px;
	word-break: break-word;
}
.card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.card__meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 8px;
	border: 2px solid currentColor;
}
.tag--red {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}
.card__desc {
	font-size: 14.5px;
	line-height: 1.55;
	margin-bottom: 16px;
	flex: 1;
}
.card:hover .card__desc {
	color: #d8d8d2;
}
.card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}
.card__rating {
	font-family: var(--display);
	font-size: 20px;
}
.card__rating span {
	color: var(--red);
	font-size: 13px;
}
.card__link {
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom: 2px solid var(--red);
	padding-bottom: 2px;
	transition: color 0.16s ease;
}
.card:hover .card__link {
	color: var(--red);
}


.table-wrap {
	overflow-x: auto;
	border: var(--rule) solid var(--ink);
}
.ctable {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
	font-size: 15px;
}
.ctable th,
.ctable td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: var(--rule) solid var(--ink);
	border-right: 2px solid #e0ded7;
}
.ctable th:last-child,
.ctable td:last-child {
	border-right: 0;
}
.ctable thead th {
	background: var(--ink);
	color: var(--paper);
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 15px;
	font-weight: 400;
}
.ctable tbody tr:nth-child(even) {
	background: #fbfaf7;
}
.ctable tbody tr:hover {
	background: #fdeaea;
}
.ctable td:first-child {
	font-weight: 700;
}
.ctable .yes {
	color: var(--red);
	font-weight: 800;
}
.ctable .no {
	color: var(--meta);
}


.reviews {
	columns: 3;
	column-gap: var(--gap);
}
.review {
	break-inside: avoid;
	background: var(--card);
	color: var(--ink);
	border: var(--rule) solid var(--ink);
	padding: 22px;
	margin-bottom: var(--gap);
}
.review__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	border-bottom: 2px solid #e0ded7;
	padding-bottom: 12px;
}
.review__who {
	font-weight: 700;
	font-size: 15px;
}
.review__game {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--meta);
}
.review__stars {
	color: var(--red);
	font-size: 14px;
	letter-spacing: 2px;
}
.review__text {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}
.review__mark {
	font-family: var(--display);
	color: var(--red);
	font-size: 30px;
	line-height: 0.6;
}


.board {
	border: var(--rule) solid var(--ink);
}
.board__row {
	display: grid;
	grid-template-columns: 70px 1fr 120px 120px;
	align-items: center;
	border-bottom: var(--rule) solid var(--ink);
	transition: background 0.16s ease, color 0.16s ease;
}
.board__row:last-child {
	border-bottom: 0;
}
.board__row--head {
	background: var(--ink);
	color: var(--paper);
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.04em;
}
.board__row:not(.board__row--head):hover {
	background: var(--red);
	color: #fff;
}
.board__cell {
	padding: 16px 18px;
}
.board__rank {
	font-family: var(--display);
	font-size: 30px;
	color: var(--red);
	text-align: center;
}
.board__row:hover .board__rank {
	color: #fff;
}
.board__name {
	font-weight: 700;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.board__name img {
	width: 40px;
	height: 40px;
	border: 2px solid currentColor;
	flex: none;
}
.board__score {
	font-family: var(--display);
	font-size: 20px;
}
.board__cell--num {
	text-align: right;
	font-weight: 600;
}


.dossier {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: stretch;
}
.dossier__media {
	border: var(--rule) solid var(--ink);
	position: relative;
	overflow: hidden;
	min-height: 320px;
	background: var(--ink);
}
.dossier__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.2) contrast(1.05);
}
.dossier__copy p {
	font-size: 16.5px;
}
.dossier__facts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: var(--rule) solid var(--ink);
	margin-top: 22px;
}
.dossier__fact {
	padding: 18px 18px 18px 0;
	border-right: 2px solid #e0ded7;
}
.dossier__fact:nth-child(2n) {
	border-right: 0;
	padding-left: 18px;
}
.dossier__fact-n {
	font-family: var(--display);
	font-size: 30px;
	color: var(--red);
}
.dossier__fact-l {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--meta);
}


.prose {
	max-width: 76ch;
}
.prose h2 {
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	margin: 40px 0 14px;
	padding-top: 18px;
	border-top: var(--rule) solid var(--ink);
}
.prose h3 {
	font-size: 1.25rem;
	margin: 26px 0 10px;
}
.prose p,
.prose li {
	font-size: 16.5px;
}
.prose ul {
	list-style: none;
	margin: 0 0 18px;
}
.prose li {
	padding-left: 26px;
	position: relative;
	margin-bottom: 8px;
}
.prose li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 12px;
	height: 4px;
	background: var(--red);
}
.prose a {
	color: var(--red-dark);
	border-bottom: 2px solid var(--red);
	font-weight: 600;
}
.lead {
	font-size: 19px;
	color: #2a2a26;
	max-width: 60ch;
}


.timeline {
	border: var(--rule) solid var(--ink);
}
.timeline__row {
	display: grid;
	grid-template-columns: 132px 1fr 150px;
	align-items: center;
	border-bottom: var(--rule) solid var(--ink);
	transition: background 0.16s ease, color 0.16s ease;
}
.timeline__row:last-child {
	border-bottom: 0;
}
.timeline__row--head {
	background: var(--ink);
	color: var(--paper);
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.04em;
}
.timeline__row:not(.timeline__row--head):hover {
	background: var(--red);
	color: #fff;
}
.timeline__year {
	font-family: var(--display);
	font-size: 30px;
	line-height: 1;
	color: var(--red);
	text-align: center;
	padding: 18px 14px;
	border-right: 2px solid #e0ded7;
}
.timeline__row--head .timeline__year {
	font-size: 14px;
	color: var(--paper);
	border-right-color: #2c2c2c;
}
.timeline__row:not(.timeline__row--head):hover .timeline__year {
	color: #fff;
}
.timeline__main {
	padding: 16px 20px;
	border-right: 2px solid #e0ded7;
}
.timeline__row--head .timeline__main {
	border-right-color: #2c2c2c;
}
.timeline__title {
	font-family: var(--display);
	font-size: 20px;
	text-transform: uppercase;
	line-height: 0.98;
}
.timeline__note {
	font-size: 14px;
	line-height: 1.5;
	color: var(--meta);
	margin: 6px 0 0;
}
.timeline__row:not(.timeline__row--head):hover .timeline__note {
	color: #ffdada;
}
.timeline__tag {
	padding: 16px 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--meta);
	text-align: right;
}
.timeline__row--head .timeline__tag,
.timeline__row:not(.timeline__row--head):hover .timeline__tag {
	color: inherit;
}


.tiers {
	border: var(--rule) solid var(--ink);
}
.tier {
	display: grid;
	grid-template-columns: 96px 1fr;
	border-bottom: var(--rule) solid var(--ink);
}
.tier:last-child {
	border-bottom: 0;
}
.tier__label {
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-size: clamp(2.2rem, 7vw, 2.9rem);
	line-height: 1;
	color: #fff;
	border-right: var(--rule) solid var(--ink);
}
.tier--s .tier__label { background: var(--red); }
.tier--a .tier__label { background: var(--ink); }
.tier--b .tier__label { background: var(--meta); }
.tier__games {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	padding: 18px 20px;
}
.tier__game {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 10px 14px;
	border: var(--rule) solid var(--ink);
	background: var(--card);
	transition: background 0.16s ease, color 0.16s ease, transform 0.12s ease;
}
.tier__game:hover {
	background: var(--ink);
	color: var(--paper);
	transform: translate(-2px, -2px);
}
.tier__note {
	margin-top: 16px;
}


.contacts-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: var(--rule) solid var(--ink);
	margin-bottom: var(--gap);
}
.contacts-strip__item {
	padding: 26px 22px;
	border-right: var(--rule) solid var(--ink);
}
.contacts-strip__item:last-child {
	border-right: 0;
}
.contacts-strip__k {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
	font-weight: 700;
	margin-bottom: 10px;
}
.contacts-strip__v {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
}
.contacts-strip__v a {
	border-bottom: 2px solid var(--red);
}
.form {
	border: var(--rule) solid var(--ink);
	padding: 34px;
	background: var(--card);
}
.form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.field {
	display: flex;
	flex-direction: column;
}
.field--full {
	grid-column: 1 / -1;
}
.field label {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
	font-family: var(--body);
	font-size: 16px;
	padding: 14px 14px;
	border: var(--rule) solid var(--ink);
	background: var(--paper);
	color: var(--ink);
	border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: 3px solid var(--red);
	outline-offset: 0;
	background: #fff;
}
.field textarea {
	resize: vertical;
	min-height: 150px;
}


.cta {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	align-items: center;
	gap: 30px;
}
.cta__title {
	font-size: clamp(2rem, 5vw, 3.6rem);
	color: #fff;
}
.cta__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.band--red .btn {
	background: #fff;
	border-color: #fff;
	color: var(--ink);
}
.band--red .btn:hover {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}


.phead {
	background: var(--ink);
	color: var(--paper);
	border-bottom: var(--rule) solid var(--line);
	padding: 66px 0 54px;
}
.phead__index {
	color: var(--red);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.phead__title {
	font-size: clamp(2.6rem, 7vw, 5rem);
	margin: 14px 0 14px;
}
.phead__crumbs {
	font-size: 13px;
	color: #b8b8b2;
	letter-spacing: 0.04em;
}
.phead__crumbs a {
	border-bottom: 1px solid var(--red);
}
.error__code {
	font-family: var(--display);
	font-size: clamp(6rem, 26vw, 18rem);
	line-height: 0.8;
	color: var(--red);
}


.foot {
	background: var(--ink);
	color: var(--paper);
}
.foot__main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 36px;
	padding: 56px 0 44px;
	border-bottom: 2px solid #242424;
}
.foot__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--display);
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.foot__brand img {
	width: 32px;
	height: 32px;
}
.foot__blurb {
	color: #b8b8b2;
	font-size: 15px;
	max-width: 38ch;
}
.foot__h {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 0.06em;
	color: var(--red);
	margin-bottom: 14px;
}
.foot__link {
	display: block;
	padding: 6px 0;
	color: #d4d4ce;
	font-size: 15px;
	transition: color 0.16s ease, padding-left 0.16s ease;
}
.foot__link:hover,
.foot__link:focus-visible {
	color: #fff;
	padding-left: 6px;
}
.foot__nap {
	font-size: 15px;
	line-height: 1.8;
	color: #d4d4ce;
}
.foot__nap a {
	color: #fff;
	border-bottom: 1px solid var(--red);
}
.foot__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 22px 0;
	font-size: 13px;
	color: #9a9a94;
}
.foot__disc {
	max-width: 70ch;
}


.cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 120;
	background: var(--paper);
	border: var(--rule) solid var(--ink);
	border-left: 8px solid var(--red);
	padding: 22px 24px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
	max-width: 880px;
	margin: 0 auto;
	transform: translateY(160%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.1, 1);
}
.cookie.is-shown {
	transform: translateY(0);
}
.cookie__h {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 18px;
	margin-bottom: 6px;
}
.cookie__t {
	font-size: 14px;
	margin: 0;
	color: #34342f;
}
.cookie__t a {
	border-bottom: 2px solid var(--red);
	font-weight: 600;
}
.cookie__btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}


.section-note {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--meta);
}
.divider-num {
	font-family: var(--display);
	font-size: 13px;
	color: var(--red);
}
.split-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 36px;
}
.feature {
	border-top: var(--rule) solid var(--ink);
	padding: 22px 0;
}
.feature__n {
	font-family: var(--display);
	font-size: 26px;
	color: var(--red);
}
.feature__h {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 19px;
	margin: 6px 0 8px;
}
.feature__t {
	font-size: 15px;
	color: #34342f;
	margin: 0;
}


@media (max-width: 1040px) {
	.foot__main {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.reviews {
		columns: 2;
	}
}

@media (max-width: 880px) {
	.nav {
		display: none;
	}
	.nav__toggle {
		display: flex;
		align-items: center;
		gap: 10px;
		background: var(--ink);
		color: var(--paper);
		border: 0;
		padding: 0 22px;
		font-family: var(--display);
		text-transform: uppercase;
		font-size: 15px;
		letter-spacing: 0.04em;
	}
	.nav__toggle .bars {
		display: inline-block;
		width: 24px;
		height: 16px;
		position: relative;
	}
	.nav__toggle .bars::before,
	.nav__toggle .bars::after,
	.nav__toggle .bars span {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		height: 3px;
		background: var(--red);
		transition: transform 0.26s ease, opacity 0.2s ease;
	}
	.nav__toggle .bars::before { top: 0; }
	.nav__toggle .bars span { top: 6.5px; }
	.nav__toggle .bars::after { bottom: 0; }
	body.is-open .nav__toggle .bars::before { transform: translateY(6.5px) rotate(45deg); }
	body.is-open .nav__toggle .bars span { opacity: 0; }
	body.is-open .nav__toggle .bars::after { transform: translateY(-6.5px) rotate(-45deg); }

	.hero__grid {
		grid-template-columns: 1fr;
	}
	.hero__copy {
		border-right: 0;
		border-bottom: var(--rule) solid var(--line);
		max-width: none;
		padding: 48px var(--pad);
		order: 2;
	}
	.hero__media {
		order: 1;
		min-height: 280px;
	}
	.dossier {
		grid-template-columns: 1fr;
	}
	.cta {
		grid-template-columns: 1fr;
	}
	.cta__actions {
		justify-content: flex-start;
	}
	.contacts-strip {
		grid-template-columns: 1fr 1fr;
	}
	.contacts-strip__item:nth-child(2) {
		border-right: 0;
	}
	.contacts-strip__item:nth-child(1),
	.contacts-strip__item:nth-child(2) {
		border-bottom: var(--rule) solid var(--ink);
	}
	.board__row {
		grid-template-columns: 54px 1fr 90px;
	}
	.board__cell--hide {
		display: none;
	}
}

@media (max-width: 600px) {
	:root {
		--pad: 18px;
		--gap: 16px;
	}
	body {
		font-size: 16px;
	}
	.band {
		padding: 52px 0;
	}
	.cards {
		grid-template-columns: 1fr;
	}
	.reviews {
		columns: 1;
	}
	.foot__main {
		grid-template-columns: 1fr;
	}
	.form {
		padding: 22px;
	}
	.form__grid {
		grid-template-columns: 1fr;
	}
	.split-list {
		grid-template-columns: 1fr;
	}
	.dossier__facts {
		grid-template-columns: 1fr;
	}
	.dossier__fact,
	.dossier__fact:nth-child(2n) {
		border-right: 0;
		padding-left: 0;
		border-bottom: 2px solid #e0ded7;
	}
	.hero__stats {
		flex-wrap: wrap;
	}
	.hero__stat {
		flex: 1 0 40%;
		margin-bottom: 8px;
	}
	.cookie {
		grid-template-columns: 1fr;
	}
	.contacts-strip {
		grid-template-columns: 1fr;
	}
	.contacts-strip__item {
		border-right: 0;
		border-bottom: var(--rule) solid var(--ink);
	}
	.contacts-strip__item:last-child {
		border-bottom: 0;
	}
	.timeline__row {
		grid-template-columns: 78px 1fr;
	}
	.timeline__year {
		font-size: 22px;
		padding: 14px 8px;
	}
	.timeline__tag {
		display: none;
	}
	.tier {
		grid-template-columns: 64px 1fr;
	}
	.tier__games {
		padding: 14px;
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}
