/* =========================================================
   БАРРАКУДА+ — неоновый бар
   ========================================================= */
:root {
	--bg: #080611;
	--bg-2: #100c1d;
	--bg-3: #181229;
	--line: rgba(255, 255, 255, 0.09);
	--line-2: rgba(255, 255, 255, 0.16);

	--white: #f6f4ff;
	--mute: #a49cc4;
	--mute-2: #726a92;

	--neon: #ff4a2b; /* раки, главный неон */
	--neon-2: #22e0d2; /* бирюзовый неон */
	--neon-3: #b45cff; /* фиолетовый */
	--lime: #c8ff4d;

	--grad: linear-gradient(100deg, #ff4a2b, #ff7a3d 45%, #b45cff);
	--grad-2: linear-gradient(120deg, #22e0d2, #4d7cff);

	--r: 16px;
	--r-l: 26px;
	--r-xl: 38px;
	--disp: "Unbounded", system-ui, sans-serif;
	--txt: "Onest", system-ui, -apple-system, sans-serif;
	--pad: clamp(18px, 5vw, 64px);
	--maxw: 1280px;
	--ease: cubic-bezier(0.22, 0.68, 0.26, 1);
	--glow-n: 0 0 24px rgba(255, 74, 43, 0.55), 0 0 60px rgba(255, 74, 43, 0.28);
	--glow-c: 0 0 24px rgba(34, 224, 210, 0.5), 0 0 60px rgba(34, 224, 210, 0.22);
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--white);
	font-family: var(--txt);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	overscroll-behavior-y: none;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
}
button,
select,
input {
	font: inherit;
	color: inherit;
}
button {
	cursor: pointer;
	background: none;
	border: 0;
}
:focus-visible {
	outline: 2px solid var(--neon-2);
	outline-offset: 3px;
	border-radius: 8px;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding-inline: var(--pad);
}
.sr {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
.ic {
	width: 1em;
	height: 1em;
	flex: none;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

h1,
h2,
h3 {
	font-family: var(--disp);
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.03em;
	line-height: 1.02;
	text-transform: uppercase;
}
h1 {
	font-size: clamp(34px, 4.6vw, 72px);
}
h2 {
	font-size: clamp(28px, 4.4vw, 58px);
}
h3 {
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 600;
	letter-spacing: -0.01em;
	text-transform: none;
}
p {
	margin: 0 0 1em;
}
.lead {
	color: var(--mute);
	max-width: 56ch;
	font-size: clamp(16px, 1.5vw, 18px);
	line-height: 1.72;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--disp);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--neon-2);
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(34, 224, 210, 0.1);
	border: 1px solid rgba(34, 224, 210, 0.3);
	box-shadow: 0 0 22px rgba(34, 224, 210, 0.18) inset;
}
.eyebrow .ic {
	font-size: 14px;
}

/* ================= движение ================= */
.reveal {
	opacity: 0;
	transform: translateY(26px) scale(0.985);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
.reveal[data-d="1"] {
	transition-delay: 0.08s;
}
.reveal[data-d="2"] {
	transition-delay: 0.16s;
}
.reveal[data-d="3"] {
	transition-delay: 0.24s;
}
.reveal[data-d="4"] {
	transition-delay: 0.32s;
}
.reveal[data-d="5"] {
	transition-delay: 0.4s;
}
.reveal[data-d="6"] {
	transition-delay: 0.48s;
}
@keyframes dot {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 12px currentColor;
	}
	50% {
		opacity: 0.35;
		box-shadow: 0 0 4px currentColor;
	}
}
@keyframes flicker {
	0%,
	100% {
		opacity: 1;
	}
	45% {
		opacity: 1;
	}
	47% {
		opacity: 0.55;
	}
	49% {
		opacity: 1;
	}
	92% {
		opacity: 1;
	}
	94% {
		opacity: 0.7;
	}
	96% {
		opacity: 1;
	}
}
@keyframes floaty {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(30px, -26px, 0);
	}
}
@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@keyframes ring {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 74, 43, 0.5);
	}
	70% {
		box-shadow: 0 0 0 18px rgba(255, 74, 43, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 74, 43, 0);
	}
}
@keyframes sheen {
	from {
		background-position: -160% 0;
	}
	to {
		background-position: 260% 0;
	}
}

/* ================= кнопки ================= */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: 999px;
	font-family: var(--disp);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	overflow: hidden;
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s,
		border-color 0.3s,
		color 0.3s,
		background 0.3s;
}
.btn .ic {
	font-size: 18px;
}
.btn--red {
	background: var(--grad);
	color: #fff;
	box-shadow: var(--glow-n);
}
.btn--red:hover {
	transform: translateY(-3px);
	box-shadow:
		0 0 34px rgba(255, 74, 43, 0.75),
		0 0 80px rgba(255, 74, 43, 0.4);
}
.btn--red::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 38%,
		rgba(255, 255, 255, 0.45) 50%,
		transparent 62%
	);
	background-size: 260% 100%;
	animation: sheen 5s linear infinite;
}
.btn--out {
	border: 1px solid var(--line-2);
	color: var(--white);
	backdrop-filter: blur(8px);
}
.btn--out:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
	box-shadow: var(--glow-c);
	transform: translateY(-3px);
}
.btn--sm {
	padding: 12px 22px;
	font-size: 12px;
}

/* ================= шапка ================= */
.top {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(8, 6, 17, 0.7);
	backdrop-filter: blur(20px) saturate(1.4);
	-webkit-backdrop-filter: blur(20px) saturate(1.4);
	border-bottom: 1px solid var(--line);
	transform: translateZ(0);
	will-change: transform;
}
.top.small {
	background: rgba(8, 6, 17, 0.92);
}
.top__in {
	display: flex;
	align-items: center;
	gap: 22px;
	height: 88px;
	transition: height 0.3s var(--ease);
}
.top.small .top__in {
	height: 68px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	flex: none;
}
.brand img {
	width: 76px;
	height: auto;
	transition: width 0.3s var(--ease);
	filter: drop-shadow(0 0 12px rgba(255, 74, 43, 0.5));
}
.top.small .brand img {
	width: 60px;
}
@supports not (backdrop-filter: blur(1px)) {
	.top {
		background: rgba(8, 6, 17, 0.92);
	}
}
.brand b {
	font-family: var(--disp);
	font-weight: 800;
	font-size: 18px;
	letter-spacing: 0.02em;
	line-height: 1;
	display: block;
}
.brand i {
	font-style: normal;
	font-size: 9.5px;
	letter-spacing: 0.2em;
	color: var(--mute-2);
	text-transform: uppercase;
}
.nav {
	display: flex;
	gap: 4px;
	margin-left: auto;
	font-family: var(--disp);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.nav a {
	text-decoration: none;
	color: var(--mute);
	transition:
		color 0.25s,
		background 0.25s;
	padding: 10px 15px;
	border-radius: 999px;
}
.nav a:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}
.top__tel {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--disp);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	padding: 11px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255, 74, 43, 0.45);
	color: var(--neon);
	white-space: nowrap;
	transition: 0.3s;
	box-shadow: 0 0 20px rgba(255, 74, 43, 0.18) inset;
}
.top__tel:hover {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
	box-shadow: var(--glow-n);
}
.burger {
	display: none;
	padding: 8px;
	margin-left: auto;
	color: var(--white);
}

/* ================= герой ================= */
.hero {
	position: relative;
	min-height: min(92svh, 880px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 55%;
	filter: blur(14px) saturate(1.5) brightness(0.5) hue-rotate(-8deg);
	transform: scale(1.14);
	animation: none;
	will-change: transform;
}
.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			96deg,
			rgba(8, 6, 17, 0.95) 0%,
			rgba(8, 6, 17, 0.82) 40%,
			rgba(8, 6, 17, 0.5) 72%,
			rgba(8, 6, 17, 0.85) 100%
		),
		radial-gradient(50% 46% at 14% 26%, rgba(255, 74, 43, 0.3), transparent 68%),
		radial-gradient(
			46% 42% at 88% 70%,
			rgba(34, 224, 210, 0.22),
			transparent 70%
		);
}
.hero__in {
	position: relative;
	width: 100%;
	padding-top: clamp(26px, 3.4vw, 52px);
}
.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
	gap: clamp(26px, 4vw, 64px);
	align-items: center;
	padding-bottom: clamp(22px, 3vw, 40px);
}
.hero h1 span {
	display: block;
}
.hero h1 .red {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 26px rgba(255, 74, 43, 0.5));
	animation: flicker 7s infinite;
}
.hero__sub {
	margin: 24px 0 28px;
	max-width: 40ch;
	color: var(--mute);
	font-size: clamp(16px, 1.5vw, 18px);
}
.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.hero__now {
	margin: 0 0 22px;
	font-size: 13.5px;
}
.live {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--disp);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lime);
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(200, 255, 77, 0.08);
	border: 1px solid rgba(200, 255, 77, 0.32);
	margin-bottom: 22px;
}
.live i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lime);
	color: var(--lime);
	animation: dot 2.2s ease-in-out infinite;
}
.tickline {
	height: 2px;
	border-radius: 2px;
	background: var(--grad);
	box-shadow: var(--glow-n);
	opacity: 0.85;
}
.scroll {
	display: none;
}

.herocol {
	display: grid;
	gap: 14px;
}
.shot {
	margin: 0;
	border-radius: var(--r-l);
	overflow: hidden;
	position: relative;
	border: 1px solid var(--line-2);
}
.shot img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	filter: saturate(1.2) contrast(1.05);
}
.shot figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 32px 20px 16px;
	font-size: 12.5px;
	color: var(--white);
	background: linear-gradient(0deg, rgba(8, 6, 17, 0.95), transparent);
}
.shot figcaption .ic {
	font-size: 15px;
	color: var(--neon-2);
}

.callcard {
	position: relative;
	z-index: 30;
	background: rgba(24, 18, 41, 0.55);
	backdrop-filter: blur(24px) saturate(1.3);
	border: 1px solid var(--line-2);
	padding: 26px;
	border-radius: var(--r-xl);
	box-shadow:
		0 30px 80px -40px rgba(0, 0, 0, 0.9),
		0 0 60px -30px rgba(180, 92, 255, 0.5);
}
.callcard__t {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--disp);
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--neon-2);
	margin-bottom: 16px;
	font-weight: 600;
}
.callcard__phone {
	display: block;
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(24px, 2.3vw, 31px);
	letter-spacing: -0.02em;
	text-decoration: none;
	margin: 16px 0 6px;
	transition: color 0.25s;
}
.callcard__phone:hover {
	color: var(--neon);
}
.callcard__meta {
	font-size: 12.5px;
	color: var(--mute-2);
	margin: 0 0 18px;
	line-height: 1.6;
	min-height: 2.4em;
}
.callcard__row {
	display: flex;
	gap: 10px;
}

.facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding-bottom: clamp(18px, 2.4vw, 30px);
	background: none;
	border: 0;
	backdrop-filter: none;
}
.facts div {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 18px;
	border-radius: var(--r-l);
	background: rgba(24, 18, 41, 0.5);
	backdrop-filter: blur(14px);
	border: 1px solid var(--line);
	transition:
		transform 0.35s var(--ease),
		border-color 0.35s,
		box-shadow 0.35s;
}
.facts div:hover {
	transform: translateY(-4px);
	border-color: rgba(34, 224, 210, 0.45);
	box-shadow: 0 0 34px -12px rgba(34, 224, 210, 0.6);
}
.fic {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	flex: none;
	font-size: 21px;
}
.fic--red {
	background: rgba(255, 74, 43, 0.16);
	color: #ff7a5c;
	box-shadow: 0 0 20px rgba(255, 74, 43, 0.24) inset;
}
.fic--amber {
	background: rgba(180, 92, 255, 0.16);
	color: #c98cff;
	box-shadow: 0 0 20px rgba(180, 92, 255, 0.22) inset;
}
.fic--sea {
	background: rgba(34, 224, 210, 0.16);
	color: var(--neon-2);
	box-shadow: 0 0 20px rgba(34, 224, 210, 0.22) inset;
}
.fic--dill {
	background: rgba(200, 255, 77, 0.14);
	color: var(--lime);
	box-shadow: 0 0 20px rgba(200, 255, 77, 0.2) inset;
}
.facts b {
	display: block;
	font-family: var(--disp);
	font-weight: 700;
	font-size: clamp(16px, 1.6vw, 21px);
	line-height: 1.15;
}
.facts span {
	font-size: 12px;
	color: var(--mute-2);
}

/* ================= бегущая строка ================= */
.ticker {
	position: relative;
	overflow: hidden;
	padding: 18px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(
		90deg,
		rgba(255, 74, 43, 0.1),
		rgba(180, 92, 255, 0.08),
		rgba(34, 224, 210, 0.1)
	);
}
.ticker__row {
	display: flex;
	width: max-content;
	animation: marquee 34s linear infinite;
}
.ticker span {
	display: inline-flex;
	align-items: center;
	gap: 26px;
	padding-right: 26px;
	font-family: var(--disp);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	white-space: nowrap;
}
.ticker span i {
	font-style: normal;
	color: var(--neon);
}
@media (hover: hover) and (pointer: fine){.ticker:hover .ticker__row{animation-play-state:paused;}}

/* ================= секции ================= */
section {
	padding: clamp(64px, 8vw, 128px) 0;
	position: relative;
}
.head {
	margin-bottom: clamp(30px, 4vw, 52px);
	max-width: 64ch;
}
.head h2 {
	margin-top: 18px;
}
.head p {
	margin-top: 16px;
}
.note {
	font-size: 13px;
	color: var(--mute-2);
	max-width: 76ch;
	margin-top: 30px;
	padding-left: 0;
	line-height: 1.7;
}
.note::before,
.note::after {
	display: none;
}
.pat::before {
	display: none;
}
.glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(110px);
	opacity: 0.75;
	animation: floaty 18s ease-in-out infinite;
}
.glow--red {
	background: rgba(255, 74, 43, 0.28);
}
.glow--amber {
	background: rgba(180, 92, 255, 0.24);
}
.glow--sea {
	background: rgba(34, 224, 210, 0.22);
}
.glow--dill {
	background: rgba(200, 255, 77, 0.14);
}
section > .wrap {
	position: relative;
	z-index: 1;
}

/* ================= размерная линейка ================= */
.ruler {
	margin: 0;
	padding-bottom: 10px;
	overflow-x: auto;
	scrollbar-width: none;
}
.ruler::-webkit-scrollbar {
	display: none;
}
.ruler__track {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	min-width: 690px;
	position: relative;
	padding-bottom: 44px;
}
.ruler__track::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(
		90deg,
		rgba(255, 74, 43, 0.7),
		rgba(180, 92, 255, 0.5) 55%,
		rgba(34, 224, 210, 0.7)
	);
}
.node {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
	transition: transform 0.35s var(--ease);
}
.node::after {
	content: "";
	position: absolute;
	bottom: -44px;
	left: 50%;
	width: 1px;
	height: 44px;
	background: var(--line-2);
}
.node:hover {
	transform: translateY(-7px);
}
.node__ph {
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--line-2);
	background: var(--bg-2);
	transition:
		border-color 0.35s,
		box-shadow 0.35s;
}
.node__ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.85);
	transform-origin: 47% 45%;
	transition: transform 0.6s var(--ease);
	filter: saturate(1.25);
}
.node:hover .node__ph img {
	transform: scale(2.05);
}
.node__n {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 16px;
	color: var(--mute);
	transition: color 0.3s;
	line-height: 1;
}
.node__g {
	font-size: 11.5px;
	color: var(--mute-2);
	line-height: 1;
}
.node[aria-pressed="true"] .node__ph {
	border-color: var(--neon);
	box-shadow: var(--glow-n);
	animation: ring 2.6s ease-out infinite;
}
.node[aria-pressed="true"] .node__n {
	color: var(--white);
}
.node[aria-pressed="true"] .node__g {
	color: var(--neon);
}
.node[aria-pressed="true"]::after {
	background: var(--neon);
	width: 2px;
	box-shadow: 0 0 12px rgba(255, 74, 43, 0.8);
}

.detail {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(26px, 3.6vw, 54px);
	margin-top: clamp(34px, 4vw, 58px);
	border-radius: var(--r-xl);
	padding: clamp(22px, 2.6vw, 34px);
	background: linear-gradient(
		150deg,
		rgba(24, 18, 41, 0.8),
		rgba(16, 12, 29, 0.35)
	);
	border: 1px solid var(--line);
	box-shadow: 0 40px 90px -60px rgba(180, 92, 255, 0.8);
}
.detail__ph {
	position: relative;
	background: var(--bg-2);
	border-radius: var(--r-l);
	overflow: hidden;
	border: 1px solid var(--line);
}
.detail__ph img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: opacity 0.35s;
	filter: saturate(1.2);
}
.detail__ph.sw img {
	opacity: 0;
}
.detail__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--grad);
	color: #fff;
	font-family: var(--disp);
	font-weight: 700;
	letter-spacing: 0.06em;
	font-size: 12.5px;
	padding: 8px 16px;
	border-radius: 999px;
	box-shadow: var(--glow-n);
}
.detail__num {
	font-family: var(--disp);
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.05;
}
.detail__row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 22px 0 24px;
}
.detail__row div {
	flex: 1;
	min-width: 118px;
	background: rgba(8, 6, 17, 0.5);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 14px 16px;
	transition: border-color 0.3s;
}
.detail__row div:hover {
	border-color: rgba(34, 224, 210, 0.4);
}
.detail__row span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--disp);
	font-size: 10px;
	color: var(--mute-2);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
}
.detail__row span .ic {
	font-size: 13px;
}
.detail__row b {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 19px;
	display: block;
	margin-top: 7px;
}
.kinds {
	display: flex;
	gap: 9px;
	margin-bottom: 24px;
}
.kinds button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	font-family: var(--disp);
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--mute);
	transition: 0.3s;
}
.kinds button .ic {
	font-size: 15px;
}
.kinds button:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
}
.kinds button[aria-pressed="true"] {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--glow-n);
}
.order {
	display: flex;
	align-items: flex-end;
	gap: clamp(18px, 3vw, 44px);
	flex-wrap: wrap;
}
.qty span,
.total span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--disp);
	font-size: 10px;
	color: var(--mute-2);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	margin-bottom: 10px;
}
.qty span .ic,
.total span .ic {
	font-size: 13px;
}
.qty__box {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(8, 6, 17, 0.5);
	border: 1px solid var(--line-2);
	border-radius: 999px;
	padding: 5px;
}
.qty__box button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 19px;
	line-height: 1;
	color: var(--neon-2);
	transition: 0.25s;
}
.qty__box button:hover {
	background: rgba(34, 224, 210, 0.15);
	box-shadow: var(--glow-c);
}
.qty__box output {
	font-family: var(--disp);
	font-weight: 600;
	font-size: 17px;
	min-width: 110px;
	text-align: center;
}
.total b {
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1;
	display: block;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 20px rgba(255, 74, 43, 0.45));
}
.hint {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--mute-2);
	margin: 18px 0 24px;
	min-height: 1.4em;
}
.hint .ic {
	font-size: 16px;
	color: var(--lime);
}

/* ================= шесть и шесть ================= */
.six {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 4.5vw, 64px);
	flex-wrap: wrap;
	padding: clamp(32px, 4vw, 52px) clamp(24px, 4vw, 48px);
	border-radius: var(--r-xl);
	background: linear-gradient(
		120deg,
		rgba(255, 74, 43, 0.16),
		rgba(24, 18, 41, 0.6) 45%,
		rgba(34, 224, 210, 0.16)
	);
	border: 1px solid var(--line);
	text-align: center;
	box-shadow: 0 0 90px -50px rgba(180, 92, 255, 0.9);
}
.six__n {
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(48px, 6.4vw, 84px);
	line-height: 0.9;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 26px rgba(255, 74, 43, 0.45));
}
.six__t {
	font-family: var(--disp);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-align: left;
	font-weight: 600;
}
.six__t span {
	display: block;
	font-family: var(--txt);
	font-size: 13px;
	color: var(--mute-2);
	margin-top: 6px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
}
.six__x {
	font-family: var(--disp);
	font-size: 22px;
	color: var(--mute-2);
}
.six__item {
	display: flex;
	align-items: center;
	gap: 18px;
}

/* ================= расчёт на компанию ================= */
.party {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 3.6vw, 52px);
	align-items: center;
	background: linear-gradient(
		140deg,
		rgba(34, 224, 210, 0.12),
		rgba(16, 12, 29, 0.5)
	);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: clamp(26px, 3.4vw, 46px);
}
.party__ppl {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 22px 0 22px;
}
.party__ppl button {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	color: var(--neon-2);
	font-size: 20px;
	transition: 0.25s;
}
.party__ppl button:hover {
	border-color: var(--neon-2);
	box-shadow: var(--glow-c);
}
.party__ppl output {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 28px;
	min-width: 165px;
	text-align: center;
}
.party__mode {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
}
.party__mode button {
	padding: 11px 20px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	color: var(--mute);
	font-family: var(--disp);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	transition: 0.25s;
}
.party__mode button[aria-pressed="true"] {
	background: var(--grad-2);
	border-color: transparent;
	color: #04201e;
	box-shadow: var(--glow-c);
}
.party__res {
	background: rgba(8, 6, 17, 0.55);
	border: 1px solid var(--line);
	border-radius: var(--r-l);
	padding: clamp(24px, 3vw, 34px);
}
.party__kg {
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1;
	background: var(--grad-2);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 22px rgba(34, 224, 210, 0.45));
}
.party__list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}
.party__list li {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	color: var(--mute);
}
.party__list li:last-child {
	border: 0;
}
.party__list b {
	font-family: var(--disp);
	font-weight: 700;
	color: var(--white);
	white-space: nowrap;
	font-size: 15px;
}

