/* =============================================================================
   СТЁЖКА — визуальный фундамент сайта пошива чехлов для автобусов
   Дом: индустриальный цех — тёплый холст, чернильно-графитовый хедер, ember-акцент
   Шрифты: Oswald (display) · Inter (body) · IBM Plex Mono (kicker/цифры/артикулы)
   ============================================================================= */

:root {
	--ink: #1b1f27;
	--canvas: #f2ede4;
	--canvas-dark: #e6ddc8;
	--steel: #8b93a1;
	--ember: #d9622b;
	--ember-dark: #b14a1c;
	--moss: #5c6b47;
	--white: #fffdf8;

	--sh-1: 0 1px 2px rgba(27, 31, 39, 0.06), 0 2px 6px rgba(27, 31, 39, 0.05);
	--sh-2: 0 6px 20px rgba(27, 31, 39, 0.12);

	--gutter: clamp(20px, 5vw, 56px);
	--container: 1180px;

	--dur-1: 140ms;
	--dur-2: 220ms;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}
body {
	background: var(--canvas);
	color: var(--ink);
	font-family: "Inter", sans-serif;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1,
h2,
h3 {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-weight: 600;
	line-height: 1.08;
	text-wrap: balance;
}
p {
	text-wrap: pretty;
}
a {
	color: inherit;
	text-decoration: none;
}
img,
svg {
	display: block;
	max-width: 100%;
}
button {
	font: inherit;
	color: inherit;
	cursor: pointer;
	background: none;
	border: 0;
}
input,
textarea,
select {
	font: inherit;
	color: inherit;
}
.mono {
	font-family: "IBM Plex Mono", monospace;
	letter-spacing: 0.02em;
}
.stat .num,
.chart-card,
[data-nums] {
	font-variant-numeric: tabular-nums;
}
:focus-visible {
	outline: 3px solid var(--ember);
	outline-offset: 3px;
}
::selection {
	background: var(--ember);
	color: var(--white);
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

h1,
h2,
h3,
p,
li,
dd,
dt,
span,
a,
summary,
figcaption {
	overflow-wrap: break-word;
}

/* ---------- reveal-on-scroll ---------- */
.rv {
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity var(--dur-2) var(--ease),
		transform var(--dur-2) var(--ease);
	will-change: transform, opacity;
}
.rv.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.rv {
		opacity: 1;
		transform: none;
	}
}

/* ---------- stitch divider signature ---------- */
.stitch {
	height: 14px;
	background-image: repeating-linear-gradient(
		90deg,
		var(--ink) 0 10px,
		transparent 10px 20px
	);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	background-position: center;
	opacity: 0.35;
}
.stitch.ember {
	background-image: repeating-linear-gradient(
		90deg,
		var(--ember) 0 10px,
		transparent 10px 20px
	);
	opacity: 0.6;
}

/* ---------- header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px var(--gutter);
	background: rgba(242, 237, 228, 0.92);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(27, 31, 39, 0.12);
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 21px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.brand__mark {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: var(--ink);
}
.nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.4vw, 30px);
}
.nav__link {
	position: relative;
	padding: 6px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
}
.nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--ember);
	transition: width var(--dur-2) var(--ease);
}
.nav__link:hover::after,
.nav__link--active::after {
	width: 100%;
}
.header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.nav-cta {
	padding: 11px 20px;
	font-size: 13.5px;
}
.menu-toggle {
	display: none;
	padding: 6px;
}
.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	margin: 5px 0;
}

/* ---------- buttons ---------- */
.btn {
	display: inline-block;
	padding: 15px 28px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 2px;
	border: 1px solid transparent;
	transition:
		background var(--dur-2) var(--ease),
		border-color var(--dur-2) var(--ease);
}
.btn--sm {
	padding: 11px 20px;
}
.btn-primary {
	background: var(--ember);
	color: var(--white);
}
.btn-primary:hover {
	background: var(--ember-dark);
}
.btn-ghost {
	border-color: rgba(27, 31, 39, 0.35);
	color: var(--ink);
}
.btn-ghost:hover {
	border-color: var(--ink);
}

/* ---------- hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--canvas);
	padding: 88px 0 0;
}
.hero-texture {
	position: absolute;
	inset: 0;
	opacity: 0.5;
	background-image:
		repeating-linear-gradient(
			115deg,
			rgba(242, 237, 228, 0.045) 0 2px,
			transparent 2px 26px
		),
		repeating-linear-gradient(
			25deg,
			rgba(242, 237, 228, 0.03) 0 2px,
			transparent 2px 26px
		);
}
.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
	padding-block: 56px 64px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 12.5px;
	letter-spacing: 0.08em;
	color: var(--ember);
	text-transform: uppercase;
	margin-bottom: 20px;
}
.eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--ember);
}
.hero h1 {
	font-size: clamp(36px, 5vw, 60px);
	max-width: 640px;
}
.hero__accent {
	font-style: normal;
	color: var(--ember);
}
.hero-lede {
	font-size: 17px;
	color: rgba(242, 237, 228, 0.75);
	max-width: 480px;
	margin: 20px 0 30px;
}
.btn-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.seat-illustration {
	justify-self: center;
}
.stats-shell {
	background: var(--ink);
	color: var(--canvas);
}
.stats {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid rgba(242, 237, 228, 0.15);
}
.stat {
	flex: 1 1 220px;
	padding: 24px 8px 30px;
	border-right: 1px solid rgba(242, 237, 228, 0.15);
}
.stat:last-child {
	border-right: none;
}
.stat .num {
	font-family: "Oswald", sans-serif;
	font-size: 32px;
	color: var(--ember);
}
.stat .label {
	font-size: 12.5px;
	color: rgba(242, 237, 228, 0.65);
	margin-top: 4px;
}

/* ---------- section shell ---------- */
section.section {
	padding: 80px 0;
}
.section--tight {
	padding-block: 56px;
}
.section-head {
	max-width: 640px;
	margin-bottom: 44px;
}
.section-head h2 {
	font-size: clamp(26px, 3.2vw, 40px);
}
.section-head p {
	color: var(--steel);
	margin-top: 12px;
	font-size: 16px;
}
.tag-eyebrow {
	font-family: "IBM Plex Mono", monospace;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ember);
	margin-bottom: 12px;
	display: block;
}

