/*
 * Section components.
 *
 * The Tilda original is built from absolutely-positioned Zero Blocks; this
 * reproduces the same visual language (inset rounded containers, pill
 * controls, orange accents on a light-grey ground) with normal responsive
 * layout so the content stays editable and the page stays fast.
 */

body {
	background: var(--k-bg-alt);
}

/* ---------- Header ---------- */

.k-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: var(--k-space-2) var(--k-gutter) 0;
}

.k-header__bar {
	display: flex;
	align-items: center;
	gap: var(--k-space-2);
	max-width: var(--k-container);
	margin-inline: auto;
	padding: 0.6rem 0.6rem 0.6rem 1.25rem;
	border-radius: var(--k-radius-round);
	background: rgba(35, 30, 28, 0.72);
	backdrop-filter: blur(14px);
	color: var(--k-text-invert);
}

.k-header__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: none;
	text-decoration: none;
	color: inherit;
}

.k-header__mark {
	display: block;
	width: auto;
	height: 30px;
}

.k-header__name {
	font-size: var(--k-fs-sm);
	font-weight: 600;
	white-space: nowrap;
}

@media (max-width: 1300px) {
	/* The wordmark is the first thing to go when the bar gets tight — the
	   crown alone still identifies the brand. */
	.k-header__name { display: none; }
}

.k-nav__list {
	display: flex;
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--k-fs-sm);
	white-space: nowrap;
}

.k-nav__list a {
	text-decoration: none;
	opacity: 0.92;
}

.k-nav__list a:hover {
	opacity: 1;
}

.k-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-left: auto;
}

.k-header__phone {
	font-size: var(--k-fs-sm);
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.k-header__social {
	display: flex;
	gap: 0.35rem;
}

.k-icon-btn {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: var(--k-text-invert);
	font-size: var(--k-fs-xs);
	text-decoration: none;
}

.k-btn--sm {
	padding: 0.7rem 1.35rem;
	font-size: var(--k-fs-sm);
	font-weight: 600;
}

.k-burger {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: auto;
	border: 0;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	cursor: pointer;
}

.k-burger__line,
.k-burger__line::before,
.k-burger__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin-inline: auto;
	background: #fff;
	content: '';
}

.k-burger__line::before { transform: translateY(-6px); }
.k-burger__line::after  { transform: translateY(4px); }

.k-mobile-nav {
	max-width: var(--k-container);
	margin: var(--k-space-1) auto 0;
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-dark);
	color: var(--k-text-invert);
}

.k-mobile-nav__list {
	display: grid;
	gap: 0.85rem;
	margin: 0 0 var(--k-space-3);
	padding: 0;
	list-style: none;
}

.k-mobile-nav__list a { text-decoration: none; }

.k-mobile-nav__phone {
	display: block;
	margin-top: var(--k-space-2);
	font-size: var(--k-fs-md);
	text-decoration: none;
}

@media (max-width: 1100px) {
	.k-nav,
	.k-header__actions { display: none; }
	.k-burger { display: block; }
}

/* ---------- Pills ---------- */

.k-pill {
	display: inline-block;
	padding: 0.55rem 1.15rem;
	border-radius: var(--k-radius-round);
	background: var(--k-bg);
	font-size: var(--k-fs-sm);
}

.k-pill--glass {
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	color: var(--k-text-invert);
}

/* ---------- Hero ---------- */

.k-hero {
	position: relative;
	max-width: var(--k-container);
	margin: var(--k-space-2) auto 0;
	padding: clamp(4rem, 12vw, 8rem) var(--k-gutter) var(--k-space-3);
	border-radius: var(--k-radius);
	overflow: hidden;
	color: var(--k-text-invert);
	isolation: isolate;
	background: var(--k-darker);
}

.k-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.k-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.k-hero::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 16, 14, 0.55), rgba(20, 16, 14, 0.35));
	content: '';
}

.k-hero__inner {
	max-width: 54rem;
	margin-inline: auto;
	text-align: center;
}

.k-hero__title {
	margin-block: var(--k-space-3) var(--k-space-2);
	font-size: var(--k-fs-h1);
	font-weight: 400;
	color: var(--k-text-invert);
}

.k-hero__lead {
	max-width: 40rem;
	margin-inline: auto;
	color: var(--k-text-invert-soft);
}

.k-hero__actions {
	display: flex;
	gap: var(--k-space-2);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--k-space-4);
}

/* Inner pages: same banner, shorter, left-aligned. */
.k-hero--page {
	padding-block: clamp(3rem, 8vw, 5.5rem);
}

.k-hero--page .k-hero__inner {
	text-align: left;
	max-width: 48rem;
	margin-inline: 0;
}

.k-hero--page .k-hero__title {
	margin-block: 0;
	font-size: var(--k-fs-h2);
}

/* The centred hero lead carries auto side margins; left-aligned it read as a
   random indent under the heading. */
.k-hero--page .k-hero__lead {
	max-width: 44rem;
	margin: var(--k-space-2) 0 0;
}

/* The trail needs air under it: pressed against the type list it read as
   part of the same control. */
.k-crumbs {
	padding-top: var(--k-space-3);
	padding-bottom: var(--k-space-2);
}

.k-crumbs .k-breadcrumbs { margin-bottom: 0; }

.k-hero__features {
	display: grid;
	gap: var(--k-space-2);
	margin-top: clamp(3rem, 9vw, 6rem);
}

@media (min-width: 860px) {
	.k-hero__features { grid-template-columns: repeat(3, 1fr); }
}

.k-feature {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.75rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--k-radius-sm);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	font-size: var(--k-fs-sm);
}

.k-feature__img {
	width: 62px;
	height: 52px;
	border-radius: 10px;
	object-fit: cover;
	flex: none;
}

.k-feature__plus { opacity: 0.7; }
.k-feature__text { margin: 0; }

/* ---------- Section heads ---------- */

.k-section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--k-space-2);
	margin-bottom: var(--k-space-4);
}

.k-section__head h2 { margin: 0; }