/* ================= меню ================= */
.paper {
	background: var(--bg-2);
	color: var(--white);
	border-radius: var(--r-xl) var(--r-xl) 0 0;
	margin-top: -1px;
	border-top: 1px solid var(--line);
}
.paper h2,
.paper h3 {
	color: var(--white);
}
.paper .lead {
	color: var(--mute);
}
.paper .eyebrow {
	color: var(--neon);
	background: rgba(255, 74, 43, 0.1);
	border-color: rgba(255, 74, 43, 0.32);
}
.tabs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	margin-bottom: 28px;
	padding-bottom: 4px;
	scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
	display: none;
}
.tab {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	font-family: var(--disp);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--mute);
	transition: 0.3s;
}
.tab .ic {
	font-size: 15px;
}
.tab:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
}
.tab[aria-selected="true"] {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--glow-n);
}
.menu {
	column-count: 2;
	column-gap: clamp(24px, 3.4vw, 56px);
}
.item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 13px 14px;
	border-radius: var(--r);
	break-inside: avoid;
	border-bottom: 1px solid var(--line);
	transition:
		background 0.3s,
		transform 0.3s var(--ease),
		border-color 0.3s;
}
.item:hover {
	background: rgba(255, 255, 255, 0.04);
	transform: translateX(4px);
	border-bottom-color: transparent;
}
.item__ph {
	width: 58px;
	height: 58px;
	flex: none;
	object-fit: cover;
	border-radius: 14px;
	filter: saturate(1.15);
}
.item__b {
	flex: 1;
	min-width: 0;
}
.item__n {
	font-weight: 600;
	font-size: 15.5px;
	line-height: 1.3;
}
.item__d {
	font-size: 12.5px;
	color: var(--mute-2);
	margin-top: 2px;
}
.item__p {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 17px;
	white-space: nowrap;
	color: var(--neon);
}
.addbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	color: var(--mute);
	font-size: 17px;
	transition: 0.25s;
}
.addbtn:hover,
.addbtn.done {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--glow-n);
}
.addbtn.done {
	width: auto;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 11.5px;
}
.paper .addbtn {
	border-color: var(--line-2);
	color: var(--mute);
}

/* ================= шаги ================= */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
	counter-reset: s;
}
.st {
	background: rgba(24, 18, 41, 0.45);
	border: 1px solid var(--line);
	border-radius: var(--r-l);
	padding: 26px 24px;
	counter-increment: s;
	transition:
		transform 0.35s var(--ease),
		border-color 0.35s,
		box-shadow 0.35s;
	position: relative;
	overflow: hidden;
}
.st:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 74, 43, 0.4);
	box-shadow: 0 0 40px -18px rgba(255, 74, 43, 0.8);
}
.st__ic {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	font-size: 26px;
	margin-bottom: 16px;
	position: relative;
}
.st__n {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--line-2);
	font-family: var(--disp);
	font-size: 11px;
	display: grid;
	place-items: center;
	color: var(--white);
}
.st h3 {
	font-size: 19px;
}
.st p {
	margin: 10px 0 0;
	color: var(--mute);
	font-size: 14.5px;
}

/* ================= преимущества ================= */
.advs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 12px;
}
.adv {
	background: rgba(24, 18, 41, 0.45);
	border: 1px solid var(--line);
	border-radius: var(--r-l);
	padding: 26px;
	transition:
		transform 0.35s var(--ease),
		border-color 0.35s,
		box-shadow 0.35s;
}
.adv:hover {
	transform: translateY(-6px);
	border-color: rgba(34, 224, 210, 0.4);
	box-shadow: 0 0 40px -18px rgba(34, 224, 210, 0.8);
}
.adv .fic {
	margin-bottom: 15px;
}
.adv b {
	display: block;
	font-family: var(--disp);
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 8px;
}
.adv span {
	font-size: 14px;
	color: var(--mute);
}

/* ================= цифры ================= */
.nums {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
}
.nums > div {
	border-radius: var(--r-l);
	padding: 26px 24px;
	border: 1px solid var(--line);
	background: rgba(24, 18, 41, 0.4);
	transition: transform 0.35s var(--ease);
}
.nums > div:hover {
	transform: translateY(-5px);
}
.nums b {
	display: block;
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1;
}
.nums > div:nth-child(1) b {
	color: var(--neon);
}
.nums > div:nth-child(2) b {
	color: var(--neon-2);
}
.nums > div:nth-child(3) b {
	color: var(--neon-3);
}
.nums > div:nth-child(4) b {
	color: var(--lime);
}
.nums span {
	font-size: 13px;
	color: var(--mute-2);
	display: block;
	margin-top: 10px;
}

/* ================= галерея ================= */
.gal {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.gal a {
	overflow: hidden;
	background: var(--bg-2);
	border-radius: var(--r-l);
	position: relative;
	border: 1px solid var(--line);
}
.gal img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
	filter: saturate(1.15);
}
.gal a:hover img {
	transform: scale(1.08);
}
.gal a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(255, 74, 43, 0.35), transparent 55%);
	opacity: 0;
	transition: opacity 0.35s;
}
.gal a:hover::after {
	opacity: 1;
}
.gal a:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

/* ================= опт ================= */
.opt {
	padding-top: 0;
}
.opt__in {
	background: linear-gradient(
		125deg,
		rgba(255, 74, 43, 0.9),
		rgba(180, 92, 255, 0.75)
	);
	border: 0;
	border-radius: var(--r-xl);
	padding: clamp(32px, 4.6vw, 68px);
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 36px;
	align-items: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 40px 100px -50px rgba(255, 74, 43, 0.9);
}
.opt__in::before {
	content: "";
	position: absolute;
	right: -100px;
	top: -100px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.22),
		transparent 65%
	);
}
.opt p {
	color: rgba(255, 255, 255, 0.9);
	margin-top: 18px;
	max-width: 52ch;
}
.opt .btn {
	background: #fff;
	color: #1a0a1f;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}
.opt .btn::after {
	display: none;
}
.opt .btn:hover {
	background: var(--bg);
	color: #fff;
}

/* ================= отзывы ================= */
.score {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	padding: 28px 30px;
	margin-bottom: 14px;
	border-radius: var(--r-xl);
	background: linear-gradient(
		120deg,
		rgba(255, 74, 43, 0.14),
		rgba(24, 18, 41, 0.5)
	);
	border: 1px solid var(--line);
}
.score b {
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(50px, 6.4vw, 80px);
	line-height: 0.85;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 24px rgba(255, 74, 43, 0.5));
}
.score span {
	font-size: 13.5px;
	color: var(--mute);
	max-width: 38ch;
}
.stars {
	color: var(--neon);
	letter-spacing: 3px;
	font-size: 14px;
	filter: drop-shadow(0 0 8px rgba(255, 74, 43, 0.6));
}
.revs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 12px;
}
.rev {
	padding: 26px;
	border-radius: var(--r-l);
	background: rgba(24, 18, 41, 0.45);
	border: 1px solid var(--line);
	transition:
		transform 0.35s var(--ease),
		border-color 0.35s;
}
.rev:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 74, 43, 0.4);
}
.rev p {
	font-size: 15px;
	margin: 14px 0;
}
.rev cite {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-style: normal;
	font-family: var(--disp);
	font-size: 11px;
	color: var(--mute-2);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ================= таверны ================= */
.bars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 12px;
}
.bar {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 26px;
	border-radius: var(--r-xl);
	background: rgba(24, 18, 41, 0.45);
	border: 1px solid var(--line);
	transition:
		transform 0.35s var(--ease),
		border-color 0.35s,
		box-shadow 0.35s;
}
.bar:hover {
	transform: translateY(-6px);
	border-color: rgba(34, 224, 210, 0.45);
	box-shadow: 0 0 46px -20px rgba(34, 224, 210, 0.9);
}
.bar--new {
	border-color: rgba(255, 74, 43, 0.5);
	background: linear-gradient(
		150deg,
		rgba(255, 74, 43, 0.14),
		rgba(24, 18, 41, 0.5)
	);
}
.bar__area {
	font-family: var(--disp);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--neon-2);
	font-weight: 600;
}
.bar__a {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 21px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 4px 0 0;
}
.bar__mark {
	font-family: var(--txt);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #0b0716;
	background: var(--grad-2);
	padding: 4px 11px;
	border-radius: 999px;
}
.bar__mark--new {
	background: var(--grad);
	color: #fff;
}
.bar__d {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13.5px;
	color: var(--mute);
	margin: 0;
}
.bar__d .ic {
	font-size: 16px;
	margin-top: 2px;
	color: var(--neon-2);
}
.bar__score {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--mute-2);
}
.bar__score .ic {
	color: var(--neon);
}
.bar__score b {
	font-family: var(--disp);
	color: var(--neon);
	font-size: 15px;
	font-weight: 700;
}
.bar__t {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--disp);
	font-weight: 700;
	font-size: 19px;
	text-decoration: none;
	margin-top: auto;
	padding-top: 10px;
	transition: color 0.25s;
}
.bar__t .ic {
	font-size: 17px;
	color: var(--neon-2);
}
.bar__t:hover {
	color: var(--neon-2);
}
.bar__links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding-top: 6px;
}
.bar__links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11.5px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: var(--disp);
	font-weight: 600;
	color: var(--mute-2);
	text-decoration: none;
	padding: 8px 15px;
	border-radius: 999px;
	border: 1px solid var(--line);
	transition: 0.25s;
}
.bar__links a:hover {
	color: var(--neon-2);
	border-color: var(--neon-2);
	box-shadow: var(--glow-c);
}
.bar__dist {
	font-size: 11.5px;
	color: var(--neon);
	font-weight: 600;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 4px;
}
.tags span {
	font-size: 11.5px;
	color: var(--mute);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px 12px;
	background: rgba(255, 255, 255, 0.03);
}
.status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 600;
}
.status i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex: none;
}
.status--on {
	color: var(--lime);
}
.status--on i {
	background: var(--lime);
	color: var(--lime);
	animation: dot 2.2s ease-in-out infinite;
}
.status--off {
	color: var(--mute-2);
}
.status--off i {
	background: var(--mute-2);
}
.avail {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: var(--neon-2);
	font-weight: 600;
}
.map {
	height: clamp(320px, 42vw, 480px);
	margin-top: clamp(30px, 4vw, 54px);
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	overflow: hidden;
}
.map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: saturate(1.05);
}

