/*
Theme Name: boden.kz
Theme URI:	https://boden.kz
Author: KazWeb
Author URI: https://kazweb.pro
Description: The Minimal.
Version: 0.1.0
*/

:root {
	--bg: #14141a;
	--bg-alt: #1b1b22;
	--bg-alt2: #1f1f27;
	--gold: #c9a05a;
	--gold-soft: #e0bd82;
	--cream: #f3efe6;
	--muted: #a29c8f;
	--muted2: #726c60;
	--line: rgba(243,239,230,0.10);
	--ff-display: 'Poppins', sans-serif;
	--ff-body: 'Inter', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--ff-body);
	background: var(--bg);
	color: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

.wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

h1,h2,h3 {
	font-family: var(--ff-display);
	font-weight: 700;
	letter-spacing: 0.01em;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.eyebrow {
	font-family: var(--ff-body);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: var(--gold);
	color: #1a1a1a;
	padding: 15px 30px;
	border-radius: 2px;
	border: 1px solid var(--gold);
	transition: background .25s, color .25s, transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	will-change: transform;
}

.btn:hover {
	background: transparent;
	color: var(--gold-soft);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px -8px rgba(201,160,90,0.45);
}

.btn:active {
	transform: translateY(-1px) scale(0.98);
}

.btn.outline {
	background: transparent;
	color: var(--cream);
	border-color: var(--line);
}

.btn.outline:hover {
	border-color: var(--gold);
	color: var(--gold-soft);
	box-shadow: 0 10px 24px -10px rgba(201,160,90,0.3);
}

.btn .ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(224,189,130,0.55);
	transform: scale(0);
	animation: ripple-anim .6s ease-out forwards;
	pointer-events: none;
	z-index: -1;
}

@keyframes ripple-anim {
	to {
		transform: scale(1);
		opacity: 0;
	}
}

  /* ===== HEADER ===== */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(20,20,26,0.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
	max-width: 1280px;
	margin: 0 auto;
}

.logo {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.04em;
	color: var(--cream);
	line-height: 1.1;
	transition: color .25s, letter-spacing .25s;
}

.logo:hover {
	color: var(--gold-soft);
	letter-spacing: 0.07em;
}

.logo .sub {
	display: block;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.28em;
	color: var(--muted2);
	margin-top: 3px;
}

.nav-links {
	display: flex;
	gap: 30px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav-links a {
	position: relative;
	padding-bottom: 6px;
	transition: color .2s;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .3s cubic-bezier(.2,.8,.2,1);
}

.nav-links a:hover {
	color: var(--gold-soft);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nav-phone {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--cream);
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-phone svg {
	width: 15px;
	height: 15px;
	color: var(--gold);
}

.lang {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
	border-left: 1px solid var(--line);
	padding-left: 18px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.burger {
	display: none;
	background: none;
	border: none;
	color: var(--cream);
	cursor: pointer;
}

  /* ===== HERO ===== */
.hero {
	background: var(--bg);
}

.hero-inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 50px;
	align-items: center;
	padding: 64px 40px 80px;
	max-width: 1280px;
	margin: 0 auto;
}

.hero-copy .eyebrow {
	margin-bottom: 20px;
}

.hero h1 {
	font-size: clamp(34px,4vw,50px);
	line-height: 1.12;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.hero h1 span {
	color: var(--gold-soft);
}

.hero p.lead {
	font-size: 15.5px;
	color: var(--muted);
	max-width: 420px;
	margin-bottom: 32px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-photo {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 6/5.4;
	transform-style: preserve-3d;
	transition: transform .3s ease;
	will-change: transform;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.hero-photo:hover img {
	transform: scale(1.06);
}

.hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 -80px 80px -40px rgba(20,20,26,0.5);
	pointer-events: none;
}

.hero-photo .tag {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 1;
	background: rgba(20,20,26,0.82);
	backdrop-filter: blur(4px);
	padding: 10px 18px;
	border-radius: 2px;
	border: 1px solid var(--line);
	font-size: 12px;
	letter-spacing: 0.06em;
	color: var(--cream);
	transition: transform .3s, border-color .3s;
}

.hero-photo:hover .tag {
	transform: translateY(-4px);
	border-color: var(--gold);
}

.hero-photo .tag b {
	color: var(--gold-soft);
}

  /* ===== SUPPLIER STRIP ===== */
.supplier-strip {
	background: var(--bg-alt);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 26px 0;
}

.supplier-strip .wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.supplier-strip .lbl {
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted2);
	margin-right: 12px;
}

.supplier-strip span.brand {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 18px;
	color: var(--muted);
	letter-spacing: 0.02em;
	opacity: 0.85;
	transition: color .25s, transform .25s, opacity .25s;
	display: inline-block;
}

.supplier-strip span.brand:hover {
	color: var(--gold-soft);
	opacity: 1;
	transform: translateY(-2px) scale(1.05);
}

  /* ===== BRAND ROWS ===== */
.row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 380px;
}

.row .photo {
	position: relative;
	overflow: hidden;
}

.row .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 380px;
	transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.row .photo:hover img {
	transform: scale(1.07);
}

.row .photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,20,26,0) 60%, rgba(20,20,26,0.35) 100%);
	pointer-events: none;
}

