/* ── 1. Design Tokens ──────────────────────────────────────────────────────── */
:root {
	--coal-950: #101012;
	--coal-900: #17181c;
	--coal-850: #202127;
	--line-light: rgba(255, 255, 255, 0.18);
	--line-dark: rgba(0, 0, 0, 0.45);
	--text-strong: #f4f2ec;
	--text-soft: #d3cfc4;
	--text-dim: #b6b1a5;
	--brand-color: #d4a252;
	--brand-color-rgb: 212, 162, 82;
	--brand-color-contrast: #111111;
	--gold-500: var(--brand-color);
	--gold-400: var(--brand-color);
	--gold-300: var(--brand-color);
	--brand-color: #d4a252;
	--brand-color-rgb: 212, 162, 82;
	--brand-color-contrast: #111111;
	--gold-500: var(--brand-color);
	--gold-400: var(--brand-color);
	--gold-300: var(--brand-color);
	--section-light: #ece9e2;
	--shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.45);
	--shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* ── 2. Reset & Base ───────────────────────────────────────────────────────── */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Barlow Condensed", "Trebuchet MS", sans-serif;
	font-size: 1.1rem;
	line-height: 1.35;
	color: var(--text-strong);
	background:
		radial-gradient(circle at 20% 10%, rgba(255, 220, 140, 0.06) 0%, transparent 36%),
		radial-gradient(circle at 82% 88%, rgba(255, 255, 255, 0.04) 0%, transparent 30%),
		linear-gradient(170deg, #121317 0%, #0f1013 52%, #1f2025 100%);
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

h1,
h2,
h3,
.logo {
	font-family: "Bebas Neue", "Impact", sans-serif;
	letter-spacing: 0.03em;
	font-weight: 400;
	margin: 0;
}

.container {
	width: min(1200px, calc(100% - 2rem));
	margin-inline: auto;
}

/* ── 3. Header & Navigation ────────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: linear-gradient(180deg, rgba(18, 19, 23, 0.95), rgba(18, 19, 23, 0.84));
	border-bottom: 1px solid var(--line-light);
	backdrop-filter: blur(8px);
	width: 100%;
	width: 100%;
}

.nav-row {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	flex-wrap: wrap;
	gap: 0.65rem;
	flex-wrap: wrap;
}

.logo {
	font-size: 2.3rem;
	text-decoration: none;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem 0.75rem;
	gap: 0.35rem;
	align-items: center;
	justify-content: center;
}

.menu-toggle-line {
	display: block;
	width: 1.8rem;
	height: 0.2rem;
	background-color: var(--text-soft);
	transition: all 0.3s ease;
	transform-origin: center;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
	transform: rotate(45deg) translate(0.65rem, 0.65rem);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
	transform: rotate(-45deg) translate(0.65rem, -0.65rem);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem 0.75rem;
	gap: 0.35rem;
	align-items: center;
	justify-content: center;
}

.menu-toggle-line {
	display: block;
	width: 1.8rem;
	height: 0.2rem;
	background-color: var(--text-soft);
	transition: all 0.3s ease;
	transform-origin: center;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
	transform: rotate(45deg) translate(0.65rem, 0.65rem);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
	transform: rotate(-45deg) translate(0.65rem, -0.65rem);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 1.3rem;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.main-nav a {
	text-decoration: none;
	color: var(--text-soft);
	transition: color 0.18s ease;
}

.main-nav a:hover {
	color: #ffffff;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}


/* ── 4. Buttons ────────────────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 46px;
	padding: 0 1.3rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-gold {
	background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
	border-color: rgba(0, 0, 0, 0.3);
	color: #f8f4eb;
	box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
	box-shadow: 0 10px 24px rgba(var(--brand-color-rgb), 0.28);
	box-shadow: 0 10px 24px rgba(var(--brand-color-rgb), 0.28);
}

.btn-outline {
	background: rgba(0, 0, 0, 0.28);
	border-color: rgba(255, 255, 255, 0.58);
	color: #f2efe8;
}

/* ── 5. Hero ───────────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	isolation: isolate;
	width: 100%;
	aspect-ratio: var(--hero-aspect-ratio, 21 / 9);
	max-height: min(85vh, 900px);
	min-height: 0;
	padding: 0;
	overflow: hidden;
}

.main-nav .nav-brand-accent {
	color: var(--brand-color);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.main-nav .nav-brand-accent:hover {
	color: var(--brand-color);
	opacity: 0.88;
}

.hero-carousel {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.42s ease;
}

.hero-slide.is-active {
	opacity: 1;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 10, 12, 0.66) 0%, rgba(14, 14, 18, 0.45) 40%, rgba(8, 8, 10, 0.76) 100%),
		radial-gradient(circle at 30% 16%, rgba(var(--brand-color-rgb), 0.45) 0%, transparent 33%);
		radial-gradient(circle at 30% 16%, rgba(var(--brand-color-rgb), 0.45) 0%, transparent 33%);
	z-index: -1;
}

.hero-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.48);
	background: rgba(10, 10, 12, 0.52);
	color: #f8f4eb;
	font-size: 2rem;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 3;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-nav-btn:hover {
	background: rgba(var(--brand-color-rgb), 0.75);
	border-color: rgba(var(--brand-color-rgb), 0.9);
	background: rgba(var(--brand-color-rgb), 0.75);
	border-color: rgba(var(--brand-color-rgb), 0.9);
}

.hero-nav-prev {
	left: clamp(0.6rem, 2vw, 1.1rem);
}

.hero-nav-next {
	right: clamp(0.6rem, 2vw, 1.1rem);
}

.hero-nav-btn.is-hidden {
	display: none;
}

.hero-dots {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	z-index: 3;
}

.hero-dot {
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 50%;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.38);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-dot[aria-selected="true"] {
	background: var(--gold-400);
	border-color: var(--gold-300);
	transform: scale(1.2);
}

.hero-dots.is-hidden {
	display: none;
}

.hero-inner {
	max-width: min(1020px, 150vw);
	margin-left: clamp(2rem, 5vw, 4rem);
	margin-bottom: clamp(2rem, 5vw, 4rem);
	animation: rise-in 760ms ease-out both;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: clamp(1.75rem, 4.3vw, 2.9rem);
	line-height: 0.98;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero p {
	margin: 0.55rem 0 0;
	max-width: 64ch;
	font-size: clamp(0.9rem, 1.35vw, 1.02rem);
	color: #ece9e0;
}

.hero-buttons {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

/* ── 6. Features ───────────────────────────────────────────────────────────── */
.features-strip {
	background: linear-gradient(180deg, #ece9e2, #e2ddd2);
	border-top: 1px solid #d2cbbc;
	border-bottom: 1px solid #c8c0b0;
	color: #262422;
}

.features-intro {
	padding: 1.5rem 0;
}

.feature-intro-title {
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	text-align: center;
	color: #1f1d1c;
	margin-bottom: 0.95rem;
}

.feature-intro-body {
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	gap: 0.55rem;
}


.feature-intro-body p {
	margin: 0;
	text-align: center;
	font-size: clamp(1.1rem, 1.3vw, 1.35rem);
	color: #4a4641;
	line-height: 1.62;
}

/* ── 7. Video Teaser ───────────────────────────────────────────────────────── */
.video-teaser {
	padding: clamp(2.8rem, 5.5vw, 4rem) 0;
	background:
		radial-gradient(circle at 14% 22%, rgba(var(--brand-color-rgb), 0.16), transparent 36%),
		radial-gradient(circle at 14% 22%, rgba(var(--brand-color-rgb), 0.16), transparent 36%),
		linear-gradient(180deg, #f3efe6, #e8e2d6);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.video-wrap {
	display: flex;
	justify-content: center;
}

.video-frame {
	width: min(980px, 100%);
	border: 1px solid rgba(0, 0, 0, 0.16);
	background: #f9f7f3;
	box-shadow: var(--shadow-lg);
	padding: 0.55rem;
}

.video-frame iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	background: #000;
}

/* ── 8. Section Title (shared) ──────────────────────────────────────────────── */
.section-title {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	text-align: center;
	margin-bottom: 1.4rem;
	position: relative;
}

.section-title::before,
.section-title::after {
	content: "";
	position: absolute;
	top: 52%;
	width: min(210px, 24vw);
	height: 1px;
	background: rgba(0, 0, 0, 0.23);
}

.section-title::before {
	left: 0;
}

.section-title::after {
	right: 0;
}

/* ── 9. Card Grid & Image Cards ───────────────────────────────────────────── */
.card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.image-card {
	animation: rise-in 500ms ease-out both;
}

.image-card:nth-child(2) {
	animation-delay: 70ms;
}

.image-card:nth-child(3) {
	animation-delay: 140ms;
}

.image-card:nth-child(4) {
	animation-delay: 210ms;
}

.image-card img {
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
	border: 1px solid rgba(0, 0, 0, 0.28);
	box-shadow: var(--shadow-sm);
	cursor: zoom-in;
	transition: opacity 0.18s ease;
}

.image-card img:hover {
	opacity: 0.85;
}

.image-card h3 {
	font-size: 1.8rem;
	text-align: center;
	margin-top: 0.6rem;
}

/* ── 10. Lightbox ──────────────────────────────────────────────────────────────────── */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(10, 10, 12, 0.92);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.lightbox.open {
	display: flex;
}

.lightbox-close {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
	border: 1px solid var(--line-light);
	background: rgba(30, 30, 35, 0.9);
	color: var(--text-strong);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s ease, color 0.18s ease;
}

.lightbox-close:hover {
	background: var(--gold-500);
	color: #fff;
}

.lightbox-close svg {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
}

.lightbox-img {
	max-width: min(90vw, 1100px);
	max-height: 72vh;
	object-fit: contain;
	border: 1px solid var(--line-light);
	box-shadow: var(--shadow-lg);
	animation: float-up 240ms ease-out both;
}

	@media (max-width: 520px) {
		.product-thumb {
			width: 62px;
			height: 48px;
		}

		.lightbox-img {
			max-height: 62vh;
		}

		.lightbox-caption {
			bottom: 6rem;
			font-size: 1rem;
		}

		.lightbox-thumb {
			width: 72px;
			height: 52px;
		}
	}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
	border: 1px solid var(--line-light);
	background: rgba(18, 18, 23, 0.84);
	color: var(--text-strong);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-nav:hover {
	background: var(--gold-500);
}

.lightbox-nav:disabled {
	opacity: 0.4;
	cursor: default;
}

.lightbox-prev {
	left: max(1rem, 3vw);
}

.lightbox-next {
	right: max(1rem, 3vw);
}

.lightbox-caption {
	position: absolute;
	bottom: 6.8rem;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--text-soft);
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	pointer-events: none;
}

.lightbox-thumbs {
	position: absolute;
	left: 50%;
	bottom: 1.4rem;
	transform: translateX(-50%);
	width: min(92vw, 840px);
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding: 0.2rem;
}

.lightbox-thumb {
	flex: 0 0 auto;
	width: 92px;
	height: 62px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	overflow: hidden;
}

.lightbox-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lightbox-thumb.is-active {
	border-color: var(--gold-400);
	box-shadow: 0 0 0 1px rgba(var(--brand-color-rgb), 0.25);
	box-shadow: 0 0 0 1px rgba(var(--brand-color-rgb), 0.25);
}

.ral-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 320;
	background: rgba(10, 10, 12, 0.9);
	backdrop-filter: blur(4px);
	padding: 1rem;
	align-items: center;
	justify-content: center;
}