/* ================= фильтры ================= */
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 28px;
	align-items: center;
}
.filters .chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 19px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	color: var(--mute);
	font-family: var(--disp);
	font-size: 11.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	transition: 0.25s;
}
.filters .chip:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
}
.filters .chip[aria-pressed="true"] {
	background: var(--grad-2);
	border-color: transparent;
	color: #04201e;
	box-shadow: var(--glow-c);
}
.filters .chip--geo {
	border-color: rgba(255, 74, 43, 0.5);
	color: var(--neon);
}
.filters .chip--geo:hover {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
	box-shadow: var(--glow-n);
}
.filters__note {
	font-size: 12.5px;
	color: var(--mute-2);
	width: 100%;
	margin: 4px 0 0;
}
.bar.hide {
	display: none;
}

/* ================= вопросы ================= */
.faq {
	display: grid;
	gap: 10px;
}
.faq details {
	background: rgba(24, 18, 41, 0.45);
	border: 1px solid var(--line);
	border-radius: var(--r-l);
	overflow: hidden;
	transition: border-color 0.3s;
}
.faq details[open] {
	border-color: rgba(180, 92, 255, 0.45);
	box-shadow: 0 0 40px -22px rgba(180, 92, 255, 0.9);
}
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 26px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--disp);
	font-size: clamp(15px, 1.7vw, 18px);
	font-weight: 600;
	transition: color 0.25s;
}
.faq summary:hover {
	color: var(--neon-2);
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary .ic {
	font-size: 19px;
	color: var(--neon-2);
}
.faq summary::after {
	content: "+";
	margin-left: auto;
	font-size: 24px;
	color: var(--neon);
	transition: transform 0.35s var(--ease);
	line-height: 1;
}
.faq details[open] summary::after {
	transform: rotate(45deg);
}
.faq p {
	margin: 0;
	padding: 0 26px 24px 60px;
	color: var(--mute);
	font-size: 15px;
	line-height: 1.75;
}

/* ================= подвал ================= */
footer {
	border-top: 1px solid var(--line);
	padding: clamp(48px, 5.5vw, 76px) 0 40px;
	font-size: 14px;
	color: var(--mute-2);
}
.foot {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 34px;
}
.foot__logo {
	width: 118px;
	height: auto;
	margin-bottom: 18px;
	filter: drop-shadow(0 0 14px rgba(255, 74, 43, 0.4));
}
.foot h4 {
	font-family: var(--disp);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--neon-2);
	margin: 0 0 16px;
	font-weight: 600;
}
.foot a {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	margin-bottom: 11px;
	transition:
		color 0.25s,
		transform 0.25s;
	color: var(--mute);
}
.foot a:hover {
	color: var(--neon);
	transform: translateX(3px);
}
.foot .ic {
	font-size: 15px;
}
.foot__bot {
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	font-size: 12.5px;
}

/* ================= плавающие кнопки ================= */
.fab {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 95;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 16px 26px;
	border-radius: 999px;
	background: var(--grad);
	color: #fff;
	font-family: var(--disp);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: var(--glow-n);
}
.cartbtn {
	position: fixed;
	right: 16px;
	bottom: 84px;
	z-index: 96;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	background: rgba(24, 18, 41, 0.9);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(34, 224, 210, 0.5);
	color: var(--neon-2);
	font-family: var(--disp);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: var(--glow-c);
}
.cartbtn.on {
	display: inline-flex;
}
.cartbtn b {
	background: var(--neon-2);
	color: #04201e;
	border-radius: 999px;
	min-width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	font-size: 11.5px;
}
.cartbtn--head {
	position: static;
	display: none;
	padding: 11px 17px;
	background: none;
	border: 1px solid var(--line-2);
	color: var(--white);
	box-shadow: none;
	backdrop-filter: none;
	flex: none;
}
.cartbtn--head b {
	background: none;
	color: var(--neon-2);
	min-width: auto;
	height: auto;
	font-size: 12px;
}
.cartbtn--head:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
	box-shadow: var(--glow-c);
}
.cartbtn--head.has {
	border-color: var(--neon-2);
	color: var(--neon-2);
}
@media (min-width: 1221px) {
	.cartbtn--head {
		display: inline-flex;
	}
	.cartbtn:not(.cartbtn--head) {
		display: none !important;
	}
}

/* ================= корзина ================= */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
}
.drawer.open {
	display: block;
}
.drawer__bg {
	position: absolute;
	inset: 0;
	background: rgba(5, 3, 12, 0.8);
	backdrop-filter: blur(6px);
	animation: fadeIn 0.3s var(--ease);
}
.drawer__panel {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: min(450px, 100%);
	background: var(--bg-2);
	border-left: 1px solid var(--line-2);
	display: flex;
	flex-direction: column;
	animation: slideIn 0.4s var(--ease);
	box-shadow: -40px 0 100px -60px rgba(180, 92, 255, 0.9);
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes slideIn {
	from {
		transform: translateX(50px);
		opacity: 0;
	}
	to {
		transform: none;
		opacity: 1;
	}
}
.drawer__head {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 26px 28px;
	border-bottom: 1px solid var(--line);
}
.drawer__head h3 {
	flex: 1;
	font-family: var(--disp);
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 800;
}
.drawer__head .ic {
	font-size: 22px;
	color: var(--neon-2);
}
.drawer__close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	display: grid;
	place-items: center;
	color: var(--mute);
	transition: 0.25s;
}
.drawer__close:hover {
	color: var(--neon);
	border-color: var(--neon);
}
.drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 28px;
}
.drawer__foot {
	padding: 22px 28px;
	border-top: 1px solid var(--line);
}
.ci {
	display: flex;
	gap: 13px;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}
.ci__n {
	flex: 1;
	font-size: 14.5px;
	line-height: 1.35;
}
.ci__n span {
	display: block;
	font-size: 12px;
	color: var(--mute-2);
	margin-top: 2px;
}
.ci__q {
	display: flex;
	align-items: center;
	gap: 6px;
}
.ci__q button {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	color: var(--neon-2);
	font-size: 15px;
	transition: 0.25s;
}
.ci__q button:hover {
	background: rgba(34, 224, 210, 0.14);
}
.ci__q output {
	font-family: var(--disp);
	min-width: 24px;
	text-align: center;
	font-size: 15px;
}
.ci__p {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 16px;
	min-width: 80px;
	text-align: right;
	color: var(--neon);
}
.cart__sum {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}
.cart__sum b {
	font-family: var(--disp);
	font-weight: 800;
	font-size: 30px;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.cart__hint {
	font-size: 12px;
	color: var(--mute-2);
	margin: 0 0 16px;
}
.cart__row {
	display: grid;
	gap: 9px;
}
.cart__empty {
	text-align: center;
	color: var(--mute-2);
	padding: 60px 10px;
	font-size: 14.5px;
	line-height: 1.7;
}

/* ================= выпадающие меню ================= */
.ndrop {
	position: relative;
}
.ndrop__btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 15px;
	border-radius: 999px;
	color: var(--mute);
	font-family: var(--disp);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: 0.25s;
}
.ndrop__btn:hover,
.ndrop__btn[aria-expanded="true"] {
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
}
.ndrop__ch {
	font-size: 14px;
	transition: transform 0.3s var(--ease);
	color: var(--neon-2);
}
.ndrop__btn[aria-expanded="true"] .ndrop__ch {
	transform: rotate(180deg);
}
.drop {
	position: absolute;
	top: calc(100% + 16px);
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	min-width: 340px;
	padding: 16px;
	border-radius: var(--r-xl);
	background: rgba(16, 12, 29, 0.96);
	backdrop-filter: blur(24px);
	border: 1px solid var(--line-2);
	box-shadow:
		0 40px 90px -46px rgba(0, 0, 0, 0.95),
		0 0 70px -40px rgba(180, 92, 255, 0.9);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.28s var(--ease),
		transform 0.28s var(--ease);
	z-index: 50;
}
.drop[hidden] {
	display: none;
}
.drop.show {
	opacity: 1;
	transform: translateX(-50%);
	pointer-events: auto;
}
.drop--wide {
	min-width: min(740px, 88vw);
}
.drop::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	width: 12px;
	height: 12px;
	transform: translateX(-50%) rotate(45deg);
	background: rgba(16, 12, 29, 0.96);
	border-left: 1px solid var(--line-2);
	border-top: 1px solid var(--line-2);
}
.drop__t {
	font-size: 11.5px;
	color: var(--mute-2);
	margin: 2px 8px 12px;
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--txt);
}
.drop__list {
	display: grid;
	gap: 2px;
}
.dmi {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 12px;
	border-radius: var(--r);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--txt);
	transition:
		background 0.25s,
		transform 0.25s var(--ease);
}
.dmi:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateX(3px);
}
.dmi__ic {
	width: 40px;
	height: 40px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	font-size: 20px;
	flex: none;
}
.dmi b {
	display: block;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--white);
}
.dmi span {
	display: block;
	font-size: 12px;
	color: var(--mute-2);
	margin-top: 2px;
}
.drop__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}
.dbi {
	display: block;
	padding: 13px 14px;
	border-radius: var(--r);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--txt);
	transition: background 0.25s;
}
.dbi:hover {
	background: rgba(255, 255, 255, 0.06);
}
.dbi__a {
	font-family: var(--disp);
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 5px;
}
.dbi__area {
	font-family: var(--disp);
	font-size: 10px;
	color: var(--neon-2);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
}
.dbi__row {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 6px;
	flex-wrap: wrap;
}
.dbi__t {
	font-size: 13px;
	color: var(--neon);
	font-weight: 600;
}
.drop__all {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: 12px;
	padding: 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	text-decoration: none;
	font-family: var(--disp);
	font-size: 11.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--neon-2);
	transition: 0.25s;
}
.drop__all:hover {
	background: var(--grad-2);
	color: #04201e;
	border-color: transparent;
	box-shadow: var(--glow-c);
}
.nav .dbi,
.nav .dmi {
	color: var(--white);
}
.nav .dbi:hover,
.nav .dmi:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
}
.nav .drop__all {
	color: var(--neon-2);
}
.nav .drop__all:hover {
	background: var(--grad-2);
	color: #04201e;
}
.nav__extra {
	display: none;
}

