:root {
	--wine: #7a0c0c;
	--wine2: #8b1414;
	--red: #cc0000;
	--ink: #1c1c1c;
	--white: #ffffff;
	--cream: #f5f0e8;
	--paper: #ede5d8;
	--beige: #f9f5ee;
	--muted: #7a7060;
	--line: rgba(122, 12, 12, 0.16);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
/* picture не должен ломать правила вида ".hero-img img" */
picture {
	display: contents;
}
.ico {
	width: 18px;
	height: 18px;
	vertical-align: -0.12em;
	flex: 0 0 auto;
}
body {
	background: var(--beige);
	color: var(--ink);
	font-family: "Montserrat", sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
/* фон не скроллится, пока открыта модалка или мобильное меню */
body.locked {
	overflow: hidden;
}
.wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}

/* NAV */
nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--cream);
	border-bottom: 3px solid var(--wine);
	box-shadow: 0 2px 16px rgba(122, 12, 12, 0.1);
}
.nav-in {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 900;
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wine);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 26px;
}
.nav-links a {
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: 0.2s;
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}
.nav-links a:hover {
	color: var(--wine);
}
.nav-cta {
	background: var(--wine) !important;
	color: var(--white) !important;
	padding: 10px 24px;
	border-radius: 999px;
}
.nav-cta:hover {
	background: var(--wine2) !important;
}
.nav-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
	background: none;
	border: none;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.nav-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--wine);
	border-radius: 2px;
	transition: 0.3s;
}
.nav-mobile {
	display: none;
	position: fixed;
	inset: 0;
	background: var(--cream);
	z-index: 500;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
}
.nav-mobile.open {
	display: flex;
}
.nav-mobile button,
.nav-mobile a {
	color: var(--ink);
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	background: none;
	border: none;
	font-family: inherit;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.nav-close {
	position: absolute;
	top: 20px;
	right: 24px;
	font-size: 30px;
	cursor: pointer;
	color: var(--wine);
	background: none;
	border: none;
}

/* BUTTONS */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--wine);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 18px 44px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(122, 12, 12, 0.28);
	transition: 0.2s;
	border: none;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.btn:hover {
	background: var(--wine2);
	transform: translateY(-2px);
}
.btn-full {
	width: 100%;
	font-size: 16px;
	padding: 20px;
}
.btn-ghost-w {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.7);
	color: var(--white);
	box-shadow: none;
}
.btn-ghost-w:hover {
	background: var(--white);
	color: var(--wine);
	transform: translateY(-2px);
}

/* HERO */
.hero {
	background: var(--beige);
	border-bottom: 3px solid var(--wine);
	overflow: hidden;
}
.hero-in {
	display: grid;
	grid-template-columns: 1fr 460px;
	min-height: 92vh;
	align-items: stretch;
}
.hero-txt {
	padding: 72px 48px 72px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 2px solid var(--wine);
	border-radius: 999px;
	padding: 8px 20px;
	margin-bottom: 26px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wine);
}
.hero-h1 {
	font-size: clamp(42px, 5.5vw, 84px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	line-height: 0.95;
	color: var(--ink);
	margin-bottom: 10px;
}
.hero-h1 span {
	color: var(--wine);
}
.hero-sub {
	font-family: "Caveat", cursive;
	font-size: clamp(20px, 2.5vw, 32px);
	color: var(--wine);
	line-height: 1.2;
	margin-bottom: 26px;
	font-weight: 700;
}
.hero-lead {
	font-size: clamp(14px, 1.4vw, 17px);
	color: var(--muted);
	line-height: 1.65;
	max-width: 460px;
	margin-bottom: 34px;
}
.hero-note {
	font-size: 12px;
	color: var(--muted);
	margin-top: 14px;
	letter-spacing: 0.03em;
}
.hero-img {
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* SECTIONS */
.sec {
	padding: 80px 0;
	border-bottom: 2px solid var(--line);
}
.sec-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wine);
	margin-bottom: 14px;
}
.sec-h {
	font-size: clamp(28px, 4vw, 54px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 0.97;
	color: var(--ink);
	margin-bottom: 14px;
}
.sec-h span {
	color: var(--wine);
}
.sec-note {
	font-size: 16px;
	color: var(--muted);
	max-width: 540px;
	line-height: 1.58;
}

/* ROLES */
.roles-sec {
	background: var(--beige);
}
.roles-top {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 56px;
	align-items: end;
	margin-bottom: 40px;
}
.roles-table {
	border-top: 2px solid var(--ink);
}
.rr {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	transition: 0.15s;
}
.rr:hover {
	background: var(--paper);
	padding-left: 8px;
	padding-right: 8px;
	margin: 0 -8px;
}
.rn {
	font-size: clamp(16px, 1.8vw, 22px);
	font-weight: 700;
}
.rs {
	font-size: 13px;
	color: var(--muted);
	margin-top: 3px;
}
.rt {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--wine);
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 9px 20px;
	border-radius: 999px;
	white-space: nowrap;
}

