/* ─── HERO ─── */
.mh__hero {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	min-height: calc(100vh - 130px);
	min-height: clamp(700px, calc(100svh - 130px), 820px);
	position: relative;
}
.mh__hero-l {
	padding: 48px 44px 40px 56px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;
	position: relative;
}
.mh__hero-l::before {
	/* registration cross — quiet производственная деталь */
	content: "";
	position: absolute;
	right: -10px; top: 64px;
	width: 18px; height: 18px;
	background:
		linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat,
		linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat;
	color: var(--fg-quiet);
	opacity: 0.4;
}
.mh__hero-eyebrow {
	font-family: var(--font-mh-mono);
	font-size: var(--text-eyebrow); /* 11px → token */
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-mute);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.mh__hero-eyebrow::before {
	content: "";
	width: 22px; height: 1.5px;
	background: var(--accent);
}
.mh__h1 {
	font-family: var(--font-mh-display);
	font-weight: 700;
	font-size: 96px;
	line-height: 0.93;
	letter-spacing: -0.022em;
	margin: 18px 0 0;
	color: var(--fg);
	text-wrap: balance;
}
.mh__h1 em {
	font-style: normal;
	color: var(--accent);
	background: none;
	padding: 0;
	position: relative;
	display: inline-block;
}
.mh__h1 em::after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	bottom: 0.04em;
	height: 0.08em;
	background: var(--accent);
	opacity: 0.55;
}
.mh__hero-lead {
	font-size: var(--text-h3-sm); /* 18px → token */
	line-height: 1.45;
	color: var(--fg-mute);
	max-width: 46ch;
	margin: 20px 0 0;
}
.mh__hero-cta {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}
.mh__hero-cta-row { display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.mh__hero-pricetag {
	font-family: var(--font-mh-mono);
	font-size: var(--text-mono-sm);
	letter-spacing: 0.04em;
	color: var(--fg-mute);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.mh__hero-pricetag b { color: var(--fg); font-weight: 600; }
.mh__hero-pricetag::before {
	content: "";
	width: 14px; height: 1px; background: var(--fg-mute);
}

.mh__hero-r {
	position: relative;
	background: var(--bg-deep);
	overflow: hidden;
}
.mh__hero-r img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	display: block;
	filter: contrast(1.04) saturate(0.92);
}
.mh__hero-r-tape {
	position: absolute;
	top: 32px; left: 32px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font-mh-mono);
	font-size: var(--text-mono-2xs); /* 10px → token */
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 8px 14px;
	line-height: 1.5;
}
.mh__hero-r-tape b { color: var(--accent); font-weight: 600; }
.mh__hero-r-spec {
	position: absolute;
	bottom: 32px; left: 32px; right: 32px;
	background: rgba(var(--rgb-graphite-900), 0.92);
	color: var(--paper);
	padding: 18px 22px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px 24px;
	font-family: var(--font-mh-mono);
}
.mh__hero-r-spec-cell { display: flex; flex-direction: column; gap: 4px; }
.mh__hero-r-spec-tag {
	font-size: var(--text-mono-3xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}
.mh__hero-r-spec-val {
	font-size: var(--text-body-sm); /* 14px → token */
	letter-spacing: 0.02em;
	font-weight: 500;
	color: var(--paper);
}

/* ─── HERO mode notice: promo / vacation ─── */
.mh__hero-mode-card {
	position: absolute;
	z-index: 2;
	left: 32px;
	right: 32px;
	bottom: 32px;
	padding: 24px 26px 22px;
	border: 1.5px solid var(--ink);
	box-shadow: 10px 10px 0 rgba(var(--rgb-graphite-900), 0.28);
}
.mh__hero-mode-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 5px;
	background: var(--ink);
}
.mh__hero-mode-card--promo {
	background: var(--accent);
	color: var(--ink);
}
.mh__hero-mode-card--vacation {
	background: rgba(var(--rgb-graphite-900), 0.94);
	color: var(--paper);
	border-color: var(--accent);
	box-shadow: 10px 10px 0 var(--accent);
}
.mh__hero-mode-card--vacation::before {
	background: var(--accent);
}
.mh__hero-mode-head,
.mh__hero-mode-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.mh__hero-mode-label,
.mh__hero-mode-mark,
.mh__hero-mode-date,
.mh__hero-mode-link {
	font-family: var(--font-mh-mono);
	font-size: var(--text-mono-2xs);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.mh__hero-mode-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.mh__hero-mode-label::before {
	content: "";
	width: 8px;
	height: 8px;
	background: currentColor;
}
.mh__hero-mode-card--vacation .mh__hero-mode-label {
	color: var(--accent);
}
.mh__hero-mode-mark {
	opacity: 0.58;
}
.mh__hero-mode-message {
	max-width: 28ch;
	margin: 18px 0 20px;
	font-family: var(--font-mh-display);
	font-size: clamp(26px, 2.35vw, 38px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.018em;
	overflow-wrap: anywhere;
}
.mh__hero-mode-footer {
	min-height: 38px;
	padding-top: 14px;
	border-top: 1px solid currentColor;
}
.mh__hero-mode-date {
	letter-spacing: 0.08em;
}
.mh__hero-mode-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid currentColor;
	color: inherit;
	text-decoration: none;
}
.mh__hero-mode-link:hover,
.mh__hero-mode-link:focus-visible {
	background: var(--ink);
	color: var(--paper);
	text-decoration: none;
}

/* ─── HERO bottom strip — material chips with specs ─── */
.mh__hero-strip {
	border-top: 1.5px solid var(--ink);
	border-bottom: 1.5px solid var(--ink);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.mh__hero-strip-cell {
	padding: 22px 28px;
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.mh__hero-strip-cell:last-child { border-right: 0; }
.mh__hero-strip-tag {
	font-family: var(--font-mh-mono);
	font-size: var(--text-mono-2xs); /* 10px → token */
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.mh__hero-strip-name {
	font-family: var(--font-mh-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.008em;
	color: var(--fg);
}
.mh__hero-strip-spec {
	font-family: var(--font-mh-mono);
	font-size: var(--text-mono-sm); /* 12px → token */
	color: var(--fg-quiet);
	letter-spacing: 0.02em;
}
/* P14 2026-05-20: тариф материала отдельной строкой (single source of truth —
   materials[i].price + unit). Жирно + accent — это главное число тайла. */
.mh__hero-strip-price {
	font-family: var(--font-mh-mono);
	font-size: var(--text-body-sm);
	font-weight: 700;
	color: var(--fg);
	letter-spacing: 0.02em;
	margin-top: 2px;
}

@media (min-width: 1025px) and (max-height: 800px) {
	.mh__hero {
		min-height: calc(100vh - 130px);
		min-height: calc(100svh - 130px);
	}
	.mh__hero-l {
		padding: 36px 40px 32px 48px;
		gap: 24px;
	}
	.mh__h1 {
		font-size: 78px;
		margin-top: 14px;
	}
	.mh__hero-lead {
		font-size: var(--text-body);
		line-height: 1.36;
		max-width: 58ch;
		margin-top: 16px;
	}
}

@media (min-width: 1025px) and (max-height: 740px) {
	.mh__hero-l {
		padding: 28px 36px 24px 44px;
		gap: 20px;
	}
	.mh__h1 {
		font-size: 72px;
		margin-top: 12px;
	}
	.mh__hero-lead {
		line-height: 1.32;
		margin-top: 14px;
	}
}

