:root {
  --bg: #090b10;
  --bg-soft: #121722;
  --panel: rgba(14, 18, 27, 0.92);
  --panel-strong: rgba(10, 13, 20, 0.96);
  --panel-muted: rgba(255, 255, 255, 0.04);
  --panel-muted-strong: rgba(255, 255, 255, 0.07);
  --text: #f5f7fb;
  --muted: #b7bfca;
  --brand: #f59a0a;
  --brand-strong: #ffb11c;
  --brand-deep: #cc7700;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 34px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 154, 10, 0.18), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 78% 82%, rgba(245, 154, 10, 0.08), transparent 24%),
    linear-gradient(180deg, #07090d 0%, #0b1017 42%, #121924 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.92));
  opacity: 0.45;
  z-index: -2;
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  filter: blur(72px);
  opacity: 0.75;
}

.bg-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(245, 154, 10, 0.16);
  top: -120px;
  right: -90px;
}

.bg-glow-2 {
  width: 340px;
  height: 340px;
  background: rgba(72, 87, 112, 0.22);
  bottom: -120px;
  left: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.94) 0%, rgba(7, 9, 14, 0.38) 68%, rgba(7, 9, 14, 0) 100%);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(17, 22, 32, 0.94), rgba(9, 12, 19, 0.88));
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.header-shell::before,
.header-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.header-shell::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 48%),
    radial-gradient(circle at 12% 18%, rgba(245, 154, 10, 0.12), transparent 28%);
}

