@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
	--bg: #fdfaf8;
	--bg2: #f4efed;
	--bg3: #e8e1de00;
	--surf: #ffffff;
	--surf2: #fbf9f8;
	--line: #e4dcd7;
	--line2: #c5b9b3;
	--ink: #2a2422;
	--ink2: #4a4340;
	--ink3: #756d6a;
	--gold: #5c4335;
	--gold-dk: #3d2d24;
	--gold-lt: #efe8e5;
	--gold-pl: #d6cbc6;
	--red: #a82d3f;
	--green: #2e7d32;
}

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

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

body {
	font-family: 'Noto Sans', system-ui, sans-serif;
	background: var(--bg);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.65;
	min-height: 100vh;
}

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

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

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

.n-brnd-txt {
	font-family: 'Noto Sans', sans-serif;
	font-size: 23px;
	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-sb {
	font-size: 11px;
	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-lst {
	display: flex;
	gap: 0;
}

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

.n-nv-lst a:hover,
.n-nv-lst a.on {
	color: var(--gold);
	background: rgba(92, 67, 53, 0.04);
}

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

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

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

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

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

.n-tckr-lft {
	display: flex;
	align-items: center;
	gap: 10px;
}

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

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

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

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

.n-hr::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse 70% 60% at 50% 110%,
		rgba(92, 67, 53, 0.06) 0%,
		transparent 60%
	);
}

.n-hr-chr {
	position: absolute;
	right: -4vw;
	bottom: -0.12em;
	font-family: 'Noto Sans', serif;
	font-size: 44vw;
	font-weight: 700;
	line-height: 1;
	color: rgba(92, 67, 53, 0.03);
	pointer-events: none;
	user-select: none;
	letter-spacing: -0.05em;
}

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

.n-crmbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

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

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

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

.n-crmbs-ct {
	display: inline-block;
	margin-bottom: 16px;
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 5px;
}

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

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

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

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

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

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