/* INSIDE — блок программы + скриншоты под ним */
.inside-sec {
	background: var(--cream);
}
.inside-wrap {
	display: block;
}
.cells {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hb-d {
	background: var(--wine2);
	border-radius: 14px;
	padding: 22px 26px;
	color: #fff;
}
.hb-d h3 {
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
}
.hb-d p {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}
.hb-l {
	background: #fff;
	border: 2px solid var(--wine);
	border-radius: 14px;
	padding: 22px 26px;
}
.hb-l h3 {
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
	color: var(--wine);
}
.hb-l p {
	font-size: 13px;
	line-height: 1.55;
	color: var(--muted);
}
.hb-g {
	background: var(--wine);
	border-radius: 14px;
	padding: 22px 26px;
	color: #fff;
}
.hb-g h3 {
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
}
.hb-g p {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}
.inside-photo {
	display: none !important;
}
/* скриншоты уроков под блоком программы */
.sc-divider {
	height: 2px;
	background: var(--line);
	margin: 40px 0;
}
.sc-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 32px;
}
.sc-item {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(122, 12, 12, 0.1);
	border: 1.5px solid var(--line);
	/* окно постоянной пропорции: скрин вписывается целиком, не обрезается */
	aspect-ratio: 16 / 10;
	background: var(--cream);
	padding: 0;
	position: relative;
	cursor: zoom-in;
	display: block;
	width: 100%;
	font: inherit;
	color: inherit;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}
.sc-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(122, 12, 12, 0.18);
}
.sc-item:focus-visible {
	outline: 3px solid var(--wine);
	outline-offset: 3px;
}
.sc-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
/* подсказка «нажми, чтобы увеличить» */
.sc-zoom {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(28, 28, 28, 0.62);
	display: grid;
	place-items: center;
	pointer-events: none;
	opacity: 0.9;
}
.sc-zoom svg {
	width: 15px;
	height: 15px;
	fill: #fff;
}

/* ЛАЙТБОКС */
.lb {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(12, 12, 12, 0.94);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.lb.open {
	display: flex;
}
.lb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 6px;
}
.lb-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}
.lb-close:hover {
	background: rgba(255, 255, 255, 0.26);
}
.lb-cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	text-align: center;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	padding: 0 56px;
}
/* на телефоне скрин узкий — даём прокрутку и зум пальцами */
@media (max-width: 900px) {
	.lb {
		padding: 8px;
		overflow: auto;
	}
	.lb img {
		max-width: none;
		width: auto;
		height: auto;
		max-height: none;
		min-width: 100%;
	}
	.lb-inner {
		overflow: auto;
		max-width: 100%;
		max-height: 100%;
		-webkit-overflow-scrolling: touch;
	}
}