/* ================= селектор таверны ================= */
.cselect {
	position: relative;
}
.cselect__btn {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	padding: 14px 17px;
	border-radius: 999px;
	background: rgba(8, 6, 17, 0.5);
	border: 1px solid var(--line-2);
	text-align: left;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
}
.cselect__btn:hover,
.cselect__btn[aria-expanded="true"] {
	border-color: var(--neon-2);
	box-shadow: var(--glow-c);
}
.cselect__cur {
	flex: 1;
	font-size: 14.5px;
}
.cselect__ch {
	font-size: 15px;
	color: var(--neon-2);
	transition: transform 0.3s var(--ease);
}
.cselect__btn[aria-expanded="true"] .cselect__ch {
	transform: rotate(180deg);
}
.cselect__list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 9px);
	z-index: 90;
	margin: 0;
	padding: 8px;
	list-style: none;
	max-height: 350px;
	overflow-y: auto;
	border-radius: var(--r-l);
	background: rgba(16, 12, 29, 0.98);
	border: 1px solid var(--line-2);
	box-shadow: 0 36px 80px -40px rgba(0, 0, 0, 0.95);
}
.cselect__list[hidden] {
	display: none;
}
.cso {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 13px;
	border-radius: var(--r);
	cursor: pointer;
	transition: background 0.2s;
}
.cso:hover,
.cso.focus {
	background: rgba(255, 255, 255, 0.07);
}
.cso[aria-selected="true"] {
	background: rgba(255, 74, 43, 0.16);
}
.cso__b {
	flex: 1;
	min-width: 0;
}
.cso__a {
	font-family: var(--disp);
	font-size: 15px;
	font-weight: 600;
}
.cso__m {
	font-size: 11.5px;
	color: var(--mute-2);
	display: block;
	margin-top: 3px;
}
.cso__r {
	font-family: var(--disp);
	color: var(--neon);
	font-size: 14px;
	white-space: nowrap;
	font-weight: 700;
}
.facts {
	position: relative;
	z-index: 1;
}

/* ================= страница таверны ================= */
.bhero {
	position: relative;
	padding: clamp(40px, 5vw, 76px) 0 clamp(30px, 3.6vw, 50px);
	overflow: hidden;
}
.bhero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(26px, 4vw, 56px);
	align-items: center;
}
.bhero h1 {
	font-size: clamp(30px, 4.4vw, 60px);
}
.crumbs {
	display: flex;
	gap: 9px;
	align-items: center;
	font-family: var(--disp);
	font-size: 11px;
	color: var(--mute-2);
	margin-bottom: 22px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.crumbs a {
	text-decoration: none;
}
.crumbs a:hover {
	color: var(--neon-2);
}
.bmap {
	height: clamp(290px, 36vw, 440px);
	border-radius: var(--r-xl);
	overflow: hidden;
	border: 1px solid var(--line-2);
}
.bmap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.binfo {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
	gap: 10px;
	margin: 28px 0;
}
.binfo div {
	background: rgba(24, 18, 41, 0.5);
	border: 1px solid var(--line);
	border-radius: var(--r-l);
	padding: 20px;
}
.binfo span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--disp);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mute-2);
	font-weight: 600;
}
.binfo b {
	display: block;
	font-family: var(--disp);
	font-weight: 700;
	font-size: 18px;
	margin-top: 8px;
}
.others {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	gap: 12px;
}
.other {
	display: block;
	text-decoration: none;
	padding: 22px;
	border-radius: var(--r-l);
	background: rgba(24, 18, 41, 0.45);
	border: 1px solid var(--line);
	transition:
		transform 0.3s var(--ease),
		border-color 0.3s,
		box-shadow 0.3s;
}
.other:hover {
	transform: translateY(-5px);
	border-color: rgba(34, 224, 210, 0.45);
	box-shadow: 0 0 40px -20px rgba(34, 224, 210, 0.9);
}
.other b {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 18px;
	display: block;
	margin-bottom: 6px;
}
.other span {
	font-size: 12.5px;
	color: var(--mute-2);
}

/* ================= фон ================= */
body::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(46% 38% at 8% 6%, rgba(255, 74, 43, 0.16), transparent 64%),
		radial-gradient(
			42% 34% at 94% 22%,
			rgba(180, 92, 255, 0.14),
			transparent 66%
		),
		radial-gradient(
			52% 42% at 72% 84%,
			rgba(34, 224, 210, 0.12),
			transparent 68%
		),
		radial-gradient(
			38% 30% at 14% 92%,
			rgba(200, 255, 77, 0.06),
			transparent 66%
		);
}
body::after {
	display: none;
}
html {
	background: var(--bg);
}
header,
main,
footer {
	position: relative;
	z-index: 2;
}

/* ================= адаптив ================= */
@media (max-width: 1220px) {
	.hero__grid,
	.detail,
	.opt__in,
	.party,
	.bhero__grid {
		grid-template-columns: 1fr;
	}
	.menu {
		column-count: 1;
	}
	.facts {
		grid-template-columns: 1fr 1fr;
	}
	.nav {
		display: none;
	}
	.nav.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: calc(100svh - 88px);
		overflow-y: auto;
		padding: 22px var(--pad) 60px;
		gap: 2px;
		background: linear-gradient(170deg, var(--bg-2), var(--bg) 70%);
		border-top: 1px solid var(--line);
		animation: menuIn 0.35s var(--ease);
	}
	@keyframes menuIn {
		from {
			opacity: 0;
			transform: translateY(-12px);
		}
		to {
			opacity: 1;
			transform: none;
		}
	}
	.top.small .nav.open {
		height: calc(100svh - 68px);
	}
	.nav.open > a {
		padding: 18px 2px;
		font-size: 17px;
		border-bottom: 1px solid var(--line);
		color: var(--white);
	}
	.nav.open > a:hover {
		background: none;
		color: var(--neon-2);
	}
	.ndrop {
		width: 100%;
	}
	.ndrop__btn {
		width: 100%;
		justify-content: space-between;
		padding: 18px 2px;
		border-radius: 0;
		font-size: 17px;
		border-bottom: 1px solid var(--line);
		color: var(--white);
	}
	.ndrop__btn:hover,
	.ndrop__btn[aria-expanded="true"] {
		background: none;
		color: var(--neon-2);
	}
	.drop {
		position: static;
		transform: none;
		min-width: 0;
		width: 100%;
		background: none;
		backdrop-filter: none;
		border: 0;
		box-shadow: none;
		padding: 8px 0 16px;
		opacity: 1;
		pointer-events: auto;
	}
	.drop.show {
		transform: none;
	}
	.drop::before {
		display: none;
	}
	.drop--wide {
		min-width: 0;
	}
	.drop__grid {
		grid-template-columns: 1fr;
	}
	.nav__extra {
		display: grid;
		gap: 11px;
		margin-top: 28px;
	}
	.nav__hours {
		display: flex;
		align-items: center;
		gap: 9px;
		color: var(--mute-2);
		text-transform: none;
		letter-spacing: 0;
		font-size: 13.5px;
	}
	.burger {
		display: block;
	}
	.top__tel {
		display: none;
	}
	.fab {
		display: inline-flex;
	}
	footer {
		padding-bottom: 110px;
	}
	.gal {
		grid-template-columns: repeat(2, 1fr);
	}
	.shot {
		display: block;
		order: -1;
	}
}
@media (max-width: 600px) {
	body {
		font-size: 16px;
	}
	.hero {
		min-height: auto;
		padding-bottom: 16px;
	}
	.facts {
		grid-template-columns: 1fr;
	}
	.six {
		gap: 22px;
	}
	.drawer__head,
	.drawer__body,
	.drawer__foot {
		padding-left: 20px;
		padding-right: 20px;
	}
	/* На мобильном убираем тяжёлый blur 14px на большом фоновом изображении — он жрёт GPU и роняет FPS при скролле */
	.hero__bg img {
		filter: brightness(0.5);
		transform: scale(1.06);
	}
	/* фиксируем шапку: никакой анимации высоты — иначе layout-shifting при скролле */
	.top__in,
	.brand img {
		transition: none;
	}
	.top__in {
		height: 64px;
	}
	.top.small .top__in {
		height: 64px;
	}
	.brand img {
		width: 54px;
	}
	.top.small .brand img {
		width: 54px;
	}
	/* отключаем дорогой backdrop-filter на мобильных — иначе repaint на каждом кадре */
	.top {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(8, 6, 17, 0.96);
	}
	.top.small {
		background: rgba(8, 6, 17, 0.98);
	}
	/* убираем постоянно анимированные blur-кляксы — они жрут GPU и вызывают дрожание */
	.glow {
		display: none;
	}
	/* отключаем мигание неонового заголовка — лишние repaintы */
	.hero h1 .red {
		animation: none;
	}
	/* отключаем мигание точки live */
	.live i {
		animation: none;
	}
	
	
	/* отключаем мерцающий noise-оверлей (уже скрыт выше) */
	.ticker,
	.callcard {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(8, 6, 17, 0.92);
	}
	/* держим html стабильным — никаких лишних reflow */
	html {
		scroll-padding-top: 64px;
	}
	.ticker {
		padding: 14px 0;
	}
}
@media (min-width: 1221px) and (max-height: 980px) {
	.hero {
		min-height: min(90vh, 860px);
		padding: 26px 0;
	}
	.hero h1 {
		font-size: clamp(30px, 3.4vw, 52px);
	}
	.hero__sub {
		margin: 18px 0 22px;
	}
	.shot {
		display: none;
	}
	.facts div {
		padding: 13px 16px;
	}
	.fic {
		width: 38px;
		height: 38px;
		font-size: 19px;
	}
}
@media (min-width: 1221px) and (max-height: 800px) {
	.hero {
		min-height: auto;
		padding: 20px 0;
	}
	.hero h1 {
		font-size: clamp(28px, 3vw, 44px);
	}
	.live {
		margin-bottom: 16px;
	}
	.hero__now {
		margin-bottom: 14px;
	}
	.callcard {
		padding: 20px;
	}
	.callcard__phone {
		font-size: 25px;
		margin: 13px 0 4px;
	}
	.btn {
		padding: 13px 24px;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
	html {
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* ================= ЯРЧЕ: ЗНАЧКИ И КНОПКИ ================= */
.fic .ic {
	stroke-width: 2;
}
.fic {
	box-shadow: none;
}
.fic--red {
	background: rgba(255, 74, 43, 0.22);
	color: #ff7b5e;
	box-shadow:
		0 0 22px rgba(255, 74, 43, 0.35) inset,
		0 0 16px -6px rgba(255, 74, 43, 0.7);
}
.fic--amber {
	background: rgba(180, 92, 255, 0.24);
	color: #d7a6ff;
	box-shadow:
		0 0 22px rgba(180, 92, 255, 0.35) inset,
		0 0 16px -6px rgba(180, 92, 255, 0.7);
}
.fic--sea {
	background: rgba(34, 224, 210, 0.22);
	color: #5cf2e6;
	box-shadow:
		0 0 22px rgba(34, 224, 210, 0.32) inset,
		0 0 16px -6px rgba(34, 224, 210, 0.7);
}
.fic--dill {
	background: rgba(200, 255, 77, 0.2);
	color: #dbff7a;
	box-shadow:
		0 0 22px rgba(200, 255, 77, 0.28) inset,
		0 0 16px -6px rgba(200, 255, 77, 0.7);
}

/* плашки фактов контрастнее */
.facts div {
	background: rgba(28, 21, 48, 0.72);
	border-color: var(--line-2);
}
.facts b {
	color: #ffffff;
}
.facts span {
	color: var(--mute);
}

/* светлая обводка у второй кнопки */
.btn--out {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.04);
}
.btn--out:hover {
	background: rgba(34, 224, 210, 0.1);
}
.btn--out .ic {
	color: var(--neon-2);
}

/* иконки в остальных местах не должны теряться */
.kinds button .ic,
.tab .ic,
.detail__row span .ic,
.qty span .ic,
.total span .ic {
	stroke-width: 2;
}
.bar__d .ic,
.bar__t .ic,
.bar__score .ic {
	stroke-width: 2;
}
.top__tel .ic,
.btn .ic {
	stroke-width: 2;
}

/* значки крупнее и насыщеннее */
.fic {
	width: 46px;
	height: 46px;
	font-size: 25px;
	border: 1px solid rgba(255, 255, 255, 0.14);
}
.fic--red {
	color: #ff9077;
	background: rgba(255, 74, 43, 0.26);
}
.fic--amber {
	color: #e0b9ff;
	background: rgba(180, 92, 255, 0.28);
}
.fic--sea {
	color: #7bf7ec;
	background: rgba(34, 224, 210, 0.26);
}
.fic--dill {
	color: #e6ff9e;
	background: rgba(200, 255, 77, 0.24);
}
@media (min-width: 1221px) and (max-height: 980px) {
	.fic {
		width: 44px;
		height: 44px;
		font-size: 23px;
	}
}

/* ИСПРАВЛЕНИЕ: подписи в плашках перебивали размер и цвет значков */
.facts .fic {
	font-size: 25px;
	width: 46px;
	height: 46px;
}
.facts .fic--red {
	color: #ff9077;
}
.facts .fic--amber {
	color: #e0b9ff;
}
.facts .fic--sea {
	color: #7bf7ec;
}
.facts .fic--dill {
	color: #e6ff9e;
}
.facts .fic .ic {
	width: 1em;
	height: 1em;
	stroke-width: 2;
}
.adv .fic,
.st__ic {
	font-size: 26px;
}
@media (min-width: 1221px) and (max-height: 980px) {
	.facts .fic {
		width: 44px;
		height: 44px;
		font-size: 23px;
	}
}

/* ================= ИСПРАВЛЕНИЕ: блик не должен глушить текст кнопки ================= */
.btn > * {
	position: relative;
	z-index: 2;
}
.btn--red::after {
	z-index: 1;
	opacity: 0.7;
}

/* ================= БУРГЕР ================= */
.burger {
	width: 44px;
	height: 44px;
	display: none;
	place-items: center;
	padding: 0;
	border-radius: 14px;
	border: 1px solid var(--line-2);
	transition:
		border-color 0.25s,
		background 0.25s;
}
.burger:hover {
	border-color: var(--neon-2);
}
.burger__box {
	position: relative;
	display: block;
	width: 20px;
	height: 14px;
}
.burger__box i {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--white);
	transition:
		transform 0.35s var(--ease),
		opacity 0.25s var(--ease),
		background 0.25s;
}
.burger__box i:nth-child(1) {
	top: 0;
}
.burger__box i:nth-child(2) {
	top: 6px;
}
.burger__box i:nth-child(3) {
	top: 12px;
}
.burger.on {
	border-color: var(--neon);
	background: rgba(255, 74, 43, 0.12);
}
.burger.on i {
	background: var(--neon);
}
.burger.on i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
.burger.on i:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.3);
}
.burger.on i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* ================= МОБИЛЬНОЕ МЕНЮ ================= */
@media (max-width: 1220px) {
	.burger {
		display: grid;
	}
	.nav.open {
		padding-bottom: 80px;
		gap: 0;
	}
	.nav.open > a,
	.ndrop__btn {
		position: relative;
		font-family: var(--disp);
		font-weight: 600;
		letter-spacing: 0.02em;
	}
	.nav.open > a::before {
		content: "";
		position: absolute;
		left: -14px;
		top: 50%;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: var(--neon);
		opacity: 0;
		transform: translateY(-50%);
		transition: opacity 0.25s;
	}
	.nav.open > a:active::before {
		opacity: 1;
	}
	.ndrop__ch {
		width: 30px;
		height: 30px;
		display: grid;
		place-items: center;
		border-radius: 50%;
		border: 1px solid var(--line);
		font-size: 13px;
	}

	.nav__label {
		display: block;
		font-family: var(--disp);
		font-size: 10.5px;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--mute-2);
		margin: 30px 0 12px;
	}
	.nav__card {
		background: linear-gradient(
			150deg,
			rgba(255, 74, 43, 0.12),
			rgba(24, 18, 41, 0.7)
		);
		border: 1px solid var(--line-2);
		border-radius: var(--r-xl);
		padding: 20px;
		display: grid;
		gap: 12px;
	}
	.nav__status {
		display: grid;
		gap: 6px;
	}
	.nav__addr {
		font-family: var(--disp);
		font-weight: 700;
		font-size: 19px;
		color: var(--white);
	}
	.nav__hours {
		display: flex;
		align-items: center;
		gap: 9px;
		color: var(--mute);
		font-size: 13.5px;
		text-transform: none;
		letter-spacing: 0;
	}
	.nav__hours .ic {
		color: var(--neon-2);
		stroke-width: 2;
	}
	.nav__card .btn {
		width: 100%;
	}

	.nav__quick {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.nav__q {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 15px 14px;
		border-radius: var(--r-l);
		background: rgba(24, 18, 41, 0.55);
		border: 1px solid var(--line);
		color: var(--white);
		text-decoration: none;
		font-size: 13.5px;
		font-weight: 600;
		text-align: left;
		line-height: 1.3;
		transition:
			border-color 0.25s,
			background 0.25s;
	}
	.nav__q:hover,
	.nav__q:active {
		border-color: var(--neon-2);
		background: rgba(34, 224, 210, 0.08);
	}
	.nav__q .ic {
		font-size: 19px;
		color: var(--neon-2);
		stroke-width: 2;
	}
	.nav__q b {
		margin-left: auto;
		background: var(--grad);
		color: #fff;
		border-radius: 999px;
		min-width: 22px;
		height: 22px;
		display: grid;
		place-items: center;
		font-size: 11.5px;
		font-family: var(--disp);
	}

	.nav__soc {
		display: flex;
		flex-wrap: wrap;
		gap: 9px;
	}
	.nav__soc a {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 11px 16px;
		border-radius: 999px;
		border: 1px solid var(--line);
		color: var(--mute);
		text-decoration: none;
		font-size: 12.5px;
		font-weight: 600;
		transition: 0.25s;
	}
	.nav__soc a:hover,
	.nav__soc a:active {
		color: var(--neon);
		border-color: rgba(255, 74, 43, 0.5);
	}
	.nav__soc .ic {
		font-size: 16px;
		stroke-width: 2;
	}
}