.ral-modal.open {
	display: flex;
}

.ral-modal-content {
	position: relative;
	width: min(1080px, 96vw);
	max-height: 92vh;
	overflow: auto;
	padding: 1.3rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: linear-gradient(180deg, #1a1b20, #131418);
	box-shadow: var(--shadow-lg);
}

.ral-modal-close {
	position: sticky;
	top: 0;
	margin-left: auto;
	display: grid;
	place-items: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	cursor: pointer;
	z-index: 1;
}

.ral-modal-content h2 {
	font-size: 2.2rem;
	margin-bottom: 0.4rem;
	color: #f4f2ec;
}

.ral-modal-subtitle {
	margin: 0 0 1rem;
	color: var(--text-soft);
	font-size: 1.08rem;
}

.ral-swatch-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
	gap: 0.35rem;
	margin-bottom: 0.6rem;
}

.ral-swatch-grid.is-compact {
	grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
	margin-bottom: 1rem;
}

.ral-swatch-card {
	height: 58px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 0.42rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: none;
}

.ral-swatch-name {
	font-size: 0.86rem;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	text-shadow: none;
}

.ral-swatch-code {
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: none;
}

.ral-custom-note {
	margin: 0.4rem 0 0;
	font-weight: 700;
	color: #f0ede6;
}

