:root {
	--bg: #fdfaf9;
	--bg2: #f9f5f5;
	--bg3: #f5ecec00;
	--surf: #ffffff;
	--surf2: #fbf8f8;
	--line: #eadddb;
	--line2: #d6c5c4;
	--ink: #2b1d1d;
	--ink2: #4a3838;
	--ink3: #6b5757;
	--gold: #8b3a3a;
	--gold-dk: #6b2d2d;
	--gold-lt: #f9f0f0;
	--gold-pl: #e5d1d1;
	--red: #a81c1c;
	--green: #15803d;
}

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

html {
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	font-family: 'Signika', sans-serif;
	background: var(--bg);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.65;
	min-height: 100vh;
}

/* ════════════════════ MASTHEAD (ШАПКА) ════════════════════ */
.n-mstd {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(253, 250, 249, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.n-mstd-wrp {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.n-brnd-lnk {
	display: flex;
	align-items: baseline;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.n-brnd-txt {
	font-family: 'Signika', sans-serif;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink);
	line-height: 1;
}

.n-brnd-txt em {
	color: var(--gold);
	font-style: normal;
}

.n-brnd-sub {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
	border-left: 1px solid var(--line2);
	padding-left: 10px;
	line-height: 1.2;
}

.n-nv-mnu {
	display: flex;
	gap: 0;
}

.n-nv-mnu a {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink3);
	text-decoration: none;
	padding: 0 13px;
	height: 58px;
	display: flex;
	align-items: center;
	border-left: 1px solid var(--line);
	transition: color 0.2s, background 0.2s;
}

.n-nv-mnu a:hover,
.n-nv-mnu a.on {
	color: var(--gold);
	background: rgba(139, 58, 58, 0.04);
}

.n-nv-mnu a:last-child {
	border-right: 1px solid var(--line);
}

@media (max-width: 460px) {
	.n-brnd-sub {
		display: none;
	}
}

@media (max-width: 640px) {
	.n-nv-mnu a:not(:last-child) {
		display: none;
	}
}

/* ════════════════════ TICKER (БЕГУЩАЯ СТРОКА) ════════════════════ */
.n-mrq {
	background: var(--gold);
	padding: 5px 20px;
	overflow: hidden;
}

.n-mrq-wrp {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
}

.n-mrq-l {
	display: flex;
	align-items: center;
	gap: 10px;
}

.n-mrq-dot {
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	flex-shrink: 0;
}

.n-mrq-r {
	display: flex;
	gap: 20px;
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
	.n-mrq-r {
		display: none;
	}
}

/* ════════════════════ HERO / PAGE HEADER ════════════════════ */
.n-hero-sct {
	background: var(--bg2);
	border-bottom: 3px solid var(--gold);
	position: relative;
	overflow: hidden;
	padding: 52px 20px 44px;
}

.n-hero-sct::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse 70% 60% at 50% 110%,
		rgba(139, 58, 58, 0.05) 0%,
		transparent 60%
	);
}

.n-hero-bg-ch {
	position: absolute;
	right: -4vw;
	bottom: -0.12em;
	font-family: 'Signika', sans-serif;
	font-size: 44vw;
	font-weight: 700;
	line-height: 1;
	color: rgba(139, 58, 58, 0.02);
	pointer-events: none;
	user-select: none;
	letter-spacing: -0.05em;
}