/* ---------- fabrics ---------- */
.fabric-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.fabric-card {
	position: relative;
	background: var(--white);
	border: 1px solid rgba(27, 31, 39, 0.1);
	overflow: hidden;
	transition:
		transform var(--dur-2) var(--ease),
		box-shadow var(--dur-2) var(--ease);
}
.fabric-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-2);
}
.swatch {
	height: 120px;
	position: relative;
}
.swatch::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.06) 0 1px,
		transparent 1px 9px
	);
}
.swatch.green {
	background: linear-gradient(135deg, #3e4a3b, #5c6b47);
}
.swatch.brown {
	background: linear-gradient(135deg, #5e3a2c, #8a5138);
}
.swatch.blue {
	background: linear-gradient(135deg, #2b3a4a, #41586e);
}
.swatch.darkgray {
	background: linear-gradient(135deg, #3b3733, #5a544d);
}
.swatch.graphite {
	background: linear-gradient(135deg, #2a2a2e, #48474c);
}
.fabric-card .tag {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--canvas);
	border: 1px solid rgba(27, 31, 39, 0.2);
}
.fabric-card .tag::after {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	background: var(--ink);
	opacity: 0.15;
}
.fabric-body {
	padding: 20px;
}
.fabric-body .art {
	font-size: 11.5px;
	color: var(--steel);
	margin-bottom: 6px;
}
.fabric-body h3 {
	font-size: 19px;
	text-transform: none;
	letter-spacing: 0;
}
.fabric-body p {
	font-size: 14px;
	color: var(--steel);
	margin-top: 8px;
}
.fabric-meta {
	display: flex;
	gap: 14px;
	margin-top: 14px;
	font-size: 12px;
	color: var(--moss);
	font-family: "IBM Plex Mono", monospace;
	flex-wrap: wrap;
}

/* ---------- models ---------- */
.model-strip {
	background: var(--canvas-dark);
	padding: 80px 0;
}
.model-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(27, 31, 39, 0.12);
	border: 1px solid rgba(27, 31, 39, 0.12);
}
.model-card {
	background: var(--canvas-dark);
	padding: 30px 26px;
}
.model-card .bus-icon {
	width: 52px;
	height: 34px;
	margin-bottom: 20px;
	color: var(--ink);
}
.model-card h3 {
	font-size: 20px;
}
.model-card .sub {
	font-family: "IBM Plex Mono", monospace;
	font-size: 12px;
	color: var(--steel);
	margin-top: 6px;
}
.model-card p {
	font-size: 14px;
	color: var(--ink);
	opacity: 0.75;
	margin-top: 14px;
}
.status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 12px;
	font-family: "IBM Plex Mono", monospace;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.status .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--moss);
}
.status.order .dot {
	background: var(--ember);
}

/* ---------- gallery / portfolio ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.gallery-card {
	background: var(--white);
	border: 1px solid rgba(27, 31, 39, 0.1);
	cursor: zoom-in;
	transition:
		transform var(--dur-2) var(--ease),
		box-shadow var(--dur-2) var(--ease);
}
.gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-2);
}
.gallery-card__photo {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--canvas-dark);
}
.gallery-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-card__tag {
	position: absolute;
	left: 10px;
	bottom: 10px;
	background: rgba(27, 31, 39, 0.82);
	color: var(--canvas);
	padding: 5px 10px;
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.gallery-card figcaption {
	padding: 14px 16px;
	font-size: 13.5px;
	color: var(--steel);
	line-height: 1.5;
}
/* ---------- gallery / portfolio: carousel display mode (center-stage / coverflow) ----------
   Один «героический» кадр в фокусе по центру, соседние снимки уходят вбок, уменьшаются,
   размываются и гаснут — глубина витрины вместо плоской ленты. Бесконечная карусель
   (индекс по модулю, без концов и без «прыжка» при зацикливании) + медленный автоскролл,
   который останавливается при наведении/фокусе/касании. Позиционирование слайдов — через
   JS-инлайн transform/opacity/filter, эти правила задают только размер/транзишн/обвязку. */
.gallery-carousel {
	position: relative;
	--gc-slide-w: clamp(240px, 30vw, 380px);
	--gc-slide-h: clamp(320px, 40vw, 507px);
}
.gallery-carousel__stage {
	position: relative;
	overflow: hidden;
	height: calc(var(--gc-slide-h) + 78px);
	touch-action: pan-y;
	overscroll-behavior-x: contain;
	cursor: grab;
}
.gallery-carousel__stage:active {
	cursor: grabbing;
}
.gallery-carousel__stage--dragging * {
	transition: none !important;
}
.gallery-carousel__slide {
	position: absolute;
	top: 0;
	left: 50%;
	width: var(--gc-slide-w);
	margin-left: calc(var(--gc-slide-w) / -2);
	transition:
		transform 0.6s var(--ease),
		opacity 0.5s var(--ease),
		filter 0.5s var(--ease);
	will-change: transform, opacity, filter;
}
.gallery-carousel__card {
	background: var(--white);
	cursor: pointer;
	height: 100%;
	box-shadow:
		0 1px 2px rgba(27, 31, 39, 0.05),
		0 2px 6px rgba(27, 31, 39, 0.05);
	transition: box-shadow var(--dur-2) var(--ease);
}
.gallery-carousel__slide--active .gallery-carousel__card {
	cursor: zoom-in;
	box-shadow:
		0 4px 10px rgba(27, 31, 39, 0.1),
		0 14px 30px rgba(27, 31, 39, 0.16);
}
.gallery-carousel__card .gallery-card__photo {
	aspect-ratio: 3 / 4;
	position: relative;
}
.gallery-carousel__slide--active .gallery-carousel__card .gallery-card__photo::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: repeating-linear-gradient(90deg, var(--ember) 0 8px, transparent 8px 16px);
}
.gallery-carousel__card figcaption {
	padding: 14px 16px;
	font-size: 13.5px;
	color: var(--steel);
	line-height: 1.4;
	height: 76px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.gallery-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 28px;
}
.gallery-carousel__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(27, 31, 39, 0.25);
	color: var(--ink);
	background: var(--white);
	transition:
		border-color var(--dur-2) var(--ease),
		background var(--dur-2) var(--ease),
		color var(--dur-2) var(--ease),
		transform var(--dur-1) var(--ease);
}
.gallery-carousel__arrow svg {
	width: 20px;
	height: 20px;
}
.gallery-carousel__arrow:hover {
	background: var(--ember);
	border-color: var(--ember);
	color: var(--white);
}
.gallery-carousel__arrow:active {
	transform: scale(0.92);
}
.gallery-carousel__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}
.gallery-carousel__dot {
	width: 18px;
	height: 3px;
	background: rgba(27, 31, 39, 0.18);
	border-radius: 1px;
	transition:
		background var(--dur-2) var(--ease),
		width var(--dur-2) var(--ease);
}
.gallery-carousel__dot--active {
	background: var(--ember);
	width: 30px;
}
@media (max-width: 560px) {
	.gallery-carousel {
		--gc-slide-w: min(74vw, 320px);
		--gc-slide-h: min(98.6vw, 427px);
	}
	.gallery-carousel__controls {
		gap: 14px;
	}
	.gallery-carousel__arrow {
		width: 40px;
		height: 40px;
	}
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(15, 15, 17, 0.92);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 32px;
}
.lightbox[hidden] {
	display: none;
}
.lightbox img {
	max-width: min(90vw, 900px);
	max-height: 76vh;
	object-fit: contain;
	box-shadow: var(--sh-2);
}
.lightbox p {
	color: var(--canvas);
	font-size: 14px;
	max-width: 640px;
	text-align: center;
}
.lightbox__close {
	position: absolute;
	top: 20px;
	right: 28px;
	font-size: 32px;
	line-height: 1;
	color: var(--canvas);
}