.ral-legal-note {
	margin: 0.45rem 0 0;
	font-size: 0.88rem;
	color: var(--text-dim);
	line-height: 1.35;
}

.quote-request-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 335;
	padding: 1rem;
	background: rgba(10, 10, 12, 0.9);
	backdrop-filter: blur(5px);
	align-items: center;
	justify-content: center;
}

.quote-request-modal.open {
	display: flex;
}

.quote-request-panel {
	position: relative;
	width: min(1240px, 96vw);
	max-height: 92vh;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: linear-gradient(180deg, #1a1b20, #111216);
	box-shadow: var(--shadow-lg);
}

.quote-request-close {
	position: absolute;
	right: 0.9rem;
	top: 0.9rem;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 1.15rem;
	cursor: pointer;
	z-index: 2;
}

.quote-request-close:hover {
	background: rgba(var(--brand-color-rgb), 0.35);
	border-color: rgba(var(--brand-color-rgb), 0.8);
	background: rgba(var(--brand-color-rgb), 0.35);
	border-color: rgba(var(--brand-color-rgb), 0.8);
}

.quote-request-left {
	padding: 2rem 1.6rem 1.5rem;
	overflow: auto;
	display: grid;
	align-content: start;
	gap: 0.8rem;
}

.quote-request-left h2 {
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 0.95;
	padding-right: 3rem;
	color: var(--brand-color);
}

.quote-request-price {
	margin: 0.35rem 0 0.15rem;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-color-contrast);
	background: linear-gradient(135deg, var(--brand-color), rgba(255, 255, 255, 0.12));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	padding: 0.28rem 0.85rem;
	width: fit-content;
}

.quote-request-price.is-placeholder {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-soft);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--brand-color);
}

.quote-request-price {
	margin: 0.35rem 0 0.15rem;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-color-contrast);
	background: linear-gradient(135deg, var(--brand-color), rgba(255, 255, 255, 0.12));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	padding: 0.28rem 0.85rem;
	width: fit-content;
}

.quote-request-price.is-placeholder {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-soft);
	border-color: rgba(255, 255, 255, 0.2);
}

.quote-request-left h3 {
	font-size: 1.45rem;
	margin-top: 0.2rem;
	color: var(--brand-color);
	color: var(--brand-color);
}

.quote-request-description {
	margin: 0;
	color: var(--text-soft);
	line-height: 1.45;
	font-size: 1.05rem;
	max-width: 65ch;
}

.quote-request-specs,
.quote-request-contacts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.4rem;
	color: var(--text-soft);
}

.quote-request-specs li {
	padding-left: 1rem;
	position: relative;
	line-height: 1.38;
	overflow-wrap: anywhere;
}

.quote-request-specs li::before {
	content: "▪";
	position: absolute;
	left: 0;
	color: var(--brand-color);
	color: var(--brand-color);
}

.quote-request-contacts a.is-disabled {
	pointer-events: none;
	opacity: 0.55;
	text-decoration: none;
}

.quote-request-right {
	min-height: 400px;
	background: radial-gradient(circle at 20% 20%, rgba(var(--brand-color-rgb), 0.12), transparent 44%), rgba(255, 255, 255, 0.03);
	background: radial-gradient(circle at 20% 20%, rgba(var(--brand-color-rgb), 0.12), transparent 44%), rgba(255, 255, 255, 0.03);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.3rem;
}

.quote-request-right img {
	max-width: 100%;
	max-height: 80vh;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
}