/* блик уходит под текст, но остаётся над заливкой */
.btn--red {
	isolation: isolate;
}
.btn--red::after {
	z-index: -1;
	opacity: 0.55;
}

/* ИСПРАВЛЕНИЕ: правило цвета ссылок меню перебивало цвет кнопок внутри него */
.nav .btn--red,
.nav .btn--red:hover {
	color: #fff;
}
.nav .btn--out,
.nav .btn--out:hover {
	color: var(--white);
}
.nav .btn--out:hover {
	border-color: var(--neon-2);
}
.nav .nav__q,
.nav .nav__q:hover {
	color: var(--white);
}
.nav .nav__soc a {
	color: var(--mute);
}
.nav .nav__soc a:hover,
.nav .nav__soc a:active {
	color: var(--neon);
}
.nav .btn {
	padding: 15px 24px;
}

/* ================= ЛИНЕЙКА РАЗМЕРОВ НА ТЕЛЕФОНЕ ================= */
.node__ph {
	width: calc(var(--d, 60px) * var(--k, 1));
	height: calc(var(--d, 60px) * var(--k, 1));
}

@media (max-width: 1220px) {
	.ruler {
		overflow: visible;
	}
	.ruler__track {
		min-width: 0;
		--k: 1;
		gap: 6px;
		padding-bottom: 36px;
	}
	.node::after {
		bottom: -36px;
		height: 36px;
	}
	.node {
		gap: 9px;
	}
	.node__n {
		font-size: 14px;
	}
	.node__g {
		font-size: 10px;
	}
	.detail {
		padding: 18px;
	}
}
@media (max-width: 420px) {
	.node__n {
		font-size: 13px;
	}
	.node__g {
		font-size: 9.5px;
		letter-spacing: 0;
	}
}

/* характеристики размера на телефоне — ровной сеткой */
@media (max-width: 600px) {
	.detail__row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	.detail__row div {
		min-width: 0;
		padding: 12px 13px;
	}
	.detail__row div:last-child {
		grid-column: 1 / -1;
	}
	.detail__row span {
		font-size: 9.5px;
		letter-spacing: 0.1em;
	}
	.detail__row b {
		font-size: 17px;
		white-space: nowrap;
	}
	.order {
		gap: 18px;
	}
	.qty__box output {
		min-width: 96px;
	}
}

/* ступени масштаба линейки по ширине экрана */
@media (max-width: 700px) {
	.ruler__track {
		--k: 0.72;
	}
}
@media (max-width: 520px) {
	.ruler__track {
		--k: 0.62;
	}
}
@media (max-width: 430px) {
	.ruler__track {
		--k: 0.56;
	}
}
@media (max-width: 400px) {
	.ruler__track {
		--k: 0.5;
	}
}
@media (max-width: 360px) {
	.ruler__track {
		--k: 0.44;
		gap: 4px;
	}
}
@media (max-width: 330px) {
	.ruler__track {
		--k: 0.38;
	}
}

/* смена фото в линейке и недоступная категория */
.node__ph img {
	transition:
		opacity 0.3s var(--ease),
		transform 0.6s var(--ease);
}
.node--off .node__ph {
	opacity: 0.4;
	filter: grayscale(0.75);
	border-color: var(--line);
}
.node--off .node__n {
	color: var(--mute-2);
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}
.node--off .node__g {
	color: var(--mute-2);
}
.node--off[aria-pressed="true"] .node__ph {
	border-color: var(--mute-2);
	box-shadow: none;
	animation: none;
	opacity: 0.55;
}
.node--off[aria-pressed="true"] .node__n {
	color: var(--mute);
}

/* как на вывеске: бар-РАК-уда */
.brand b em {
	font-style: normal;
	color: var(--neon);
	text-shadow:
		0 0 14px rgba(255, 74, 43, 0.75),
		0 0 30px rgba(255, 74, 43, 0.4);
}

/* фон первого экрана — фотография вывески, качество выше, размытия меньше */
.hero__bg img {
	filter: blur(6px) saturate(1.35) brightness(0.55);
	transform: scale(1.06);
	object-position: 50% 42%;
}
.hero__bg::after {
	background:
		linear-gradient(
			96deg,
			rgba(8, 6, 17, 0.94) 0%,
			rgba(8, 6, 17, 0.8) 42%,
			rgba(8, 6, 17, 0.45) 70%,
			rgba(8, 6, 17, 0.8) 100%
		),
		radial-gradient(
			46% 44% at 12% 24%,
			rgba(255, 74, 43, 0.26),
			transparent 68%
		),
		radial-gradient(
			44% 40% at 86% 72%,
			rgba(34, 224, 210, 0.18),
			transparent 70%
		);
}

