:root {
  --ink: #202028;
  --muted: #66616f;
  --paper: #f5f3f1;
  --panel: #ffffff;
  --line: #e4ddea;
  --lavender: #bba6cc;
  --violet: #755f8a;
  --accent: #f7521e;
  --accent-dark: #d93e0f;
  --shadow: 0 22px 70px rgba(32, 32, 40, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  width: min(1200px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 10px;
  background: rgba(246, 243, 241, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(32, 32, 40, 0.1);
  transform: translateX(-50%);
}

.brand img {
  display: block;
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  z-index: 34;
  inset: 0;
  background: rgba(20, 19, 24, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.mobile-menu {
  position: fixed;
  z-index: 35;
  top: 84px;
  right: 14px;
  width: min(340px, calc(100% - 28px));
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: #f3eff8;
}

.mobile-menu-phone {
  margin-top: 6px;
  justify-content: center;
  background: var(--ink);
  color: #fff;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

main {
  padding-top: 104px;
}

.hero,
.section,
.kpi-strip,
.advantage-band,
.split-preview,
.selection,
.contacts,
.split-hero,
.split-steps,
.split-media-grid,
.split-note {
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 720px;
  padding-top: 52px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 8% 16%, rgba(187, 166, 204, 0.32), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(247, 82, 30, 0.1), transparent 32%),
    linear-gradient(135deg, #fbfaf8, #f3f1f7);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.btn {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 34%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transition: transform 450ms ease;
  pointer-events: none;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(247, 82, 30, 0.26);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  border-color: rgba(32, 32, 40, 0.18);
  background: #fff;
}

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

.btn:hover::after {
  transform: translateX(360%) skewX(-20deg);
}

.btn:focus-visible {
  outline: 2px solid rgba(247, 82, 30, 0.5);
  outline-offset: 2px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-benefits span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(117, 95, 138, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
  padding-bottom: 28px;
}

.kpi-card {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(32, 32, 40, 0.06);
}

.kpi-card strong {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0;
}

.kpi-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-showcase {
  display: grid;
  gap: 14px;
}

.hero-main-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-main-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-rotator-track {
  position: relative;
}

.hero-rotator-slide {
  position: relative;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero-rotator-slide:not(:first-child) {
  position: absolute;
  inset: 0;
}

.hero-rotator-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-rotator-dots {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 88px;
  display: flex;
  gap: 8px;
}

.hero-rotator-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-rotator-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}

.hero-main-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-main-caption strong {
  font-size: 18px;
}

.hero-main-caption span {
  color: var(--accent);
  font-weight: 800;
}

.hero-side-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-side-card {
  min-height: 146px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.side-shot {
  height: 120px;
  border-radius: 8px;
  background-image: url("assets/product-sprite.webp");
  background-size: 300% 200%;
}

.hero-side-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.hero-side-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.advantage-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 24px;
}

.advantage-band article {
  min-height: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.advantage-band h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.advantage-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mood-board {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 26px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 12px;
  padding-top: 68px;
  padding-bottom: 80px;
  padding-left: 26px;
  padding-right: 26px;
  background: linear-gradient(150deg, #ffffff, #f4f0f8);
}

.section-copy p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

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

.mood-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(32, 32, 40, 0.08);
}

.mood-card[data-action="open-product"] {
  cursor: pointer;
}

.mood-photo {
  height: 220px;
  background-color: #f7f5f2;
}

.mood-photo-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f7f5f2;
  padding: 8px;
  display: block;
}

.mood-info {
  padding: 16px;
}

.mood-info span {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.mood-info h3 {
  margin: 8px 0;
  font-size: 22px;
}

.mood-info p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 420px);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(32, 32, 40, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card.featured {
  border-color: rgba(117, 95, 138, 0.38);
}

.product-image {
  min-height: 230px;
  background-color: #f7f5f2;
}

.product-image img {
  width: 100%;
  min-height: 230px;
  height: 230px;
  object-fit: cover;
  display: block;
}

.product-gallery {
  display: flex;
  gap: 6px;
  padding: 8px 10px 0;
}

.product-thumb {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(117, 95, 138, 0.26);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(247, 82, 30, 0.2);
}

.shot-1,
.shot-2,
.shot-3,
.shot-4,
.shot-5,
.shot-6,
.mood-photo-1,
.mood-photo-2,
.mood-photo-3 {
  background-image: url("assets/product-sprite.webp");
  background-size: 300% 200%;
  background-repeat: no-repeat;
}

.shot-1,
.mood-photo-1 {
  background-position: 0% 0%;
}

.shot-2,
.mood-photo-2 {
  background-position: 50% 0%;
}

.shot-3,
.mood-photo-3 {
  background-position: 100% 0%;
}

.shot-4 {
  background-position: 0% 100%;
}

.shot-5 {
  background-position: 50% 100%;
}

.shot-6 {
  background-position: 100% 100%;
}

.product-info {
  padding: 16px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.segment-badge,
.split-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.segment-badge {
  background: rgba(117, 95, 138, 0.12);
  color: var(--violet);
}

.segment-badge.premium {
  background: rgba(247, 82, 30, 0.14);
  color: var(--accent);
}

.split-badge {
  background: #c1f79b;
  color: #043d23;
}

.product-info p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-info h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.product-rating {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-rating-stars {
  color: #e3a41c;
  font-size: 14px;
}

.product-rating-score {
  color: #1f1d24;
  font-weight: 800;
}

.product-rating-empty .product-rating-stars {
  color: #cabfcf;
}

.product-specs {
  margin: 0 0 10px;
  padding: 0 0 0 18px;
  display: grid;
  gap: 4px;
  color: #4f4a59;
  font-size: 12px;
  line-height: 1.35;
}

.product-specs li {
  margin: 0;
}

.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 10px;
}

.product-variant-btn {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(117, 95, 138, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.product-variant-btn:hover {
  border-color: rgba(247, 82, 30, 0.42);
}

.product-variant-btn.is-active {
  border-color: var(--accent);
  background: rgba(247, 82, 30, 0.1);
  color: #9c2f0f;
}

.product-info > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
}

.product-meta {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-actions .btn {
  min-height: 44px;
  padding: 0 12px;
  font-size: 13px;
}

.product-actions .btn.in-cart {
  border-color: rgba(3, 61, 35, 0.3);
  background: #eaf8df;
  color: #1b4729;
}

.split-preview {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 12% 20%, rgba(193, 247, 155, 0.36), transparent 28%),
    linear-gradient(135deg, #f7f4fb, #ffffff 62%, #ebf8e5);
}

.split-preview-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.split-preview-art {
  overflow: hidden;
  border: 1px solid rgba(3, 61, 35, 0.15);
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(3, 61, 35, 0.15);
}

.split-preview-art img {
  display: block;
  width: 100%;
}

.catalog-more {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.selection {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 640px);
  gap: 70px;
  padding-top: 82px;
  padding-bottom: 82px;
  background: linear-gradient(145deg, #1d1b22, #282530);
  color: #fff;
}

.selection-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.selector-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.wide {
  grid-column: 1 / -1;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

input:focus,
select:focus {
  outline: 0;
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(187, 166, 204, 0.2);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.checkbox-row input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--accent);
}

.checkbox-row a,
.form-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.captcha-wrap {
  min-height: 0;
}

.captcha-wrap:empty {
  display: none;
}

.selection-result {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(187, 166, 204, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.selection-result span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.lead-cart-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(193, 247, 155, 0.45);
  border-radius: 8px;
  background: rgba(15, 66, 35, 0.34);
}

.lead-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.lead-cart-head span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.lead-cart-head .btn {
  width: auto;
  min-height: 36px;
  padding: 0 12px;
}

.lead-cart-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lead-cart-box li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

.lead-cart-box li button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.selector-form .btn {
  grid-column: 1 / -1;
  border: 0;
  font: inherit;
  font-weight: 800;
}

.selector-form .btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.form-status.success {
  color: #c1f79b;
}

.form-status.error {
  color: #ffb8a2;
}

.materials {
  background: #fff;
}

.reviews {
  background: linear-gradient(180deg, #fff, #f7f3fa);
}

.reviews .section-head {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.reviews .section-head p:last-child {
  max-width: 820px;
}

.reviews-widget {
  position: relative;
  overflow: hidden;
  width: min(980px, 100%);
  margin: 0 auto;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reviews-widget iframe {
  width: 100%;
  height: 620px;
  border: 0;
}

.reviews-widget a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: block;
  padding: 0 14px;
  color: #7d7789;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.material-grid article {
  min-height: 244px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.material-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.swatch {
  width: 70px;
  height: 70px;
  display: block;
  margin-bottom: 24px;
  border-radius: 50%;
}

.swatch.lavender {
  background: var(--lavender);
}

.swatch.stone {
  background: #d6d1c7;
}

.swatch.wood {
  background: #9f7b59;
}

.contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(145deg, #ece5f2, #fff8f2);
}

.contacts-copy {
  max-width: 640px;
}

.contacts-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.contact-actions {
  max-width: 460px;
  justify-content: flex-end;
}

.contact-actions-icons {
  max-width: 100%;
  gap: 10px;
}

.contact-icon-link {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 32, 40, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #202028;
  box-shadow: 0 10px 24px rgba(32, 32, 40, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 82, 30, 0.38);
  box-shadow: 0 14px 28px rgba(32, 32, 40, 0.16);
}

.contact-icon-link:focus-visible {
  outline: 2px solid rgba(247, 82, 30, 0.5);
  outline-offset: 2px;
}

.contact-icon-link:first-child {
  border-color: #202028;
  background: #202028;
  color: #fff;
}

.contact-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1200px) / 2));
  background: #1f1d24;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-main {
  display: grid;
  gap: 8px;
}

.footer-main span:first-child {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 12px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 28px));
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner.visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 16px;
}

.split-page {
  background: #f8f7f5;
}

.catalog-page {
  background: #f7f5f2;
}

.catalog-hero {
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  padding-top: 122px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 12% 14%, rgba(187, 166, 204, 0.28), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(247, 82, 30, 0.11), transparent 30%),
    linear-gradient(150deg, #ffffff, #f3eef8);
}

.catalog-hero-copy {
  max-width: 860px;
}

.catalog-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-browser {
  padding-top: 48px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

.catalog-toolbar label {
  color: var(--muted);
  font-weight: 700;
}

.catalog-toolbar input,
.catalog-toolbar select {
  min-height: 48px;
  border: 1px solid var(--line);
  background: #fff;
}

.catalog-split-toggle {
  min-height: 48px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.catalog-split-toggle input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
}

.catalog-toolbar-meta {
  margin-bottom: 18px;
  color: var(--muted);
}

.split-catalog-meta {
  margin-bottom: 16px;
  color: var(--muted);
}

.split-catalog-meta strong {
  color: var(--ink);
  font-size: 17px;
}

.catalog-products-grid {
  margin-top: 10px;
}

.catalog-empty {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.site-cart-bar {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  left: auto;
  width: auto;
  transform: none;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

body.modal-open .site-cart-bar {
  display: none !important;
}

.site-cart-fab {
  position: relative;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(32, 32, 40, 0.15);
  border-radius: 16px;
  background: #202028;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(32, 32, 40, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-cart-fab:hover {
  transform: translateY(-2px);
  background: #16161d;
  box-shadow: 0 20px 36px rgba(32, 32, 40, 0.32);
}

.site-cart-fab:focus-visible {
  outline: 2px solid rgba(247, 82, 30, 0.5);
  outline-offset: 2px;
}

.site-cart-fab-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.site-cart-fab-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-cart-fab-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.product-modal {
  position: fixed;
  z-index: 55;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 16, 0.66);
}

.product-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(32, 32, 40, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.product-modal-media {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.product-modal-media > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.product-modal-thumbs {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal-thumbs button {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(117, 95, 138, 0.26);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.product-modal-thumbs button.is-active {
  border-color: var(--accent);
}

.product-modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-info {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 18px 18px;
}

.product-modal-info p {
  margin: 0;
}

#product-modal-category {
  color: var(--muted);
  font-weight: 700;
}

#product-modal-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.06;
}

.product-modal-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
}

#product-modal-price {
  color: var(--accent);
  font-size: 26px;
}

.product-modal-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

#product-modal-description {
  color: var(--muted);
  line-height: 1.6;
}

.product-modal-specs {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 5px;
  color: #413d49;
  font-size: 13px;
  line-height: 1.45;
}

.product-modal-specs li {
  margin: 0;
}

.product-modal-reviews {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.product-modal-reviews-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.product-modal-reviews-head strong {
  color: #1f1d24;
  font-size: 14px;
}

.product-modal-reviews-head .stars {
  color: #e3a41c;
}

.product-reviews-list {
  max-height: 210px;
  overflow: auto;
  display: grid;
  gap: 8px;
  padding-right: 4px;
}

.product-review-item {
  padding: 10px;
  border: 1px solid rgba(117, 95, 138, 0.2);
  border-radius: 8px;
  background: #faf8fc;
}

.product-review-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.product-review-top .stars {
  color: #e3a41c;
}

.product-review-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-review-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-review-form {
  display: grid;
  gap: 8px;
}

.product-review-form input,
.product-review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.product-review-form textarea {
  min-height: 90px;
  resize: vertical;
}

.rating-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rating-star-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(117, 95, 138, 0.24);
  border-radius: 8px;
  background: #fff;
  color: #ccb7cc;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.rating-star-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 82, 30, 0.4);
}

.rating-star-btn.is-active {
  border-color: #f1b340;
  color: #e3a41c;
  background: #fff9eb;
}

.product-review-status {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.product-review-status.success {
  color: #186d31;
}

.product-review-status.error {
  color: #af2d08;
}

.product-modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.product-modal-actions .btn {
  flex: 1 1 0;
}

.lead-modal {
  position: fixed;
  z-index: 56;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 16, 0.66);
}

.lead-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.lead-modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(32, 32, 40, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-dialog h3 {
  margin: 4px 0 8px;
  font-size: 30px;
}

.lead-modal-copy {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-modal-items {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.lead-modal-items li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8fc;
  font-size: 13px;
}

.lead-modal-form {
  display: grid;
  gap: 10px;
}

.lead-modal-form input:not([type="checkbox"]),
.lead-modal-form select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.lead-modal-form .checkbox-row {
  color: var(--ink);
  margin-top: 2px;
}

.lead-modal-form .checkbox-row a {
  color: var(--ink);
}

.lead-modal-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.lead-modal-status.success {
  color: #1b7d37;
}

.lead-modal-status.error {
  color: #bd2d00;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 720px;
  padding-top: 48px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 20% 14%, rgba(193, 247, 155, 0.44), transparent 28%),
    linear-gradient(135deg, #ffffff, #f2edf9 52%, #e8f5e3);
}

.split-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.split-hero-art {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 74px rgba(32, 32, 40, 0.18);
}

.split-hero-art img {
  width: 100%;
  display: block;
}

.split-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
  padding-bottom: 22px;
}

.split-media-grid article {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.split-media-grid img {
  display: block;
  width: 100%;
}

.split-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 44px;
  padding-bottom: 52px;
  background: #211f27;
}

.split-steps article {
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.split-steps span {
  display: block;
  margin-bottom: 34px;
  color: #c1f79b;
  font-weight: 900;
}

.split-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.split-catalog {
  background: linear-gradient(180deg, #f7f3fa, #ffffff);
}

.split-catalog-empty {
  margin-top: 18px;
}

.split-note {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 76px;
  background: linear-gradient(135deg, #e8f9de, #f4eef8);
}

.split-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.floating-cta-mobile {
  display: none;
}

.floating-cta-mobile.is-hidden-by-cart {
  display: none !important;
}

.reveal {
  transition: opacity 320ms ease, transform 320ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: #f8f7f5;
}

.legal-main {
  padding: 120px max(24px, calc((100vw - 980px) / 2)) 84px;
}

.legal-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.legal-container h1 {
  font-size: clamp(34px, 4.3vw, 52px);
  margin-bottom: 18px;
}

.legal-meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.legal-container h2 {
  margin: 28px 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.15;
}

.legal-container p,
.legal-container li {
  color: #2e2b35;
  line-height: 1.7;
}

.legal-container ul {
  margin: 0;
  padding-left: 20px;
}

.legal-back {
  margin-top: 30px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-hero,
  .mood-board,
  .section-head,
  .selection,
  .split-preview,
  .split-note {
    grid-template-columns: 1fr;
  }

  .hero-main-card img {
    height: 360px;
  }

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

  .advantage-band,
  .kpi-strip,
  .product-grid,
  .material-grid,
  .mood-cards,
  .split-media-grid,
  .split-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-modal-layout {
    grid-template-columns: 1fr;
  }

  .product-modal-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
    top: 12px;
    width: calc(100% - 20px);
    padding: 10px 12px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  main {
    padding-top: 88px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    left: 8px;
    right: 8px;
    width: auto;
    transform: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand {
    max-width: 220px;
  }

  .brand img {
    height: 42px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-text,
  .split-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .mobile-menu {
    top: 74px;
    right: 10px;
    width: calc(100% - 20px);
  }

  .hero,
  .section,
  .advantage-band,
  .split-preview,
  .selection,
  .contacts,
  .split-hero,
  .split-steps,
  .split-media-grid,
  .split-note,
  .mood-board {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-actions,
  .contact-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .advantage-band,
  .kpi-strip,
  .product-grid,
  .material-grid,
  .mood-cards,
  .split-media-grid,
  .split-steps,
  .selector-form {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions.contact-actions-icons {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .site-cart-bar {
    right: 12px;
    bottom: 12px;
  }

  .site-cart-fab {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .product-modal {
    padding: 12px;
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal-dialog h3 {
    font-size: 26px;
  }

  #product-modal-title {
    font-size: 28px;
  }

  .product-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-main-card img {
    height: 300px;
  }

  .hero-rotator-dots {
    bottom: 76px;
  }

  .mood-photo {
    height: 250px;
  }

  .mood-photo-image {
    height: 250px;
  }

  .mood-board {
    width: calc(100% - 20px);
    padding-left: 14px;
    padding-right: 14px;
  }

  .reviews-widget,
  .reviews-widget iframe {
    min-height: 520px;
    height: 520px;
  }

  .product-image {
    min-height: 240px;
  }

  .product-thumb {
    width: 46px;
    height: 46px;
  }

  .site-footer,
  .contacts {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .legal-container {
    padding: 18px;
  }

  .floating-cta-mobile {
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(247, 82, 30, 0.34);
  }
}