/* ── 11. Gallery Band ────────────────────────────────────────────────────────────── */
.gallery-band {
	padding: clamp(2.6rem, 6vw, 4.4rem) 0;
	background:
		radial-gradient(circle at 78% 35%, rgba(var(--brand-color-rgb), 0.12), transparent 24%),
		radial-gradient(circle at 78% 35%, rgba(var(--brand-color-rgb), 0.12), transparent 24%),
		linear-gradient(180deg, #1a1b20, #121317);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-title.light {
	color: var(--text-strong);
}

.section-title.light::before,
.section-title.light::after {
	background: rgba(255, 255, 255, 0.25);
}

.icon-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1.2rem;
}

.icon-grid article {
	text-align: center;
	padding: 0.5rem 0.25rem;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.icon-grid article:first-child {
	border-left: none;
}

.icon-grid span {
	display: inline-grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	font-size: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.26);
}

.icon-grid p {
	margin: 0.6rem 0 0;
	font-size: 1.15rem;
	color: var(--text-soft);
}

.cta-line {
	text-align: center;
	font-family: "Bebas Neue", "Impact", sans-serif;
	font-size: clamp(2rem, 3.6vw, 3rem);
	margin: 1.8rem 0 0.8rem;
	color: #f8f3e9;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

/* ── 12. Footer & Contact ──────────────────────────────────────────────────────────── */
.site-footer {
	padding: 3rem 0 1.6rem;
	background: #111216;
}

.contact-section {
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--line-light);
	margin-bottom: 1.6rem;
}

.contact-section-enhanced {
	display: grid;
	gap: 1.2rem;
}

.footer-heading {
	text-align: center;
}

.footer-heading p {
	margin: 0.55rem auto 0;
	max-width: 620px;
	color: var(--text-soft);
	font-size: 1.06rem;
}

.contact-section .section-title {
	margin-bottom: 2rem;
}

.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
	max-width: 980px;
	margin-inline: auto;
}

.contact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-item {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 0.8rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(var(--brand-color-rgb), 0.12);
	color: var(--brand-color);
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.contact-icon svg {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
}

.contact-item:has(.contact-link:hover) .contact-icon,
.contact-icon:hover {
	background: rgba(var(--brand-color-rgb), 0.25);
	color: var(--brand-color);
}

.contact-item--maps .contact-icon,
.contact-item--maps:has(.contact-link:hover) .contact-icon {
	background: #ea4335;
	color: #fff;
}

.contact-item--facebook .contact-icon,
.contact-item--facebook:has(.contact-link:hover) .contact-icon {
	background: #1877f2;
	color: #fff;
}

.contact-item--instagram .contact-icon,
.contact-item--instagram:has(.contact-link:hover) .contact-icon {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
}

.contact-item--pinterest .contact-icon,
.contact-item--pinterest:has(.contact-link:hover) .contact-icon {
	background: #e60023;
	color: #fff;
}

.contact-item--email .contact-icon,
.contact-item--email:has(.contact-link:hover) .contact-icon {
	background: #2563eb;
	color: #fff;
}

.contact-item--phone .contact-icon,
.contact-item--phone:has(.contact-link:hover) .contact-icon {
	background: #16a34a;
	color: #fff;
}

.contact-value {
	color: var(--text-soft);
}

.contact-link {
	color: var(--text-soft);
	text-decoration: none;
	transition: color 0.18s ease;
}

.contact-link:hover {
	color: var(--brand-color);
	color: var(--brand-color);
}

.footer-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	text-align: center;
	color: var(--text-dim);
	font-size: 1.05rem;
}