.row .content {
	background: var(--bg-alt);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px 56px;
	gap: 16px;
}

.row.reverse {
	direction: rtl;
}

.row.reverse .content, .row.reverse .photo {
	direction: ltr;
}

.row .code {
	font-family: var(--ff-body);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--gold);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.flagship-badge {
	font-family: var(--ff-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--gold);
	color: #1a1a1a;
	padding: 4px 10px;
	border-radius: 100px;
}

.row h2 {
	font-size: clamp(22px,2.4vw,30px);
	text-transform: uppercase;
	line-height: 1.2;
	margin-top: 2px;
}

.row .desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	max-width: 440px;
}

.row .checks {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 2px 0 4px;
}

.row .checks li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13.5px;
	color: var(--cream);
	transition: transform .25s, color .25s;
	padding: 2px 0;
}

.row .checks li:hover {
	transform: translateX(6px);
	color: var(--gold-soft);
}

.row .checks .ic {
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: rgba(201,160,90,0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .25s, transform .25s;
}

.row .checks li:hover .ic {
	background: var(--gold);
	transform: scale(1.15) rotate(8deg);
}

.row .checks li:hover .ic svg {
	color: #1a1a1a;
}

.row .checks .ic svg {
	width: 10px;
	height: 10px;
	color: var(--gold);
	transition: color .25s;
}

.sphere-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted2);
	margin-top: 6px;
}

.sphere-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2px;
}

.sphere-chip {
	display: flex;
	align-items: center;
	gap: 7px;
	background: rgba(201,160,90,0.07);
	border: 1px solid var(--line);
	padding: 7px 13px;
	border-radius: 100px;
	font-size: 12px;
	color: var(--cream);
	transition: background .2s, border-color .2s, transform .2s;
}

.sphere-chip svg {
	width: 14px;
	height: 14px;
	color: var(--gold);
	flex-shrink: 0;
}

.sphere-chip:hover {
	background: rgba(201,160,90,0.18);
	border-color: var(--gold);
	transform: translateY(-2px);
}

.row .btn {
	align-self: flex-start;
	margin-top: 10px;
}

  /* compact vertical photo variant (Gerflor, Barlinek) */
.row.compact .photo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-alt2);
	padding: 36px;
}

.row.compact .photo::after {
	display: none;
}

.row.compact .photo img {
	width: 100%;
	max-width: 280px;
	aspect-ratio: 3/4;
	min-height: 0;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 24px 48px -20px rgba(0,0,0,0.55);
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.row.compact .photo:hover img {
	transform: scale(1.04) translateY(-4px);
}

  /* ===== CLIENTS STRIP ===== */
.clients-strip {
	background: var(--bg-alt);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 44px 0;
}

.clients-strip .clients-head {
	text-align: center;
	margin-bottom: 30px;
}

.clients-strip .eyebrow {
	justify-content: center;
}

.clients-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 52px;
	flex-wrap: wrap;
}

.clients-row span.client {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: 0.02em;
	color: var(--muted);
	opacity: 0.8;
	transition: color .25s, opacity .25s, transform .25s;
}

.clients-row span.client:hover {
	color: var(--gold-soft);
	opacity: 1;
	transform: translateY(-2px) scale(1.05);
}

  /* ===== WORKS GALLERY (3x3) ===== */
.works {
	background: var(--bg);
	padding: 96px 0;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

.work-item {
	position: relative;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 4px;
}

.work-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.work-item:hover img {
	transform: scale(1.08);
}

.work-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(14,16,18,0.9) 100%);
	pointer-events: none;
}

.work-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.work-caption .tag {
	font-family: var(--ff-body);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

.work-caption .ttl {
	font-family: var(--ff-display);
	font-size: 15.5px;
	font-weight: 600;
	color: var(--cream);
	line-height: 1.3;
}

  /* ===== OBJECTS ===== */
.objects {
	background: var(--bg);
	padding: 96px 0;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	gap: 36px;
	flex-wrap: wrap;
}

.section-head h2 {
	font-size: clamp(24px,2.6vw,34px);
	text-transform: uppercase;
	max-width: 560px;
	line-height: 1.25;
}

.section-head p {
	max-width: 340px;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
}

.obj-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.obj-card {
	background: var(--bg);
	padding: 30px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: background .3s, transform .3s;
	position: relative;
	z-index: 0;
}

.obj-card:hover {
	background: var(--bg-alt);
	transform: translateY(-4px);
	z-index: 1;
	box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5);
}