.header-shell::after {
  inset: 10px 24px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 64%);
  opacity: 0.6;
  filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(245, 154, 10, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--brand);
  font-family: "Literata", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  color: rgba(183, 191, 202, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__brand span {
  color: var(--brand);
}

.nav-toggle {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle__icon {
  display: grid;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-panel {
  position: relative;
  z-index: 1;
  display: contents;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.site-nav__eyebrow {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 6px;
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  text-decoration: none;
  color: rgba(245, 247, 251, 0.76);
  font-weight: 700;
  font-size: 0.93rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 18px rgba(0, 0, 0, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.contact-chip {
  display: grid;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.contact-chip__label {
  color: rgba(183, 191, 202, 0.74);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-chip__value {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.header-action {
  min-width: 168px;
  background: linear-gradient(135deg, rgba(245, 154, 10, 0.2), rgba(255, 255, 255, 0.08));
  border-color: rgba(245, 154, 10, 0.24);
}

.header-action:hover {
  background: linear-gradient(135deg, rgba(245, 154, 10, 0.28), rgba(255, 255, 255, 0.12));
}

.site-header.is-open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #130d05;
  box-shadow: 0 18px 34px rgba(245, 154, 10, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

main {
  padding-bottom: 40px;
}

.hero-section {
  padding-top: 18px;
  padding-bottom: 22px;
}

.hero,
.hero-neo,
.card,
.contact-card,
.list-card,
.product-card,
.swatch,
.kpi,
.step,
.faq details,
.table-wrap,
.site-footer__inner {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.96), rgba(10, 13, 20, 0.94));
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero::before,
.hero-neo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(7, 9, 14, 0.88), rgba(7, 9, 14, 0.46) 52%, rgba(7, 9, 14, 0.78)),
    radial-gradient(circle at 84% 16%, rgba(245, 154, 10, 0.16), transparent 24%);
}

.hero > *,
.hero-neo > * {
  position: relative;
  z-index: 1;
}

.hero.compact {
  padding: 34px 34px 28px;
}

.hero.compact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 177, 28, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.74rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-text,
.muted,
.card p,
.contact-card p,
.list-card p,
.bento p,
.hero-proof-stat span,
.hero-trust-item span,
.site-footer__contacts,
.site-footer__copy,
.site-footer__bottom-copy,
.swatch p,
.product-meta,
.specs,
.faq p {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin-top: 16px;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 32px 0;
}

.section-head {
  margin-bottom: 18px;
}

.cards-grid,
.product-grid,
.decor-swatches,
.contact-wrap,
.kpi-grid,
.steps {
  display: grid;
  gap: 16px;
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decor-swatches,
.contact-wrap,
.kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.contact-card,
.list-card,
.swatch,
.kpi,
.step,
.faq details {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.card,
.contact-card,
.list-card,
.product-card,
.swatch,
.kpi,
.step,
.faq details,
.bento,
.cta-band,
.hero-neo,
.table-wrap {
  position: relative;
  overflow: hidden;
}

.card::after,
.contact-card::after,
.list-card::after,
.product-card::after,
.swatch::after,
.kpi::after,
.step::after,
.bento::after,
.cta-band::after,
.hero-neo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%);
}

.card:hover,
.contact-card:hover,
.product-card:hover,
.swatch:hover,
.bento:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.product-card {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.product-thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(245, 154, 10, 0.16), transparent),
    rgba(255, 255, 255, 0.04);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.variant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(40, 30, 24, 0.08);
}

.variant-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.variant-card span {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 800;
  color: var(--text);
}

.product-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.product-title {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text);
}

.product-price {
  font-weight: 800;
  color: var(--brand);
}

.product-actions {
  margin-top: 4px;
}

.product-grid[data-product-stream]:not([data-product-stream-ready="true"]) > .product-card:nth-child(n+13) {
  display: none;
}

.product-grid--stream .product-card.is-product-stream-hidden {
  display: none !important;
}

.product-grid--stream .product-card.is-product-stream-visible {
  animation: product-stream-card-in 0.32s ease both;
}

.product-stream-status {
  width: min(420px, 100%);
  min-height: 58px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-stream-status[hidden] {
  display: none;
}

.product-stream-status__spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(245, 154, 10, 0.92);
  border-radius: 50%;
  opacity: 0.48;
}

.product-stream-status.is-loading .product-stream-status__spinner {
  opacity: 1;
  animation: product-stream-spin 0.78s linear infinite;
}

@keyframes product-stream-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-stream-spin {
  to {
    transform: rotate(360deg);
  }
}

.specs {
  margin: 0;
  padding-left: 18px;
}

.specs li + li {
  margin-top: 6px;
}

.swatch-preview {
  height: 150px;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card a,
.breadcrumbs a,
.site-footer__contacts a,
.site-footer__links a,
.card a,
.list-card a {
  text-decoration: none;
  color: var(--brand-strong);
  font-weight: 700;
}

.breadcrumbs {
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  position: relative;
  margin-top: clamp(42px, 7vw, 92px);
  padding: 0 0 clamp(24px, 4vw, 42px);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 11, 16, 0), rgba(9, 11, 16, 0.72));
}

.site-footer > .container,
.site-footer__inner {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(245, 154, 10, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(17, 22, 32, 0.96), rgba(8, 11, 17, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.site-footer > .container::before,
.site-footer__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(115deg, rgba(0, 0, 0, 0.9), transparent 70%);
  opacity: 0.48;
}

.site-footer > .container::after,
.site-footer__inner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -92px;
  bottom: -118px;
  border-radius: 50%;
  background: rgba(245, 154, 10, 0.16);
  filter: blur(18px);
  pointer-events: none;
}

.site-footer > .container > *,
.site-footer__inner > * {
  position: relative;
  z-index: 1;
}

.site-footer > .container > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.75;
}

.site-footer > .container > p::before {
  content: "МЕБЕЛЬ ПОВОЛЖЬЯ";
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.08em;
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px 28px;
  align-items: center;
}

.site-footer__brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contacts,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.site-footer__nav {
  justify-content: center;
}

.site-footer__nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-footer__contacts {
  justify-content: flex-end;
  font-size: 0.92rem;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s ease;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi strong {
  display: block;
  font-size: 2rem;
  color: var(--brand);
}

.kpi span {
  color: var(--muted);
  font-size: 0.94rem;
}

.table-wrap {
  border-radius: var(--radius-lg);
  max-width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.step .num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #110d07;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq p {
  margin: 10px 0 0;
}

.hero-neo {
  border-radius: 36px;
  padding: 34px;
}

.hero-b2b {
  background-image: url("assets/gallery/living/living-11.jpg");
  background-size: cover;
  background-position: center;
}

.hero-b2b::before {
  background:
    linear-gradient(115deg, rgba(6, 8, 13, 0.94), rgba(6, 8, 13, 0.62) 52%, rgba(6, 8, 13, 0.88)),
    radial-gradient(circle at 78% 14%, rgba(245, 154, 10, 0.22), transparent 20%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 340px);
  gap: 18px;
  align-items: stretch;
}

.hero-main {
  min-width: 0;
}

.hero-b2b h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  max-width: 11ch;
  margin-top: 10px;
}

.hero-b2b .hero-text {
  max-width: 56ch;
  font-size: 1.15rem;
}

.hero-b2b .pill-row {
  margin-top: 16px;
}

.hero-b2b .hero-actions {
  margin-top: 20px;
}

.shine-btn {
  position: relative;
  overflow: hidden;
}

.shine-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -180%;
  width: 140%;
  height: 320%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shineMove 4.8s linear infinite;
}

@keyframes shineMove {
  to {
    left: 220%;
  }
}

.hero-proof-panel {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(17, 21, 30, 0.9), rgba(9, 12, 18, 0.92));
  box-shadow: var(--shadow-soft);
}

.hero-proof-header {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-proof-stat {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.hero-proof-stat + .hero-proof-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof-stat strong,
.hero-trust-item strong {
  color: var(--text);
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.bento {
  border-radius: 24px;
  padding: 22px;
  background:
    radial-gradient(circle at bottom right, rgba(245, 154, 10, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 23, 34, 0.96), rgba(10, 13, 20, 0.96));
}

.bento h3 {
  margin-bottom: 10px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.glass-panel {
  backdrop-filter: blur(16px);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 12px;
  font-size: 0.84rem;
  color: var(--text);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 154, 10, 0.22), transparent 20%),
    linear-gradient(135deg, rgba(19, 23, 33, 0.96), rgba(9, 12, 18, 0.96));
}

.spotlight-card {
  position: relative;
  isolation: isolate;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.16),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.spotlight-card:hover::before {
  opacity: 1;
}

input.btn-light,
textarea.btn-light,
select.btn-light {
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: rgba(183, 191, 202, 0.72);
}

@media (max-width: 1080px) {
  .cards-grid,
  .product-grid,
  .variant-grid,
  .decor-swatches,
  .contact-wrap,
  .kpi-grid,
  .hero-shell,
  .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid,
  .steps,
  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .bento-wide,
  .bento-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__nav,
  .site-footer__contacts,
  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-top: 12px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-panel {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-open .header-panel {
    display: grid;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    width: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-list li {
    display: flex;
  }

  .nav-list a {
    width: 100%;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-chip,
  .header-action {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 20px, 1180px);
  }

  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    min-height: auto;
    padding: 12px;
    border-radius: 24px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .brand-copy small,
  .site-nav__eyebrow {
    display: none;
  }

  .nav-toggle {
    min-height: 44px;
    padding: 0 14px;
  }

  .nav-toggle__label {
    font-size: 0.74rem;
  }

  .nav-list a {
    min-height: 50px;
    padding: 0 16px;
  }

  .hero,
  .hero-neo,
  .card,
  .contact-card,
  .list-card,
  .swatch,
  .kpi,
  .step,
  .faq details,
  .site-footer > .container,
  .site-footer__inner {
    border-radius: 22px;
  }

  .hero,
  .hero-neo {
    padding: 24px;
  }

  .hero.compact {
    padding: 24px;
  }

  .hero-b2b h1,
  h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .cards-grid,
  .product-grid,
  .variant-grid,
  .decor-swatches,
  .contact-wrap,
  .kpi-grid,
  .steps,
  .hero-shell,
  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  .product-thumb {
    height: 220px;
  }

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

  .site-footer > .container,
  .site-footer__inner {
    padding: 22px;
  }

  .site-footer__top,
  .site-footer__bottom {
    gap: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shine-btn::before {
    animation: none;
  }
}

/* =====================================================
   HOMEPAGE — SHOWCASE / CATEGORY GRID
   ===================================================== */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 340px 260px;
  gap: 14px;
}

.showcase-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.showcase-tile--wide {
  grid-column: span 2;
}

.showcase-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-tile:hover .showcase-tile__img {
  transform: scale(1.06);
}

.showcase-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7, 9, 14, 0.9) 0%,
    rgba(7, 9, 14, 0.28) 55%,
    transparent 100%);
  transition: background 0.35s ease;
}

.showcase-tile:hover .showcase-tile__overlay {
  background: linear-gradient(to top,
    rgba(7, 9, 14, 0.94) 0%,
    rgba(7, 9, 14, 0.5) 60%,
    rgba(245, 154, 10, 0.1) 100%);
}

.showcase-tile__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(9, 11, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-tile__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.showcase-tile__info {
  min-width: 0;
}

.showcase-tile__name {
  display: block;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.2;
}

.showcase-tile__desc {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-tile__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 154, 10, 0.12);
  border: 1px solid rgba(245, 154, 10, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.showcase-tile:hover .showcase-tile__arrow {
  background: var(--brand);
  color: #130d05;
  transform: translate(3px, -2px);
}

/* =====================================================
   HOMEPAGE — BENEFIT CARD ICON
   ===================================================== */

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(245, 154, 10, 0.18), rgba(245, 154, 10, 0.06));
  border: 1px solid rgba(245, 154, 10, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* =====================================================
   HOMEPAGE — STEPS 4-COL
   ===================================================== */

.steps-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step__connector {
  display: none;
}

/* =====================================================
   HOMEPAGE — FORM BAND
   ===================================================== */

.form-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 95% 5%, rgba(245, 154, 10, 0.22), transparent 20%),
    radial-gradient(circle at 5% 95%, rgba(245, 154, 10, 0.09), transparent 22%),
    linear-gradient(145deg, rgba(18, 23, 34, 0.98), rgba(9, 12, 19, 0.96));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.form-band__content {
  position: relative;
  z-index: 1;
}

.form-band__perks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.form-band__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-band__perk-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #130d05;
}

.form-band__phone {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-band__phone a {
  font-weight: 800;
  color: var(--brand);
  font-size: 1.15rem;
  text-decoration: none;
  display: block;
}

.form-band__phone p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 5px 0 0;
}

.form-band__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: rgba(245, 154, 10, 0.55);
  background: rgba(245, 154, 10, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 154, 10, 0.1);
}

.form-input::placeholder {
  color: rgba(183, 191, 202, 0.46);
}

.form-band__submit {
  width: 100%;
  margin-top: 6px;
  min-height: 54px;
  font-size: 1rem;
}

.form-band__note {
  color: var(--muted);
  font-size: 0.76rem;
  margin: 10px 0 0;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
  color: var(--brand);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* =====================================================
   HOMEPAGE — SECTION LINK
   ===================================================== */

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.section-link:hover {
  gap: 14px;
}

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

/* =====================================================
   HOMEPAGE — FOOTER REBUILD
   ===================================================== */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px 40px;
  padding-bottom: 28px;
}

.footer-col__title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 16px;
}

.footer-col__links {
  display: grid;
  gap: 11px;
}

.footer-col__links a,
.footer-col__links span {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.2s ease;
  display: block;
}

.footer-col__links a:hover {
  color: var(--text);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 0;
}

.footer-bottom__copy {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: var(--text);
}

/* =====================================================
   RESPONSIVE OVERRIDES — NEW HOME ELEMENTS
   ===================================================== */

@media (max-width: 1080px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 240px 220px;
  }

  .showcase-tile--wide {
    grid-column: span 2;
  }

  .steps-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }

  .form-band {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .showcase-tile,
  .showcase-tile--wide {
    grid-column: auto;
    height: 220px;
  }

  .showcase-tile--wide {
    height: 260px;
  }

  .steps-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-band {
    padding: 22px;
    border-radius: 22px;
  }

  .form-band__card {
    padding: 22px;
  }
}