.footer-link {
	color: var(--brand-color);
	color: var(--brand-color);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.footer-link:hover {
	color: var(--brand-color);
	color: var(--brand-color);
	text-decoration: underline;
}

.footer-legal-links {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-footer-compact {
	padding: 1.6rem 0 2rem;
}

.legal-section {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
}

.legal-document-panel {
	background: #fff;
	color: #111;
	text-align: left;
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border-radius: 10px;
	max-width: 920px;
	margin: 0 auto;
}

.legal-document-title {
	margin: 0 0 1.2rem;
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 700;
	color: #111;
	text-align: left;
}

.legal-document {
	font-size: 1rem;
	line-height: 1.65;
	color: #111;
}

.legal-document :is(h1, h2, h3, h4, h5, h6, h7, p, ul, ol) {
	text-align: left;
	margin: 0 0 0.85rem;
}

.legal-document h1 { font-size: 1.55rem; font-weight: 700; }
.legal-document h2 { font-size: 1.35rem; font-weight: 700; }
.legal-document h3 { font-size: 1.2rem; font-weight: 700; }
.legal-document h4 { font-size: 1.1rem; font-weight: 700; }
.legal-document h5 { font-size: 1.02rem; font-weight: 700; }
.legal-document h6 { font-size: 0.98rem; font-weight: 700; }
.legal-document h7 { font-size: 0.95rem; font-weight: 700; display: block; }

.legal-document ul,
.legal-document ol {
	padding-left: 1.4rem;
}

.legal-document li {
	margin-bottom: 0.35rem;
}

.legal-document ol[type="a"] { list-style-type: lower-alpha; }
.legal-document ol[type="A"] { list-style-type: upper-alpha; }
.legal-document ol[type="i"] { list-style-type: lower-roman; }
.legal-document ol[type="I"] { list-style-type: upper-roman; }

.legal-document :is(strong, b) { font-weight: 700; }
.legal-document :is(em, i) { font-style: italic; }

/* ── 13. Products Catalog ───────────────────────────────────────────────────────── */
.products-catalog {
	padding: clamp(3rem, 6vw, 4.3rem) 0;
	background: linear-gradient(180deg, #1a1b20, #131418);
	color: #f4f2ec;
}

.asztallapok-catalog {
	background:
		radial-gradient(circle at 80% 20%, rgba(var(--brand-color-rgb), 0.12), transparent 32%),
		radial-gradient(circle at 80% 20%, rgba(var(--brand-color-rgb), 0.12), transparent 32%),
		linear-gradient(180deg, #1a1b20, #131418);
}

.femmunkak-catalog {
	background:
		radial-gradient(circle at 22% 18%, rgba(var(--brand-color-rgb), 0.1), transparent 34%),
		radial-gradient(circle at 22% 18%, rgba(var(--brand-color-rgb), 0.1), transparent 34%),
		linear-gradient(180deg, #17191e, #121317);
}

.catalog-header {
	margin-bottom: 2.5rem;
}

.catalog-subtitle {
	text-align: center;
	font-size: 1.15rem;
	color: var(--text-soft);
	max-width: 700px;
	margin: 0.8rem auto 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.catalog-subtitle span {
	overflow-wrap: anywhere;
	word-break: break-word;
	white-space: pre-line;
}

.ral-inline-link {
	margin-left: 0.55rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--gold-300);
	font: inherit;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.ral-inline-link:hover {
	color: var(--gold-400);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.metalwork-intro-block {
	margin-top: 2.4rem;
	padding: 1.2rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	max-width: 980px;
	margin-inline: auto;
}

.metalwork-intro-block.is-standalone {
	margin-top: 0;
}

.metalwork-intro-title {
	font-size: clamp(1.7rem, 2.8vw, 2.3rem);
	color: var(--brand-color);
	margin-bottom: 0.55rem;
	text-align: center;
}

.metalwork-intro-body {
	display: grid;
	gap: 0.45rem;
}

.metalwork-intro-body p {
	margin: 0;
	font-size: clamp(1rem, 1.22vw, 1.16rem);
	line-height: 1.55;
	color: var(--text-soft);
}

.product-card {
	position: relative;
	overflow: hidden;
	padding: 1.8rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.product-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(var(--brand-color-rgb), 0.4);
	border-color: rgba(var(--brand-color-rgb), 0.4);
	transform: translateY(-4px);
}

.product-image {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 1.2rem;
	padding: 0.45rem;
	background: rgba(255, 255, 255, 0.08);
}

.product-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(62vh, 460px);
	object-fit: contain;
	transition: transform 0.3s ease;
	cursor: zoom-in;
	position: relative;
	z-index: 3;
	background: #111216;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-thumbs {
	display: flex;
	gap: 0.45rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	margin: -0.4rem 0 1rem;
}

.product-thumb {
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	width: 70px;
	height: 54px;
	overflow: hidden;
	flex: 0 0 auto;
}

.product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-thumb.is-active {
	border-color: var(--gold-400);
	box-shadow: 0 0 0 1px rgba(var(--brand-color-rgb), 0.25);
	box-shadow: 0 0 0 1px rgba(var(--brand-color-rgb), 0.25);
}

.product-card h3 {
	position: relative;
	z-index: 1;
	font-size: 1.5rem;
	margin-bottom: 0.6rem;
	color: #f4f2ec;
}

.product-card p {
	position: relative;
	z-index: 1;
	font-size: 1rem;
	color: var(--text-soft);
	margin-bottom: 1.2rem;
	line-height: 1.5;
}

.product-price {
	position: relative;
	z-index: 1;
	margin: -0.2rem auto 1rem;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	color: var(--brand-color-contrast);
	background: linear-gradient(135deg, var(--brand-color), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	padding: 0.3rem 0.9rem;
	width: fit-content;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.product-price.is-placeholder {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-soft);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: none;
}

.product-price {
	position: relative;
	z-index: 1;
	margin: -0.2rem auto 1rem;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	color: var(--brand-color-contrast);
	background: linear-gradient(135deg, var(--brand-color), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	padding: 0.3rem 0.9rem;
	width: fit-content;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.product-price.is-placeholder {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-soft);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: none;
}

.product-specs {
	position: relative;
	z-index: 1;
	margin: 1rem 0;
	padding-left: 1.2rem;
	font-size: 0.95rem;
	color: var(--text-dim);
	list-style: none;
}

.product-specs li {
	padding-left: 1.4rem;
	position: relative;
	margin-bottom: 0.4rem;
	overflow-wrap: anywhere;
	word-break: break-word;
	line-height: 1.45;
}

.product-quote-btn {
	position: relative;
	z-index: 1;
	margin-top: 0.4rem;
	width: 100%;
	background: var(--brand-color);
	border-color: rgba(0, 0, 0, 0.28);
	color: var(--brand-color-contrast);
}

.product-quote-btn:hover {
	filter: brightness(1.05);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	background: var(--brand-color);
	border-color: rgba(0, 0, 0, 0.28);
	color: var(--brand-color-contrast);
}

.product-quote-btn:hover {
	filter: brightness(1.05);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.product-specs li::before {
	content: "▪";
	position: absolute;
	left: 0;
	color: var(--gold-400);
}

.btn-small {
	height: 40px;
	font-size: 0.9rem;
	padding: 0 1rem;
	width: 100%;
}

/* ── 14. RAL Colors Palette ───────────────────────────────────────────────────── */
.colors-palette {
	padding: clamp(3rem, 6vw, 4.3rem) 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(var(--brand-color-rgb), 0.15), transparent 40%),
		radial-gradient(circle at 20% 50%, rgba(var(--brand-color-rgb), 0.15), transparent 40%),
		linear-gradient(180deg, #ece9e2, #e7e2d8);
	color: #262422;
}

.palette-subtitle {
	text-align: center;
	font-size: 1.15rem;
	color: #4a4641;
	max-width: 700px;
	margin: 0.8rem auto 2rem;
}

.color-samples {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.color-sample {
	aspect-ratio: 1;
	border-radius: 8px;
	border: 2px solid rgba(0, 0, 0, 0.15);
	box-shadow: var(--shadow-sm);
	transition: all 0.2s ease;
	cursor: pointer;
}

.color-sample:hover {
	transform: scale(1.08);
	box-shadow: var(--shadow-lg);
}

.color-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.ral-mixer {
	margin-top: 1.2rem;
	padding: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.48);
}

.ral-mixer h3 {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
	color: #252220;
}

.ral-mixer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.8rem;
}

.ral-mixer-grid label {
	color: #3f3a34;
	font-weight: 600;
}

.ral-mixer-grid input[type="color"] {
	padding: 0.2rem;
	height: 2.7rem;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.25);
	background: #fff;
}

.ral-mixer-grid input[type="range"] {
	padding: 0;
	background: transparent;
}

.ral-mix-result {
	margin-top: 0.9rem;
	display: flex;
	gap: 0.8rem;
	align-items: center;
}

.ral-mix-preview {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.25);
	background: #000;
	flex-shrink: 0;
}

.ral-mix-copy p {
	margin: 0.2rem 0;
	color: #312c27;
	font-weight: 600;
}

/* ── 15. Metalwork Section ──────────────────────────────────────────────────────── */
.metalwork-section {
	padding: clamp(3rem, 6vw, 4.3rem) 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(var(--brand-color-rgb), 0.12), transparent 32%),
		radial-gradient(circle at 80% 20%, rgba(var(--brand-color-rgb), 0.12), transparent 32%),
		linear-gradient(180deg, #1a1b20, #131418);
	color: #f4f2ec;
}

.metalwork-subtitle {
	text-align: center;
	font-size: 1.15rem;
	color: var(--text-soft);
	max-width: 700px;
	margin: 0.8rem auto 2.5rem;
}

.metalwork-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.8rem;
	margin-bottom: 2.5rem;
}

.metalwork-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.metalwork-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(var(--brand-color-rgb), 0.4);
	border-color: rgba(var(--brand-color-rgb), 0.4);
	transform: translateY(-4px);
}

.metalwork-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 1rem;
}

.metalwork-image-wrap {
	position: relative;
	margin-bottom: 1rem;
}

.metalwork-main-image {
	margin-bottom: 0;
	cursor: zoom-in;
}

.metalwork-no-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	border-radius: 8px;
	border: 1px dashed rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-dim);
	margin-bottom: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.metalwork-thumbs {
	display: flex;
	gap: 0.45rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	margin: -0.3rem 0 1rem;
}

.metalwork-thumb {
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	width: 64px;
	height: 48px;
	overflow: hidden;
	flex: 0 0 auto;
}

.metalwork-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.metalwork-thumb.is-active {
	border-color: var(--gold-400);
	box-shadow: 0 0 0 1px rgba(var(--brand-color-rgb), 0.25);
	box-shadow: 0 0 0 1px rgba(var(--brand-color-rgb), 0.25);
}

.metalwork-card h3 {
	font-size: 1.4rem;
	margin-bottom: 0.8rem;
}

.metalwork-card p {
	font-size: 1rem;
	color: var(--text-soft);
	line-height: 1.6;
}

.metalwork-section .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

/* ── 16. Gallery Section ─────────────────────────────────────────────────────── */
.gallery-section {
	padding: clamp(3rem, 6vw, 4.3rem) 0;
	background:
		radial-gradient(circle at 24% 24%, rgba(var(--brand-color-rgb), 0.11), transparent 28%),
		radial-gradient(circle at 24% 24%, rgba(var(--brand-color-rgb), 0.11), transparent 28%),
		linear-gradient(180deg, #17181c, #111216);
	color: #f4f2ec;
}

.gallery-subtitle {
	text-align: center;
	font-size: 1.15rem;
	color: var(--text-soft);
	max-width: 760px;
	margin: 0.8rem auto 2.2rem;
}

.gallery-flow {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: flex-start;
}

.gallery-item {
	height: 200px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	flex: 0 0 auto;
	cursor: zoom-in;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--brand-color-rgb), 0.5);
	border-color: rgba(var(--brand-color-rgb), 0.5);
}

.gallery-item img {
	height: 100%;
	width: auto;
	max-width: none;
	object-fit: cover;
	display: block;
}

.gallery-empty {
	padding: 1.2rem;
	border: 1px dashed rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	color: var(--text-dim);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 600;
	width: 100%;
	text-align: center;
}

/* ── 17. Impressum Panel ────────────────────────────────────────────────────────── */
.impressum-panel {
	margin: 0 auto 1.4rem;
	max-width: 740px;
	padding: 1.1rem 1.2rem;
	border: 1px solid var(--line-light);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
}

.impressum-panel h3 {
	font-size: 1.55rem;
	margin-bottom: 0.45rem;
	color: #f0ece2;
}

.impressum-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.impressum-list li {
	display: grid;
	grid-template-columns: minmax(180px, 230px) 1fr;
	gap: 0.6rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
	color: var(--text-soft);
	line-height: 1.4;
}

.impressum-list li strong {
	color: #f0ece2;
}

@media (max-width: 700px) {
	.impressum-list li {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}
}

/* ── 18. Custom Section ─────────────────────────────────────────────────────────── */
.custom-section {
	padding: clamp(2.6rem, 6vw, 4.4rem) 0;
	background:
		radial-gradient(circle at 12% 26%, rgba(var(--brand-color-rgb), 0.2), transparent 34%),
		radial-gradient(circle at 12% 26%, rgba(var(--brand-color-rgb), 0.2), transparent 34%),
		linear-gradient(180deg, #1a1b20, #121317);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.custom-section .section-title {
	color: var(--text-strong);
	margin-bottom: 1.4rem;
}

.custom-section .icon-grid {
	margin-top: 2rem;
	margin-bottom: 1.8rem;
}

/* ── 19. Responsive Products ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.nav-row {
		min-height: auto;
		padding: 0.8rem 0 0.6rem;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.logo {
		font-size: 2rem;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}

	.main-nav {
		order: 3;
		width: 100%;
		display: flex;
		justify-content: flex-start;
		gap: 0.9rem;
		overflow-x: auto;
		padding: 0.35rem 0 0.1rem;
		white-space: nowrap;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.main-nav::-webkit-scrollbar {
		display: none;
	}

	.main-nav a {
		flex: 0 0 auto;
		font-size: 0.9rem;
	}

	.header-actions {
		order: 2;
		margin-left: auto;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.hero {
		max-height: min(72vh, 680px);
	}

	.hero-nav-btn {
		width: 2.6rem;
		height: 2.6rem;
		font-size: 1.7rem;
	}

	.hero-dots {
		bottom: 0.85rem;
	}

	.container {
		width: min(1200px, calc(100% - 1.2rem));
	}

	.catalog-header {
		margin-bottom: 1.8rem;
	}

	.catalog-subtitle {
		font-size: 1.02rem;
		max-width: 100%;
	}

	.product-card {
		padding: 1.2rem;
	}

	.product-image {
		padding: 0.3rem;
		margin-bottom: 1rem;
	}

	.product-card h3 {
		font-size: 1.35rem;
	}

	.product-card p {
		font-size: 0.96rem;
		margin-bottom: 1rem;
	}

	.product-specs {
		font-size: 0.9rem;
		margin: 0.9rem 0;
	}

	.quote-request-panel {
		grid-template-columns: 1fr;
		max-height: 94vh;
	}

	.quote-request-right {
		min-height: 300px;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.color-samples {
		grid-template-columns: repeat(6, minmax(60px, 1fr));
	}

	.metalwork-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item {
		height: 170px;
	}
}

@media (max-width: 520px) {
	body {
		font-size: 1rem;
		line-height: 1.4;
	}

	.site-header {
		backdrop-filter: blur(6px);
	}

	.nav-row {
		gap: 0.55rem;
	}

	.logo {
		font-size: 1.8rem;
	}

	.header-actions .btn {
		height: 40px;
		padding: 0 0.9rem;
		font-size: 0.82rem;
	}

	.hero-nav-btn {
		width: 2.45rem;
		height: 2.45rem;
		font-size: 1.65rem;
	}

	.hero {
		max-height: min(62vh, 520px);
	}

	.quote-request-left {
		padding: 1.3rem 1rem 1.1rem;
	}

	.quote-request-left h2 {
		font-size: 2rem;
	}

	.quote-request-right {
		min-height: 240px;
		padding: 0.8rem;
	}

	.hero-dots {
		bottom: 0.7rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.product-card {
		padding: 1rem;
		border-radius: 10px;
	}

	.product-image img {
		max-height: min(52vh, 340px);
	}

	.product-thumbs {
		margin: -0.2rem 0 0.85rem;
	}

	.product-thumb {
		width: 60px;
		height: 46px;
	}

	.product-quote-btn {
		height: 42px;
		font-size: 0.85rem;
	}

	.product-card p,
	.product-specs li,
	.catalog-subtitle,
	.metalwork-intro-body p {
		line-height: 1.45;
	}

	.color-samples {
		grid-template-columns: repeat(4, minmax(60px, 1fr));
	}

	.metalwork-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item {
		height: 140px;
	}

	.color-actions {
		flex-direction: column;
	}

	.color-actions .btn {
		width: 100%;
	}
}

/* ── 19. Responsive ───────────────────────────────────────────────────────────────── */
@keyframes rise-in {
	0% {
		opacity: 0;
		transform: translateY(18px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float-up {
	0% {
		opacity: 0;
		transform: translateY(26px) scale(0.97);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ── 15. Price Calculator Modal ────────────────────────────────────────────────── */
.price-calculator-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 300;
	background: rgba(10, 10, 12, 0.92);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.price-calculator-modal.open {
	display: flex;
}

.calculator-content {
	position: relative;
	background: linear-gradient(180deg, #1a1b20 0%, #131418 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 2.5rem;
	max-width: 500px;
	width: 100%;
	color: var(--text-strong);
	animation: float-up 240ms ease-out both;
	box-shadow: var(--shadow-lg);
}

.calculator-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	border: 1px solid var(--line-light);
	background: rgba(30, 30, 35, 0.8);
	color: var(--text-strong);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.calculator-close:hover {
	background: var(--gold-500);
	color: #fff;
}

.calculator-close svg {
	width: 1rem;
	height: 1rem;
	display: block;
}

.calculator-content h2 {
	margin: 0 0 1.8rem;
	font-size: 1.8rem;
	text-align: center;
	color: #f4f2ec;
}

.calculator-section {
	margin-bottom: 1.8rem;
}

.calculator-section label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 600;
	color: var(--text-soft);
	font-size: 1rem;
}

.calculator-section select,
.calculator-section input[type="range"] {
	width: 100%;
	padding: 0.8rem;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(var(--brand-color-rgb), 0.4);
	border: 1px solid rgba(var(--brand-color-rgb), 0.4);
	border-radius: 6px;
	color: var(--brand-color);
	color: var(--brand-color);
	font-family: inherit;
	font-size: 1rem;
	cursor: pointer;
	font-weight: 500;
}

.calculator-section select option {
	background-color: var(--coal-850);
	color: var(--brand-color);
	color: var(--brand-color);
}

.calculator-section select:focus,
.calculator-section input[type="range"]:focus {
	outline: none;
	border-color: var(--brand-color);
	border-color: var(--brand-color);
	background: rgba(255, 255, 255, 0.12);
}

.calculator-section input[type="range"] {
	padding: 0.5rem;
	height: 6px;
	cursor: range;
}

.size-info {
	font-size: 0.9rem;
	color: var(--text-dim);
	margin-top: 0.5rem;
	text-align: center;
}

.radio-group {
	display: flex;
	gap: 1.5rem;
}

.radio-group label {
	display: flex;
	align-items: center;
	margin: 0;
	cursor: pointer;
	font-weight: 400;
}

.radio-group input[type="radio"] {
	margin-right: 0.6rem;
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--brand-color);
	accent-color: var(--brand-color);
}

.calculator-result {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(var(--brand-color-rgb), 0.3);
	border: 1px solid rgba(var(--brand-color-rgb), 0.3);
	border-radius: 10px;
	padding: 1.5rem;
	margin-top: 2rem;
}

.price-display {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.2rem;
	font-size: 1.1rem;
}

.price-label {
	color: var(--text-soft);
	font-weight: 500;
}

.price-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold-400);
	font-family: "Bebas Neue", "Impact", sans-serif;
	letter-spacing: 0.05em;
}

.calculator-result .btn {
	width: 100%;
	margin: 0;
	height: 48px;
	font-size: 1rem;
}

.product-buttons {
	display: flex;
	gap: 0.8rem;
	flex-direction: row;
	margin-top: 1rem;
}

.product-buttons .btn {
	flex: 1;
}

/* ── 16. Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
	.main-nav {
		gap: 0.9rem;
		font-size: 0.95rem;
	}

	.section-title::before,
	.section-title::after {
		width: min(160px, 18vw);
	}
}

@media (max-width: 900px) {
	.nav-row {
		flex-wrap: wrap;
	}

	.logo {
		order: 1;
		flex: 1;
	}

	.menu-toggle {
		display: flex;
		order: 2;
	}

	.nav-row {
		flex-wrap: wrap;
	}

	.logo {
		order: 1;
		flex: 1;
	}

	.menu-toggle {
		display: flex;
		order: 2;
	}

	.main-nav {
		order: 3;
		width: 100%;
		flex-direction: column;
		background: linear-gradient(180deg, rgba(32, 33, 39, 0.99), rgba(18, 19, 23, 0.98));
		border-top: 1px solid var(--line-light);
		padding: 0.5rem 0;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.main-nav.active {
		max-height: 500px;
	}

	.main-nav a {
		display: block;
		padding: 0.9rem 1.2rem;
		border-left: 3px solid transparent;
		color: var(--text-soft);
		text-decoration: none;
		font-size: 0.95rem;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		transition: all 0.2s ease;
	}

	.main-nav a:hover,
	.main-nav a:focus {
		border-left-color: var(--brand-color);
		background-color: rgba(212, 162, 82, 0.1);
		color: #ffffff;
		order: 3;
		width: 100%;
		flex-direction: column;
		background: linear-gradient(180deg, rgba(32, 33, 39, 0.99), rgba(18, 19, 23, 0.98));
		border-top: 1px solid var(--line-light);
		padding: 0.5rem 0;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.main-nav.active {
		max-height: 500px;
	}

	.main-nav a {
		display: block;
		padding: 0.9rem 1.2rem;
		border-left: 3px solid transparent;
		color: var(--text-soft);
		text-decoration: none;
		font-size: 0.95rem;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		transition: all 0.2s ease;
	}

	.main-nav a:hover,
	.main-nav a:focus {
		border-left-color: var(--brand-color);
		background-color: rgba(212, 162, 82, 0.1);
		color: #ffffff;
	}

	.header-actions {
		margin-left: auto;
	}

	.hero {
		min-height: 58vh;
		background-position: 56% center;
	}

	.product-grid,
	.video-wrap,
	.card-grid,
	.icon-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.product-visual {
		height: min(500px, 88vw);
	}

	.section-title::before,
	.section-title::after {
		display: none;
	}

	.icon-grid article {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 0.9rem;
	}

	.icon-grid article:first-child {
		border-top: none;
	}
}

@media (max-width: 520px) {
	.container {
		width: min(1200px, calc(100% - 1.2rem));
	}

	.logo {
		font-size: 1.95rem;
	}

	.hero-buttons .btn,
	.cta-actions .btn {
		width: 100%;
	}

	.header-actions {
		gap: 0.45rem;
	}

	.hero h1 {
		font-size: clamp(1.4rem, 8.3vw, 1.95rem);
	}

	.hero p {
		font-size: 0.88rem;
	}

	.kicker {
		font-size: 2.35rem;
	}
}