/* BEFORE/AFTER */
.ba-sec {
	background: var(--beige);
}
.ba-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 2px solid var(--ink);
}
.ba-col {
	padding: 36px 32px;
}
.ba-col.dk {
	background: var(--ink);
}
.ba-col.lt {
	background: #fff;
	border-left: 2px solid var(--ink);
}
.ba-lbl {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.ba-col.dk .ba-lbl {
	color: rgba(255, 255, 255, 0.35);
}
.ba-col.lt .ba-lbl {
	color: var(--wine);
}
.ba-col ul {
	list-style: none;
}
.ba-col li {
	font-size: 15px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	line-height: 1.42;
}
.ba-col.dk li {
	border-color: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
}
.ba-col.lt li::before {
	content: "✓  ";
	color: var(--wine);
	font-weight: 900;
}
.ba-col li:last-child {
	border: none;
}

/* STRIP */
.strip {
	background: var(--wine2);
	padding: 56px 0;
}
.strip p {
	font-size: clamp(16px, 2.4vw, 30px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.1;
	color: #fff;
	text-align: center;
	max-width: 740px;
	margin: 0 auto;
}
.strip em {
	font-style: normal;
	font-family: "Caveat", cursive;
	font-size: 1.2em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.65);
}

/* ABOUT */
.about-sec {
	background: var(--paper);
}
.about-wrap {
	display: grid;
	grid-template-columns: 440px 1fr;
	gap: 64px;
	align-items: center;
}
.about-photo {
	border-radius: 20px;
	overflow: hidden;
}
.about-photo img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.lead-txt {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.62;
	margin-bottom: 24px;
}
.chk-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 26px;
}
.ci {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.ci-dot {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	background: var(--wine);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 900;
	font-size: 12px;
	margin-top: 1px;
}
.ci-txt {
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
}
.quote {
	background: #fff;
	border: 2px solid var(--wine);
	border-radius: 18px;
	padding: 24px 28px;
	position: relative;
}
.quote::before {
	content: '"';
	position: absolute;
	top: -12px;
	left: 20px;
	font-size: 60px;
	color: var(--wine);
	line-height: 1;
	font-weight: 900;
}
.quote q {
	display: block;
	font-family: "Caveat", cursive;
	font-size: 20px;
	font-weight: 700;
	color: var(--wine);
	line-height: 1.38;
	margin-bottom: 8px;
	font-style: normal;
}
.quote small {
	font-size: 11px;
	color: var(--muted);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* PRICE */
.price-sec {
	background: var(--beige);
	padding: 88px 0;
	text-align: center;
}
.tariff-wrap {
	max-width: 560px;
	margin: 36px auto 0;
}
.tariff-card {
	background: #fff;
	border: 3px solid var(--wine);
	border-radius: 24px;
	padding: 40px 44px 44px;
	box-shadow: 0 16px 48px rgba(122, 12, 12, 0.12);
}
.t-name {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wine);
	margin-bottom: 8px;
}
.t-price {
	font-size: clamp(56px, 9vw, 96px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.9;
	color: var(--ink);
	margin-bottom: 4px;
}
.t-price sup {
	font-size: 0.32em;
	vertical-align: super;
	color: var(--muted);
}
.t-old {
	font-size: 15px;
	color: var(--muted);
	text-decoration: line-through;
	margin-bottom: 6px;
}
.t-sub {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 28px;
}
.t-feats {
	list-style: none;
	margin-bottom: 30px;
	border-top: 1px solid rgba(122, 12, 12, 0.12);
}
.t-feats li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(122, 12, 12, 0.08);
	font-size: 15px;
	font-weight: 500;
}
.t-feats li::before {
	content: "✓";
	color: var(--wine);
	font-weight: 900;
	flex: 0 0 auto;
}
.t-feats li:last-child {
	border: none;
}

/* MODAL */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow-y: auto;
}
.overlay.open {
	display: flex;
}
.modal {
	background: #fff;
	border-radius: 16px;
	max-width: 520px;
	width: 100%;
	position: relative;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	animation: mIn 0.25s ease;
	margin: auto;
}
@keyframes mIn {
	from {
		opacity: 0;
		transform: scale(0.96) translateY(20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.m-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	border: none;
	background: rgba(0, 0, 0, 0.08);
	border-radius: 50%;
	cursor: pointer;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	z-index: 10;
	transition: 0.2s;
}
.m-close:hover {
	background: rgba(122, 12, 12, 0.12);
	color: var(--wine);
}
.m-head {
	background: var(--wine2);
	padding: 24px 28px 20px;
	color: #fff;
}
.m-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 5px;
}
.m-title {
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.15;
}
.m-price {
	font-size: 28px;
	font-weight: 900;
	margin-top: 8px;
}
.m-body {
	padding: 24px 28px;
}
.m-sub {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 18px;
}
.field {
	width: 100%;
	border: 1.5px solid rgba(122, 12, 12, 0.2);
	border-radius: 10px;
	padding: 13px 15px;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: var(--ink);
	margin-bottom: 10px;
	outline: none;
	transition: 0.2s;
	background: var(--beige);
}
.field:focus {
	border-color: var(--wine);
	background: #fff;
}
.field::placeholder {
	color: rgba(0, 0, 0, 0.3);
}
.m-checks {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 14px 0;
}
.m-check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 11px;
	color: var(--muted);
	line-height: 1.4;
}
.m-check input {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	margin-top: 1px;
	accent-color: var(--wine);
}
.m-check a {
	color: var(--wine);
}
/* подсветка незаполненного поля и текст ошибки */
.field.invalid {
	border-color: var(--red);
	background: rgba(204, 0, 0, 0.04);
}
.m-check.invalid span {
	color: var(--red);
}
.m-error {
	color: var(--red);
	font-size: 13px;
	line-height: 1.45;
	margin: 0 0 12px;
}
.m-submit[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}
.m-submit {
	width: 100%;
	background: var(--wine);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 17px;
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s;
	box-shadow: 0 8px 24px rgba(122, 12, 12, 0.3);
}
.m-submit:hover {
	background: var(--wine2);
}
.m-info {
	font-size: 11px;
	color: var(--muted);
	line-height: 1.5;
	text-align: center;
	margin-top: 14px;
}
.m-info strong {
	color: var(--wine);
}
.m-foot {
	background: rgba(122, 12, 12, 0.04);
	padding: 12px 18px;
	font-size: 11px;
	color: var(--muted);
	line-height: 1.45;
	border-top: 1px solid rgba(122, 12, 12, 0.1);
}