/* =====================================================
   HOMEPAGE V2 — MIX OF MPVL + KUZMIR REFERENCE
   ===================================================== */

.page-home {
  --brand: #5d6bff;
  --brand-strong: #7d8aff;
  --brand-deep: #3947d7;
  --line: rgba(120, 131, 255, 0.18);
  --line-strong: rgba(135, 145, 255, 0.28);
  background:
    radial-gradient(circle at 12% 18%, rgba(93, 107, 255, 0.16), transparent 20%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #06070b 0%, #090b12 34%, #0d1320 100%);
}

.page-home::before {
  opacity: 0.2;
}

.page-home .bg-glow-1 {
  background: rgba(93, 107, 255, 0.18);
}

.page-home .bg-glow-2 {
  background: rgba(23, 29, 48, 0.42);
}

.page-home .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.28) 68%, rgba(5, 7, 12, 0) 100%);
}

.page-home .header-shell {
  min-height: 82px;
  padding: 12px 14px 12px 16px;
  border-color: rgba(124, 136, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(25, 29, 47, 0.92), rgba(18, 22, 37, 0.86));
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
}

.page-home .header-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 50%),
    radial-gradient(circle at 8% 26%, rgba(93, 107, 255, 0.16), transparent 28%);
}

.page-home .header-shell::after {
  inset: 6px 22px auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(93, 107, 255, 0.12), transparent 64%);
}

.page-home .brand-mark {
  color: #eef1ff;
  border-color: rgba(140, 151, 255, 0.22);
  background: linear-gradient(135deg, rgba(94, 107, 255, 0.36), rgba(69, 82, 196, 0.72));
  box-shadow: 0 14px 26px rgba(61, 72, 174, 0.28);
}