@keyframes n-pls-ky {
	0% {
		box-shadow: 0 0 0 0 rgba(92, 67, 53, 0.55);
	}
	60% {
		box-shadow: 0 0 0 7px rgba(92, 67, 53, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(92, 67, 53, 0);
	}
}

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

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

.n-hr-ttl {
	font-family: 'Noto Sans', sans-serif;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 16px;
}

.n-hr-dsc {
	font-size: 16px;
	color: var(--ink2);
	line-height: 1.7;
	max-width: 540px;
}

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

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

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

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

.n-mt-pll {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	flex-shrink: 0;
}
.n-pll-lbl {
	font-family: 'Noto Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
}
.n-pll-txt {
	font-size: 11px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 560px) {
	.n-smmry-blck {
		flex-direction: column;
		align-items: flex-start;
	}
	.n-mt-pll {
		align-items: flex-start;
	}
}

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

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

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

.n-vd-sct--trms {
	gap: 0;
}

.n-blck-hd {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

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

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

.n-vd-bx {
	background: #000;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 0 1px var(--line), 0 0 0 4px rgba(92, 67, 53, 0.04),
		0 20px 50px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: center;
}

.n-vd-sb {
	margin-top: 14px;
	text-align: center;
	font-size: 12px;
	color: var(--ink3);
}

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

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

.n-bdy-bx--tc {
	border-left: 4px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 22px 24px;
	margin-bottom: 38px;
}
.n-bdy-bx--tc .n-hd-txt {
	margin-bottom: 14px;
}

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

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

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

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

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

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

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

/* ════════════════════ OFFER CARD (КАРТОЧКА ОФЕРА) ════════════════════ */
.h-prm-bl {
	display: none;
	margin-bottom: 40px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--line2);
	background: var(--surf);
	box-shadow: 0 0 0 1px rgba(92, 67, 53, 0.04), 0 15px 45px rgba(0, 0, 0, 0.08);
}

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

.n-offr-hd-lft {
	font-family: 'Noto Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.n-offr-hd-ico {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.n-offr-hd-ico svg {
	width: 12px;
	height: 12px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.n-offr-hd-tag {
	background: #fff;
	color: var(--gold);
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 12px;
	border-radius: 3px;
	flex-shrink: 0;
}

.n-offr-bdy {
	padding: 26px;
}

.n-offr-splt {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 24px;
	align-items: start;
}

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

.n-offr-thmb:hover {
	border-color: var(--gold);
}

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

.n-offr-ttl {
	font-family: 'Noto Sans', sans-serif;
	font-size: clamp(18px, 2.5vw, 23px);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.2;
	margin-bottom: 10px;
}

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

.n-offr-txt {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.65;
	margin-bottom: 18px;
}

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

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

.n-offr-chck {
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.n-offr-chck svg {
	width: 11px;
	height: 11px;
	stroke: #fff;
	fill: none;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.n-offr-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 16px 22px;
	background: var(--green);
	color: #fff;
	font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border-radius: 6px;
	border-bottom: 3px solid #1b5e20;
	margin-top: 6px;
	transition: background 0.2s, transform 0.15s;
}

.n-offr-btn:hover {
	background: #388e3c;
	border-bottom-color: #1b5e20;
	transform: translateY(-2px);
}

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

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

.n-offr-bdgs {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 14px;
}

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

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

.n-qt-ico {
	font-family: 'Noto 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-bx text {
	font-family: 'Noto Sans', sans-serif;
	font-size: clamp(15px, 2.2vw, 18px);
	color: var(--ink2);
	line-height: 1.6;
	padding-left: 30px;
	display: block;
}

.n-qt-bx author {
	display: block;
	margin-top: 14px;
	padding-left: 30px;
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	font-style: normal;
}

.n-qt-hghlght {
	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: 16px 18px;
	margin: 18px 0;
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.7;
}

.n-qt-hghlght--grdnt {
	background: linear-gradient(135deg, rgba(92, 67, 53, 0.05) 0%, rgba(92, 67, 53, 0.01) 100%);
	padding: 28px 30px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
}
.n-qt-hghlght strong {
	color: var(--ink);
}
.n-qt-hghlght p {
	font-family: 'Noto Sans', sans-serif;
	font-size: clamp(15px, 2.2vw, 19px);
	color: var(--ink2);
	line-height: 1.65;
}

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

.n-vl-crd {
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-radius: 8px;
	padding: 20px 18px;
}

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

.n-crd-ic-wrp {
	width: 38px;
	height: 38px;
	border-radius: 6px;
	background: var(--gold-lt);
	border: 1px solid var(--gold-pl);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.n-crd-ic-wrp svg {
	width: 20px;
	height: 20px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.n-vl-crd h3 {
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink);
	margin-bottom: 8px;
}
.n-vl-crd p {
	font-size: 13.5px;
	color: var(--ink3);
	line-height: 1.6;
	margin: 0;
}

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

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

.n-cntct-ico--txt {
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: var(--gold);
	min-width: 18px;
	background: transparent;
	border: none;
	width: auto;
	height: auto;
}

.n-cntct-lbl {
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
	margin-bottom: 4px;
}
.n-vl-crd--lst .n-cntct-lbl {
	letter-spacing: 2px;
	color: var(--gold);
	display: block;
	margin-bottom: 10px;
}

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

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

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

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

.n-wdgt-ind {
	width: 3px;
	height: 14px;
	background: var(--gold);
	border-radius: 2px;
	flex-shrink: 0;
}

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

.n-wdgt-bdy {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.n-wdgt-bdy p {
	font-size: 13.5px;
	color: var(--ink3);
	line-height: 1.65;
}

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

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

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

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

.n-wdgt-arrw {
	font-size: 18px;
	color: var(--line2);
	line-height: 1;
	transition: color 0.2s;
}

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

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

.n-stts-cll {
	background: var(--bg2);
	padding: 16px 14px;
	text-align: center;
}

.n-stts-val {
	font-family: 'Noto Sans', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	display: block;
	margin-bottom: 6px;
}

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

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

.n-trst-tg--chck::before {
	content: '✓';
	color: var(--green);
	font-size: 13px;
}

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

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

.n-fttr-ntc {
	font-size: 12px;
	line-height: 1.85;
	color: var(--ink3);
	padding: 16px 20px;
	background: var(--surf);
	border: 1px solid var(--line);
	border-left: 3px solid var(--line2);
	border-radius: 0 6px 6px 0;
	margin-bottom: 38px;
}

.n-fttr-ntc strong {
	color: var(--ink2);
}

.n-fttr-cls {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 38px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 20px;
}

.n-fttr-cl h5 {
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	margin-bottom: 16px;
}

.n-fttr-cl address {
	font-style: normal;
	font-size: 13px;
	color: var(--ink3);
	line-height: 1.9;
}

.n-fttr-cl address strong {
	color: var(--ink2);
}

.n-fttr-cl nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.n-fttr-cl nav a {
	font-size: 13px;
	color: var(--ink3);
	text-decoration: none;
	transition: color 0.2s;
}

.n-fttr-cl nav a:hover {
	color: var(--ink);
}

.n-fttr-bs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.n-fttr-lg {
	font-family: 'Noto Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink3);
}

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

.n-fttr-cpy {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--line2);
}

@media (max-width: 640px) {
	.n-fttr-cls {
		grid-template-columns: 1fr 1fr;
		gap: 22px;
	}
}

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

/* ════════════════════ COOKIE BAR (ПЛАШКА КУКИ) ════════════════════ */
.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);
}

.ck-wrp.rvl-bn {
	transform: translateY(0);
}

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

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

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

.n-ck-btns {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.n-ck-btn {
	padding: 10px 20px;
	font-size: 12px;
	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-accpt {
	background: var(--gold);
	color: #fff;
	border-color: var(--gold-dk);
}

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

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