footer {
	background: var(--ink);
	padding: 30px;
	text-align: center;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ════════════════════
   МОБИЛЬНАЯ ВЕРСИЯ
════════════════════ */
@media (max-width: 840px) {
	.wrap {
		padding: 0 18px;
	}
	.nav-in {
		padding: 0 18px;
	}
	.nav-links {
		display: none;
	}
	.nav-burger {
		display: flex;
	}

	/* HERO */
	.hero-in {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.hero-img {
		order: -1;
		height: auto;
		margin: 0 -18px;
		position: relative;
		z-index: 0;
	}
	.hero-img img {
		height: auto;
		width: 100%;
		object-fit: contain;
		object-position: center top;
		display: block;
		pointer-events: none;
	}
	.hero-txt {
		position: relative;
		z-index: 1;
	}
	.hero-txt {
		padding: 28px 0 44px;
	}
	.hero-h1 {
		font-size: clamp(36px, 9vw, 54px);
	}
	.hero-sub {
		font-size: 22px;
	}
	.hero-lead {
		font-size: 14px;
		max-width: 100%;
	}
	.btn {
		font-size: 14px;
		padding: 16px 28px;
		width: 100%;
		justify-content: center;
	}
	.hero-note {
		text-align: center;
		font-size: 11px;
	}

	/* ROLES */
	.roles-top {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.rt {
		font-size: 11px;
		padding: 7px 14px;
	}

	/* INSIDE */
	.inside-wrap {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.inside-photo {
		position: static;
		height: 300px;
		margin-bottom: 24px;
	}
	.inside-photo img {
		height: 300px;
	}
	.sc-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	/* BA */
	.ba-grid {
		grid-template-columns: 1fr;
	}
	.ba-col.lt {
		border-left: none;
		border-top: 2px solid var(--ink);
	}
	.ba-col {
		padding: 26px 18px;
	}
	.ba-col li {
		font-size: 14px;
	}

	/* ABOUT */
	.about-wrap {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.about-photo {
		height: auto;
		border-radius: 16px;
	}
	.about-photo img {
		height: auto;
		width: 100%;
		object-fit: contain;
		object-position: center top;
		display: block;
	}

	/* PRICE */
	.tariff-card {
		padding: 28px 20px 32px;
	}

	/* STRIP */
	.strip {
		padding: 36px 18px;
	}
	.strip p {
		font-size: clamp(15px, 4vw, 20px);
	}
}

@media (max-width: 480px) {
	.hero-img {
		height: auto;
	}
	.hero-img img {
		height: auto;
	}
	.hero-h1 {
		font-size: 36px;
	}
	.sec-h {
		font-size: 28px;
	}
	.sc-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* ═══ АНИМАЦИИ ═══
   Только opacity и transform — их браузер считает на видеокарте,
   поэтому скролл не дёргается. Всё внутри no-preference:
   если в системе включено «уменьшить движение», анимаций нет вовсе. */
@media (prefers-reduced-motion: no-preference) {
	/* Прячем только если JS жив: класс js ставит сам скрипт.
	   Иначе при сбое загрузки скрипта контент остался бы невидимым. */
	.js .reveal {
		opacity: 0;
		transform: translateY(24px);
		transition:
			opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
			transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
		will-change: opacity, transform;
	}
	.reveal.shown {
		opacity: 1;
		transform: none;
	}
	/* соседние карточки въезжают друг за другом */
	.js .reveal-stagger > * {
		opacity: 0;
		transform: translateY(20px);
		transition:
			opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
			transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	}
	.reveal-stagger.shown > * {
		opacity: 1;
		transform: none;
	}
	.reveal-stagger.shown > *:nth-child(1) {
		transition-delay: 0.04s;
	}
	.reveal-stagger.shown > *:nth-child(2) {
		transition-delay: 0.1s;
	}
	.reveal-stagger.shown > *:nth-child(3) {
		transition-delay: 0.16s;
	}
	.reveal-stagger.shown > *:nth-child(4) {
		transition-delay: 0.22s;
	}
	.reveal-stagger.shown > *:nth-child(5) {
		transition-delay: 0.28s;
	}
	.reveal-stagger.shown > *:nth-child(6) {
		transition-delay: 0.34s;
	}

	/* первый экран: без ожидания скролла */
	.hero-kicker,
	.hero-h1,
	.hero-sub,
	.hero-lead,
	.hero .btn,
	.hero-note {
		animation: heroIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
	}
	.hero-h1 {
		animation-delay: 0.06s;
	}
	.hero-sub {
		animation-delay: 0.13s;
	}
	.hero-lead {
		animation-delay: 0.19s;
	}
	.hero .btn {
		animation-delay: 0.25s;
	}
	.hero-note {
		animation-delay: 0.31s;
	}
	.hero-img img {
		animation: heroImg 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
	}

	/* строки таблицы ролей въезжают слева */
	.js .reveal-rows .rr {
		opacity: 0;
		transform: translateX(-14px);
		transition:
			opacity 0.45s ease,
			transform 0.45s ease;
	}
	.reveal-rows.shown .rr {
		opacity: 1;
		transform: none;
	}
	.reveal-rows.shown .rr:nth-child(1) {
		transition-delay: 0.05s;
	}
	.reveal-rows.shown .rr:nth-child(2) {
		transition-delay: 0.12s;
	}
	.reveal-rows.shown .rr:nth-child(3) {
		transition-delay: 0.19s;
	}
	.reveal-rows.shown .rr:nth-child(4) {
		transition-delay: 0.26s;
	}
	.reveal-rows.shown .rr:nth-child(5) {
		transition-delay: 0.33s;
	}

	/* карточка тарифа — мягкий акцент, это главный экран продажи */
	.tariff-card {
		transition:
			transform 0.3s ease,
			box-shadow 0.3s ease;
	}
	.tariff-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 24px 60px rgba(122, 12, 12, 0.22);
	}

	/* кнопка чуть «дышит», подсказывая, что она главная */
	.btn-full {
		animation: pulse 3.2s ease-in-out infinite;
	}
	.btn-full:hover {
		animation-play-state: paused;
	}

	/* блоки программы */
	.hb-d,
	.hb-l,
	.hb-g {
		transition:
			transform 0.25s ease,
			box-shadow 0.25s ease;
	}
	.hb-d:hover,
	.hb-l:hover,
	.hb-g:hover {
		transform: translateX(6px);
	}
}

@keyframes heroIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes heroImg {
	from {
		opacity: 0;
		transform: scale(1.06);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 8px 24px rgba(122, 12, 12, 0.3);
	}
	50% {
		box-shadow: 0 8px 34px rgba(122, 12, 12, 0.5);
	}
}