.page-home .nav-list {
  border-color: rgba(124, 136, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.page-home .nav-list a {
  color: rgba(240, 244, 255, 0.7);
}

.page-home .nav-list a:hover,
.page-home .nav-list a.active {
  background: linear-gradient(180deg, rgba(93, 107, 255, 0.18), rgba(93, 107, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 18px rgba(0, 0, 0, 0.2);
}

.page-home .contact-chip {
  border-color: rgba(124, 136, 255, 0.16);
  background: linear-gradient(180deg, rgba(93, 107, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.page-home .btn-light {
  background: linear-gradient(135deg, rgba(93, 107, 255, 0.88), rgba(78, 90, 221, 0.96));
  color: #f7f8ff;
  border-color: rgba(130, 142, 255, 0.28);
  box-shadow: 0 18px 34px rgba(57, 71, 215, 0.28);
}

.page-home .btn-light:hover {
  transform: translateY(-2px);
}

.hero-section--immersive {
  padding: 0;
}

.home-stage {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.home-stage__bg,
.home-stage__shade,
.home-stage__glow {
  position: absolute;
  inset: 0;
}

.home-stage__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) brightness(0.42);
}

.home-stage__shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.76) 34%, rgba(5, 7, 10, 0.52) 56%, rgba(5, 7, 10, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.36) 0%, rgba(5, 7, 10, 0.1) 24%, rgba(5, 7, 10, 0.84) 100%);
}

.home-stage__glow {
  background:
    radial-gradient(circle at 20% 24%, rgba(93, 107, 255, 0.16), transparent 16%),
    radial-gradient(circle at 86% 18%, rgba(93, 107, 255, 0.14), transparent 18%),
    radial-gradient(circle at 72% 82%, rgba(255, 255, 255, 0.04), transparent 20%);
}

.home-stage__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
  gap: 34px;
  align-items: center;
  min-height: 100vh;
  padding-top: 146px;
  padding-bottom: 44px;
}

.home-stage__copy {
  max-width: 760px;
  padding-top: 18px;
}

.home-stage__tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(110, 122, 255, 0.22);
  background: rgba(18, 23, 40, 0.72);
  color: #d7ddff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .home-stage h1 {
  margin-top: 18px;
  max-width: 10ch;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.96;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.page-home .home-stage .hero-text {
  max-width: 58ch;
  font-size: 1.08rem;
  color: rgba(226, 231, 246, 0.88);
}

.home-stage__actions {
  margin-top: 28px;
}

.page-home .home-stage .btn-primary {
  background: linear-gradient(135deg, rgba(93, 107, 255, 0.94), rgba(68, 80, 210, 0.98));
  color: #f7f8ff;
  box-shadow: 0 22px 36px rgba(57, 71, 215, 0.28);
}

.page-home .home-stage .btn-outline {
  background: rgba(10, 12, 20, 0.54);
  border-color: rgba(255, 255, 255, 0.1);
}

.home-stage__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stage__metric strong {
  display: block;
  margin-bottom: 6px;
  color: #f5f7ff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-stage__metric span {
  color: rgba(208, 214, 233, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-stage__side {
  display: grid;
  gap: 18px;
  align-self: center;
  justify-self: end;
  width: min(100%, 420px);
}

.home-stage__stock-card,
.home-stage__proof,
.home-stage__preview {
  border: 1px solid rgba(121, 133, 255, 0.18);
  background: rgba(20, 24, 40, 0.58);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.home-stage__stock-card {
  padding: 18px 20px;
  border-radius: 22px;
}

.home-stage__stock-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(173, 184, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-stage__stock-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.18;
}

.home-stage__proof {
  padding: 24px;
  border-radius: 30px;
}

.home-stage__proof-title {
  margin: 0 0 16px;
  color: #f5f7ff;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-stage__proof-item {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(10, 13, 22, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-stage__proof-item + .home-stage__proof-item {
  margin-top: 12px;
}

.home-stage__proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.home-stage__proof-item p {
  margin: 0;
  color: rgba(206, 213, 231, 0.72);
}

.home-stage__preview {
  position: absolute;
  right: 0;
  bottom: 48px;
  width: min(100%, 440px);
  padding: 18px;
  border-radius: 28px;
}

.home-stage__preview-label {
  margin: 0 0 14px;
  color: rgba(173, 184, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-stage__preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.home-stage__preview-card {
  display: grid;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.home-stage__preview-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
}

.home-stage__preview-card--lead img {
  height: 200px;
}

.home-stage__preview-copy {
  display: grid;
  gap: 4px;
}

.home-stage__preview-copy strong {
  font-size: 1.02rem;
}

.home-stage__preview-copy span {
  color: rgba(206, 213, 231, 0.7);
  font-size: 0.86rem;
  line-height: 1.4;
}

.home-welcome {
  display: grid;
  gap: 22px;
}

.home-welcome__intro {
  max-width: 72ch;
}

.home-welcome__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.95fr;
  gap: 18px;
}

.home-welcome__card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(121, 133, 255, 0.14);
  background: linear-gradient(180deg, rgba(18, 22, 36, 0.88), rgba(11, 15, 24, 0.94));
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
}

.home-welcome__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.04), rgba(4, 7, 12, 0.84));
}

.home-welcome__card > * {
  position: relative;
  z-index: 1;
}

.home-welcome__card--catalog {
  background:
    linear-gradient(180deg, rgba(8, 10, 18, 0.02), rgba(8, 10, 18, 0.82)),
    url("assets/gallery/wardrobes/wardrobes-03.jpg") center/cover;
}

.home-welcome__card--b2b {
  background:
    linear-gradient(180deg, rgba(8, 10, 18, 0.02), rgba(8, 10, 18, 0.82)),
    url("assets/gallery/hallways/hallways-04.jpg") center/cover;
}

.home-welcome__card-label {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(10, 14, 24, 0.6);
  color: rgba(173, 184, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-welcome__card strong {
  font-size: 1.4rem;
  line-height: 1.12;
}

.home-welcome__card p {
  margin: 12px 0 0;
  color: rgba(212, 219, 238, 0.78);
}

.home-welcome__card-link {
  margin-top: 18px;
  color: #dbe0ff;
  font-weight: 800;
}

.home-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-help-card {
  min-height: 210px;
  border: 1px solid rgba(121, 133, 255, 0.14);
  background: linear-gradient(180deg, rgba(18, 22, 36, 0.92), rgba(10, 13, 22, 0.96));
}

.home-help-card__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(93, 107, 255, 0.92), rgba(67, 80, 210, 0.98));
  color: #f7f8ff;
  font-weight: 800;
}

.page-home .showcase-tile__badge {
  border-color: rgba(121, 133, 255, 0.18);
  background: rgba(10, 14, 24, 0.58);
}

.page-home .showcase-tile__arrow {
  color: var(--brand);
}

.page-home .form-band,
.page-home .site-footer__inner {
  border-color: rgba(121, 133, 255, 0.14);
  background: linear-gradient(180deg, rgba(16, 20, 32, 0.92), rgba(10, 12, 20, 0.96));
}

@media (max-width: 1180px) {
  .page-home .site-header {
    position: sticky;
  }

  .home-stage__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 138px;
    min-height: auto;
  }

  .home-stage__copy {
    max-width: 680px;
    padding-top: 22px;
  }

  .page-home .home-stage h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 8vw, 5.4rem);
  }

  .home-stage__side {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .home-stage__preview {
    position: static;
    width: 100%;
  }

  .home-welcome__grid,
  .home-help-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-welcome__card--facts {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .page-home .header-shell {
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .page-home .header-panel {
    grid-column: 1 / -1;
  }

  .home-stage__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stage__preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-home .site-header {
    padding-top: 10px;
  }

  .page-home .header-shell {
    border-radius: 24px;
    min-height: 74px;
  }

  .page-home .brand-copy strong,
  .page-home .brand-copy small {
    white-space: normal;
  }

  .home-stage {
    min-height: auto;
  }

  .home-stage__inner {
    padding-top: 116px;
    padding-bottom: 28px;
  }

  .page-home .home-stage h1 {
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .page-home .home-stage .hero-text {
    font-size: 1rem;
  }

  .home-stage__metrics,
  .home-welcome__grid,
  .home-help-grid {
    grid-template-columns: 1fr;
  }

  .home-stage__preview {
    padding: 16px;
    border-radius: 24px;
  }

  .home-stage__preview-card--lead img {
    height: 170px;
  }

  .home-stage__preview-grid {
    grid-template-columns: 1fr;
  }

  .home-stage__proof,
  .home-stage__stock-card,
  .home-welcome__card {
    border-radius: 24px;
  }

  .home-welcome__card,
  .home-help-card {
    min-height: auto;
  }

  .home-welcome__card--facts {
    grid-column: auto;
  }
}

body.page-lux {
  --lux-bg: #07090d;
  --lux-panel: rgba(16, 20, 28, 0.94);
  --lux-panel-strong: rgba(11, 14, 20, 0.98);
  --lux-card: rgba(20, 24, 32, 0.92);
  --lux-text: #f2ede4;
  --lux-muted: rgba(218, 208, 190, 0.74);
  --lux-line: rgba(255, 255, 255, 0.08);
  --lux-line-strong: rgba(200, 155, 104, 0.32);
  --lux-accent: #c89b68;
  --lux-accent-strong: #efbf89;
  --lux-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  color: var(--lux-text);
  background:
    radial-gradient(circle at 12% 16%, rgba(200, 155, 104, 0.12), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.05), transparent 16%),
    linear-gradient(180deg, #06080b 0%, #0b0d12 42%, #090b0f 100%);
}

body.page-lux::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.32;
}

body.page-lux .bg-glow {
  display: none;
}

body.page-lux,
body.page-lux p,
body.page-lux li,
body.page-lux span {
  color: inherit;
}

body.page-lux {
  color: var(--lux-text);
}

body.page-lux a {
  color: inherit;
}

body.page-lux h1,
body.page-lux h2,
body.page-lux h3,
body.page-lux h4,
body.page-lux strong {
  color: var(--lux-text);
}

body.page-lux .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

body.page-lux .btn:hover {
  transform: translateY(-2px);
}

body.page-lux .btn-primary {
  color: #1a120b;
  border-color: rgba(239, 191, 137, 0.48);
  background: linear-gradient(135deg, rgba(235, 186, 132, 0.96), rgba(170, 111, 59, 0.96));
  box-shadow: 0 18px 30px rgba(136, 84, 40, 0.28);
}

body.page-lux .btn-outline,
body.page-lux .btn-light {
  color: var(--lux-text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.lux-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 324px minmax(0, 1fr);
  gap: 24px;
  min-height: 100vh;
  padding: 18px;
}

.lux-rail,
.mpvl-products-rail,
.lux-main,
.lux-panel,
.lux-inline-footer {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--lux-panel);
  box-shadow: var(--lux-shadow);
}

.mpvl-products-rail {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(12px, 2.2vh, 24px);
  min-height: calc(100vh - 36px);
  padding: clamp(18px, 2.8vh, 28px) 18px clamp(18px, 2.6vh, 24px);
  border-radius: 28px;
  overflow: hidden;
}

.mpvl-products-rail::before,
.mpvl-products-rail::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mpvl-products-rail::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(200, 155, 104, 0.18), transparent 42%);
}