/* ---------- chart ---------- */
.chart-section {
	background: var(--white);
}
.chart-card {
	background: var(--canvas);
	border: 1px solid rgba(27, 31, 39, 0.1);
	padding: 28px 24px 16px;
}

/* ---------- reviews ---------- */
.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.review-card {
	background: var(--white);
	border: 1px solid rgba(27, 31, 39, 0.1);
	padding: 28px;
}
.review-card .stars {
	color: var(--ember);
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.review-card p {
	font-size: 15px;
	color: var(--ink);
	opacity: 0.85;
}
.review-foot {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}
.avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--canvas);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	flex-shrink: 0;
}
.review-foot .who {
	font-size: 13.5px;
	font-weight: 600;
}
.review-foot .role {
	font-size: 12px;
	color: var(--steel);
}

/* ---------- faq ---------- */
.faq {
	display: grid;
	border-top: 1px solid rgba(27, 31, 39, 0.15);
}
.faq__item {
	border-bottom: 1px solid rgba(27, 31, 39, 0.12);
}
.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 17px;
	text-transform: none;
	letter-spacing: 0;
	list-style: none;
	cursor: pointer;
}
.faq__q::-webkit-details-marker {
	display: none;
}
.faq__q::after {
	content: "+";
	font-family: "IBM Plex Mono", monospace;
	font-weight: 400;
	font-size: 22px;
	color: var(--ember);
	transition: transform var(--dur-2) var(--ease);
}
.faq__item[open] .faq__q::after {
	transform: rotate(45deg);
}
.faq__a {
	padding: 0 0 20px;
	color: var(--steel);
	font-size: 15px;
	line-height: 1.6;
	max-width: 62ch;
}