.n-hero-innr {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.n-brd-crmb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.n-brd-crmb a {
	color: var(--gold);
	text-decoration: none;
}

.n-brd-crmb span {
	color: var(--ink3);
}

.n-brd-sep {
	color: var(--line2);
}

.n-brd-cat {
	display: inline-block;
	margin-bottom: 14px;
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 4px;
}

.n-brd-lft {
	display: flex;
	align-items: center;
	gap: 12px;
}

.n-brd-itm,
.n-brd-dt {
	font-size: 10px;
	font-weight: 500;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.n-brd-dt {
	flex-shrink: 0;
}

@media (max-width: 400px) {
	.n-brd-dt {
		display: none;
	}
}

.n-sts-strp {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}

.n-pls-dt {
	width: 7px;
	height: 7px;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(139, 58, 58, 0.5);
	animation: n-pls-anm 2.2s ease-in-out infinite;
}

@keyframes n-pls-anm {
	0% {
		box-shadow: 0 0 0 0 rgba(139, 58, 58, 0.55);
	}
	60% {
		box-shadow: 0 0 0 7px rgba(139, 58, 58, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(139, 58, 58, 0);
	}
}

.n-sts-txt {
	font-family: 'Signika', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink3);
}

.n-sts-ln {
	flex: 1;
	height: 1px;
	background: var(--line);
}

.n-hero-hdl {
	font-family: 'Signika', sans-serif;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 14px;
}

.n-hero-desc {
	font-size: 15px;
	color: var(--ink2);
	line-height: 1.7;
	max-width: 540px;
}

.n-hero-desc-alt {
	font-size: 12px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}
.n-hero-desc-alt strong {
	color: var(--gold);
}

.n-h1-txt,
.n-h3-txt {
	font-family: 'Signika', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--ink);
}
.n-h1-txt {
	font-size: clamp(28px, 4.5vw, 54px);
}
.n-h2-txt {
	font-family: 'Signika', sans-serif;
	font-size: clamp(32px, 5.2vw, 62px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--gold);
}
.n-h3-txt {
	font-size: clamp(26px, 4.2vw, 50px);
	color: var(--ink2);
}

.n-ttl-div {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 24px;
}
.n-div-mn {
	width: 56px;
	height: 3px;
	background: var(--gold);
	flex-shrink: 0;
	border-radius: 2px;
}
.n-div-sb {
	flex: 1;
	height: 1px;
	background: var(--line);
}

.n-summ-bx {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.n-meta-blck {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	flex-shrink: 0;
}
.n-meta-lbl {
	font-family: 'Signika', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
}
.n-meta-txt {
	font-size: 10px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 560px) {
	.n-summ-bx {
		flex-direction: column;
		align-items: flex-start;
	}
	.n-meta-blck {
		align-items: flex-start;
	}
}

/* ════════════════════ PAGE LAYOUT (СЕТКА) ════════════════════ */
.n-lyt-grd {
	max-width: 1120px;
	margin: 0 auto;
	padding: 48px 20px 88px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 272px;
	gap: 44px;
	align-items: start;
}

@media (max-width: 860px) {
	.n-lyt-grd {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ════════════════════ CONTENT SECTIONS & BLOCKS ════════════════════ */
.n-vid-sct {
	display: flex;
	flex-direction: column;
	gap: 36px;
	margin-bottom: 36px;
}

.n-vid-sct-flt {
	gap: 0;
}

.n-sct-hd {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.n-hd-mrk {
	width: 3px;
	height: 20px;
	background: var(--gold);
	border-radius: 2px;
	flex-shrink: 0;
}

.n-hd-txt {
	font-family: 'Signika', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
}

.n-vid-cont {
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 0 1px var(--line), 0 0 0 4px rgba(139, 58, 58, 0.04),
		0 20px 50px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: center;
}

.n-vid-cpt {
	margin-top: 12px;
	text-align: center;
	font-size: 11px;
	color: var(--ink3);
}

.n-vid-cpt a {
	color: var(--gold);
	text-decoration: none;
}

.n-cnt-bx {
	background: var(--surf);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 28px 30px;
}

.n-cnt-bx-toc {
	border-left: 4px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 20px 22px;
	margin-bottom: 36px;
}
.n-cnt-bx-toc .n-hd-txt {
	margin-bottom: 12px;
}

.n-cnt-bx h2 {
	font-family: 'Signika', sans-serif;
	font-size: clamp(18px, 2.8vw, 24px);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 14px;
	line-height: 1.2;
}

.n-cnt-bx h2 em {
	color: var(--gold);
	font-style: normal;
}

.n-cnt-bx p {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.75;
	margin-bottom: 14px;
}

.n-cnt-bx p:last-child {
	margin-bottom: 0;
}

.n-cnt-bx strong {
	color: var(--ink);
}

.n-cnt-bx ol {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0;
	counter-reset: toc;
}
.n-cnt-bx ol li {
	counter-increment: toc;
}
.n-cnt-bx ol li::before {
	content: counter(toc) '. ';
	color: var(--gold);
	font-weight: 700;
	font-size: 12px;
}
.n-cnt-bx a {
	font-size: 13.5px;
	color: var(--ink2);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.n-cnt-bx a:hover {
	color: var(--gold);
}

@media (max-width: 500px) {
	.n-cnt-bx {
		padding: 20px;
	}
}

/* ════════════════════ OFFER CARD (КАРТОЧКА ОФЕРА) ════════════════════ */
.n-prm-crd {
	display: none;
	margin-bottom: 36px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--line2);
	background: var(--surf);
	box-shadow: 0 0 0 1px rgba(139, 58, 58, 0.04), 0 15px 45px rgba(0, 0, 0, 0.08);
}

.n-prm-tp {
	background: linear-gradient(135deg, var(--gold-dk), var(--gold));
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.n-prm-tp-l {
	font-family: 'Signika', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
}

.n-prm-icn {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.n-prm-icn svg {
	width: 10px;
	height: 10px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.n-prm-tg {
	background: #fff;
	color: var(--gold);
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 3px 10px;
	border-radius: 3px;
	flex-shrink: 0;
}

.n-prm-cnt {
	padding: 28px;
}

.n-prm-grd {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 26px;
	align-items: start;
}

.n-prm-img {
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-radius: 8px;
	padding: 14px;
	text-align: center;
	transition: border-color 0.25s;
}

.n-prm-img:hover {
	border-color: var(--gold);
}

.n-prm-img img {
	width: 100%;
	height: auto;
	display: block;
}

.n-prm-hd {
	font-family: 'Signika', sans-serif;
	font-size: clamp(18px, 2.5vw, 23px);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.2;
	margin-bottom: 8px;
}

.n-prm-hd em {
	color: var(--gold);
	font-style: normal;
}

.n-prm-desc {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.65;
	margin-bottom: 16px;
}

.n-prm-lst {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 22px;
}

.n-prm-lst-it {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bg2);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink);
}

.n-prm-lst-ch {
	width: 19px;
	height: 19px;
	border-radius: 5px;
	background: #16a34a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.n-prm-lst-ch svg {
	width: 10px;
	height: 10px;
	stroke: #fff;
	fill: none;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.n-prm-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 22px;
	background: #16a34a;
	color: #fff;
	font-family: 'Signika', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border-radius: 8px;
	border-bottom: 4px solid #15803d;
	margin-top: 6px;
	transition: background 0.2s, transform 0.15s, border-bottom-color 0.2s;
}

.n-prm-btn:hover {
	background: #15803d;
	border-bottom-color: #166534;
	transform: translateY(-2px);
}

.n-prm-btn svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	transition: transform 0.2s;
}

.n-prm-btn:hover svg {
	transform: translateX(4px);
}

.n-prm-trst {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 14px;
}

@media (max-width: 480px) {
	.n-prm-grd {
		grid-template-columns: 1fr;
	}
}

/* ════════════════════ HIGHLIGHTS & QUOTES ════════════════════ */
.n-qt-wrp {
	position: relative;
	background: var(--surf);
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 22px 24px;
}

.n-qt-mrk {
	font-family: 'Signika', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--gold);
	opacity: 0.15;
	line-height: 0.7;
	position: absolute;
	top: 14px;
	left: 18px;
	user-select: none;
}

.n-qt-wrp text {
	font-family: 'Signika', sans-serif;
	font-size: clamp(15px, 2.2vw, 18px);
	color: var(--ink2);
	line-height: 1.6;
	padding-left: 28px;
	display: block;
}

.n-qt-wrp author {
	display: block;
	margin-top: 12px;
	padding-left: 28px;
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	font-style: normal;
}

.n-hl-blck {
	border-left: 4px solid var(--gold);
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-left: 3px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 14px 16px;
	margin: 16px 0;
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.7;
}

.n-hl-blck-grd {
	background: linear-gradient(135deg, rgba(139, 58, 58, 0.05) 0%, rgba(139, 58, 58, 0.01) 100%);
	padding: 26px 28px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
}
.n-hl-blck strong {
	color: var(--ink);
}
.n-hl-blck p {
	font-family: 'Signika', sans-serif;
	font-size: clamp(15px, 2.2vw, 19px);
	color: var(--ink2);
	line-height: 1.65;
}

/* ════════════════════ CARDS & GRIDS (ДОП. СЕТКИ) ════════════════════ */
.n-grd-bx {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 500px) {
	.n-grd-bx {
		grid-template-columns: 1fr;
	}
}

.n-val-pnl {
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-radius: 8px;
	padding: 18px 16px;
}

.n-val-pnl h2 {
	font-family: 'Signika', sans-serif;
	font-size: clamp(18px, 2.8vw, 23px);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 16px;
	line-height: 1.2;
}
.n-val-pnl p {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.8;
	margin-bottom: 12px;
}
.n-val-pnl p:last-child {
	margin-bottom: 0;
}
.n-val-pnl strong {
	color: var(--ink);
}
.n-val-pnl ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 12px 0;
}
.n-val-pnl ul li {
	font-size: 13.5px;
	color: var(--ink2);
	line-height: 1.7;
	padding-left: 16px;
	position: relative;
}
.n-val-pnl ul li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}
.n-val-pnl a {
	color: var(--gold);
	text-decoration: none;
}
.n-val-pnl a:hover {
	text-decoration: underline;
}

.n-val-icn {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: var(--gold-lt);
	border: 1px solid var(--gold-pl);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.n-val-icn svg {
	width: 18px;
	height: 18px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.n-val-pnl h3 {
	font-family: 'Signika', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink);
	margin-bottom: 6px;
}
.n-val-pnl p {
	font-size: 12.5px;
	color: var(--ink3);
	line-height: 1.6;
	margin: 0;
}

.n-cnt-ln {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.n-cnt-ln:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.n-cnt-icn {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: var(--surf2);
	border: 1px solid var(--line2);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-cnt-icn svg {
	width: 16px;
	height: 16px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.n-cnt-icn-txt {
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	color: var(--gold);
	min-width: 16px;
	background: transparent;
	border: none;
	width: auto;
	height: auto;
}

.n-cnt-lbl {
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
	margin-bottom: 3px;
}
.n-val-pnl-lst .n-cnt-lbl {
	letter-spacing: 2px;
	color: var(--gold);
	display: block;
	margin-bottom: 8px;
}

.n-cnt-val {
	font-size: 13.5px;
	color: var(--ink);
	font-weight: 500;
}

/* ════════════════════ SIDEBAR (БОКОВАЯ ПАНЕЛЬ) ════════════════════ */
.n-side-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.n-side-pnl {
	background: var(--surf);
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.n-pnl-hd {
	background: var(--surf2);
	border-bottom: 1px solid var(--line);
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.n-pnl-mrk {
	width: 3px;
	height: 13px;
	background: var(--gold);
	border-radius: 2px;
	flex-shrink: 0;
}

.n-pnl-ttl {
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
}

.n-pnl-cnt {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.n-pnl-cnt p {
	font-size: 12.5px;
	color: var(--ink3);
	line-height: 1.65;
}

.n-pnl-cnt hr {
	border: none;
	border-top: 1px solid var(--line);
}

.n-pnl-lnk {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink2);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	transition: color 0.2s;
}

.n-pnl-lnk:last-child {
	border-bottom: none;
}

.n-pnl-lnk:hover {
	color: var(--gold);
}

.n-pnl-arr {
	font-size: 16px;
	color: var(--line2);
	line-height: 1;
	transition: color 0.2s;
}

.n-pnl-lnk:hover .n-pnl-arr {
	color: var(--gold);
}

.n-stt-grd {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--line);
}

.n-stt-bx {
	background: var(--bg2);
	padding: 14px 12px;
	text-align: center;
}

.n-stt-nm {
	font-family: 'Signika', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	display: block;
	margin-bottom: 4px;
}

.n-stt-desc {
	font-size: 10px;
	font-weight: 700;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
}

.n-trst-lnk {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	padding: 7px 0;
	border-bottom: 1px solid var(--line);
	transition: color 0.2s;
}
.n-trst-lnk:last-child {
	border-bottom: none;
}
.n-trst-lnk:hover {
	color: var(--gold);
}

.n-trst-lnk-chk::before {
	content: '✓';
	color: #16a34a;
	font-size: 12px;
}

/* ════════════════════ FOOTER (ПОДВАЛ) ════════════════════ */
.n-ftr-ar {
	background: var(--bg2);
	border-top: 1px solid var(--line);
	padding: 48px 0 24px;
}

.n-ftr-innr {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

.n-ftr-nt {
	font-size: 11px;
	line-height: 1.85;
	color: var(--ink3);
	padding: 14px 18px;
	background: var(--surf);
	border: 1px solid var(--line);
	border-left: 3px solid var(--line2);
	border-radius: 0 6px 6px 0;
	margin-bottom: 36px;
}

.n-ftr-nt strong {
	color: var(--ink2);
}

.n-ftr-grd {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 18px;
}

.n-ftr-col h5 {
	font-family: 'Signika', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	margin-bottom: 14px;
}

.n-ftr-col address {
	font-style: normal;
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.9;
}

.n-ftr-col address strong {
	color: var(--ink2);
}

.n-ftr-col nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.n-ftr-col nav a {
	font-size: 12px;
	color: var(--ink3);
	text-decoration: none;
	transition: color 0.2s;
}

.n-ftr-col nav a:hover {
	color: var(--ink);
}

.n-ftr-btm {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.n-ftr-brnd {
	font-family: 'Signika', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink3);
}

.n-ftr-brnd em {
	color: var(--gold);
	font-style: normal;
}

.n-ftr-cpr {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--line2);
}

@media (max-width: 640px) {
	.n-ftr-grd {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (max-width: 380px) {
	.n-ftr-grd {
		grid-template-columns: 1fr;
	}
}

/* ════════════════════ COOKIE BAR (ПЛАШКА КУКИ) ════════════════════ */
.n-ck-wrp {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--surf2);
	border-top: 1px solid var(--line2);
	box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.05);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.n-ck-wrp.n-act-v {
	transform: translateY(0);
}

.n-ck-innr {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.n-ck-txt {
	flex: 1;
	min-width: 180px;
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.6;
}

.n-ck-txt a {
	color: var(--gold);
	font-weight: 700;
	text-decoration: none;
}

.n-ck-acts {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.n-ck-btn {
	padding: 8px 18px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	border-radius: 6px;
	border: 1px solid var(--line2);
	background: var(--surf);
	color: var(--ink3);
	transition: background 0.2s;
}

.n-ck-btn:hover {
	background: var(--line);
}

.n-ck-yes {
	background: var(--gold);
	color: #fff;
	border-color: var(--gold-dk);
}

.n-ck-yes:hover {
	background: var(--gold-dk);
}

@media (max-width: 500px) {
	.n-ck-innr {
		flex-direction: column;
	}
	.n-ck-acts {
		width: 100%;
	}
	.n-ck-btn {
		flex: 1;
	}
}