.mpvl-products-rail::after {
  width: 180px;
  height: 180px;
  right: -96px;
  bottom: -74px;
  border-radius: 50%;
  background: rgba(200, 155, 104, 0.16);
  filter: blur(12px);
}

.mpvl-products-rail > * {
  position: relative;
  z-index: 1;
}

.mpvl-products-rail__toggle {
  display: none;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(8, 11, 16, 0.86);
  color: var(--lux-accent-strong);
}

.mpvl-products-rail__toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpvl-products-rail__mark {
  display: grid;
  place-items: center;
  width: min(100%, 210px);
  min-height: clamp(96px, 15vh, 150px);
  margin: 0 auto;
  border-radius: 24px;
  text-decoration: none;
}

.mpvl-products-rail__mark img {
  width: min(164px, 78%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
}

.mpvl-products-rail__nav {
  align-self: center;
  display: grid;
  gap: 0;
  width: 100%;
  min-height: 0;
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
  scrollbar-width: none;
}

.mpvl-products-rail__nav::-webkit-scrollbar {
  display: none;
}

.mpvl-products-rail__nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(36px, 5.35vh, 48px);
  padding: 0 10px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  color: rgba(242, 237, 228, 0.78);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.mpvl-products-rail__nav a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mpvl-products-rail__nav a:hover,
.mpvl-products-rail__nav a.is-current {
  color: var(--lux-accent-strong);
  border-color: rgba(239, 191, 137, 0.24);
  background: rgba(255, 255, 255, 0.035);
  transform: none;
}

.mpvl-products-rail__nav a.is-current::before {
  content: none;
}

.mpvl-products-rail__pin {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(239, 191, 137, 0.26);
  background:
    radial-gradient(circle, rgba(239, 191, 137, 0.88) 0 4px, transparent 5px),
    rgba(255, 255, 255, 0.035);
}

.lux-rail {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  min-height: calc(100vh - 36px);
  padding: 22px 18px 22px;
  border-radius: 34px;
  overflow: hidden;
}

.lux-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 50% 26%, rgba(200, 155, 104, 0.12), transparent 34%);
  pointer-events: none;
}

.lux-rail > * {
  position: relative;
  z-index: 1;
}

.lux-rail__menu,
.lux-topbar__toggle {
  display: none;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(8, 11, 16, 0.86);
  color: var(--lux-accent-strong);
}

.lux-rail__menu svg,
.lux-rail__glyph svg,
.lux-topbar__toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-rail__brand {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  text-decoration: none;
}