/* ИСПРАВЛЕНИЕ: цветовые пятна растягивали страницу по горизонтали */
main,
.ticker {
	overflow-x: clip;
}
@media (max-width: 1220px) {
	.glow {
		display: none;
	}
}

/* заголовок первого экрана не должен вылезать на телефоне */
@media (max-width: 600px) {
	.hero h1 {
		font-size: clamp(25px, 7.4vw, 34px);
	}
	h2 {
		font-size: clamp(24px, 6.6vw, 34px);
	}
	.bhero h1 {
		font-size: clamp(24px, 6.6vw, 34px);
	}
}
@media (max-width: 360px) {
	.hero h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 23px;
	}
}

/* ИСПРАВЛЕНИЕ: длинная плашка распирала колонку первого экрана */
.hero__grid > div {
	min-width: 0;
}
.live {
	max-width: 100%;
	flex-wrap: wrap;
	text-align: left;
}
@media (max-width: 600px) {
	.live {
		font-size: 9.5px;
		letter-spacing: 0.08em;
		padding: 7px 13px;
		line-height: 1.5;
	}
	.eyebrow {
		font-size: 10px;
		letter-spacing: 0.1em;
	}
}

/* правая колонка первого экрана тоже должна ужиматься */
.herocol,
.callcard,
.shot {
	min-width: 0;
	max-width: 100%;
}
.callcard__row {
	flex-wrap: wrap;
}
@media (max-width: 600px) {
	.callcard__phone {
		font-size: clamp(21px, 6.4vw, 28px);
	}
	.callcard__row .btn {
		flex: 1 1 140px;
	}
}

/* совсем узкие экраны */
@media (max-width: 340px) {
	.detail {
		padding: 14px;
	}
	.detail__row {
		grid-template-columns: 1fr;
	}
	.detail__row div:last-child {
		grid-column: auto;
	}
}

@media (max-width: 400px) {
	.party {
		padding: 20px;
	}
	.party__ppl {
		gap: 10px;
	}
	.party__ppl output {
		min-width: 110px;
		font-size: 24px;
	}
	.party__ppl button {
		width: 42px;
		height: 42px;
	}
	.party__res {
		padding: 20px;
	}
}

/* сетки не должны быть шире экрана на узких телефонах */
.bars {
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}
.revs {
	grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
}
.steps {
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.advs {
	grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}
.nums {
	grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
}
.others {
	grid-template-columns: repeat(auto-fit, minmax(min(225px, 100%), 1fr));
}
.binfo {
	grid-template-columns: repeat(auto-fit, minmax(min(185px, 100%), 1fr));
}
.foot {
	grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}

/* ================= ДВА ВАРИАНТА: ЖИВЫЕ И ВАРЁНЫЕ ================= */
@media (min-width: 1221px) {
	.detail {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	}
}
.vars {
	display: grid;
	gap: 12px;
}
.var {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 16px;
	padding: 14px;
	border-radius: var(--r-l);
	background: rgba(8, 6, 17, 0.5);
	border: 1px solid var(--line);
	align-items: center;
	transition:
		border-color 0.3s,
		box-shadow 0.3s,
		transform 0.3s var(--ease);
}
.var:hover {
	transform: translateY(-3px);
	border-color: rgba(34, 224, 210, 0.45);
	box-shadow: 0 0 40px -20px rgba(34, 224, 210, 0.9);
}
.var__ph {
	position: relative;
	border-radius: var(--r);
	overflow: hidden;
	background: var(--bg-2);
}
.var__ph img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	filter: saturate(1.2);
}
.var__badge {
	position: absolute;
	left: 8px;
	top: 8px;
	padding: 5px 12px;
	border-radius: 999px;
	font-family: var(--disp);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--grad);
	box-shadow: 0 0 18px rgba(255, 74, 43, 0.6);
}
.var:first-child .var__badge {
	background: var(--grad-2);
	color: #04201e;
	box-shadow: 0 0 18px rgba(34, 224, 210, 0.6);
}
.var__b {
	display: grid;
	gap: 9px;
}
.var__row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}
.var__p {
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.var:first-child .var__p {
	background: var(--grad-2);
	-webkit-background-clip: text;
	background-clip: text;
}
.var__one {
	font-size: 12.5px;
	color: var(--mute-2);
}
.var__d {
	margin: 0;
	font-size: 13px;
	color: var(--mute);
	line-height: 1.5;
}
.var__add {
	width: fit-content;
}
.var__no {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--mute-2);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 9px 16px;
	width: fit-content;
}
.var--out {
	opacity: 0.55;
}
.var--out .var__ph img {
	filter: grayscale(0.8);
}
.var--out:hover {
	transform: none;
	border-color: var(--line);
	box-shadow: none;
}
@media (max-width: 600px) {
	.var {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 12px;
		padding: 12px;
	}
	.var__p {
		font-size: 23px;
	}
}
@media (min-width: 601px) {
	.detail__row b {
		white-space: nowrap;
	}
}

/* ================= ВЕРТИКАЛЬНЫЙ РИТМ ================= */
.hero {
	padding-top: 0;
}
.hero h1 {
	margin-top: 24px;
}

@media (max-width: 1220px) {
	section {
		padding: clamp(52px, 9vw, 84px) 0;
	}
	.hero {
		padding: 0 0 clamp(20px, 4vw, 32px);
	}
	.hero__in {
		padding-top: clamp(18px, 4vw, 30px);
	}
	.hero__grid {
		padding-bottom: clamp(20px, 3.4vw, 30px);
		gap: clamp(20px, 4vw, 32px);
	}
	.live {
		margin-bottom: 16px;
	}
	.hero h1 {
		margin-top: 16px;
	}
	.hero .tickline {
		margin: 16px 0 0;
	}
	.hero__sub {
		margin: 16px 0 20px;
	}
	.hero__now {
		margin: 0 0 18px;
	}
	.herocol {
		gap: 12px;
	}
	.head {
		margin-bottom: clamp(24px, 5vw, 34px);
	}
	.head h2 {
		margin-top: 14px;
	}
	.head p {
		margin-top: 12px;
	}
	.note {
		margin-top: 24px;
	}
	.detail {
		margin-top: clamp(26px, 5vw, 36px);
	}
	.ruler {
		margin-top: 4px;
	}
	.six {
		padding: clamp(26px, 5vw, 36px) clamp(20px, 4vw, 28px);
	}
	.party {
		padding: clamp(22px, 4vw, 30px);
	}
	.map {
		margin-top: clamp(24px, 5vw, 34px);
	}
	footer {
		padding-top: clamp(40px, 7vw, 56px);
	}
	.foot {
		gap: 26px;
	}
	.foot__bot {
		margin-top: 32px;
		padding-top: 20px;
	}
}
@media (max-width: 600px) {
	:root {
		--pad: 20px;
	}
	.hero {
		padding-bottom: 20px;
	}
	.facts {
		gap: 8px;
	}
	.steps,
	.advs,
	.nums,
	.revs,
	.bars,
	.others {
		gap: 10px;
	}
	.gal {
		gap: 8px;
	}
}

/* позиции меню на телефоне: название во всю ширину, цена под ним */
@media (max-width: 600px) {
	.item {
		display: grid;
		grid-template-columns: 56px minmax(0, 1fr) 36px;
		gap: 6px 12px;
		align-items: center;
		padding: 12px 10px;
	}
	.item__ph {
		grid-column: 1;
		grid-row: 1 / span 2;
		width: 56px;
		height: 56px;
	}
	.item__b {
		grid-column: 2;
		grid-row: 1;
		min-width: 0;
	}
	.item__n {
		font-size: 15px;
		line-height: 1.35;
	}
	.item__p {
		grid-column: 2;
		grid-row: 2;
		justify-self: start;
		font-size: 17px;
	}
	.item__act {
		grid-column: 3;
		grid-row: 1 / span 2;
		justify-self: end;
	}
}