.obj-card svg {
	width: 26px;
	height: 26px;
	color: var(--gold);
	transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.obj-card:hover svg {
	transform: scale(1.15) rotate(-6deg);
}

.obj-card span {
	font-size: 13.5px;
	color: var(--cream);
	line-height: 1.35;
	transition: color .25s;
}

.obj-card:hover span {
	color: var(--gold-soft);
}

  /* ===== WHY ===== */
.why {
	background: var(--bg-alt);
	padding: 96px 0;
}

.why-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
}

.why-stat {
	align-self: start;
}

.why-stat .big {
	font-family: var(--ff-display);
	font-size: 88px;
	font-weight: 800;
	color: var(--gold-soft);
	line-height: 1;
}

.why-stat .cap {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 10px;
}

.why-stat p {
	margin-top: 26px;
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.7;
	max-width: 340px;
}

.check-list {
	display: flex;
	flex-direction: column;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 4px;
	border-top: 1px solid var(--line);
	transition: padding-left .3s, background .3s;
	border-radius: 2px;
}

.check-item:first-child {
	border-top: none;
}

.check-item:hover {
	padding-left: 14px;
	background: rgba(201,160,90,0.05);
}

.check-item .idx {
	font-family: var(--ff-display);
	font-size: 13px;
	font-weight: 600;
	color: var(--muted2);
	width: 30px;
	flex-shrink: 0;
	transition: color .25s;
}

.check-item:hover .idx {
	color: var(--gold);
}

.check-item .mark {
	width: 24px;
	height: 24px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	transition: background .25s, color .25s, transform .3s;
}

.check-item:hover .mark {
	background: var(--gold);
	color: #1a1a1a;
	transform: scale(1.1) rotate(360deg);
}

.check-item .mark svg {
	width: 11px;
	height: 11px;
}

.check-item .txt {
	font-size: 15.5px;
	color: var(--cream);
	transition: color .25s;
}

.check-item:hover .txt {
	color: var(--gold-soft);
}

  /* ===== CTA BAR ===== */
.cta-bar {
	background: var(--bg-alt2);
	border-top: 1px solid var(--line);
}

.cta-bar .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 44px 40px;
	flex-wrap: wrap;
}

.cta-bar-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.cta-bar-left svg {
	width: 44px;
	height: 44px;
	color: var(--gold);
	flex-shrink: 0;
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.cta-bar:hover .cta-bar-left svg {
	transform: rotate(180deg) scale(1.08);
}

.cta-bar-left h3 {
	font-size: 19px;
	text-transform: none;
	font-weight: 700;
}

.cta-bar-left p {
	font-size: 13.5px;
	color: var(--muted);
	margin-top: 4px;
}

  /* ===== CONTACT ===== */
.contact {
	background: var(--bg);
	padding: 96px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.office-card {
	background: var(--bg-alt);
	padding: 38px 34px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform .3s, box-shadow .3s;
	position: relative;
	z-index: 0;
}

.office-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px -16px rgba(0,0,0,0.55);
	z-index: 1;
}

.office-card .city {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.office-card h3 {
	font-size: 23px;
	text-transform: none;
}

.office-card a.line {
	font-size: 14.5px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--cream);
	transition: color .2s, gap .2s;
}

.office-card a.line:hover {
	color: var(--gold-soft);
	gap: 14px;
}

.wa-card {
	background: var(--bg-alt);
	padding: 38px 34px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 22px;
	transition: transform .3s, box-shadow .3s;
	position: relative;
	z-index: 0;
}

.wa-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px -16px rgba(0,0,0,0.55);
	z-index: 1;
}

.wa-card h3 {
	font-size: 20px;
	text-transform: none;
	line-height: 1.35;
}

.wa-card p {
	font-size: 13px;
	color: var(--muted);
}

  /* ===== FOOTER ===== */
footer {
	background: var(--bg-alt);
	padding: 30px 0;
	border-top: 1px solid var(--line);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 12px;
	color: var(--muted2);
}

.footer-inner .logo {
	font-size: 14px;
	color: var(--muted);
}

  /* ===== RESPONSIVE ===== */
@media (max-width:980px) {
	.nav-links {
		display: none;
	}

	.burger {
		display: block;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}

	.row {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.row .photo img {
		min-height: 320px;
	}

	.row.reverse {
		direction: ltr;
	}

	.row .content {
		padding: 44px 32px;
	}

	.obj-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.why-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.nav-phone {
		display: none;
	}

	.cta-bar .wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.works-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media (max-width:600px) {
	.wrap,.hero-inner,.nav {
		padding-left: 20px;
		padding-right: 20px;
	}

	.row .content {
		padding: 36px 22px;
	}

	.objects,.why,.contact,.works {
		padding: 64px 0;
	}

	.obj-grid {
		grid-template-columns: 1fr;
	}

	.works-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}