.lux-wheel {
  width: min(100%, 210px);
  filter:
    drop-shadow(0 0 20px rgba(200, 155, 104, 0.18))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.lux-wheel__halo {
  fill: rgba(200, 155, 104, 0.08);
}

.lux-wheel__ring,
.lux-wheel__spoke,
.lux-wheel__handle,
.lux-wheel__knob {
  stroke: rgba(216, 160, 105, 0.9);
  fill: none;
  stroke-linecap: round;
}

.lux-wheel__ring--outer {
  stroke-width: 10;
}

.lux-wheel__ring--inner {
  stroke-width: 7;
}

.lux-wheel__spoke {
  stroke-width: 6;
}

.lux-wheel__handle {
  stroke-width: 4.5;
}

.lux-wheel__knob {
  fill: #e3ba88;
  stroke-width: 1.8;
}

.lux-wheel__hub {
  fill: rgba(17, 20, 28, 0.96);
  stroke: rgba(227, 186, 136, 0.92);
  stroke-width: 4;
}

.lux-wheel__hub-text {
  fill: #f6ede0;
  font-family: "Literata", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lux-rail__brand-copy {
  display: grid;
  gap: 4px;
}

.lux-rail__brand-copy strong {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lux-rail__brand-copy small {
  color: var(--lux-muted);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lux-rail__nav {
  display: grid;
  gap: 8px;
}

.lux-rail__link {
  position: relative;
  display: grid;
  grid-template-columns: 34px 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(242, 237, 228, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.lux-rail__index,
.lux-rail__glyph {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.lux-rail__index {
  font-size: 0.72rem;
  color: var(--lux-accent-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.lux-rail__glyph {
  color: var(--lux-accent-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lux-rail__link::before,
.lux-rail__link::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(233, 183, 127, 0.78), transparent);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.28s ease;
}

.lux-rail__link::before {
  left: -1px;
}

.lux-rail__link::after {
  right: -1px;
}

.lux-rail__link:hover,
.lux-rail__link.is-active {
  border-color: rgba(200, 155, 104, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lux-text);
  transform: translateX(2px);
}

.lux-rail__link:hover::before,
.lux-rail__link:hover::after,
.lux-rail__link.is-active::before,
.lux-rail__link.is-active::after {
  opacity: 1;
}

.lux-rail__footer {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lux-rail__footer p {
  margin: 0;
  color: var(--lux-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.lux-rail__actions {
  display: grid;
  gap: 10px;
}

.lux-page {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.lux-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  background: rgba(11, 14, 20, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.lux-topbar__meta {
  display: grid;
  gap: 4px;
}

.lux-topbar__eyebrow {
  color: var(--lux-accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-topbar__meta strong {
  font-size: 1.05rem;
}

.lux-main {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.05), transparent 14%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.98), rgba(10, 13, 18, 0.99));
}

.lux-main::before {
  content: "";
  position: absolute;
  inset: 0 0 30% 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.05), transparent 16%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 9px 100%;
  opacity: 0.36;
  pointer-events: none;
}

.lux-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 20%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(58, 34, 19, 0.08), rgba(35, 23, 14, 0.18)),
    repeating-linear-gradient(90deg, rgba(80, 57, 40, 0.24) 0, rgba(80, 57, 40, 0.24) 1px, rgba(30, 20, 13, 0.4) 1px, rgba(30, 20, 13, 0.4) 128px);
  pointer-events: none;
}

.lux-main > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.lux-main .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.lux-panel,
.lux-inline-footer {
  border-radius: 28px;
  padding: 24px;
}

.lux-section {
  padding: 28px;
}

.lux-main .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--lux-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lux-main .breadcrumbs a {
  color: var(--lux-accent-strong);
  text-decoration: none;
}

.lux-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: stretch;
}

.lux-hero__body {
  display: grid;
  align-content: center;
  gap: 16px;
}

.lux-main .eyebrow,
.lux-main .badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--lux-accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-main .badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 155, 104, 0.18);
}

.lux-main h1,
.lux-main h2 {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  line-height: 1.08;
}

.lux-main h1 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
}

.lux-main h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.lux-main .hero-text,
.lux-main .muted,
.lux-main .contact-card p,
.lux-main .list-card p,
.lux-main .card p,
.lux-main .section > p {
  color: var(--lux-muted);
  line-height: 1.75;
}

.lux-main .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lux-hero__visual {
  overflow: hidden;
  border-radius: 22px;
}

.lux-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.86);
}

.lux-main .cards-grid,
.lux-main .contact-wrap {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.lux-main .cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lux-main .contact-wrap {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lux-main .card,
.lux-main .contact-card,
.lux-main .list-card,
.lux-main .product-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.lux-main .card h3,
.lux-main .contact-card h3,
.lux-main .list-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.lux-catalog-card {
  grid-template-rows: auto auto 1fr;
}

.lux-catalog-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.lux-catalog-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.9);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.lux-catalog-card:hover .lux-catalog-card__media img {
  transform: scale(1.04);
  filter: brightness(0.84) saturate(0.94);
}

.lux-catalog-card__meta {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 14, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--lux-accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lux-main .card a,
.lux-main .contact-card a,
.lux-main .list-card a {
  color: var(--lux-accent-strong);
  text-decoration: none;
}

.lux-catalog-card__arrow {
  margin-left: 8px;
}

.lux-main .specs {
  margin: 0;
  padding-left: 18px;
  color: var(--lux-muted);
  line-height: 1.8;
}

.lux-main img.product-thumb {
  width: 100%;
  border-radius: 18px !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.lux-field {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--lux-text) !important;
  box-shadow: none !important;
}

.lux-field::placeholder {
  color: rgba(218, 208, 190, 0.56);
}

.lux-detail-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr) !important;
}

.lux-inline-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.72fr) minmax(190px, 0.85fr) auto;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 0%, rgba(239, 191, 137, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 32%),
    var(--lux-panel);
}

.lux-inline-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(110deg, rgba(0, 0, 0, 0.92), transparent 72%);
  opacity: 0.5;
}

.lux-inline-footer > * {
  position: relative;
  z-index: 1;
}

.lux-inline-footer__copy {
  display: grid;
  gap: 8px;
}

.lux-inline-footer__eyebrow {
  margin: 0;
  color: var(--lux-accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-inline-footer__copy strong {
  font-size: 1.1rem;
}

.lux-inline-footer__copy span {
  color: var(--lux-muted);
  line-height: 1.7;
}

.lux-inline-footer__nav,
.lux-inline-footer__contacts {
  display: grid;
  gap: 9px;
}

.lux-inline-footer__nav a,
.lux-inline-footer__contacts a,
.lux-inline-footer__contacts span {
  color: var(--lux-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.lux-inline-footer__nav a {
  width: fit-content;
  transition: color 0.24s ease, transform 0.24s ease;
}

.lux-inline-footer__nav a:hover,
.lux-inline-footer__contacts a:hover {
  color: var(--lux-accent-strong);
}

.lux-inline-footer__nav a:hover {
  transform: translateX(3px);
}

.lux-inline-footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer--unified {
  margin-top: 24px;
  color: var(--lux-text);
}

.site-footer--unified .site-footer__inner {
  width: 100%;
  color: var(--lux-text);
}

.site-footer__grid-home {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.site-footer__brand-home {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.site-footer__brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(239, 191, 137, 0.28);
  color: var(--lux-accent-strong);
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.045);
}

.site-footer__brand-text {
  display: block;
  color: var(--lux-text);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.site-footer__brand-note,
.site-footer__home-links span,
.site-footer__bottom-home p {
  color: var(--lux-muted);
}

.site-footer__brand-note {
  margin: 8px 0 0;
  max-width: 300px;
  line-height: 1.55;
}

.site-footer__home-title {
  margin: 0 0 12px;
  color: var(--lux-text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__home-links {
  display: grid;
  gap: 8px;
}

.site-footer__home-links a,
.site-footer__home-links span,
.site-footer__bottom-home-links a {
  font-size: 0.92rem;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer__home-links a,
.site-footer__bottom-home-links a {
  color: var(--lux-accent-strong);
  font-weight: 800;
}

.site-footer__home-links a:hover,
.site-footer__bottom-home-links a:hover {
  color: var(--lux-text);
}

.site-footer__bottom-home {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-home p {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer__bottom-home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

@media (max-width: 1280px) {
  .lux-shell {
    grid-template-columns: 292px minmax(0, 1fr);
  }

  .lux-hero {
    grid-template-columns: 1fr;
  }

  .lux-inline-footer {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }

  .site-footer__grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .lux-shell {
    display: block;
    padding: 0;
  }

  .mpvl-products-rail {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(360px, 88vw);
    min-height: auto;
    border-radius: 0 30px 30px 0;
    transform: translateX(-104%);
    transition: transform 0.36s ease;
    z-index: 20;
  }

  body.is-rail-open .mpvl-products-rail {
    transform: translateX(0);
  }

  .mpvl-products-rail__toggle,
  .lux-topbar__toggle {
    display: grid;
  }

  .lux-page {
    gap: 0;
  }

  .lux-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .lux-main,
  .lux-inline-footer,
  .site-footer--unified {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .lux-inline-footer {
    padding-bottom: 32px;
  }
}

@media (max-width: 760px) {
  .lux-topbar {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
    padding: 14px 18px;
  }

  .lux-topbar__meta {
    min-width: 0;
  }

  .lux-topbar__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .lux-topbar__meta strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .lux-topbar__cta {
    grid-column: 2;
    justify-self: start;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .lux-main,
  .lux-section,
  .lux-panel,
  .lux-inline-footer,
  .site-footer--unified .site-footer__inner {
    padding: 18px;
  }

  .lux-main .cards-grid,
  .lux-main .contact-wrap,
  .lux-detail-grid {
    grid-template-columns: 1fr !important;
  }

  .lux-main .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lux-main .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
    line-height: 1.24;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .lux-catalog-card__media img,
  .lux-hero__visual img {
    min-height: 220px;
    height: 220px;
  }

  .lux-inline-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__grid-home {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-home {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom-home-links {
    justify-content: flex-start;
  }

  .lux-inline-footer__actions {
    justify-content: flex-start;
  }
}

.materials-hero h1 {
  max-width: 12ch;
}

.materials-overview,
.materials-band {
  padding: 34px 0;
}

.materials-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 22px;
  align-items: end;
}

.materials-overview__intro {
  display: grid;
  gap: 12px;
}

.materials-overview__intro h2,
.materials-section-head h2 {
  letter-spacing: 0;
}

.materials-overview__intro p,
.materials-section-head p:not(.eyebrow) {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.7;
}

.materials-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.materials-stat,
.materials-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.94), rgba(10, 13, 20, 0.94));
  box-shadow: var(--shadow-soft);
}

.materials-stat {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.materials-stat:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.materials-stat span,
.materials-card__body span {
  color: var(--brand-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.materials-stat strong {
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.materials-stat em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.materials-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.materials-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.materials-category-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
}

.materials-category-row b {
  color: var(--brand-strong);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.materials-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.materials-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.materials-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 154, 10, 0.12), transparent),
    rgba(255, 255, 255, 0.04);
}

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

.materials-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.materials-card__body h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.34;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

body.page-lux .materials-overview,
body.page-lux .materials-band {
  padding: 26px 0;
}

body.page-lux .materials-overview__intro p,
body.page-lux .materials-section-head p:not(.eyebrow),
body.page-lux .materials-stat em,
body.page-lux .materials-category-row span {
  color: var(--lux-muted);
}

body.page-lux .materials-stat,
body.page-lux .materials-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 22, 30, 0.9), rgba(10, 13, 18, 0.96));
}

body.page-lux .materials-stat:hover,
body.page-lux .materials-card:hover {
  border-color: rgba(200, 155, 104, 0.34);
}

body.page-lux .materials-stat span,
body.page-lux .materials-card__body span,
body.page-lux .materials-category-row b {
  color: var(--lux-accent-strong);
}

body.page-lux .materials-stat strong,
body.page-lux .materials-card__body h3 {
  color: var(--lux-text);
}

@media (max-width: 1180px) {
  .materials-overview {
    grid-template-columns: 1fr;
  }

  .materials-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .materials-stats {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 460px) {
  .materials-stats,
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

.materials-page {
  --materials-dark: #080a0e;
  --materials-home-text: #f2ece3;
  --materials-home-muted: rgba(236, 227, 214, 0.74);
  --materials-home-accent: #c89c69;
  --materials-home-accent-bright: #e8bb8a;
  display: block;
  padding-bottom: 64px;
  color: var(--materials-home-text);
  background:
    radial-gradient(circle at 18% 13%, rgba(200, 156, 105, 0.14), transparent 17%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(180deg, #05070b 0%, #0a0d12 46%, #08090d 100%);
}
.materials-page .breadcrumbs { display: none; }
.materials-logo-anchor,
.materials-menu-link {
  position: fixed;
  z-index: 60;
  top: 20px;
  min-height: 64px;
  border: 1px solid rgba(200, 156, 105, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 24, 34, 0.98), rgba(11, 15, 22, 0.94));
  color: rgba(247, 235, 219, 0.96);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-decoration: none;
}
.materials-logo-anchor {
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 22px 8px 10px;
}
.materials-logo-anchor img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.materials-logo-anchor span {
  display: grid;
  gap: 2px;
}
.materials-logo-anchor strong,
.materials-logo-anchor em,
.materials-menu-link {
  text-transform: uppercase;
}
.materials-logo-anchor strong {
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.materials-logo-anchor em {
  color: var(--materials-home-muted);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.materials-menu-link {
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 22px;
  color: var(--materials-home-accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.materials-hero--deck {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  min-height: min(760px, 100vh);
  padding-top: 112px;
  padding-bottom: 54px;
}

.materials-hero__copy {
  display: grid;
  gap: 16px;
}

.materials-hero h1 {
  max-width: 10ch;
  color: var(--materials-home-text);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.materials-hero-deck {
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 0.92fr;
  grid-template-rows: 170px 170px 170px;
  gap: 12px;
  min-height: 534px;
  padding: 0;
  border: 1px solid rgba(208, 224, 240, 0.1);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
  overflow: hidden;
}

.materials-hero-deck img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.98) contrast(1.04);
}

.materials-hero-deck img:first-child {
  grid-row: 1 / span 2;
}

.materials-hero-deck img:nth-child(2) {
  grid-column: 2 / span 2;
}
.materials-hero-deck img:nth-child(4) {
  grid-row: span 2;
}

.materials-explorer {
  display: grid;
  gap: 22px;
  padding: 34px 0 52px;
}

.materials-explorer__head {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.materials-explorer__head h2,
.materials-workbench__header h2 {
  margin: 0;
  letter-spacing: 0;
}

.materials-explorer__head p:not(.eyebrow),
.materials-workbench__header p:not(.eyebrow) {
  margin: 0;
  max-width: 74ch;
  color: #aebad5;
  line-height: 1.7;
}

.materials-category-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.materials-choice {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  min-height: 144px;
  padding: 12px;
  border: 1px solid rgba(208, 224, 240, 0.1);
  border-radius: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.94), rgba(9, 12, 19, 0.96));
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.materials-choice:hover,
.materials-choice:focus-visible,
.materials-choice.is-active {
  border-color: rgba(245, 154, 10, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.26), 0 0 0 1px rgba(245,154,10,0.12) inset;
}

.materials-choice:focus-visible,
.materials-filter:focus-visible,
.materials-more:focus-visible,
.materials-sort-group button:focus-visible,
.materials-search input:focus {
  outline: 2px solid rgba(245,154,10,0.72);
  outline-offset: 3px;
}

.materials-choice__stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.materials-choice__stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.materials-choice__content {
  display: grid;
  gap: 7px;
  align-content: center;
  padding-right: 34px;
}

.materials-choice__content small,
.materials-card__body span,
.materials-filter b,
.materials-result-badge {
  color: #f0b15d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.materials-choice__content strong {
  font-size: 1rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.materials-choice__content em {
  color: #aebad5;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.38;
}

.materials-choice__content span {
  display: none;
}

.materials-choice__count {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 12, 19, 0.74);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 800;
}

.materials-workbench {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(208, 224, 240, 0.1);
  border-radius: 28px;
  background: radial-gradient(circle at 16% 0%, rgba(245,154,10,0.12), transparent 25%), linear-gradient(180deg, rgba(18,23,34,0.88), rgba(9,12,19,0.96));
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
}

.materials-workbench__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.materials-result-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(245,154,10,0.26);
  border-radius: 999px;
  background: rgba(245,154,10,0.08);
}

.materials-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: 12px;
}

.materials-search,
.materials-sort {
  display: grid;
  gap: 8px;
  color: #aebad5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.materials-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(232, 187, 138, 0.22);
  border-radius: 0;
  color: #ffffff;
  background: rgba(255,255,255,0.055);
  padding: 0 14px;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.materials-search input::placeholder {
  color: rgba(226, 232, 240, 0.5);
}

.materials-sort-group {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr;
  gap: 6px;
  min-height: 48px;
  padding: 5px;
  border: 1px solid rgba(232, 187, 138, 0.22);
  background: rgba(255,255,255,0.045);
}

.materials-sort-group button {
  min-width: 0;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  color: rgba(236, 227, 214, 0.72);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.materials-sort-group button:hover,
.materials-sort-group button.is-active {
  color: #120f0b;
  background: linear-gradient(135deg, #e8bb8a, #c89c69);
  box-shadow: 0 10px 24px rgba(200, 156, 105, 0.2);
}

.materials-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.materials-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #aebad5;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.materials-filter.is-active,
.materials-filter:hover {
  border-color: rgba(245,154,10,0.42);
  color: #ffffff;
  background: rgba(245,154,10,0.1);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.materials-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(208, 224, 240, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.94), rgba(10, 13, 20, 0.94));
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.materials-card:hover {
  border-color: rgba(208, 224, 240, 0.2);
  transform: translateY(-2px);
}

.materials-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 154, 10, 0.12), transparent), rgba(255, 255, 255, 0.04);
}

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

.materials-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.materials-card__body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.34;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.materials-empty {
  margin: 0;
  color: #aebad5;
}

.materials-more-wrap {
  display: flex;
  justify-content: center;
}

.materials-explorer__head p:not(.eyebrow),
.materials-workbench__header p:not(.eyebrow),
.materials-choice__content em,
.materials-choice__content span,
.materials-filter,
.materials-search,
.materials-sort,
.materials-empty {
  color: #aebad5;
}

.materials-hero-deck,
.materials-choice,
.materials-workbench,
.materials-card {
  border-color: rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18, 22, 30, 0.9), rgba(10, 13, 18, 0.96));
}

.materials-choice:hover,
.materials-choice:focus-visible,
.materials-choice.is-active,
.materials-filter.is-active,
.materials-filter:hover {
  border-color: rgba(200, 155, 104, 0.46);
}

.materials-choice__content small,
.materials-card__body span,
.materials-filter b,
.materials-result-badge {
  color: #f0b15d;
}

.materials-choice__content strong,
.materials-card__body h3,
.materials-search input {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .materials-hero--deck {
    grid-template-columns: 1fr;
  }

  .materials-category-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .materials-category-showcase,
  .materials-tools {
    grid-template-columns: 1fr;
  }

  .materials-workbench__header {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .materials-hero-deck {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 112px);
    min-height: 0;
    border-radius: 22px;
  }

  .materials-hero-deck img:first-child,
  .materials-hero-deck img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .materials-explorer {
    padding-top: 24px;
  }

  .materials-choice {
    grid-template-rows: 164px 1fr;
    min-height: 320px;
    border-radius: 20px;
  }

  .materials-workbench {
    padding: 16px;
    border-radius: 22px;
  }

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

@media (max-width: 460px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

body.page-lux .mpvl-products-rail__nav a {
  color: rgba(242, 237, 228, 0.78);
}

body.page-lux .mpvl-products-rail__nav a:hover,
body.page-lux .mpvl-products-rail__nav a.is-current {
  color: var(--lux-text);
}

/* Materials compact workspace */
.materials-page {
  --materials-text: #f2ece3;
  --materials-muted: rgba(236, 227, 214, 0.72);
  --materials-accent: #c89c69;
  --materials-accent-strong: #e8bb8a;
  --materials-line: rgba(255, 255, 255, 0.08);
  --materials-panel: linear-gradient(180deg, rgba(18, 22, 30, 0.94), rgba(10, 13, 18, 0.98));
  --materials-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
  color: var(--materials-text);
  background:
    radial-gradient(circle at 18% 13%, rgba(200, 156, 105, 0.14), transparent 17%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(180deg, #05070b 0%, #0a0d12 46%, #08090d 100%);
  padding: 24px 0 56px;
}

.materials-shell {
  display: grid;
  gap: 16px;
}

.materials-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--materials-line);
  background: var(--materials-panel);
  box-shadow: var(--materials-shadow);
}

.materials-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.materials-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.materials-brand__copy {
  display: grid;
  gap: 2px;
}

.materials-brand__copy strong,
.materials-brand__copy span,
.materials-topbar__link,
.materials-topbar__summary small,
.materials-supplier span em,
.materials-filter b,
.materials-count,
.materials-search span {
  text-transform: uppercase;
}

.materials-brand__copy strong {
  color: var(--materials-text);
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.materials-brand__copy span {
  color: var(--materials-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.materials-topbar__summary {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.materials-topbar__summary h1 {
  margin: 0;
  color: var(--materials-text);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.materials-topbar__summary small {
  color: var(--materials-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.materials-topbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(200, 156, 105, 0.42);
  color: var(--materials-accent-strong);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.materials-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--materials-line);
  background: var(--materials-panel);
  box-shadow: var(--materials-shadow);
}

.materials-search {
  display: grid;
  gap: 8px;
}

.materials-search span {
  color: var(--materials-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.materials-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(200, 156, 105, 0.22);
  color: var(--materials-text);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 14px;
  font: inherit;
  font-size: 1rem;
}

.materials-search input::placeholder {
  color: rgba(236, 227, 214, 0.42);
}

.materials-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.materials-meta strong {
  color: var(--materials-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.materials-count {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(200, 156, 105, 0.28);
  color: var(--materials-accent-strong);
  background: rgba(200, 156, 105, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.materials-suppliers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.materials-supplier {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--materials-line);
  color: var(--materials-text);
  background: var(--materials-panel);
  box-shadow: var(--materials-shadow);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.materials-supplier:hover,
.materials-supplier:focus-visible,
.materials-supplier.is-active {
  border-color: rgba(200, 156, 105, 0.46);
  transform: translateY(-1px);
}

.materials-supplier img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.materials-supplier span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.materials-supplier span strong {
  color: var(--materials-text);
  font-size: 0.9rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.materials-supplier span em {
  color: var(--materials-accent-strong);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.materials-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.materials-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--materials-muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.materials-filter.is-active,
.materials-filter:hover {
  border-color: rgba(200, 156, 105, 0.46);
  color: var(--materials-text);
  background: rgba(200, 156, 105, 0.1);
}

.materials-filter b {
  color: var(--materials-accent-strong);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.materials-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--materials-line);
  background: var(--materials-panel);
  box-shadow: var(--materials-shadow);
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.materials-card:hover {
  border-color: rgba(200, 156, 105, 0.34);
  transform: translateY(-1px);
}

.materials-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

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

.materials-card__body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
}

.materials-card__body span {
  color: var(--materials-accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.materials-card__body h3 {
  margin: 0;
  color: var(--materials-text);
  font-size: 0.94rem;
  line-height: 1.34;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.materials-empty {
  margin: 0;
  color: var(--materials-muted);
}

.materials-more-wrap {
  display: flex;
  justify-content: center;
}

.materials-more {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(200, 156, 105, 0.42);
  color: var(--materials-accent-strong);
  background: rgba(200, 156, 105, 0.08);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.materials-supplier:focus-visible,
.materials-filter:focus-visible,
.materials-search input:focus,
.materials-more:focus-visible {
  outline: 2px solid rgba(232, 187, 138, 0.76);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .materials-suppliers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .materials-topbar,
  .materials-toolbar {
    grid-template-columns: 1fr;
  }

  .materials-topbar__summary,
  .materials-meta {
    justify-items: start;
    justify-content: flex-start;
    text-align: left;
  }

  .materials-suppliers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .materials-page {
    padding-top: 16px;
  }

  .materials-topbar,
  .materials-toolbar {
    padding: 14px;
  }

  .materials-brand__copy span,
  .materials-topbar__summary small {
    display: none;
  }

  .materials-suppliers {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}