/* ================= МЕНЮ: КАРТОЧКИ ПО ДВЕ В РЯД ================= */
.menu {
	column-count: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 560px) {
	.menu {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
}

.item {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 14px;
	border-radius: var(--r-l);
	background: rgba(24, 18, 41, 0.5);
	border: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition:
		transform 0.3s var(--ease),
		border-color 0.3s,
		box-shadow 0.3s,
		background 0.3s;
}
.item:hover {
	transform: translateY(-4px);
	background: rgba(28, 21, 48, 0.72);
	border-color: rgba(255, 74, 43, 0.45);
	box-shadow: 0 0 44px -20px rgba(255, 74, 43, 0.9);
}
.item__ph {
	width: 78px;
	height: 78px;
	border-radius: var(--r);
	flex: none;
}
.item__b {
	display: grid;
	gap: 3px;
	min-width: 0;
}
.item__n {
	font-family: var(--txt);
	font-weight: 600;
	font-size: 15.5px;
	line-height: 1.35;
}
.item__d {
	font-size: 12.5px;
	color: var(--mute-2);
}
.item__p {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 19px;
	white-space: nowrap;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.item__act {
	display: flex;
	align-items: center;
}
.addbtn {
	width: 38px;
	height: 38px;
	font-size: 19px;
	border-color: var(--line-2);
}
.item:hover .addbtn {
	border-color: var(--neon);
	color: var(--neon);
}

/* широкая карточка: цена и кнопка справа в строку */
@media (min-width: 880px) {
	.item {
		grid-template-columns: 78px minmax(0, 1fr) auto auto;
	}
	.item__p {
		justify-self: end;
		min-width: 104px;
		text-align: right;
	}
	.item__act {
		margin-left: 8px;
	}
}
/* компактная карточка: цена под названием */
@media (max-width: 879px) {
	.item {
		grid-template-columns: 62px minmax(0, 1fr) 38px;
		gap: 6px 12px;
		padding: 12px;
	}
	.item__ph {
		width: 62px;
		height: 62px;
		grid-row: 1 / span 2;
	}
	.item__b {
		grid-column: 2;
		grid-row: 1;
	}
	.item__n {
		font-size: 14.5px;
	}
	.item__p {
		grid-column: 2;
		grid-row: 2;
		justify-self: start;
		font-size: 17px;
	}
	.item__act {
		grid-column: 3;
		grid-row: 1 / span 2;
		justify-self: end;
	}
}

/* ИСПРАВЛЕНИЕ: плавающие кнопки должны быть закреплены на экране */
.fab {
	position: fixed;
	z-index: 95;
}
.cartbtn {
	position: fixed;
	z-index: 96;
}
.cartbtn--head {
	position: static;
	z-index: auto;
}

/* телефоны в подвале: номер и подпись в две строки */
.foot a > span {
	display: block;
	white-space: nowrap;
}
.foot a em {
	display: block;
	font-style: normal;
	font-size: 12px;
	color: var(--mute-2);
	margin-top: 2px;
	white-space: normal;
}
.foot a {
	align-items: flex-start;
}
.foot .ic {
	margin-top: 3px;
}

/* фото вариантов: сохраняем исходную пропорцию кадра */
.var__ph img {
	aspect-ratio: 4 / 3;
	object-position: 50% 46%;
}
.var {
	grid-template-columns: 150px minmax(0, 1fr);
}
@media (max-width: 600px) {
	.var {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 12px;
	}
}

/* ================= ОФОРМЛЕНИЕ ЗАКАЗА ================= */
.ord {
	display: grid;
	gap: 10px;
	margin: 16px 0 18px;
}
.ord__label {
	font-family: var(--disp);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mute-2);
	margin-top: 4px;
}
.ord__seg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.ord__seg button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	color: var(--mute);
	font-family: var(--disp);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	transition: 0.25s;
}
.ord__seg button .ic {
	font-size: 16px;
	stroke-width: 2;
}
.ord__seg button:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
}
.ord__seg button[aria-pressed="true"] {
	background: var(--grad-2);
	border-color: transparent;
	color: #04201e;
	box-shadow: var(--glow-c);
}
.ord__bar {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 12px 14px;
	border-radius: var(--r);
	background: rgba(8, 6, 17, 0.5);
	border: 1px solid var(--line);
}
.ord__bar-a {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 15px;
}
.ord__bar-ch {
	margin-left: auto;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--neon-2);
	border-bottom: 1px solid rgba(34, 224, 210, 0.4);
	padding-bottom: 1px;
}
.ord__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.fld {
	display: block;
}
.fld > span {
	display: block;
	font-size: 11.5px;
	color: var(--mute-2);
	margin-bottom: 6px;
	letter-spacing: 0.02em;
}
.fld > span em {
	font-style: normal;
	opacity: 0.7;
}
.fld input {
	width: 100%;
	padding: 13px 15px;
	border-radius: var(--r);
	background: rgba(8, 6, 17, 0.55);
	border: 1px solid var(--line-2);
	color: var(--white);
	font-size: 14.5px;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
}
.fld input::placeholder {
	color: var(--mute-2);
}
.fld input:focus {
	outline: none;
	border-color: var(--neon-2);
	box-shadow: var(--glow-c);
}
.ord__err {
	margin: 2px 0 0;
	font-size: 12.5px;
	color: #ff8a6b;
	min-height: 1.2em;
}
.btn.off {
	opacity: 0.45;
	cursor: not-allowed;
	box-shadow: none;
}
.btn.off:hover {
	transform: none;
}
@media (max-width: 480px) {
	.ord__grid {
		grid-template-columns: 1fr;
	}
}

/* корзина: прокручивается вся панель, шапка закреплена */
.drawer__panel {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.drawer__head {
	position: sticky;
	top: 0;
	z-index: 3;
	background: var(--bg-2);
}
.drawer__body {
	flex: none;
	overflow: visible;
	padding-top: 6px;
}
.drawer__foot {
	flex: none;
	background: rgba(8, 6, 17, 0.4);
}
.mailnote {
	margin: 2px 0 0;
	font-size: 11.5px;
	color: var(--mute-2);
	text-align: center;
}

/* карточка меню — ссылка */
a.item {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	position: relative;
}
a.item .item__b {
	display: grid;
	gap: 3px;
	min-width: 0;
}
a.item .item__n,
a.item .item__d,
a.item .item__p {
	display: block;
}
a.item::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 14px;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid var(--mute-2);
	border-top: 1.5px solid var(--mute-2);
	transform: rotate(45deg);
	opacity: 0;
	transition:
		opacity 0.25s,
		transform 0.25s var(--ease);
}
a.item:hover::after {
	opacity: 1;
	transform: rotate(45deg) translate(2px, -2px);
	border-color: var(--neon);
}

/* ================= СТРАНИЦА ПОЗИЦИИ МЕНЮ ================= */
.dish {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(26px, 4vw, 56px);
	align-items: center;
}
.dish__ph {
	margin: 0;
	border-radius: var(--r-xl);
	overflow: hidden;
	border: 1px solid var(--line-2);
	background: var(--bg-2);
	box-shadow: 0 40px 90px -50px rgba(255, 74, 43, 0.8);
}
.dish__ph img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: saturate(1.15);
}
.dish h1 {
	font-size: clamp(26px, 3.6vw, 50px);
	margin-top: 16px;
}
.dish__meta {
	margin: 12px 0 0;
	color: var(--mute);
	font-size: 15px;
}
.dish__price {
	font-family: var(--disp);
	font-weight: 800;
	font-size: clamp(32px, 4.4vw, 54px);
	line-height: 1;
	margin: 14px 0 18px;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 24px rgba(255, 74, 43, 0.45));
}
.dish .lead {
	margin-bottom: 24px;
}
.dish__note {
	margin: 20px 0 0;
	font-size: 12.5px;
	color: var(--mute-2);
	max-width: 56ch;
	line-height: 1.7;
}
.addbtn--big {
	width: auto;
	height: auto;
	padding: 16px 30px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-family: var(--disp);
	border: 0;
}
.addbtn--big.done {
	padding: 16px 30px;
}
@media (max-width: 1220px) {
	.dish {
		grid-template-columns: 1fr;
	}
}

/* ИСПРАВЛЕНИЕ: стиль маленькой кнопки «плюс» глушил текст большой кнопки заказа */
.btn.addbtn--big,
.btn.addbtn--big:hover,
.btn.addbtn--big.done {
	color: #fff;
	background: var(--grad);
	border: 0;
	box-shadow: var(--glow-n);
}
.btn.addbtn--big:hover {
	transform: translateY(-3px);
	box-shadow:
		0 0 34px rgba(255, 74, 43, 0.75),
		0 0 80px rgba(255, 74, 43, 0.4);
}

/* заблокированная кнопка отправки не должна кликаться */
.btn.off {
	pointer-events: none;
}

/* ================= КНОПКА ЗАКАЗА В ШАПКЕ ================= */
.cartbtn--head {
	gap: 9px;
	padding: 11px 18px;
	border: 1px solid var(--line-2);
	color: var(--mute);
	font-family: var(--disp);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition:
		border-color 0.25s,
		color 0.25s,
		background 0.25s,
		box-shadow 0.25s;
}
.cartbtn--head .ic {
	font-size: 18px;
	stroke-width: 2;
}
.cartbtn__t {
	white-space: nowrap;
}
.cartbtn__sum {
	display: none;
}
.cartbtn--head b {
	display: none;
}

.cartbtn--head:hover {
	border-color: var(--neon-2);
	color: var(--neon-2);
}

/* когда в заказе что-то есть */
.cartbtn--head.has {
	background: var(--grad-2);
	border-color: transparent;
	color: #04201e;
	box-shadow: var(--glow-c);
}
.cartbtn--head.has .cartbtn__sum {
	display: inline;
	font-family: var(--txt);
	font-weight: 700;
	letter-spacing: 0;
	font-size: 13px;
	padding-left: 2px;
}
.cartbtn--head.has b {
	display: grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(4, 32, 30, 0.85);
	color: #7bf7ec;
	font-size: 11.5px;
	font-family: var(--disp);
}
.cartbtn--head.has:hover {
	filter: brightness(1.08);
	color: #04201e;
}
@media (max-width: 1320px) {
	.cartbtn--head .cartbtn__t {
		display: none;
	}
}
@media (max-width: 1400px) {
	.cartbtn--head.has .cartbtn__sum {
		display: none;
	}
}

/* ================= ЗАКАЗ ОТПРАВЛЕН ================= */
.cart__ok {
	display: grid;
	gap: 12px;
	justify-items: center;
	text-align: center;
	padding: 52px 6px 40px;
}
.cart__ok-ic {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 30px;
	background: rgba(200, 255, 77, 0.14);
	color: var(--lime);
	border: 1px solid rgba(200, 255, 77, 0.4);
	box-shadow: 0 0 40px -12px rgba(200, 255, 77, 0.7);
}
.cart__ok b {
	font-family: var(--disp);
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
}
.cart__ok p {
	margin: 0;
	font-size: 14.5px;
	color: var(--mute);
	max-width: 34ch;
	line-height: 1.6;
}
.cart__ok-sub {
	font-size: 12.5px;
	color: var(--mute-2);
}
.cart__ok .btn {
	margin-top: 8px;
}


/* Mobile header stability: keep layout constant throughout burger navigation. */
@media (max-width: 1220px) {
  html { scroll-padding-top: 89px; }
  .top, .top.small {
    background: #080611;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    will-change: auto;
  }
  .top__in, .top.small .top__in { height: 88px; transition: none; }
  .brand img, .top.small .brand img { width: 76px; transition: none; }
  .top .nav.open, .top.small .nav.open { height: calc(100svh - 89px); }
  .hero__now { min-height: 3.3em; }
  .callcard__meta { min-height: 4.8em; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 65px; }
  .top__in, .top.small .top__in { height: 64px; }
  .brand img, .top.small .brand img { width: 54px; }
  .top .nav.open, .top.small .nav.open { height: calc(100svh - 65px); }
}



/* Keep home-page sections stationary while scrolling on mobile. */
@media (max-width: 1220px) {
  .home-scroll-stable .reveal,
  .home-scroll-stable .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}



/* Mobile home hero: avoid continuous paint effects and touch hover movement. */
@media (max-width: 1220px) {
  .home-scroll-stable .hero .btn--red::after {
    content: none;
    animation: none;
  }
  .home-scroll-stable .hero .btn,
  .home-scroll-stable .hero .btn:hover {
    transform: none;
    transition: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .home-scroll-stable .hero__bg img {
    filter: brightness(0.5);
    transform: none;
    will-change: auto;
  }
  .home-scroll-stable .hero .callcard,
  .home-scroll-stable .hero .facts div {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #181229;
  }
  .home-scroll-stable .hero .facts div,
  .home-scroll-stable .hero .facts div:hover {
    transform: none;
    transition: none;
  }
}


/* dropdown menu icon specificity fix */
.dmi .dmi__ic{display:grid;place-items:center;margin-top:0;font-size:20px;color:inherit}
.dmi .dmi__ic.fic--red{color:#ff7b5e}.dmi .dmi__ic.fic--amber{color:#d7a6ff}.dmi .dmi__ic.fic--sea{color:#5cf2e6}.dmi .dmi__ic.fic--dill{color:#dbff7a}
.dmi .dmi__ic .ic{width:1em;height:1em;stroke:currentColor;stroke-width:2}
.item__out{font-size:11px;font-weight:700;color:var(--mute-2);white-space:nowrap}