/* ---------- cta band ---------- */
.cta-band {
	background: var(--ink);
	color: var(--canvas);
	padding: 56px 0;
}
.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cta-band h2 {
	font-size: clamp(24px, 3vw, 34px);
	color: var(--canvas);
}
.cta-band p {
	color: rgba(242, 237, 228, 0.7);
	margin-top: 10px;
	max-width: 44ch;
}

/* ---------- contacts ---------- */
.contact-shell {
	background: var(--ink);
	color: var(--canvas);
	padding: 72px 0;
}
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
}
.contact-info h2 {
	font-size: clamp(24px, 3vw, 34px);
	color: var(--canvas);
}
.contact-info p {
	color: rgba(242, 237, 228, 0.7);
	margin-top: 12px;
	font-size: 15px;
	max-width: 400px;
}
.contact-list {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.contact-list .row {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.contact-list .k {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	text-transform: uppercase;
	color: var(--ember);
	width: 100px;
	flex-shrink: 0;
	padding-top: 2px;
}
.contact-list .v {
	font-size: 15px;
}
form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(242, 237, 228, 0.55);
	margin-bottom: 6px;
	display: block;
}
input,
select,
textarea {
	background: rgba(242, 237, 228, 0.06);
	border: 1px solid rgba(242, 237, 228, 0.25);
	color: var(--canvas);
	padding: 13px 15px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	border-radius: 2px;
	width: 100%;
}
input::placeholder,
textarea::placeholder {
	color: rgba(242, 237, 228, 0.4);
}
input:focus,
select:focus,
textarea:focus {
	border-color: var(--ember);
	outline: none;
}
textarea {
	resize: vertical;
	min-height: 90px;
}
select option {
	color: #111;
}
.submit-row {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 2px;
	flex-wrap: wrap;
}
.form-note {
	font-size: 12.5px;
	color: rgba(242, 237, 228, 0.5);
}
.form-sent {
	font-size: 13.5px;
	color: #8fd08a;
}
#form-status {
	font-size: 13px;
	color: var(--ember);
	min-height: 16px;
}

/* ---------- footer ---------- */
.site-footer {
	padding: 40px 0;
	background: var(--ink);
	color: rgba(242, 237, 228, 0.55);
	border-top: 1px solid rgba(242, 237, 228, 0.1);
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
}
.footer__signoff {
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--canvas);
}
.footer__legal {
	font-size: 12px;
	margin-top: 4px;
	max-width: 40ch;
}
.footer__links {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}

/* ---------- responsive ---------- */
@media (max-width: 880px) {
	.nav {
		display: none;
	}
	.menu-toggle {
		display: block;
	}
	.nav-cta {
		display: none;
	}
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.seat-illustration {
		order: -1;
		max-width: 200px;
	}
	.fabric-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.model-grid {
		grid-template-columns: 1fr;
	}
	.review-grid {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (max-width: 560px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.fabric-grid {
		grid-template-columns: 1fr;
	}
}