.k-section__note,
.k-section__aside {
	max-width: 32rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-section__head--split { align-items: flex-start; }
.k-section__head--split h2 { max-width: 34rem; }

.k-center { text-align: center; }

/* ---------- Catalog grid ---------- */

.k-cat-grid {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.k-cat-card {
	display: flex;
	flex-direction: column;
	padding: 1.1rem;
	border-radius: var(--k-radius);
	background: var(--k-bg);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease;
}

.k-cat-card:hover { transform: translateY(-2px); }

.k-cat-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.k-cat-card__title {
	font-size: var(--k-fs-md);
	line-height: 1.2;
}

.k-cat-card__arrow {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	flex: none;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: #fff;
	font-size: var(--k-fs-sm);
}

.k-cat-card__price {
	margin-top: 0.35rem;
	font-size: var(--k-fs-xs);
	color: var(--k-brand);
}

.k-cat-card__media {
	display: block;
	margin-top: 0.9rem;
	border-radius: var(--k-radius-sm);
	overflow: hidden;
}

.k-cat-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* ---------- Bento USP grid ---------- */

.k-bento {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Сетка под карточки с абзацем, а не с одной строкой: в колонке 268 пикселей
   текст на 250 знаков ложится по 28 знаков в строку и читается тяжело. */
.k-bento--wide { grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr)); }

.k-usp {
	position: relative;
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-usp__num {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-bottom: 0.9rem;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: #fff;
	font-size: var(--k-fs-xs);
}

.k-usp__title {
	margin: 0 0 0.35rem;
	font-family: var(--k-font-display);
	font-size: var(--k-fs-md);
	font-weight: 600;
	color: var(--k-heading);
}

.k-usp__text {
	margin: 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-usp--dark {
	background: var(--k-dark);
	color: var(--k-text-invert);
}

.k-usp--dark .k-usp__title { color: var(--k-text-invert); }
.k-usp--dark .k-usp__text  { color: var(--k-text-invert-soft); }

.k-usp--brand {
	background: var(--k-brand);
	color: var(--k-text-invert);
}

.k-usp--brand .k-usp__title { color: var(--k-text-invert); }
.k-usp--brand .k-usp__text  { color: rgba(255, 255, 255, 0.9); }
.k-usp--brand .k-usp__num   { background: rgba(255, 255, 255, 0.25); }

@media (min-width: 960px) {
	.k-usp--tall { grid-row: span 2; }
	.k-usp--wide { grid-column: span 2; }
}

/* ---------- Brand form box ---------- */

.k-measure__form,
.k-cta__box {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--k-radius);
	background: var(--k-brand);
	color: var(--k-text-invert);
}

.k-form--on-brand .k-form__title { color: var(--k-text-invert); }
.k-form--on-brand .k-form__text,
.k-form--on-brand .k-consent { color: rgba(255, 255, 255, 0.92); }
.k-form--on-brand .k-consent a { color: #fff; }
.k-form--on-brand .k-btn { background: var(--k-dark); }
.k-form--on-brand .k-btn:hover { background: #000; }
.k-form--on-brand .k-form__message { color: #fff; }
.k-form--on-brand .k-form__message--error { color: #ffe2da; }

/* ---------- Trust figures (wholesale) ---------- */

.k-facts {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.k-fact {
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-fact__value {
	display: block;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.05;
	color: var(--k-brand);
	overflow-wrap: anywhere;
}

.k-fact__value--sm { font-size: var(--k-fs-xl); }

.k-fact__label {
	display: block;
	margin-top: 0.25rem;
	font-size: var(--k-fs-sm);
	font-weight: 600;
}

.k-fact__text {
	margin: 0.6rem 0 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-fact--inn { border: 1px solid var(--k-border); }

/* ---------- Team ---------- */

.k-person {
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-person__name {
	display: block;
	font-size: var(--k-fs-lg);
}

.k-person__role {
	display: block;
	margin-top: 0.35rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-note {
	margin-top: var(--k-space-3);
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* ---------- Segments ---------- */

.k-segment {
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-segment__title { font-size: var(--k-fs-md); }

.k-segment__text {
	margin: 0;
	font-size: var(--k-fs-sm);
	color: var(--k-brand);
}

/* ---------- FAQ ---------- */

.k-faq {
	display: grid;
	gap: var(--k-space-2);
	margin-top: var(--k-space-4);
}

@media (min-width: 860px) {
	.k-faq { grid-template-columns: repeat(2, 1fr); align-items: start; }
}

.k-faq__item {
	padding: 1.15rem var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--k-space-2);
	cursor: pointer;
	list-style: none;
	font-size: var(--k-fs-base);
}

.k-faq__q::-webkit-details-marker { display: none; }

.k-faq__toggle {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: #fff;
	font-size: var(--k-fs-md);
	transition: transform 0.15s ease;
}

.k-faq__item[open] .k-faq__toggle { transform: rotate(45deg); }

.k-faq__a {
	margin-top: var(--k-space-2);
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* ---------- Final CTA ---------- */

.k-cta { padding-block: clamp(2.5rem, 6vw, 4rem); }

.k-cta__box {
	display: grid;
	gap: var(--k-space-4);
}

@media (min-width: 900px) {
	.k-cta__box { grid-template-columns: 1fr 1fr; align-items: center; }
}

.k-cta__title {
	color: var(--k-text-invert);
	font-size: var(--k-fs-h2);
}

.k-cta__text p { color: rgba(255, 255, 255, 0.92); margin: 0; }

/* ---------- Footer ---------- */

.k-footer { padding-bottom: var(--k-space-4); }

.k-footer__box {
	padding: clamp(1.75rem, 5vw, 3rem);
	border-radius: var(--k-radius);
	background: var(--k-dark);
	color: var(--k-text-invert);
}

.k-footer__cols {
	display: grid;
	gap: var(--k-space-4);
}

@media (min-width: 860px) {
	.k-footer__cols { grid-template-columns: 1fr 2fr 1.2fr; }
}

.k-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.k-footer__mark {
	display: block;
	width: auto;
	height: 46px;
}

.k-footer__name { color: var(--k-brand); font-size: var(--k-fs-sm); }

.k-footer__label {
	margin-bottom: var(--k-space-2);
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

.k-footer__list {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.k-footer__list a { text-decoration: none; }

.k-footer__contacts { display: grid; gap: 0.6rem; justify-items: start; }

.k-footer__phone {
	font-size: var(--k-fs-xl);
	text-decoration: none;
}

.k-footer__email { text-decoration: none; color: var(--k-text-invert-soft); }

.k-footer__contacts .k-pill {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--k-text-invert-soft);
	font-size: var(--k-fs-xs);
}

/* Deliberately the quietest thing in the footer: these pages are here to be
   crawled, not to pull a reader out of the page they are on. */
.k-footer__districts {
	margin-top: var(--k-space-4);
	padding-top: var(--k-space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.k-footer__districts .k-footer__label { margin-bottom: 0.75rem; }

.k-footer__districts-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--k-fs-xs);
}

.k-footer__districts-list a {
	color: var(--k-text-soft);
	text-decoration: none;
}

.k-footer__districts-list a:hover { color: var(--k-text-invert-soft); }

.k-footer__label--inline {
	margin: var(--k-space-2) 0 0.5rem;
	font-size: var(--k-fs-xs);
}

.k-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--k-space-2);
	margin-top: var(--k-space-4);
	padding-top: var(--k-space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

.k-footer__bottom p { margin: 0; }

.k-footer__tail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--k-space-2);
	margin-top: var(--k-space-3);
	font-size: var(--k-fs-xs);
	color: var(--k-text-muted);
}

.k-footer__tail a { text-decoration: none; }

/* ---------- Divider ---------- */

/* Space on both sides: inside the wholesale catalog the next row of tiles
   was sitting on the rule. */
.k-divider {
	max-width: var(--k-container);
	margin: var(--k-space-4) auto;
	border: 0;
	border-top: 1px solid var(--k-border);
}

/* A section that continues the one above rather than opening a new topic. */
.k-section--tight { padding-top: var(--k-space-3); }

/* ---------- Product type navigation ---------- */

.k-catalog-layout { display: grid; gap: var(--k-space-3); }

@media (min-width: 1000px) {
	.k-catalog-layout {
		grid-template-columns: 250px minmax(0, 1fr);
		gap: var(--k-space-4);
		align-items: start;
	}

	/* The list follows the visitor down a long category page. */
	.k-catnav--aside { position: sticky; top: 90px; }
}

.k-catnav__list {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.k-catnav__item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.4rem 0.75rem 0.4rem 0.4rem;
	border: 1px solid transparent;
	border-radius: var(--k-radius-sm);
	background: var(--k-bg);
	font-size: var(--k-fs-sm);
	line-height: 1.2;
	text-decoration: none;
	color: var(--k-text);
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.k-catnav__item:hover { border-color: var(--k-brand); }

.k-catnav__item.is-active {
	background: var(--k-brand);
	border-color: var(--k-brand);
	color: #fff;
}

.k-catnav__thumb {
	display: block;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 8px;
	overflow: hidden;
	background: var(--k-bg-alt);
}

.k-catnav__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.k-catnav__name { flex: 1; }

.k-catnav__count {
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

.k-catnav__item.is-active .k-catnav__count { color: rgba(255, 255, 255, 0.8); }

.k-catnav__item--all {
	padding-block: 0.75rem;
	padding-left: 0.9rem;
	font-weight: 600;
}

/* ---------- Collapsed state ---------- */

.k-catnav__toggle {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-sm);
	background: var(--k-bg);
	font: inherit;
	font-size: var(--k-fs-sm);
	font-weight: 600;
	color: var(--k-text);
	cursor: pointer;
}

.k-catnav__toggle-icon {
	position: relative;
	width: 16px;
	height: 2px;
	flex: none;
	background: currentColor;
}

.k-catnav__toggle-icon::before,
.k-catnav__toggle-icon::after {
	position: absolute;
	left: 0;
	width: 16px;
	height: 2px;
	background: currentColor;
	content: '';
}

.k-catnav__toggle-icon::before { top: -5px; }
.k-catnav__toggle-icon::after  { top: 5px; }

.k-catnav__toggle[aria-expanded='true'] + .k-catnav__list { display: grid; }

/* The product page has no room for a third column, so its list stays behind
   the toggle at every width. */
.k-catnav--inline { margin-bottom: var(--k-space-3); }
.k-catnav--inline .k-catnav__toggle { display: flex; }
.k-catnav--inline .k-catnav__list { display: none; margin-top: 0.5rem; }

@media (min-width: 700px) {
	.k-catnav--inline .k-catnav__list {
		grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	}
}

@media (max-width: 999px) {
	.k-catnav--aside .k-catnav__toggle { display: flex; }
	.k-catnav--aside .k-catnav__list { display: none; margin-top: 0.5rem; }
}

@media (min-width: 700px) and (max-width: 999px) {
	.k-catnav--aside .k-catnav__toggle[aria-expanded='true'] + .k-catnav__list {
		grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	}
}

/* ---------- Photo panel with numbered cards ---------- */

.k-showcase {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 12vw, 9rem);
	padding: clamp(1.75rem, 4vw, 2.75rem);
	border-radius: var(--k-radius);
	overflow: hidden;
	isolation: isolate;
	background: var(--k-dark);
	color: var(--k-text-invert);
}

.k-showcase__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.k-showcase__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.k-showcase::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 16, 14, 0.5), rgba(20, 16, 14, 0.72));
	content: '';
}

.k-showcase__title {
	margin: 0;
	color: var(--k-text-invert);
	font-size: var(--k-fs-h2);
	font-weight: 400;
}

.k-showcase__cards {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.k-showcase__card {
	padding: var(--k-space-3);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--k-radius-sm);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
}

.k-showcase__num {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: var(--k-space-2);
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: #fff;
	font-size: var(--k-fs-xs);
}

.k-showcase__card-title {
	margin-bottom: 0.5rem;
	color: var(--k-text-invert);
	font-size: var(--k-fs-md);
}

.k-showcase__card-text {
	margin: 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-invert-soft);
}

/* The measure form no longer shares a row with the steps, so it spreads
   across the container instead of leaving a column of empty space beside it. */
@media (min-width: 900px) {
	.k-form--wide {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--k-space-3);
		align-items: start;
	}

	.k-form--wide > .k-form__title,
	.k-form--wide > .k-form__text,
	.k-form--wide > .k-consent,
	.k-form--wide > .k-form__message { grid-column: 1 / -1; }

	.k-form--wide > .k-form__title { max-width: 30rem; }
	.k-form--wide > .k-form__text { max-width: 38rem; }

	.k-form--wide > .k-btn {
		grid-column: 1 / -1;
		justify-self: start;
		min-width: 16rem;
	}
}

/* ---------- Editable page content ---------- */

.k-page__content {
	max-width: 52rem;
	font-size: var(--k-fs-base);
}

.k-page__content--narrow { max-width: 46rem; }

.k-page__content > * + * { margin-top: var(--k-space-2); }

.k-page__content h2 {
	margin-top: var(--k-space-4);
	font-size: var(--k-fs-xl);
}

.k-page__content h3 {
	margin-top: var(--k-space-3);
	font-size: var(--k-fs-md);
}

/* Long articles nest one level deeper than a landing page ever does. */
.k-page__content h4 {
	margin-top: var(--k-space-3);
	font-size: var(--k-fs-base);
	font-weight: 600;
}

.k-page__content ul,
.k-page__content ol { padding-left: 1.25rem; }

.k-page__content li + li { margin-top: 0.4rem; }

.k-page__content a { color: var(--k-brand); }

.k-lead {
	font-size: var(--k-fs-md);
	color: var(--k-text-muted);
}

.k-tel { white-space: nowrap; }

/* ---------- Rails ---------- */

/* Room above the row for the controls, without pushing the section down. */
.k-rail-wrap {
	position: relative;
	padding-top: 3.25rem;
	margin-top: -3.25rem;
}

.k-rail {
	margin-inline: calc(var(--k-gutter) * -1);
	padding-inline: var(--k-gutter);
	overflow-x: auto;
	/* Without this the box scrolls vertically too — by the few pixels the card
	   shadows add — and on a phone a swipe down nudges the row instead of the
	   page. The padding keeps those shadows visible now that the box clips. */
	overflow-y: hidden;
	padding-block: 4px;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	cursor: grab;
	/* No visible slider: the row is dragged, not scrubbed. */
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.k-rail::-webkit-scrollbar { display: none; }

.k-rail.is-grabbing { cursor: grabbing; scroll-behavior: auto; }

.k-rail__track {
	display: flex;
	gap: var(--k-space-2);
	align-items: stretch;
	width: max-content;
	padding-bottom: 0.35rem;
}

.k-rail__track > * {
	flex: 0 0 min(320px, 82vw);
	scroll-snap-align: start;
}

.k-rail--wide .k-rail__track > * { flex-basis: min(720px, 90vw); }

/* Sitting on the row itself, an arrow covered the first card's text. They
   ride above it instead, level with the section heading. */
.k-rail__arrow {
	position: absolute;
	bottom: calc(100% + 0.75rem);
	z-index: 2;
	display: none;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-round);
	background: var(--k-bg);
	color: var(--k-text);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.k-rail__arrow:hover { border-color: var(--k-brand); color: var(--k-brand); }

.k-rail__arrow[hidden] { visibility: hidden; }
.k-rail__arrow--prev { right: 48px; }
.k-rail__arrow--next { right: 0; }

@media (min-width: 700px) {
	.k-rail__arrow { display: grid; }
}

/* ---------- Case cards ---------- */

.k-case-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.15s ease;
}

.k-case-card:hover { transform: translateY(-2px); }

.k-case-card__media {
	position: relative;
	display: block;
}

.k-case-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.k-case-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin-top: 0.6rem;
}

.k-tag {
	padding: 0.25rem 0.6rem;
	border-radius: var(--k-radius-round);
	background: rgba(20, 16, 14, 0.72);
	color: #fff;
	font-size: var(--k-fs-xs);
	line-height: 1.2;
	white-space: nowrap;
}

.k-case-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: var(--k-space-3);
}

.k-case-card__excerpt {
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-case-card__more {
	margin-top: auto;
	padding-top: 0.5rem;
	font-size: var(--k-fs-sm);
	color: var(--k-brand);
}

/* The wide card is a landscape panel: heading and copy on the left, the
   photograph inset on the right, on a dark ground. */
/* A fixed height keeps the row even, so the body has to be told it may
   shrink — otherwise the text overflowed and the card clipped it mid-line. */
.k-case-card--wide {
	flex-direction: row;
	align-items: stretch;
	height: 300px;
	padding: var(--k-space-3);
	gap: var(--k-space-3);
	border-radius: var(--k-radius);
	background: #3a3634;
	color: var(--k-text-invert);
}

.k-case-card--wide .k-case-card__body {
	flex: 1 1 50%;
	min-width: 0;
	min-height: 0;
	padding: var(--k-space-2) 0 var(--k-space-2) var(--k-space-2);
	overflow: hidden;
}

.k-case-card--wide .k-case-card__title {
	flex: 0 0 auto;
	font-family: var(--k-font-display);
	font-size: var(--k-fs-lg);
	font-weight: 600;
	line-height: 1.25;
	color: var(--k-text-invert);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* The description takes whatever room the heading leaves and no more. */
.k-case-card--wide .k-case-card__excerpt {
	flex: 0 1 auto;
	min-height: 0;
	color: var(--k-text-invert-soft);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.k-case-card--wide .k-case-card__tags,
.k-case-card--wide .k-case-card__more { flex: 0 0 auto; }

.k-case-card--wide .k-tag {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.k-case-card--wide .k-case-card__more { color: #ff9b78; }

.k-case-card--wide .k-case-card__media {
	flex: 1 1 50%;
	min-width: 0;
	border-radius: var(--k-radius-sm);
	overflow: hidden;
}

.k-case-card--wide .k-case-card__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
}

/* Under this width the card stacks, and the heading alone carries it. */
@media (max-width: 900px) {
	.k-case-card--wide .k-case-card__excerpt { display: none; }
}

@media (max-width: 700px) {
	.k-case-card--wide {
		flex-direction: column;
		height: auto;
	}

	.k-case-card--wide .k-case-card__media { flex: none; height: 180px; }
	.k-case-card--wide .k-case-card__body { padding: 0 0 var(--k-space-2); }
}

/* ---------- Timeline ---------- */

.k-timeline {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.k-timeline__item {
	position: relative;
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-timeline__year {
	position: relative;
	display: inline-block;
	margin-bottom: var(--k-space-2);
	padding: 0.35rem 0.85rem;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: #fff;
	font-size: var(--k-fs-xs);
}

.k-timeline__title { font-size: var(--k-fs-md); }

.k-timeline__text {
	margin: 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* ---------- Team groups ---------- */

.k-person--group .k-person__role {
	order: -1;
	margin-top: 0;
	margin-bottom: 0.35rem;
	color: var(--k-brand);
	font-size: var(--k-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.k-person--group { display: flex; flex-direction: column; }

.k-person__text {
	margin: var(--k-space-2) 0 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* ---------- Documents and guarantees ---------- */

.k-official {
	display: grid;
	gap: var(--k-space-2);
}

@media (min-width: 1000px) {
	.k-official { grid-template-columns: 1.15fr 1fr 1fr; align-items: start; }
}

.k-official__intro {
	display: flex;
	flex-direction: column;
	gap: var(--k-space-4);
	padding-right: var(--k-space-3);
}

.k-official__title {
	margin: 0;
	font-size: var(--k-fs-h2);
	line-height: 1.1;
}

.k-official__promises {
	display: grid;
	gap: var(--k-space-3);
}

.k-promise {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
}

.k-promise__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: var(--k-radius-round);
	background: rgba(226, 92, 51, 0.12);
	color: var(--k-brand);
}

.k-promise__title {
	margin: 0 0 0.25rem;
	font-size: var(--k-fs-md);
	line-height: 1.25;
}

.k-promise__text {
	margin: 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-doccard {
	display: flex;
	flex-direction: column;
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
	box-shadow: 0 10px 30px rgba(20, 16, 14, 0.06);
}

.k-doccard__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--k-space-2);
	margin-bottom: var(--k-space-3);
}

.k-doccard__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: none;
	border-radius: 14px;
	background: rgba(226, 92, 51, 0.12);
	color: var(--k-brand);
}

.k-doccard__eyebrow {
	max-width: 12rem;
	font-size: var(--k-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.35;
	text-align: right;
	color: var(--k-text-soft);
}

.k-doccard__title { font-size: var(--k-fs-xl); margin-bottom: 0.5rem; }

.k-doccard__text {
	margin: 0 0 var(--k-space-3);
	padding-bottom: var(--k-space-3);
	border-bottom: 1px solid var(--k-border);
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-doccard__list {
	display: grid;
	gap: var(--k-space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.k-doccard__list li {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding-left: 2rem;
}

/* An orange tick, drawn rather than typed, so it lines up with the text. */
.k-doccard__list li::before {
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 1.15rem;
	height: 1.15rem;
	background: var(--k-brand);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5 9.5 18 20 6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5 9.5 18 20 6'/%3E%3C/svg%3E") center / contain no-repeat;
	content: '';
}

.k-doccard__name { font-weight: 600; font-size: var(--k-fs-sm); }

.k-doccard__note {
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-official__foot {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: var(--k-space-2);
	padding: var(--k-space-3);
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

/* ---------- Contact cards ---------- */

.k-contacts {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.k-contact {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease;
}

a.k-contact:hover { transform: translateY(-2px); }

.k-contact--accent {
	background: var(--k-brand);
	color: var(--k-text-invert);
}

.k-contact__label {
	font-size: var(--k-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--k-text-soft);
}

.k-contact--accent .k-contact__label,
.k-contact--accent .k-contact__note { color: rgba(255, 255, 255, 0.85); }

.k-contact__value {
	font-size: var(--k-fs-lg);
	line-height: 1.15;
	white-space: nowrap;
}

.k-contact__value--sm {
	font-size: var(--k-fs-md);
	word-break: break-word;
}

.k-contact__note {
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-messengers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-top: var(--k-space-3);
}

.k-messengers__label {
	margin-right: 0.25rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* ---------- Tag rows ---------- */

.k-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.k-legal {
	display: grid;
	gap: var(--k-space-4);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--k-radius);
	background: var(--k-bg);
	box-shadow: var(--k-shadow);
}

@media (min-width: 800px) {
	.k-legal { grid-template-columns: 1fr 1.2fr; align-items: start; }
}

.k-legal__title { margin: 0 0 0.5rem; font-size: var(--k-fs-h2); }

.k-legal__text {
	max-width: 28rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

.k-legal__rows { margin: 0; }

.k-legal__row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	justify-content: space-between;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--k-border);
}

.k-legal__row:first-child { padding-top: 0; }
.k-legal__row:last-child { border-bottom: 0; padding-bottom: 0; }

.k-legal__row dt {
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-legal__row dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}

.k-legal__row a { color: inherit; }

/* ---------- Scroll reveal ---------- */

/* Hidden only when the script is running, so a failed or blocked script can
   never leave the page blank. */
.k-js [data-korona-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	transition-delay: var(--k-reveal-delay, 0ms);
	will-change: opacity, transform;
}

.k-js [data-korona-reveal].is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.k-js [data-korona-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---------- Audience switch bar ---------- */

/* On the banner the switch competed with the photo behind it. */
.k-switch-bar {
	display: flex;
	justify-content: center;
	margin-top: var(--k-space-3);
}

.k-switch-bar .k-switch {
	background: var(--k-bg);
	border: 1px solid var(--k-border);
}

.k-switch-bar .k-switch__btn { color: var(--k-text-muted); }

.k-switch-bar .k-switch__btn.is-active {
	background: var(--k-brand);
	color: #fff;
}

.k-theme--dark .k-switch-bar .k-switch { background: rgba(255, 255, 255, 0.08); }
.k-theme--dark .k-switch-bar .k-switch__btn { color: var(--k-text-muted); }

/* ---------- Selling tiles ---------- */

.k-icon {
	width: 22px;
	height: 22px;
	display: block;
}

.k-usp__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: var(--k-space-2);
	border-radius: 12px;
	background: var(--k-brand);
	color: #fff;
}

.k-usp--brand .k-usp__icon {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.k-usp__swatch {
	display: block;
	width: 88px;
	height: 42px;
	margin-bottom: var(--k-space-2);
	border-radius: 10px;
	overflow: hidden;
}

.k-usp__swatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* A tile over a photo: the copy has to stay readable at any crop. */
.k-usp--photo {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color: var(--k-text-invert);
}

.k-usp__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.k-usp__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.k-usp--photo::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 16, 14, 0.55), rgba(20, 16, 14, 0.82));
	content: '';
}

.k-usp--photo .k-usp__title { color: var(--k-text-invert); }
.k-usp--photo .k-usp__text  { color: var(--k-text-invert-soft); }

.k-usp__inline {
	display: block;
	margin-top: var(--k-space-3);
	border-radius: var(--k-radius-sm);
	overflow: hidden;
}

.k-usp__inline img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.k-usp--tall { display: flex; flex-direction: column; }
.k-usp--tall .k-usp__inline { margin-top: auto; }

/* The case gallery, inside its dialog. */
.k-popup__gallery {
	display: grid;
	gap: 0.6rem;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	margin-top: var(--k-space-3);
}

.k-popup__shot {
	margin: 0;
	border-radius: var(--k-radius-sm);
	overflow: hidden;
	background: var(--k-bg-alt);
}

.k-popup__shot img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* ---------- Promotion strip ---------- */

.k-promo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--k-space-2) var(--k-space-4);
	padding: var(--k-space-3) clamp(1.25rem, 4vw, 2.5rem);
	border-radius: var(--k-radius);
	background: var(--k-brand);
	color: var(--k-text-invert);
}

.k-promo__body { display: flex; flex-direction: column; }

.k-promo__value {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	line-height: 1.1;
}

.k-promo__label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--k-fs-sm);
	color: rgba(255, 255, 255, 0.9);
}

.k-promo__info {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--k-radius-round);
	background: none;
	color: inherit;
	font: inherit;
	font-size: var(--k-fs-xs);
	line-height: 1;
	cursor: pointer;
}

.k-promo__terms {
	flex-basis: 100%;
	order: 3;
	margin: 0;
	font-size: var(--k-fs-sm);
	color: rgba(255, 255, 255, 0.92);
}

.k-promo .k-btn {
	margin-left: auto;
	background: var(--k-dark);
}

.k-promo .k-btn:hover { background: #000; }

/* ---------- People ---------- */

.k-person--photo { display: flex; flex-direction: column; }

.k-person__media {
	display: block;
	margin-bottom: var(--k-space-2);
	border-radius: var(--k-radius-sm);
	overflow: hidden;
	background: var(--k-bg-alt);
}

.k-person__media img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.k-faces {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: var(--k-space-2);
}

.k-face {
	margin: 0;
	width: 72px;
	text-align: center;
}

.k-face img {
	display: block;
	width: 72px;
	height: 88px;
	border-radius: 10px;
	object-fit: cover;
	background: var(--k-bg-alt);
}

.k-face__name {
	margin-top: 0.35rem;
	font-size: var(--k-fs-xs);
	color: var(--k-text-muted);
}

.k-callout {
	margin-top: var(--k-space-3);
	padding: var(--k-space-3);
	border-left: 3px solid var(--k-brand);
	border-radius: var(--k-radius-sm);
	background: var(--k-bg);
	font-size: var(--k-fs-sm);
}

/* ---------- Client segments with a photo ---------- */

.k-segment--photo {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
}

.k-segment__media { display: block; }

.k-segment__media img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.k-segment--photo:hover .k-segment__media img { transform: scale(1.04); }
.k-segment--photo .k-segment__media { overflow: hidden; }

.k-segment--photo .k-segment__title { margin: var(--k-space-3) var(--k-space-3) 0.35rem; }
.k-segment--photo .k-segment__text  { margin: 0 var(--k-space-3) var(--k-space-3); }

/* ---------- Quiz ---------- */

.k-quiz {
	padding: clamp(1.5rem, 5vw, 3rem);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-quiz__title { font-size: var(--k-fs-xl); }

.k-quiz__lead {
	max-width: 42rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-quiz__bar {
	height: 4px;
	margin-top: var(--k-space-3);
	border-radius: var(--k-radius-round);
	background: var(--k-bg-alt);
	overflow: hidden;
}

.k-quiz__bar-fill {
	display: block;
	width: 20%;
	height: 100%;
	background: var(--k-brand);
	transition: width 0.25s ease;
}

.k-quiz__counter {
	display: block;
	margin-top: 0.5rem;
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

.k-quiz__step {
	display: none;
	margin: var(--k-space-4) 0 0;
	padding: 0;
	border: 0;
}

.k-quiz__step.is-active { display: block; }

.k-quiz__question {
	padding: 0;
	font-family: var(--k-font-display);
	font-size: var(--k-fs-lg);
	line-height: 1.25;
}

.k-quiz__hint {
	margin: 0.4rem 0 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

.k-quiz__options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: var(--k-space-3);
}

.k-quiz__option {
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-round);
	background: var(--k-bg-alt);
	font: inherit;
	font-size: var(--k-fs-sm);
	color: var(--k-text);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.k-quiz__option:hover { border-color: var(--k-brand); }

.k-quiz__option[aria-pressed='true'] {
	background: var(--k-brand);
	border-color: var(--k-brand);
	color: #fff;
}

.k-quiz__summary {
	max-width: 46rem;
	margin-bottom: var(--k-space-3);
	font-size: var(--k-fs-md);
	line-height: 1.5;
}

.k-quiz__nav {
	display: flex;
	gap: 0.75rem;
	margin-top: var(--k-space-4);
}

.k-btn--ghost {
	background: transparent;
	border: 1px solid var(--k-border);
	color: var(--k-text);
}

.k-btn--ghost:hover { border-color: var(--k-brand); background: transparent; }

@media (min-width: 700px) {
	.k-form--quiz {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--k-space-3);
	}

	.k-form--quiz > .k-consent,
	.k-form--quiz > .k-form__message,
	.k-form--quiz > .k-btn { grid-column: 1 / -1; }

	.k-form--quiz > .k-btn { justify-self: start; min-width: 16rem; }
}

.k-theme--dark .k-quiz__option { background: rgba(255, 255, 255, 0.06); }
.k-theme--dark .k-quiz__bar { background: rgba(255, 255, 255, 0.1); }

/* ---------- Bigger audience switch ---------- */

.k-switch-bar .k-switch { padding: 5px; }

.k-switch-bar .k-switch__btn {
	padding: 0.85rem 1.9rem;
	font-size: var(--k-fs-base);
	font-weight: 500;
}

/* ---------- Current page in the menu ---------- */

.k-nav__list .is-current > a,
.k-mobile-nav__list .is-current > a {
	opacity: 1;
	font-weight: 600;
	color: var(--k-brand-light, #ff8f6b);
}

.k-nav__list .is-current > a { position: relative; }

.k-nav__list .is-current > a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: '';
}

/* ---------- District pills ---------- */

.k-tags .k-pill {
	transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.k-tags .k-pill:hover {
	transform: translateY(-2px);
	background: var(--k-brand);
	color: #fff;
}

/* ---------- Delivery calculator ---------- */

.k-shipcalc {
	display: grid;
	gap: var(--k-space-3);
	padding: clamp(1.25rem, 4vw, 2.25rem);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

@media (min-width: 860px) {
	.k-shipcalc { grid-template-columns: 1.3fr 1fr; align-items: center; }
}

.k-shipcalc__label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

.k-shipcalc__range {
	width: 100%;
	accent-color: var(--k-brand);
}

.k-shipcalc__scale {
	display: flex;
	justify-content: space-between;
	margin-top: 0.35rem;
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

.k-shipcalc__out {
	padding: var(--k-space-3);
	border-radius: var(--k-radius-sm);
	background: var(--k-bg-alt);
	text-align: center;
}

.k-shipcalc__value {
	display: block;
	font-size: clamp(1.75rem, 5vw, 2.5rem);
	line-height: 1.1;
	color: var(--k-brand);
}

.k-shipcalc__note {
	display: block;
	margin-top: 0.5rem;
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

/* ---------- Team cards ---------- */

.k-crew__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 1rem;
	margin: var(--k-space-5) 0 0.35rem;
}

.k-crew__group {
	margin: 0;
	font-size: var(--k-fs-xl);
}

.k-crew__motto {
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

/* Pushed to the far right, with a rule leading to it. */
.k-crew__aside {
	margin-left: auto;
	padding-left: 4rem;
	position: relative;
	font-size: var(--k-fs-xs);
	text-transform: lowercase;
	color: var(--k-text-soft);
}

.k-crew__aside::before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 3rem;
	height: 1px;
	background: var(--k-brand);
	content: '';
}

.k-crew__text {
	max-width: 46rem;
	margin: 0 0 var(--k-space-3);
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* Wider cards: the portraits were reading as thumbnails. */
.k-crew {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

@media (min-width: 1100px) {
	.k-crew { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* A figure carries a 40px browser margin on each side, which was eating
   80px out of every column and shrinking the portrait to fit what was left. */
.k-crew__card {
	display: flex;
	flex-direction: column;
	margin: 0;
	border-radius: var(--k-radius);
	overflow: hidden;
	background: var(--k-bg);
	transition: transform 0.15s ease;
}

.k-crew__card:hover { transform: translateY(-2px); }

.k-crew__media { display: block; }

.k-crew__media img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	object-position: center 12%;
	background: var(--k-bg-alt);
}

.k-crew__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: var(--k-space-3);
}

.k-crew__who { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }

.k-crew__name {
	font-family: var(--k-font-display);
	font-size: var(--k-fs-lg);
	font-weight: 600;
	line-height: 1.15;
}

.k-crew__role {
	font-size: var(--k-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--k-brand);
}

.k-crew__go {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	flex: none;
	border-radius: var(--k-radius-round);
	background: var(--k-bg-alt);
	color: var(--k-brand);
	font-size: var(--k-fs-sm);
}

/* ---------- Review platforms ---------- */

.k-platforms {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.k-platform {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
	box-shadow: 0 8px 26px rgba(20, 16, 14, 0.06);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.k-platform:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(20, 16, 14, 0.1);
}

.k-platform__head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
}

.k-platform .k-brand {
	width: 46px;
	height: 46px;
	border-radius: 13px;
}



.k-platform__id {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.k-platform__name {
	font-family: var(--k-font-display);
	font-size: var(--k-fs-md);
	font-weight: 600;
	color: var(--k-heading);
}

.k-platform__tagline {
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

.k-platform__go {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: var(--k-bg-alt);
	color: var(--k-brand);
	font-size: var(--k-fs-sm);
}

.k-platform__score {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: var(--k-space-2);
}

.k-platform__value {
	font-family: var(--k-font-display);
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 600;
	line-height: 1;
	color: var(--k-brand);
}

.k-platform__stars {
	color: #f5a623;
	font-size: var(--k-fs-md);
	letter-spacing: 0.06em;
}

.k-platform__stars-off { color: var(--k-border); }

.k-platform__count {
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-platform__note {
	margin-top: 0.4rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

.k-platform__more {
	margin-top: auto;
	padding-top: var(--k-space-2);
	font-size: var(--k-fs-sm);
	font-weight: 600;
	color: var(--k-brand);
}

/* ---------- Brand marks ---------- */

.k-header__social .k-icon-btn {
	width: auto;
	height: auto;
	padding: 0;
	background: none;
	border-radius: var(--k-radius-round);
	overflow: hidden;
}

.k-header__social .k-brand {
	width: 34px;
	height: 34px;
	border-radius: var(--k-radius-round);
}


.k-brand {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 11px;
	overflow: hidden;
}

/* The glyph sits inside the tile rather than running to its edge. */
.k-brand svg {
	width: 62%;
	height: 62%;
	display: block;
}

/* The supplied icons carry their own background and corners; the tile only
   frames them. */
.k-brand--art { border-radius: 0; }

.k-brand--art img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Avito's mark is drawn on white, so it needs an edge to sit on a white card. */
.k-social .k-brand[style*="#ffffff"],
.k-platform .k-brand[style*="#ffffff"] { box-shadow: inset 0 0 0 1px var(--k-border); }

/* ---------- Messenger buttons ---------- */

.k-messengers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-top: var(--k-space-3);
}

.k-messengers__label {
	margin-right: 0.25rem;
	font-size: var(--k-fs-md);
	color: var(--k-text-muted);
}

.k-chan {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 1.6rem 0.6rem 0.65rem;
	border-radius: var(--k-radius-round);
	color: #fff;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.k-chan:hover { transform: translateY(-2px); }

.k-chan .k-brand {
	width: 36px;
	height: 36px;
}

/* A drawn glyph is white, so on the coloured pill it takes a translucent
   tile. A real icon carries its own colour — near enough the button's own —
   so it needs a solid one to stand on. */
.k-chan .k-brand:not(.k-brand--art) { background: rgba(255, 255, 255, 0.22) !important; }

.k-chan .k-brand--art {
	background: #fff;
	border-radius: 12px;
	padding: 4px;
}

.k-chan__label {
	font-size: var(--k-fs-lg);
	font-weight: 500;
}

.k-chan__go { font-size: var(--k-fs-md); opacity: 0.85; }

.k-chan--telegram {
	background: linear-gradient(120deg, #2aabee, #229ed9);
	box-shadow: 0 10px 24px rgba(34, 158, 217, 0.28);
}

.k-chan--max {
	background: linear-gradient(120deg, #4d2fa8, #2b1663);
	box-shadow: 0 10px 24px rgba(45, 22, 99, 0.3);
}

/* ---------- Social links ---------- */

.k-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: var(--k-space-3);
}

.k-social {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.5rem 1.35rem 0.5rem 0.55rem;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-round);
	background: var(--k-bg);
	font-size: var(--k-fs-sm);
	text-decoration: none;
	color: var(--k-text);
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.k-social:hover { transform: translateY(-2px); border-color: var(--k-brand); }

.k-social .k-brand { width: 32px; height: 32px; border-radius: 10px; }

.k-social__label { font-weight: 500; }
.k-social__go { color: var(--k-text-soft); }
.k-social:hover .k-social__go { color: var(--k-brand); }

/* ---------- Review card ---------- */

/* The reviews page lists them all; elsewhere they ride in a rail. */
.k-reviews {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}


.k-review {
	display: flex;
	flex-direction: column;
	gap: var(--k-space-2);
	padding: var(--k-space-3);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-review__head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: start;
	gap: 0.75rem;
}

.k-review__avatar {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--k-radius-round);
	background: var(--k-bg-alt);
	color: var(--k-text-muted);
	font-family: var(--k-font-display);
	font-size: var(--k-fs-md);
	line-height: 1;
}

.k-review__who {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.k-review__name {
	font-family: var(--k-font-display);
	font-size: var(--k-fs-md);
	font-weight: 600;
	line-height: 1.2;
	color: var(--k-heading);
}

.k-review__about {
	font-size: var(--k-fs-xs);
	color: var(--k-text-soft);
}

.k-review__about a { color: var(--k-brand); text-decoration: none; }
.k-review__about a:hover { text-decoration: underline; }

.k-review__rating {
	color: #f5a623;
	font-size: var(--k-fs-sm);
	letter-spacing: 0.06em;
	white-space: nowrap;
}

/* A review that complains keeps a marker, so the reply beside it is not
   mistaken for part of the complaint. */
.k-review--low { border-left: 3px solid #d9a441; }

.k-review__photos {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: var(--k-space-2);
}

.k-review__photos img {
	width: 84px;
	height: 84px;
	border-radius: var(--k-radius-sm);
	object-fit: cover;
}

.k-review__answer {
	margin-top: var(--k-space-2);
	padding: 0.85rem 1rem;
	border-radius: var(--k-radius-sm);
	background: var(--k-bg-alt);
}

.k-review__answer-label {
	display: block;
	margin-bottom: 0.3rem;
	font-size: var(--k-fs-xs);
	font-weight: 600;
	color: var(--k-brand);
}

.k-review__answer-text {
	margin: 0;
	font-size: var(--k-fs-sm);
	line-height: 1.5;
	color: var(--k-text-muted);
}

.k-review__text {
	margin: 0;
	font-size: var(--k-fs-sm);
	line-height: 1.5;
}

/* A long review is cut to five lines until asked to open. */
[data-korona-clamp] .k-review__text,
[data-korona-clamp] .k-review__answer-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

[data-korona-clamp] .k-review__answer-text { -webkit-line-clamp: 3; }

[data-korona-clamp].is-open .k-review__text,
[data-korona-clamp].is-open .k-review__answer-text {
	display: block;
	overflow: visible;
}

.k-review__more {
	align-self: flex-start;
	margin-top: 0.4rem;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: var(--k-fs-sm);
	color: var(--k-brand);
	cursor: pointer;
}

.k-review__more:hover { text-decoration: underline; }

.k-reviews--all {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	align-items: start;
}

/* What the review was left about — the listing on the platform. */
.k-review__item {
	font-size: var(--k-fs-xs);
	color: var(--k-text-muted);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

/* ---------- Interior galleries ---------- */

.k-interior + .k-interior { margin-top: var(--k-space-5); }

/* The rail's arrows sit above the row, in this heading's right corner, so the
   note stops short of them. */
.k-section__head--sub {
	align-items: baseline;
	margin-bottom: var(--k-space-3);
}

@media (min-width: 700px) {
	.k-section__head--sub .k-section__note { padding-right: 7rem; }
}

.k-interior__title { margin: 0; font-size: var(--k-fs-xl); }

.k-rail--photos .k-rail__track > * { flex-basis: min(360px, 80vw); }

.k-interior__shot {
	margin: 0;
	border-radius: var(--k-radius);
	overflow: hidden;
	background: var(--k-bg-alt);
}

.k-interior__shot img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* ---------- Wholesale invitation ---------- */

.k-invite {
	margin-top: var(--k-space-5);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	border-radius: var(--k-radius);
	background: var(--k-dark);
	color: var(--k-text-invert);
}

.k-invite__head { max-width: 46rem; }

.k-invite__title {
	margin: 0 0 0.6rem;
	font-size: var(--k-fs-h2);
	line-height: 1.15;
	color: var(--k-text-invert);
}

.k-invite__text {
	margin: 0;
	color: var(--k-text-invert-soft);
}

.k-invite__roles {
	display: grid;
	gap: var(--k-space-2);
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	margin: var(--k-space-4) 0;
}

.k-role {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: var(--k-space-3);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--k-radius-sm);
	background: rgba(255, 255, 255, 0.06);
}

.k-role__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-bottom: 0.35rem;
	border-radius: var(--k-radius-round);
	background: var(--k-brand);
	color: #fff;
}

.k-role__title {
	font-family: var(--k-font-display);
	font-size: var(--k-fs-md);
	font-weight: 600;
	color: var(--k-text-invert);
}

.k-role__text {
	font-size: var(--k-fs-sm);
	color: var(--k-text-invert-soft);
}

/* ---------- Production clips ---------- */

.k-clips:not(:last-child) { margin-bottom: var(--k-space-5); }

.k-rail--clips .k-rail__track > * { flex-basis: min(300px, 70vw); }

/* Four portrait clips, and on a full-width container all four fit
   without a drag. */
@media (min-width: 1280px) {
	.k-rail--clips .k-rail__track > * { flex-basis: 285px; }
}

.k-clip {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin: 0;
}

.k-clip__label {
	align-self: flex-end;
	padding: 0.3rem 0.85rem;
	border: 1px solid var(--k-brand);
	border-radius: 999px;
	font-size: var(--k-fs-sm);
	color: var(--k-brand);
}

/* The clips are portrait, shot on a phone on the shop floor. */
.k-clip__video {
	display: block;
	width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: var(--k-radius);
	background: var(--k-dark);
	object-fit: cover;
}

/* ---------- Closing measure block ---------- */

.k-zamer {
	position: relative;
	isolation: isolate;
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
	color: var(--k-text-invert);
	background: var(--k-dark);
	overflow: hidden;
}

.k-zamer__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.k-zamer__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* The installers are in the upper half of the frame; a centre crop lands
	   on a pair of trouser legs. */
	object-position: 50% 22%;
}

/* Enough of a scrim for white text over a bright sky. */
.k-zamer__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(17, 17, 17, 0.78) 0%, rgba(17, 17, 17, 0.5) 55%, rgba(17, 17, 17, 0.3) 100%);
}

.k-zamer__grid {
	display: grid;
	gap: var(--k-space-4);
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.k-zamer__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(360px, 28rem);
		gap: var(--k-space-5);
		align-items: center;
	}
}

.k-zamer__title {
	margin: 0 0 0.75rem;
	max-width: 18ch;
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.k-zamer__text {
	max-width: 34rem;
	font-size: var(--k-fs-lg, var(--k-fs-md));
	color: rgba(255, 255, 255, 0.88);
}

.k-zamer__points {
	display: grid;
	gap: 0.9rem;
	margin: var(--k-space-3) 0 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 560px) {
	.k-zamer__points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
	.k-zamer__points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.k-zamer__point {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	padding: 0.85rem 1rem;
	border-radius: var(--k-radius-sm);
	background: rgba(255, 255, 255, 0.08);
	font-size: var(--k-fs-sm);
	color: rgba(255, 255, 255, 0.94);
}

.k-zamer__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
}

.k-zamer__icon .k-icon {
	width: 20px;
	height: 20px;
}

.k-zamer__note {
	margin-top: var(--k-space-3);
	padding-top: var(--k-space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	font-size: var(--k-fs-sm);
	color: rgba(255, 255, 255, 0.72);
}

/* The one thing on the block that is meant to be filled in, so it is the one
   thing wearing the brand colour. */
.k-zamer__panel {
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border-radius: var(--k-radius);
	background: var(--k-bg);
	color: var(--k-text);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.k-zamer__panel .k-form__title {
	font-size: var(--k-fs-xl);
	line-height: 1.15;
}

.k-zamer__panel .k-form__text {
	margin-bottom: var(--k-space-3);
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

.k-zamer__panel .k-form { gap: 0.75rem; }

.k-zamer__panel textarea { min-height: 5.5rem; }

/* ---------- Slider ---------- */

.k-range { margin-top: var(--k-space-3); }

.k-range__value {
	display: block;
	font-size: var(--k-fs-h2);
	font-weight: 700;
	line-height: 1;
}

.k-range__value {
	color: var(--k-brand);
	font-variant-numeric: tabular-nums;
}

/* The track fills up to the handle, so how far along the answer sits reads
   at a glance rather than from the handle's position alone. */
.k-range__input {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	margin: var(--k-space-3) 0 0.5rem;
	border-radius: 999px;
	background:
		linear-gradient(var(--k-brand), var(--k-brand)) 0 / calc(var(--k-range-at, 0) * 100%) 100% no-repeat,
		var(--k-border);
	cursor: pointer;
}

.k-range__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 28px;
	height: 28px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--k-brand);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.k-range__input::-moz-range-thumb {
	width: 28px;
	height: 28px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--k-brand);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.k-range__input:focus-visible { outline: 2px solid var(--k-brand); outline-offset: 4px; }

.k-range__input:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.k-range__ends {
	display: flex;
	justify-content: space-between;
	font-size: var(--k-fs-sm);
	opacity: 0.8;
}

/* ---------- The note for someone furnishing an object ---------- */

.k-quiz__aside {
	display: block;
	margin-bottom: var(--k-space-3);
	padding: var(--k-space-3);
	border-radius: var(--k-radius-sm);
	background: rgba(0, 0, 0, 0.22);
	color: inherit;
	text-decoration: none;
}

.k-quiz__aside:hover { background: rgba(0, 0, 0, 0.32); }

.k-quiz__aside-title {
	display: block;
	margin-bottom: 0.2rem;
	font-weight: 600;
}

.k-quiz__aside-text {
	display: block;
	font-size: var(--k-fs-sm);
	opacity: 0.9;
}

/* The closing panel is a single narrow column, so the quiz form stacks
   inside it however wide the page gets. */
.k-zamer__panel .k-form--quiz {
	grid-template-columns: 1fr;
}

.k-zamer__panel .k-form--quiz > .k-btn {
	justify-self: stretch;
	min-width: 0;
}


/* ---------- The qualifier in a section of its own ---------- */

/* Полоса отделяет квиз от белой страницы вокруг. Внутрь ничего больше не
   заворачиваем: белая карточка внутри белой карточки давала двойные поля и
   узкую колонку текста посередине — на оптовой странице квиз всегда стоял
   прямо в контейнере, и выглядел лучше именно поэтому. */
.k-quiz-band { background: var(--k-bg-alt); }

.k-quiz__gift {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--k-brand);
	font-size: var(--k-fs-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--k-text-invert);
}

/* ---------- The note for someone furnishing an object ---------- */

.k-quiz__aside {
	display: block;
	margin-bottom: var(--k-space-3);
	padding: var(--k-space-3);
	border-radius: var(--k-radius-sm);
	background: rgba(0, 0, 0, 0.22);
	color: inherit;
	text-decoration: none;
}

.k-quiz__aside:hover { background: rgba(0, 0, 0, 0.32); }

.k-quiz__aside-title {
	display: block;
	margin-bottom: 0.2rem;
	font-weight: 600;
}

.k-quiz__aside-text {
	display: block;
	font-size: var(--k-fs-sm);
	opacity: 0.9;
}

/* The closing panel is a single narrow column, so the quiz form stacks
   inside it however wide the page gets. */
.k-zamer__panel .k-form--quiz {
	grid-template-columns: 1fr;
}

.k-zamer__panel .k-form--quiz > .k-btn {
	justify-self: stretch;
	min-width: 0;
}


/* ---------- The qualifier in a section of its own ---------- */

/* Полоса отделяет квиз от белой страницы вокруг. Внутрь ничего больше не
   заворачиваем: белая коробка внутри белой коробки давала двойные поля и
   узкую колонку текста посередине. */


/* ---------- The promise under the closing form ---------- */


/* ---------- Delivery calculator ---------- */

.k-shipcalc__head {
	display: flex;
	gap: var(--k-space-2);
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 0.6rem;
}

/* The slider alone left the visitor guessing which distance they had picked. */
.k-shipcalc__km {
	font-size: var(--k-fs-xl);
	font-weight: 700;
	color: var(--k-brand);
	font-variant-numeric: tabular-nums;
}

/* A van rather than a dot: the thing being priced is a drive out of town. */
.k-shipcalc__range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	border-radius: 999px;
	background:
		linear-gradient(var(--k-brand), var(--k-brand)) 0 / calc(var(--k-ship-at, 0.13) * 100%) 100% no-repeat,
		var(--k-border);
	cursor: pointer;
}

.k-shipcalc__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 38px;
	height: 38px;
	border: 1px solid var(--k-border);
	border-radius: 50%;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d64521' d='M2.6 8.4h11v7.2h-11z'/%3E%3Cpath fill='%23d64521' d='M13.6 10.4h4.1l3.2 3.2v2h-7.3z'/%3E%3Ccircle cx='7' cy='16.6' r='2.3' fill='%23d64521'/%3E%3Ccircle cx='17.4' cy='16.6' r='2.3' fill='%23d64521'/%3E%3Ccircle cx='7' cy='16.6' r='.9' fill='%23fff'/%3E%3Ccircle cx='17.4' cy='16.6' r='.9' fill='%23fff'/%3E%3C/svg%3E") center / 24px no-repeat;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.k-shipcalc__range::-moz-range-thumb {
	width: 38px;
	height: 38px;
	border: 1px solid var(--k-border);
	border-radius: 50%;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d64521' d='M2.6 8.4h11v7.2h-11z'/%3E%3Cpath fill='%23d64521' d='M13.6 10.4h4.1l3.2 3.2v2h-7.3z'/%3E%3Ccircle cx='7' cy='16.6' r='2.3' fill='%23d64521'/%3E%3Ccircle cx='17.4' cy='16.6' r='2.3' fill='%23d64521'/%3E%3Ccircle cx='7' cy='16.6' r='.9' fill='%23fff'/%3E%3Ccircle cx='17.4' cy='16.6' r='.9' fill='%23fff'/%3E%3C/svg%3E") center / 24px no-repeat;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.k-shipcalc__range:focus-visible { outline: 2px solid var(--k-brand); outline-offset: 4px; }

.k-shipcalc__scale { margin-top: 0.6rem; }

/* ---------- Hand-quoted lines ---------- */

.k-quote {
	padding: var(--k-space-4);
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius);
	background: var(--k-bg);
}

.k-quote__price {
	margin: 0 0 0.6rem;
	font-size: var(--k-fs-h2);
	font-weight: 700;
	line-height: 1;
}

.k-quote__from {
	font-size: var(--k-fs-md);
	font-weight: 400;
	color: var(--k-text-muted);
}

.k-quote__unit {
	font-size: var(--k-fs-md);
	font-weight: 400;
	color: var(--k-text-muted);
}

.k-quote__text {
	max-width: 42rem;
	margin-bottom: var(--k-space-3);
	color: var(--k-text-soft);
}

.k-quote__note {
	margin-top: 0.75rem;
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
}

/* ---------- Write to us ---------- */

.k-write {
	display: grid;
	gap: var(--k-space-4);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--k-radius);
	background: var(--k-bg);
	box-shadow: var(--k-shadow);
}

@media (min-width: 900px) {
	.k-write { grid-template-columns: 1fr 1fr; align-items: start; }
}

.k-write__title { margin: 0 0 0.5rem; font-size: var(--k-fs-h2); }

.k-write__text {
	max-width: 32rem;
	margin-bottom: var(--k-space-3);
	color: var(--k-text-soft);
}

.k-write__chans {
	display: flex;
	flex-wrap: wrap;
	gap: var(--k-space-2);
}

.k-write__label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: var(--k-fs-sm);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--k-text-muted);
}

/* A column of full-width rows rather than a wrapping line of pills: six
   social networks in one row read as leftovers. */
.k-write__socials .k-socials {
	display: grid;
	gap: 0.6rem;
	grid-template-columns: 1fr;
}

@media (min-width: 560px) {
	.k-write__socials .k-socials { grid-template-columns: 1fr 1fr; }
}

.k-write__socials .k-social {
	width: 100%;
	justify-content: flex-start;
}

.k-write__socials .k-social__go { margin-left: auto; }

/* A single narrow column: the closing panel is 26rem wide, and two fields
   side by side there leave neither room to read. */
.k-form--stack { grid-template-columns: 1fr; }

.k-form--stack > .k-btn {
	justify-self: stretch;
	min-width: 0;
}


/* ---------- Other products in this line ---------- */

.k-siblings {
	display: flex;
	flex-wrap: wrap;
	gap: var(--k-space-2);
	align-items: flex-start;
	margin-bottom: var(--k-space-3);
}

.k-siblings__back {
	display: inline-flex;
	gap: 0.45rem;
	align-items: center;
	flex: none;
	padding: 0.55rem 1rem;
	border: 1px solid var(--k-border);
	border-radius: 999px;
	background: var(--k-bg);
	font-size: var(--k-fs-sm);
	font-weight: 600;
	color: var(--k-text);
	text-decoration: none;
	white-space: nowrap;
}

.k-siblings__back:hover { border-color: var(--k-brand); color: var(--k-brand); }

/* Wrapping, not scrolling: half the names ran off the right edge, and a
   product you cannot see is a product you will not click. */
.k-siblings__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1 1 24rem;
}

.k-siblings__item {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	max-width: 100%;
	padding: 0.35rem 0.85rem 0.35rem 0.35rem;
	border: 1px solid var(--k-border);
	border-radius: 999px;
	background: var(--k-bg);
	font-size: var(--k-fs-sm);
	color: var(--k-text);
	text-decoration: none;
}

.k-siblings__item:hover { border-color: var(--k-brand); }

.k-siblings__item.is-active {
	border-color: var(--k-brand);
	background: var(--k-brand);
	color: var(--k-text-invert);
}

.k-siblings__thumb {
	display: block;
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 999px;
	overflow: hidden;
	background: var(--k-bg-alt);
}

.k-siblings__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 700px) {
	.k-siblings__list { flex: 1 1 100%; }
}

/* ---------- For the wholesale buyer who has never met us ---------- */

.k-trust {
	display: grid;
	gap: var(--k-space-4);
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: var(--k-radius);
	background: var(--k-dark);
	color: var(--k-text-invert);
}

@media (min-width: 900px) {
	.k-trust { grid-template-columns: 1fr 1.15fr; align-items: start; }
	.k-trust__foot { grid-column: 1 / -1; }
}

.k-trust__eyebrow {
	display: inline-block;
	margin-bottom: var(--k-space-2);
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	background: var(--k-brand);
	font-size: var(--k-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.k-trust__title {
	margin: 0 0 0.6rem;
	font-size: var(--k-fs-h2);
	line-height: 1.15;
	color: var(--k-text-invert);
}

.k-trust__text {
	max-width: 30rem;
	color: rgba(255, 255, 255, 0.82);
}

.k-trust__list {
	display: grid;
	gap: var(--k-space-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.k-trust__list li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	font-size: var(--k-fs-sm);
	color: rgba(255, 255, 255, 0.86);
}

.k-trust__list strong { display: block; color: var(--k-text-invert); }

.k-trust__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
}

.k-trust__icon .k-icon { width: 21px; height: 21px; }

.k-trust__foot {
	display: flex;
	flex-wrap: wrap;
	gap: var(--k-space-2) var(--k-space-3);
	align-items: center;
	padding-top: var(--k-space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.k-trust__phone {
	font-size: var(--k-fs-xl);
	font-weight: 700;
	color: var(--k-text-invert);
	text-decoration: none;
	white-space: nowrap;
}

.k-trust__note {
	flex: 1 1 16rem;
	font-size: var(--k-fs-sm);
	color: rgba(255, 255, 255, 0.7);
}

/* ---------- The description on a product page ---------- */

.k-product__content > * + * { margin-top: var(--k-space-2); }

.k-product__content p {
	max-width: 46rem;
	color: var(--k-text-soft);
}

/* Section headings inside a description are signposts through it, not titles
   competing with the product's own name. */
.k-product__content h2 {
	margin-top: var(--k-space-4);
	font-size: var(--k-fs-lg, 1.25rem);
	line-height: 1.25;
}

.k-product__content h2:first-child { margin-top: 0; }

/* A quiet second line where the offer changes: same page, different region
   or a different kind of buyer. */
.k-hero__regions,
.k-invite__regions {
	margin: var(--k-space-2) 0 0;
	font-size: var(--k-fs-sm);
	color: var(--k-text-invert-soft);
}

.k-hero__regions a,
.k-invite__regions a {
	color: #ff9b78;
	text-underline-offset: 3px;
}

/* ---------- Соседние районы ---------- */

.k-neighbours {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
	gap: clamp(1.25rem, 3vw, var(--k-space-5));
	padding-top: var(--k-space-4);
	border-top: 1px solid var(--k-border);
}

.k-neighbours__title {
	margin: 0 0 var(--k-space-2);
	font-size: var(--k-fs-md);
}

.k-neighbours__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Заголовки статей длинные, в строку их не выстроить. */
.k-neighbours__list--wide { flex-direction: column; }

.k-neighbours__list a {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-round);
	color: var(--k-text);
	font-size: var(--k-fs-sm);
	text-decoration: none;
}

.k-neighbours__list--wide a {
	border: 0;
	padding: 0;
	color: var(--k-brand);
}

.k-neighbours__list a:hover { border-color: var(--k-brand); color: var(--k-brand); }

/* Кнопка внутри тёмной плашки для объектов. */
.k-panel__actions { margin: var(--k-space-3) 0 0; }

/* ---------- Landing blocks ---------- */

/* The opening line of a landing, not a page of copy: wider type, one
   paragraph, and nothing under it until the first selling block. */
.k-page__content--intro {
	max-width: 46rem;
	font-size: var(--k-fs-md);
	color: var(--k-text-muted);
}

.k-page__content--intro p { margin: 0; }

.k-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, var(--k-space-6));
	align-items: center;
}

.k-split--bare { grid-template-columns: minmax(0, 52rem); }

.k-split__body > h2 {
	margin: 0 0 var(--k-space-2);
	font-size: var(--k-fs-xl);
	text-wrap: balance;
}

.k-split__body p {
	margin: 0 0 var(--k-space-2);
	color: var(--k-text-muted);
}

.k-split__body p:last-child { margin-bottom: 0; }

.k-split__body a { color: var(--k-brand); }

.k-split__media {
	border-radius: var(--k-radius);
	overflow: hidden;
}

.k-split__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* The photograph moves to the left, and the text follows it in the source
   order too — a screen reader should not meet the picture first. */
.k-split--flip .k-split__media { grid-column: 1; grid-row: 1; }

/* A block with no photograph: heading beside the text, tinted ground. Used
   once per landing, where a third split in a row would read as a pattern
   rather than as a page. */
.k-panel {
	display: grid;
	grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, var(--k-space-5));
	padding: clamp(1.5rem, 4vw, var(--k-space-5));
	border-radius: var(--k-radius);
	background: var(--k-bg-alt);
}

.k-panel__title {
	margin: 0;
	font-size: var(--k-fs-xl);
	text-wrap: balance;
}

.k-panel__body p {
	margin: 0 0 var(--k-space-2);
	color: var(--k-text-muted);
}

.k-panel__body p:last-child { margin-bottom: 0; }

.k-panel__body a { color: var(--k-brand); }

.k-panel--dark {
	background: var(--k-dark);
	color: var(--k-text-invert);
}

.k-panel--dark .k-panel__title { color: var(--k-heading-invert); }
.k-panel--dark .k-panel__body p { color: var(--k-text-invert-soft); }
.k-panel--dark .k-panel__body a { color: #ff9b78; }

@media (max-width: 860px) {
	.k-split,
	.k-panel { grid-template-columns: minmax(0, 1fr); }

	/* On one column the picture belongs under its heading, not above it. */
	.k-split--flip .k-split__media { grid-column: auto; grid-row: auto; }

	.k-split__media img { aspect-ratio: 16 / 10; }
}

/* ---------- Room landings ---------- */

.k-room-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.k-room-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.2rem;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-pill);
	color: var(--k-text);
	font-size: var(--k-fs-sm);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.k-room-link span { color: var(--k-brand); }

.k-room-link:hover {
	border-color: var(--k-brand);
	color: var(--k-brand);
}

/* ---------- Blog ---------- */

.k-article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
	gap: var(--k-space-3);
}

.k-article-card {
	display: flex;
	background: var(--k-bg);
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius);
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.k-article-card:hover {
	border-color: var(--k-brand);
	transform: translateY(-2px);
}

.k-article-card__link {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.k-article-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--k-bg-alt);
	overflow: hidden;
}

.k-article-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.k-article-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	padding: var(--k-space-2);
}

.k-article-card__title {
	font-family: var(--k-font-display);
	font-size: var(--k-fs-md);
	font-weight: 600;
	line-height: 1.3;
	color: var(--k-heading);
	text-wrap: balance;
}

/* Three lines of the opening, then the reader either clicks or moves on.
   Without the clamp a long first paragraph makes one card twice as tall as
   its neighbours and the grid stops looking like a grid. */
.k-article-card__excerpt {
	font-size: var(--k-fs-sm);
	color: var(--k-text-muted);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.k-article-card__more {
	margin-top: auto;
	padding-top: 0.4rem;
	font-size: var(--k-fs-sm);
	color: var(--k-brand);
}

.k-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 var(--k-space-2);
	font-size: var(--k-fs-sm);
	color: var(--k-text-soft);
}

.k-article__meta a { color: var(--k-text-muted); }

/* The author's own headline for the piece. The <h1> in the banner carries
   the plain, searchable title; this is the voice the article is written in,
   and it would be a second <h1> if it stayed a heading. */
.k-article__kicker {
	max-width: 46rem;
	margin: 0 0 var(--k-space-3);
	font-family: var(--k-font-display);
	font-size: var(--k-fs-lg);
	line-height: 1.35;
	color: var(--k-heading);
	text-wrap: balance;
}

/* An article is read top to bottom, so its headings need more air above them
   than the short blocks of copy on a landing page. */
.k-article__body h2 { margin-top: var(--k-space-5); }

.k-article__body h3 { margin-top: var(--k-space-4); }

.k-article__body h2 + p,
.k-article__body h3 + p { margin-top: var(--k-space-1); }

/* ---------- Prices inside text ---------- */

.k-price-live {
	color: var(--k-brand);
	white-space: nowrap;
}

.k-price-table {
	overflow-x: auto;
	margin-block: var(--k-space-3);
}

.k-price-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--k-fs-sm);
}

.k-price-table caption {
	padding-bottom: 0.6rem;
	color: var(--k-text-soft);
	font-size: var(--k-fs-xs);
	text-align: left;
}

.k-price-table th,
.k-price-table td {
	padding: 0.7rem 0.9rem;
	border-bottom: 1px solid var(--k-border);
	text-align: left;
}

.k-price-table th {
	font-weight: 500;
	color: var(--k-text);
}

.k-price-table td {
	color: var(--k-brand);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

/* ---------- Pagination ---------- */

/* Used by the blog and by every category archive — until now those paged
   themselves with unstyled default markup. */
.k-pagination,
.pagination {
	margin-top: var(--k-space-4);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	justify-content: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: 0.75rem;
	border: 1px solid var(--k-border);
	border-radius: var(--k-radius-round);
	color: var(--k-text);
	font-size: var(--k-fs-sm);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

a.page-numbers:hover {
	border-color: var(--k-brand);
	color: var(--k-brand);
}

.page-numbers.current {
	background: var(--k-brand);
	border-color: var(--k-brand);
	color: var(--k-text-invert);
}

.page-numbers.dots {
	border-color: transparent;
	color: var(--k-text-soft);
}

@media (max-width: 639px) {
	.k-article-grid {
		grid-template-columns: 1fr;
		gap: var(--k-space-2);
	}
}

/* ---------- Mobile ---------- */

/* The switch was sized for a desktop banner; on a phone it ran the full width
   and touched both edges. */
@media (max-width: 640px) {
	.k-switch-bar {
		padding-inline: var(--k-gutter);
	}

	.k-switch-bar .k-switch {
		max-width: 100%;
		padding: 4px;
	}

	.k-switch-bar .k-switch__btn {
		padding: 0.6rem 1rem;
		font-size: var(--k-fs-sm);
	}
}

/* Two products to a row rather than one: a phone user should not scroll
   through ten screens to see ten products. */
@media (max-width: 639px) {
	.k-cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.6rem;
	}

	.k-category__products,
	.k-grid--products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.6rem;
	}

	.k-cat-card__body { padding: 0.7rem; }

	.k-cat-card__title { font-size: var(--k-fs-sm); }
}
